diff --git a/README.md b/README.md index fd4dd57..ef30c4e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,8 @@ Life Cycle Assessment (LCA). ``pathways`` is a work in progress. It reads in scenarios and corresponding premise-generated LCA databases, -and calculates the environmental impacts over a defined period. +solve double-accounting issues and calculates the environmental +impacts over a defined period. ## Installation diff --git a/dev/.ipynb_checkpoints/pivot-checkpoint.ipynb b/dev/.ipynb_checkpoints/pivot-checkpoint.ipynb index ef30b61..810cded 100644 --- a/dev/.ipynb_checkpoints/pivot-checkpoint.ipynb +++ b/dev/.ipynb_checkpoints/pivot-checkpoint.ipynb @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 2, "id": "b3b37d5c-8f65-4fb3-8f1b-7bbc05327081", "metadata": {}, "outputs": [ @@ -20,18 +20,18 @@ "name": "stdout", "output_type": "stream", "text": [ - "Invalid datapackage: Descriptor validation error: {'path': 'mapping/mapping.yaml', 'profile': 'data-resource', 'name': 'mapping', 'format': 'yaml', 'mediatype': 'text/yaml', 'encoding': 'utf-8'} is not valid under any of the given schemas at \"resources/45\" in descriptor and at \"properties/resources/items/oneOf\" in profile\n", - "Invalid datapackage: Descriptor validation error: 'data-resource' is not one of ['tabular-data-resource'] at \"resources/45/profile\" in descriptor and at \"properties/resources/items/properties/profile/enum\" in profile\n" + "Invalid datapackage: Descriptor validation error: {'path': 'mapping/mapping.yaml', 'profile': 'data-resource', 'name': 'mapping', 'format': 'yaml', 'mediatype': 'text/yaml', 'encoding': 'utf-8'} is not valid under any of the given schemas at \"resources/89\" in descriptor and at \"properties/resources/items/oneOf\" in profile\n", + "Invalid datapackage: Descriptor validation error: 'data-resource' is not one of ['tabular-data-resource'] at \"resources/89/profile\" in descriptor and at \"properties/resources/items/properties/profile/enum\" in profile\n" ] } ], "source": [ - "p = Pathways(datapackage=\"/Users/romain/GitHub/premise/dev/image-SSP2-RCP19/datapackage.json\")" + "p = Pathways(datapackage=\"/Users/romain/GitHub/premise/dev/image-SSP2/datapackage.json\")" ] }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 3, "id": "2f3bf87a-5922-41b6-92e5-0a5e55500e8e", "metadata": { "tags": [] @@ -42,204 +42,1779 @@ "output_type": "stream", "text": [ "Calculating LCA results for image...\n", - "--- Calculating LCA results for SSP2-RCP19...\n", - "------ Calculating LCA results for 2005...\n", - "------ Calculating LCA results for 2010...\n", - "------ Calculating LCA results for 2015...\n", - "LCA matrices not found for the given model, scenario, and year.\n", - "------ Calculating LCA results for 2020...\n", - "------ Calculating LCA results for 2025...\n", - "LCA matrices not found for the given model, scenario, and year.\n", - "------ Calculating LCA results for 2030...\n", - "------ Calculating LCA results for 2035...\n", - "LCA matrices not found for the given model, scenario, and year.\n", - "------ Calculating LCA results for 2040...\n", - "------ Calculating LCA results for 2045...\n", - "LCA matrices not found for the given model, scenario, and year.\n", - "------ Calculating LCA results for 2050...\n", - "------ Calculating LCA results for 2060...\n", - "------ Calculating LCA results for 2070...\n", - "------ Calculating LCA results for 2080...\n", - "------ Calculating LCA results for 2090...\n", - "------ Calculating LCA results for 2100...\n" + "--- Calculating LCA results for SSP2-Base...\n", + "------ Calculating LCA results for 2005...\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "0% [##########################] 100% | ETA: 00:00:00\n", + "Total time elapsed: 00:17:59\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "------ Calculating LCA results for 2010...\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "0% [###################### ] 100% | ETA: 00:02:45\n", + "KeyboardInterrupt\n", + "\n" ] } ], "source": [ - "p.calculate(\n", - " methods=[\n", - " 'IPCC 2021 - climate change - GWP 100a, incl. H',\n", - " 'EN15804 - inventory indicators ISO21930 - Cumulative Energy Demand - renewable energy resources',\n", - " 'EN15804 - inventory indicators ISO21930 - Cumulative Energy Demand - non-renewable energy resources',\n", - " 'EN15804 - inventory indicators ISO21930 - use of net fresh water',\n", - " 'EF v3.1 EN15804 - particulate matter formation - impact on human health',\n", - " ],\n", - " regions=[r for r in p.scenarios.coords[\"region\"].values if r!=\"World\"],\n", - " #regions=[\"World\",],\n", - " scenarios=[\n", - " #\"SSP2-Base\",\n", - " \"SSP2-RCP19\",\n", - " ],\n", - " variables=[\n", - " v for v in p.scenarios.coords[\"variables\"].values\n", - " if any(i in v for i in [\"Industry\", \"Transport\", \"Heating\"])\n", - " ],\n", - " #variables=[\"Transport_Freight_(train)_Liquid_fossil\"],\n", - " #variables = [\"Electricity\", ],\n", - " characterization=True\n", - ")\n", - "arr = p.display_results(cutoff=0.01)" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "55c1ae5b-f165-4b45-84b4-f46c8b859fdc", - "metadata": {}, - "outputs": [], - "source": [ - "arr.to_netcdf(\"results_image_SSP2-RCP19.nc\")" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "0078f7fc-a267-4eab-b28d-d943133cd2c7", - "metadata": {}, - "outputs": [], - "source": [ - "df = arr.to_dataframe(\"x\").unstack()[\"x\"].reset_index().melt(id_vars=[\n", - " \"model\", \"scenario\", \"region\", \"impact_category\", \"variable\", \"year\"\n", - "])" + "import numpy as np\n", + "p.calculate(\n", + " methods=[\n", + " 'EF v3.1 - acidification - accumulated exceedance (AE)',\n", + " 'EF v3.1 - climate change - global warming potential (GWP100)',\n", + " 'EF v3.1 - ecotoxicity: freshwater - comparative toxic unit for ecosystems (CTUe)',\n", + " 'EF v3.1 - energy resources: non-renewable - abiotic depletion potential (ADP): fossil fuels',\n", + " 'EF v3.1 - eutrophication: freshwater - fraction of nutrients reaching freshwater end compartment (P)',\n", + " #'EF v3.1 - eutrophication: marine - fraction of nutrients reaching marine end compartment (N)',\n", + " #'EF v3.1 - eutrophication: terrestrial - accumulated exceedance (AE)',\n", + " #'EF v3.1 - human toxicity: carcinogenic - comparative toxic unit for human (CTUh)',\n", + " #'EF v3.1 - human toxicity: non-carcinogenic - comparative toxic unit for human (CTUh)',\n", + " #'EF v3.1 - ionising radiation: human health - human exposure efficiency relative to u235',\n", + " #'EF v3.1 - land use - soil quality index',\n", + " 'EF v3.1 - material resources: metals/minerals - abiotic depletion potential (ADP): elements (ultimate reserves)',\n", + " 'EF v3.1 - ozone depletion - ozone depletion potential (ODP)',\n", + " 'EF v3.1 - particulate matter formation - impact on human health',\n", + " #'EF v3.1 - photochemical oxidant formation: human health - tropospheric ozone concentration increase',\n", + " 'EF v3.1 - water use - user deprivation potential (deprivation-weighted water consumption)',\n", + " 'RELICS - metals extraction - Aluminium',\n", + " 'RELICS - metals extraction - Cobalt',\n", + " 'RELICS - metals extraction - Copper',\n", + " 'RELICS - metals extraction - Graphite',\n", + " 'RELICS - metals extraction - Lithium',\n", + " 'RELICS - metals extraction - Molybdenum',\n", + " 'RELICS - metals extraction - Neodymium',\n", + " 'RELICS - metals extraction - Nickel',\n", + " 'RELICS - metals extraction - Platinum',\n", + " 'RELICS - metals extraction - Vanadium',\n", + " 'RELICS - metals extraction - Zinc',\n", + " ],\n", + " regions=[r for r in p.scenarios.coords[\"region\"].values if r!=\"World\"],\n", + " scenarios=[\n", + " \"SSP2-Base\",\n", + " #\"SSP2-RCP19\",\n", + " ],\n", + " variables=[\n", + " v for v in p.scenarios.coords[\"variables\"].values\n", + " if any(i in v for i in [\"Industry\", \"Transport\", \"Heating\"])\n", + " ],\n", + " years=[2005, 2010, 2020, 2030, 2040, 2050, 2060, 2070, 2080, 2090, 2100],\n", + " characterization=True,\n", + " data_type=np.float32,\n", + " multiprocessing=False,\n", + " demand_cutoff=0.1,\n", + ")\n", + "arr = p.display_results()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "83d7622b-18db-429b-9ec5-453244db74bb", + "metadata": {}, + "outputs": [], + "source": [ + "p.scenarios" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "a63727ad-455f-4d7d-80fb-086678cbf901", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
<xarray.DataArray 'value' (model: 0, scenario: 0, year: 0, region: 0,\n",
+       "                           impact_category: 0, variable: 0, act_category: 0)>\n",
+       "array([], shape=(0, 0, 0, 0, 0, 0, 0), dtype=float64)\n",
+       "Coordinates:\n",
+       "  * model            (model) object \n",
+       "  * scenario         (scenario) object \n",
+       "  * year             (year) int64 \n",
+       "  * region           (region) object \n",
+       "  * impact_category  (impact_category) object \n",
+       "  * variable         (variable) float64 \n",
+       "  * act_category     (act_category) object 
" + ], + "text/plain": [ + "\n", + "array([], shape=(0, 0, 0, 0, 0, 0, 0), dtype=float64)\n", + "Coordinates:\n", + " * model (model) object \n", + " * scenario (scenario) object \n", + " * year (year) int64 \n", + " * region (region) object \n", + " * impact_category (impact_category) object \n", + " * variable (variable) float64 \n", + " * act_category (act_category) object " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "arr" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "55c1ae5b-f165-4b45-84b4-f46c8b859fdc", + "metadata": {}, + "outputs": [], + "source": [ + "arr.to_netcdf(\"results_image_SSP2.nc\")" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "0078f7fc-a267-4eab-b28d-d943133cd2c7", + "metadata": {}, + "outputs": [ + { + "ename": "KeyError", + "evalue": "'x'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[5], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[43marr\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mto_dataframe\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mx\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43munstack\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mx\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m]\u001b[49m\u001b[38;5;241m.\u001b[39mreset_index()\u001b[38;5;241m.\u001b[39mmelt(id_vars\u001b[38;5;241m=\u001b[39m[\n\u001b[1;32m 2\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mmodel\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mscenario\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mregion\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mimpact_category\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mvariable\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124myear\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 3\u001b[0m ])\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/frame.py:3895\u001b[0m, in \u001b[0;36mDataFrame.__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 3893\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_single_key:\n\u001b[1;32m 3894\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcolumns\u001b[38;5;241m.\u001b[39mnlevels \u001b[38;5;241m>\u001b[39m \u001b[38;5;241m1\u001b[39m:\n\u001b[0;32m-> 3895\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_getitem_multilevel\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 3896\u001b[0m indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcolumns\u001b[38;5;241m.\u001b[39mget_loc(key)\n\u001b[1;32m 3897\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_integer(indexer):\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/frame.py:3953\u001b[0m, in \u001b[0;36mDataFrame._getitem_multilevel\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 3951\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_getitem_multilevel\u001b[39m(\u001b[38;5;28mself\u001b[39m, key):\n\u001b[1;32m 3952\u001b[0m \u001b[38;5;66;03m# self.columns is a MultiIndex\u001b[39;00m\n\u001b[0;32m-> 3953\u001b[0m loc \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcolumns\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget_loc\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 3954\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(loc, (\u001b[38;5;28mslice\u001b[39m, np\u001b[38;5;241m.\u001b[39mndarray)):\n\u001b[1;32m 3955\u001b[0m new_columns \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcolumns[loc]\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/indexes/multi.py:2925\u001b[0m, in \u001b[0;36mMultiIndex.get_loc\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 2922\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m mask\n\u001b[1;32m 2924\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(key, \u001b[38;5;28mtuple\u001b[39m):\n\u001b[0;32m-> 2925\u001b[0m loc \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_get_level_indexer\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mlevel\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;241;43m0\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[1;32m 2926\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m _maybe_to_slice(loc)\n\u001b[1;32m 2928\u001b[0m keylen \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlen\u001b[39m(key)\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/indexes/multi.py:3303\u001b[0m, in \u001b[0;36mMultiIndex._get_level_indexer\u001b[0;34m(self, key, level, indexer)\u001b[0m\n\u001b[1;32m 3299\u001b[0m end \u001b[38;5;241m=\u001b[39m algos\u001b[38;5;241m.\u001b[39msearchsorted(level_codes, idx, side\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mright\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 3301\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m start \u001b[38;5;241m==\u001b[39m end:\n\u001b[1;32m 3302\u001b[0m \u001b[38;5;66;03m# The label is present in self.levels[level] but unused:\u001b[39;00m\n\u001b[0;32m-> 3303\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(key)\n\u001b[1;32m 3304\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mslice\u001b[39m(start, end)\n", + "\u001b[0;31mKeyError\u001b[0m: 'x'" + ] + } + ], + "source": [ + "df = arr.to_dataframe(\"x\").unstack()[\"x\"].reset_index().melt(id_vars=[\n", + " \"model\", \"scenario\", \"region\", \"impact_category\", \"variable\", \"year\"\n", + "])" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "42f0f2c3-2faf-42a6-adcf-b13d4942d2cb", + "metadata": {}, + "outputs": [ + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[5], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m df[[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mMain sector\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mSub sector\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mEnergy carrier\u001b[39m\u001b[38;5;124m'\u001b[39m]] \u001b[38;5;241m=\u001b[39m \u001b[43mdf\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mvariable\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m]\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mstr\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msplit\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43m_\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mexpand\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/strings/accessor.py:136\u001b[0m, in \u001b[0;36mforbid_nonstring_types.._forbid_nonstring_types..wrapper\u001b[0;34m(self, *args, **kwargs)\u001b[0m\n\u001b[1;32m 131\u001b[0m msg \u001b[38;5;241m=\u001b[39m (\n\u001b[1;32m 132\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mCannot use .str.\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mfunc_name\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m with values of \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 133\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124minferred dtype \u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_inferred_dtype\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m.\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 134\u001b[0m )\n\u001b[1;32m 135\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mTypeError\u001b[39;00m(msg)\n\u001b[0;32m--> 136\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mfunc\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/strings/accessor.py:916\u001b[0m, in \u001b[0;36mStringMethods.split\u001b[0;34m(self, pat, n, expand, regex)\u001b[0m\n\u001b[1;32m 914\u001b[0m regex \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mTrue\u001b[39;00m\n\u001b[1;32m 915\u001b[0m result \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_data\u001b[38;5;241m.\u001b[39marray\u001b[38;5;241m.\u001b[39m_str_split(pat, n, expand, regex)\n\u001b[0;32m--> 916\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_wrap_result\u001b[49m\u001b[43m(\u001b[49m\u001b[43mresult\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mreturns_string\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mexpand\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mexpand\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mexpand\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/strings/accessor.py:400\u001b[0m, in \u001b[0;36mStringMethods._wrap_result\u001b[0;34m(self, result, name, expand, fill_value, returns_string, returns_bool)\u001b[0m\n\u001b[1;32m 398\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m expand:\n\u001b[1;32m 399\u001b[0m cons \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_orig\u001b[38;5;241m.\u001b[39m_constructor_expanddim\n\u001b[0;32m--> 400\u001b[0m result \u001b[38;5;241m=\u001b[39m \u001b[43mcons\u001b[49m\u001b[43m(\u001b[49m\u001b[43mresult\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcolumns\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mname\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mindex\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mindex\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdtype\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdtype\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 401\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 402\u001b[0m \u001b[38;5;66;03m# Must be a Series\u001b[39;00m\n\u001b[1;32m 403\u001b[0m cons \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_orig\u001b[38;5;241m.\u001b[39m_constructor\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/frame.py:809\u001b[0m, in \u001b[0;36mDataFrame.__init__\u001b[0;34m(self, data, index, columns, dtype, copy)\u001b[0m\n\u001b[1;32m 807\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m columns \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 808\u001b[0m columns \u001b[38;5;241m=\u001b[39m ensure_index(columns)\n\u001b[0;32m--> 809\u001b[0m arrays, columns, index \u001b[38;5;241m=\u001b[39m \u001b[43mnested_data_to_arrays\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 810\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;66;43;03m# error: Argument 3 to \"nested_data_to_arrays\" has incompatible\u001b[39;49;00m\n\u001b[1;32m 811\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;66;43;03m# type \"Optional[Collection[Any]]\"; expected \"Optional[Index]\"\u001b[39;49;00m\n\u001b[1;32m 812\u001b[0m \u001b[43m \u001b[49m\u001b[43mdata\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 813\u001b[0m \u001b[43m \u001b[49m\u001b[43mcolumns\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 814\u001b[0m \u001b[43m \u001b[49m\u001b[43mindex\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;66;43;03m# type: ignore[arg-type]\u001b[39;49;00m\n\u001b[1;32m 815\u001b[0m \u001b[43m \u001b[49m\u001b[43mdtype\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 816\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 817\u001b[0m mgr \u001b[38;5;241m=\u001b[39m arrays_to_mgr(\n\u001b[1;32m 818\u001b[0m arrays,\n\u001b[1;32m 819\u001b[0m columns,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 822\u001b[0m typ\u001b[38;5;241m=\u001b[39mmanager,\n\u001b[1;32m 823\u001b[0m )\n\u001b[1;32m 824\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/internals/construction.py:520\u001b[0m, in \u001b[0;36mnested_data_to_arrays\u001b[0;34m(data, columns, index, dtype)\u001b[0m\n\u001b[1;32m 517\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_named_tuple(data[\u001b[38;5;241m0\u001b[39m]) \u001b[38;5;129;01mand\u001b[39;00m columns \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 518\u001b[0m columns \u001b[38;5;241m=\u001b[39m ensure_index(data[\u001b[38;5;241m0\u001b[39m]\u001b[38;5;241m.\u001b[39m_fields)\n\u001b[0;32m--> 520\u001b[0m arrays, columns \u001b[38;5;241m=\u001b[39m \u001b[43mto_arrays\u001b[49m\u001b[43m(\u001b[49m\u001b[43mdata\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcolumns\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdtype\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdtype\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 521\u001b[0m columns \u001b[38;5;241m=\u001b[39m ensure_index(columns)\n\u001b[1;32m 523\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m index \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/internals/construction.py:835\u001b[0m, in \u001b[0;36mto_arrays\u001b[0;34m(data, columns, dtype)\u001b[0m\n\u001b[1;32m 832\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m arrays, columns\n\u001b[1;32m 834\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(data[\u001b[38;5;241m0\u001b[39m], (\u001b[38;5;28mlist\u001b[39m, \u001b[38;5;28mtuple\u001b[39m)):\n\u001b[0;32m--> 835\u001b[0m arr \u001b[38;5;241m=\u001b[39m \u001b[43m_list_to_arrays\u001b[49m\u001b[43m(\u001b[49m\u001b[43mdata\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 836\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(data[\u001b[38;5;241m0\u001b[39m], abc\u001b[38;5;241m.\u001b[39mMapping):\n\u001b[1;32m 837\u001b[0m arr, columns \u001b[38;5;241m=\u001b[39m _list_of_dict_to_arrays(data, columns)\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/internals/construction.py:856\u001b[0m, in \u001b[0;36m_list_to_arrays\u001b[0;34m(data)\u001b[0m\n\u001b[1;32m 853\u001b[0m content \u001b[38;5;241m=\u001b[39m lib\u001b[38;5;241m.\u001b[39mto_object_array_tuples(data)\n\u001b[1;32m 854\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 855\u001b[0m \u001b[38;5;66;03m# list of lists\u001b[39;00m\n\u001b[0;32m--> 856\u001b[0m content \u001b[38;5;241m=\u001b[39m \u001b[43mlib\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mto_object_array\u001b[49m\u001b[43m(\u001b[49m\u001b[43mdata\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 857\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m content\n", + "\u001b[0;31mKeyboardInterrupt\u001b[0m: " + ] + } + ], + "source": [ + "df[['Main sector', 'Sub sector', 'Energy carrier']] = df['variable'].str.split('_', expand=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "67b9d6b0-ed89-44b3-9bf1-b11aa20e1b84", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Invalid datapackage: Descriptor validation error: {'path': 'mapping/mapping.yaml', 'profile': 'data-resource', 'name': 'mapping', 'format': 'yaml', 'mediatype': 'text/yaml', 'encoding': 'utf-8'} is not valid under any of the given schemas at \"resources/89\" in descriptor and at \"properties/resources/items/oneOf\" in profile\n", + "Invalid datapackage: Descriptor validation error: 'data-resource' is not one of ['tabular-data-resource'] at \"resources/89/profile\" in descriptor and at \"properties/resources/items/properties/profile/enum\" in profile\n" + ] + } + ], + "source": [ + "from pathways import Pathways\n", + "p = Pathways(datapackage=\"/Users/romain/GitHub/premise/dev/image-SSP2/datapackage.json\")" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "db6729e1-78a9-467f-a8cb-7fa272bb2734", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Calculating LCA results for image...\n", + "--- Calculating LCA results for SSP2-Base...\n", + "------ Calculating LCA results for 2020...\n", + "------ Calculating LCA results for 2030...\n", + "------ Calculating LCA results for 2040...\n", + "------ Calculating LCA results for 2050...\n", + "------ Calculating LCA results for 2060...\n", + "------ Calculating LCA results for 2070...\n", + "------ Calculating LCA results for 2080...\n", + "------ Calculating LCA results for 2090...\n", + "------ Calculating LCA results for 2100...\n", + "--- Calculating LCA results for SSP2-RCP19...\n", + "------ Calculating LCA results for 2020...\n", + "------ Calculating LCA results for 2030...\n", + "------ Calculating LCA results for 2040...\n", + "------ Calculating LCA results for 2050...\n", + "------ Calculating LCA results for 2060...\n", + "------ Calculating LCA results for 2070...\n", + "------ Calculating LCA results for 2080...\n", + "------ Calculating LCA results for 2090...\n", + "------ Calculating LCA results for 2100...\n" + ] + } + ], + "source": [ + "metals = [\n", + " #\"Aluminium\",\n", + " #\"Cadmium\",\n", + " \"Cobalt\",\n", + " \"Graphite\",\n", + " #\"Iridium\",\n", + " #\"Iron\",\n", + " #\"Lanthanum\",\n", + " #\"Lead\",\n", + " \"Lithium\",\n", + " #\"Magnesium\",\n", + " #\"Manganese\",\n", + " \"Molybdenum\",\n", + " \"Neodymium\",\n", + " \"Nickel\",\n", + " #\"Palladium\",\n", + " \"Platinum\",\n", + " #\"Tin\",\n", + " #\"Silver\",\n", + " \"Titanium\",\n", + " #\"Uranium\",\n", + " \"Vanadium\",\n", + " \"Zinc\",\n", + "]\n", + "\n", + "p.calculate(\n", + " regions=[r for r in p.scenarios.coords[\"region\"].values if r!=\"World\"],\n", + " #regions=[\"World\",],\n", + " scenarios=[\n", + " \"SSP2-Base\",\n", + " \"SSP2-RCP19\",\n", + " ],\n", + " #regions=[\"WEU\",],\n", + " years=[2020, 2030, 2040, 2050, 2060, 2070, 2080, 2090, 2100],\n", + " variables=[\n", + " v for v in p.scenarios.coords[\"variables\"].values\n", + " if any(i in v for i in [\"Industry\", \"Transport\", \"Heating\"])\n", + " ],\n", + " characterization=False,\n", + " flows=[(metal, \"natural resource\", \"in ground\", \"kilogram\") for metal in metals]\n", + " #flows=[(\"Carbon dioxide, fossil\", \"air\", \"unspecified\", \"kilogram\"),]\n", + ")\n", + "arr = p.display_results(cutoff=0.01)" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "ee0e2805-adf5-43c4-92af-8e7c28f82bf5", + "metadata": {}, + "outputs": [], + "source": [ + "import xarray as xr\n", + "\n", + "arr = xr.open_dataarray(\"results_image_SSP2_metals2.nc\")" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "4b1f9ec1-4bba-4d79-90d0-2273b4ff5697", + "metadata": {}, + "outputs": [], + "source": [ + "arr.to_netcdf(\"results_image_SSP2_metals2.nc\")" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "a14f36a5-eab7-4510-a01b-a4bd048fe777", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
modelscenarioregionimpact_categoryvariableyearact_categoryvalue
0imageSSP2-BaseBRACobalt - natural resource - in ground - kilogramHeating_Commercial (space heating)_Electricity2020Manufacture of basic chemicalsNaN
1imageSSP2-BaseBRACobalt - natural resource - in ground - kilogramHeating_Commercial (space heating)_Liquid fossil2020Manufacture of basic chemicalsNaN
2imageSSP2-BaseBRACobalt - natural resource - in ground - kilogramHeating_Commercial (space heating)_Natural gas2020Manufacture of basic chemicalsNaN
3imageSSP2-BaseBRACobalt - natural resource - in ground - kilogramHeating_Commercial (space heating)_Solid biomass2020Manufacture of basic chemicalsNaN
4imageSSP2-BaseBRACobalt - natural resource - in ground - kilogramHeating_Commercial (space heating)_Solid coal2020Manufacture of basic chemicalsNaN
\n", + "
" + ], + "text/plain": [ + " model scenario region impact_category \\\n", + "0 image SSP2-Base BRA Cobalt - natural resource - in ground - kilogram \n", + "1 image SSP2-Base BRA Cobalt - natural resource - in ground - kilogram \n", + "2 image SSP2-Base BRA Cobalt - natural resource - in ground - kilogram \n", + "3 image SSP2-Base BRA Cobalt - natural resource - in ground - kilogram \n", + "4 image SSP2-Base BRA Cobalt - natural resource - in ground - kilogram \n", + "\n", + " variable year \\\n", + "0 Heating_Commercial (space heating)_Electricity 2020 \n", + "1 Heating_Commercial (space heating)_Liquid fossil 2020 \n", + "2 Heating_Commercial (space heating)_Natural gas 2020 \n", + "3 Heating_Commercial (space heating)_Solid biomass 2020 \n", + "4 Heating_Commercial (space heating)_Solid coal 2020 \n", + "\n", + " act_category value \n", + "0 Manufacture of basic chemicals NaN \n", + "1 Manufacture of basic chemicals NaN \n", + "2 Manufacture of basic chemicals NaN \n", + "3 Manufacture of basic chemicals NaN \n", + "4 Manufacture of basic chemicals NaN " + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = arr.to_dataframe(\"x\").unstack()[\"x\"].reset_index().melt(id_vars=[\n", + " \"model\", \"scenario\", \"region\", \"impact_category\", \"variable\", \"year\"\n", + "])\n", + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "9f451db5-7bcb-4b02-b8f6-76c3e260a3ac", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1906632" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "years = [2020, 2030, 2040, 2050, 2060, 2070, 2080, 2090, 2100]\n", + "df_short = df.loc[df[\"year\"].isin(years)]\n", + "len(df_short)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "d91c5cba-2b06-4237-96d5-c09a8752df8a", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/var/folders/cn/pys1j9rn0y7djkhv3hfdtrs00000gn/T/ipykernel_16102/1532667233.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_short[['Main sector', 'Sub sector', 'Energy carrier']] = df_short['variable'].str.split('_', expand=True)\n", + "/var/folders/cn/pys1j9rn0y7djkhv3hfdtrs00000gn/T/ipykernel_16102/1532667233.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_short[['Main sector', 'Sub sector', 'Energy carrier']] = df_short['variable'].str.split('_', expand=True)\n", + "/var/folders/cn/pys1j9rn0y7djkhv3hfdtrs00000gn/T/ipykernel_16102/1532667233.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_short[['Main sector', 'Sub sector', 'Energy carrier']] = df_short['variable'].str.split('_', expand=True)\n" + ] + } + ], + "source": [ + "df_short[['Main sector', 'Sub sector', 'Energy carrier']] = df_short['variable'].str.split('_', expand=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "8a317d76-b749-462d-946a-af43d4dd3728", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/var/folders/cn/pys1j9rn0y7djkhv3hfdtrs00000gn/T/ipykernel_16102/3107786552.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_short[\"impact_category\"] = df_short[\"impact_category\"].str.replace(\" - natural resource - in ground - kilogram\", \"\")\n" + ] + } + ], + "source": [ + "df_short[\"impact_category\"] = df_short[\"impact_category\"].str.replace(\" - natural resource - in ground - kilogram\", \"\")" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "e02b9327-29db-4280-9401-121fb6eb8f54", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/var/folders/cn/pys1j9rn0y7djkhv3hfdtrs00000gn/T/ipykernel_16102/1133324581.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_short[\"value\"] /= 1000\n" + ] + } + ], + "source": [ + "df_short[\"value\"] /= 1000" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "a078dea5-fd2e-48aa-83cf-5dbc42ae802b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['Cobalt', 'Lithium', 'Nickel', 'Platinum', 'Titanium', 'Vanadium',\n", + " 'Zinc'], dtype=object)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_short[\"impact_category\"].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "e24ef9b7-094b-4b63-a725-ac570045e1fd", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "371076" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(df_short.loc[~df_short[\"value\"].isnull()])" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "0b4be8e2-bf2b-4e75-978e-9933acedeada", + "metadata": {}, + "outputs": [], + "source": [ + "from pivottablejs import pivot_ui\n", + "from IPython.display import HTML" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "8b0b8d60-9048-45be-be52-3ea3b32305d1", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + " " + ], + "text/plain": [ + "" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pivot_ui(df_short.loc[~df_short[\"value\"].isnull()], outfile_path='pivottable_all_metals.html')" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "75baf250-be1a-4123-995b-2189d7198a47", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "ename": "DataPackageException", + "evalue": "Unable to load JSON at \"/Users/romain/GitHub/premise/dev/image-SSP2-RCP19/datapackage.json\"", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mMissingSchema\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/datapackage/helpers.py:55\u001b[0m, in \u001b[0;36mretrieve_descriptor\u001b[0;34m(descriptor)\u001b[0m\n\u001b[1;32m 54\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m---> 55\u001b[0m req \u001b[38;5;241m=\u001b[39m \u001b[43mrequests\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[43mthe_descriptor\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 56\u001b[0m req\u001b[38;5;241m.\u001b[39mraise_for_status()\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/requests/api.py:73\u001b[0m, in \u001b[0;36mget\u001b[0;34m(url, params, **kwargs)\u001b[0m\n\u001b[1;32m 63\u001b[0m \u001b[38;5;250m\u001b[39m\u001b[38;5;124mr\u001b[39m\u001b[38;5;124;03m\"\"\"Sends a GET request.\u001b[39;00m\n\u001b[1;32m 64\u001b[0m \n\u001b[1;32m 65\u001b[0m \u001b[38;5;124;03m:param url: URL for the new :class:`Request` object.\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 70\u001b[0m \u001b[38;5;124;03m:rtype: requests.Response\u001b[39;00m\n\u001b[1;32m 71\u001b[0m \u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[0;32m---> 73\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mrequest\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mget\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mparams\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mparams\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/requests/api.py:59\u001b[0m, in \u001b[0;36mrequest\u001b[0;34m(method, url, **kwargs)\u001b[0m\n\u001b[1;32m 58\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m sessions\u001b[38;5;241m.\u001b[39mSession() \u001b[38;5;28;01mas\u001b[39;00m session:\n\u001b[0;32m---> 59\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43msession\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrequest\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmethod\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmethod\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/requests/sessions.py:575\u001b[0m, in \u001b[0;36mSession.request\u001b[0;34m(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)\u001b[0m\n\u001b[1;32m 563\u001b[0m req \u001b[38;5;241m=\u001b[39m Request(\n\u001b[1;32m 564\u001b[0m method\u001b[38;5;241m=\u001b[39mmethod\u001b[38;5;241m.\u001b[39mupper(),\n\u001b[1;32m 565\u001b[0m url\u001b[38;5;241m=\u001b[39murl,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 573\u001b[0m hooks\u001b[38;5;241m=\u001b[39mhooks,\n\u001b[1;32m 574\u001b[0m )\n\u001b[0;32m--> 575\u001b[0m prep \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mprepare_request\u001b[49m\u001b[43m(\u001b[49m\u001b[43mreq\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 577\u001b[0m proxies \u001b[38;5;241m=\u001b[39m proxies \u001b[38;5;129;01mor\u001b[39;00m {}\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/requests/sessions.py:486\u001b[0m, in \u001b[0;36mSession.prepare_request\u001b[0;34m(self, request)\u001b[0m\n\u001b[1;32m 485\u001b[0m p \u001b[38;5;241m=\u001b[39m PreparedRequest()\n\u001b[0;32m--> 486\u001b[0m \u001b[43mp\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mprepare\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 487\u001b[0m \u001b[43m \u001b[49m\u001b[43mmethod\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mrequest\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmethod\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mupper\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 488\u001b[0m \u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mrequest\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 489\u001b[0m \u001b[43m \u001b[49m\u001b[43mfiles\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mrequest\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfiles\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 490\u001b[0m \u001b[43m \u001b[49m\u001b[43mdata\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mrequest\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdata\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 491\u001b[0m \u001b[43m \u001b[49m\u001b[43mjson\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mrequest\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mjson\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 492\u001b[0m \u001b[43m \u001b[49m\u001b[43mheaders\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmerge_setting\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 493\u001b[0m \u001b[43m \u001b[49m\u001b[43mrequest\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mheaders\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mheaders\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdict_class\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mCaseInsensitiveDict\u001b[49m\n\u001b[1;32m 494\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 495\u001b[0m \u001b[43m \u001b[49m\u001b[43mparams\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmerge_setting\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrequest\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mparams\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mparams\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 496\u001b[0m \u001b[43m \u001b[49m\u001b[43mauth\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmerge_setting\u001b[49m\u001b[43m(\u001b[49m\u001b[43mauth\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mauth\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 497\u001b[0m \u001b[43m \u001b[49m\u001b[43mcookies\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmerged_cookies\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 498\u001b[0m \u001b[43m \u001b[49m\u001b[43mhooks\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmerge_hooks\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrequest\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mhooks\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mhooks\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 499\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 500\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m p\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/requests/models.py:368\u001b[0m, in \u001b[0;36mPreparedRequest.prepare\u001b[0;34m(self, method, url, headers, files, data, params, auth, cookies, hooks, json)\u001b[0m\n\u001b[1;32m 367\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mprepare_method(method)\n\u001b[0;32m--> 368\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mprepare_url\u001b[49m\u001b[43m(\u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mparams\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 369\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mprepare_headers(headers)\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/requests/models.py:439\u001b[0m, in \u001b[0;36mPreparedRequest.prepare_url\u001b[0;34m(self, url, params)\u001b[0m\n\u001b[1;32m 438\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m scheme:\n\u001b[0;32m--> 439\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m MissingSchema(\n\u001b[1;32m 440\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mInvalid URL \u001b[39m\u001b[38;5;132;01m{\u001b[39;00murl\u001b[38;5;132;01m!r}\u001b[39;00m\u001b[38;5;124m: No scheme supplied. \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 441\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mPerhaps you meant https://\u001b[39m\u001b[38;5;132;01m{\u001b[39;00murl\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m?\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 442\u001b[0m )\n\u001b[1;32m 444\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m host:\n", + "\u001b[0;31mMissingSchema\u001b[0m: Invalid URL '/Users/romain/GitHub/premise/dev/image-SSP2-RCP19/datapackage.json': No scheme supplied. Perhaps you meant https:///Users/romain/GitHub/premise/dev/image-SSP2-RCP19/datapackage.json?", + "\nThe above exception was the direct cause of the following exception:\n", + "\u001b[0;31mDataPackageException\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[4], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m p \u001b[38;5;241m=\u001b[39m \u001b[43mPathways\u001b[49m\u001b[43m(\u001b[49m\u001b[43mdatapackage\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43m/Users/romain/GitHub/premise/dev/image-SSP2-RCP19/datapackage.json\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/GitHub/pathways/pathways/pathways.py:327\u001b[0m, in \u001b[0;36mPathways.__init__\u001b[0;34m(self, datapackage)\u001b[0m\n\u001b[1;32m 325\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m__init__\u001b[39m(\u001b[38;5;28mself\u001b[39m, datapackage):\n\u001b[1;32m 326\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdatapackage \u001b[38;5;241m=\u001b[39m datapackage\n\u001b[0;32m--> 327\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdata \u001b[38;5;241m=\u001b[39m validate_datapackage(\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mread_datapackage\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m)\n\u001b[1;32m 328\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmapping \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mget_mapping()\n\u001b[1;32m 329\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmapping\u001b[38;5;241m.\u001b[39mupdate(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mget_final_energy_mapping())\n", + "File \u001b[0;32m~/GitHub/pathways/pathways/pathways.py:351\u001b[0m, in \u001b[0;36mPathways.read_datapackage\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 343\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mread_datapackage\u001b[39m(\u001b[38;5;28mself\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m DataPackage:\n\u001b[1;32m 344\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\"Read the datapackage.json file.\u001b[39;00m\n\u001b[1;32m 345\u001b[0m \n\u001b[1;32m 346\u001b[0m \u001b[38;5;124;03m Returns\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 349\u001b[0m \u001b[38;5;124;03m The datapackage as a dictionary.\u001b[39;00m\n\u001b[1;32m 350\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m--> 351\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mDataPackage\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdatapackage\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/datapackage/package.py:102\u001b[0m, in \u001b[0;36mPackage.__init__\u001b[0;34m(self, descriptor, base_path, strict, unsafe, storage, schema, default_base_path, **options)\u001b[0m\n\u001b[1;32m 99\u001b[0m descriptor[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mresources\u001b[39m\u001b[38;5;124m'\u001b[39m]\u001b[38;5;241m.\u001b[39mappend({\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mpath\u001b[39m\u001b[38;5;124m'\u001b[39m: bucket})\n\u001b[1;32m 101\u001b[0m \u001b[38;5;66;03m# Process descriptor\u001b[39;00m\n\u001b[0;32m--> 102\u001b[0m descriptor \u001b[38;5;241m=\u001b[39m \u001b[43mhelpers\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mretrieve_descriptor\u001b[49m\u001b[43m(\u001b[49m\u001b[43mdescriptor\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 103\u001b[0m descriptor \u001b[38;5;241m=\u001b[39m helpers\u001b[38;5;241m.\u001b[39mdereference_package_descriptor(descriptor, base_path)\n\u001b[1;32m 105\u001b[0m \u001b[38;5;66;03m# Handle deprecated resource.path/url\u001b[39;00m\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/datapackage/helpers.py:62\u001b[0m, in \u001b[0;36mretrieve_descriptor\u001b[0;34m(descriptor)\u001b[0m\n\u001b[1;32m 60\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m (\u001b[38;5;167;01mIOError\u001b[39;00m, requests\u001b[38;5;241m.\u001b[39mexceptions\u001b[38;5;241m.\u001b[39mRequestException) \u001b[38;5;28;01mas\u001b[39;00m error:\n\u001b[1;32m 61\u001b[0m message \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mUnable to load JSON at \u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m%s\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m'\u001b[39m \u001b[38;5;241m%\u001b[39m descriptor\n\u001b[0;32m---> 62\u001b[0m \u001b[43msix\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mraise_from\u001b[49m\u001b[43m(\u001b[49m\u001b[43mexceptions\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mDataPackageException\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmessage\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43merror\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 63\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m error:\n\u001b[1;32m 64\u001b[0m \u001b[38;5;66;03m# Python2 doesn't have json.JSONDecodeError (use ValueErorr)\u001b[39;00m\n\u001b[1;32m 65\u001b[0m message \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mUnable to parse JSON at \u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m%s\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m. \u001b[39m\u001b[38;5;132;01m%s\u001b[39;00m\u001b[38;5;124m'\u001b[39m \u001b[38;5;241m%\u001b[39m (descriptor, error)\n", + "File \u001b[0;32m:3\u001b[0m, in \u001b[0;36mraise_from\u001b[0;34m(value, from_value)\u001b[0m\n", + "\u001b[0;31mDataPackageException\u001b[0m: Unable to load JSON at \"/Users/romain/GitHub/premise/dev/image-SSP2-RCP19/datapackage.json\"" + ] + } + ], + "source": [ + "p = Pathways(datapackage=\"/Users/romain/GitHub/premise/dev/image-SSP2-RCP19/datapackage.json\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dcd996a6-3ba8-480a-9ea7-24aced9c2fc2", + "metadata": {}, + "outputs": [], + "source": [ + "p.calculate(\n", + " methods=[\n", + " 'IPCC 2021 - climate change - GWP 100a, incl. H',\n", + " 'EN15804 - inventory indicators ISO21930 - Cumulative Energy Demand - renewable energy resources',\n", + " 'EN15804 - inventory indicators ISO21930 - Cumulative Energy Demand - non-renewable energy resources',\n", + " 'EN15804 - inventory indicators ISO21930 - use of net fresh water',\n", + " 'EF v3.1 EN15804 - particulate matter formation - impact on human health',\n", + " ],\n", + " regions=[r for r in p.scenarios.coords[\"region\"].values if r!=\"World\"],\n", + " #regions=[\"World\",],\n", + " scenarios=[\n", + " #\"SSP2-Base\",\n", + " \"SSP2-RCP19\",\n", + " ],\n", + " years=[2020, 2030, 2040, 2050, 2060, 2070, 2080, 2090, 2100],\n", + " variables=[\n", + " v for v in p.scenarios.coords[\"variables\"].values\n", + " if any(i in v for i in [\"Industry\", \"Transport\", \"Heating\"])\n", + " ],\n", + " #variables=[\"Transport_Freight_(train)_Liquid_fossil\"],\n", + " #variables = [\"Electricity\", ],\n", + " characterization=True\n", + ")\n", + "arr = p.display_results(cutoff=0.01)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2685e409-e694-436c-81f4-55eb86889685", + "metadata": {}, + "outputs": [], + "source": [ + "arr.to_netcdf(\"results_image_SSP2.nc\")" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "fd21f031-f036-47e9-b378-c4593d356334", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Coordinates:\n", + " * model (model) object 'image'\n", + " * scenario (scenario) object 'SSP2-RCP19'\n", + " * region (region) object 'BRA' 'CAN' 'CEU' ... 'USA' 'WAF' 'WEU'\n", + " * impact_category (impact_category) object 'Cobalt - natural resource - in...\n", + " * variable (variable) object 'Heating_Commercial (space heating)_El...\n", + " * act_category (act_category) object 'Manufacture of basic chemicals' ....\n", + " * year (year) int64 2020 2021 2022 2023 ... 2097 2098 2099 2100" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "arr.coords" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "3e6b3af7-0d61-4719-9401-0ee62bbbc872", + "metadata": {}, + "outputs": [], + "source": [ + "arr.values[arr.values < 0] = 0" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "43312db1-d957-402d-a936-99846e1f2768", + "metadata": {}, + "outputs": [], + "source": [ + "df.to_csv(\"results_metals_rcp19.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "975fb2b2-3111-4ccd-ae65-0481fac975b1", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "2918916" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(df)" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "9ca4a0e7-8ea6-48da-bd5d-054dec8ebaee", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
modelscenarioregionimpact_categoryvariableyearact_categoryvalueMain sectorSub sectorEnergy carrier
0imageSSP2-RCP19BRACobaltHeating_Commercial (space heating)_Electricity2020Manufacture of basic chemicalsNaNHeatingCommercial (space heating)Electricity
1imageSSP2-RCP19BRACobaltHeating_Commercial (space heating)_Liquid fossil2020Manufacture of basic chemicalsNaNHeatingCommercial (space heating)Liquid fossil
2imageSSP2-RCP19BRACobaltHeating_Commercial (space heating)_Natural gas2020Manufacture of basic chemicalsNaNHeatingCommercial (space heating)Natural gas
3imageSSP2-RCP19BRACobaltHeating_Commercial (space heating)_Solid biomass2020Manufacture of basic chemicalsNaNHeatingCommercial (space heating)Solid biomass
4imageSSP2-RCP19BRACobaltHeating_Commercial (space heating)_Solid coal2020Manufacture of basic chemicalsNaNHeatingCommercial (space heating)Solid coal
\n", + "
" + ], + "text/plain": [ + " model scenario region impact_category \\\n", + "0 image SSP2-RCP19 BRA Cobalt \n", + "1 image SSP2-RCP19 BRA Cobalt \n", + "2 image SSP2-RCP19 BRA Cobalt \n", + "3 image SSP2-RCP19 BRA Cobalt \n", + "4 image SSP2-RCP19 BRA Cobalt \n", + "\n", + " variable year \\\n", + "0 Heating_Commercial (space heating)_Electricity 2020 \n", + "1 Heating_Commercial (space heating)_Liquid fossil 2020 \n", + "2 Heating_Commercial (space heating)_Natural gas 2020 \n", + "3 Heating_Commercial (space heating)_Solid biomass 2020 \n", + "4 Heating_Commercial (space heating)_Solid coal 2020 \n", + "\n", + " act_category value Main sector \\\n", + "0 Manufacture of basic chemicals NaN Heating \n", + "1 Manufacture of basic chemicals NaN Heating \n", + "2 Manufacture of basic chemicals NaN Heating \n", + "3 Manufacture of basic chemicals NaN Heating \n", + "4 Manufacture of basic chemicals NaN Heating \n", + "\n", + " Sub sector Energy carrier \n", + "0 Commercial (space heating) Electricity \n", + "1 Commercial (space heating) Liquid fossil \n", + "2 Commercial (space heating) Natural gas \n", + "3 Commercial (space heating) Solid biomass \n", + "4 Commercial (space heating) Solid coal " + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "id": "8b959999-68c6-436a-9653-066f3a371f68", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
<xarray.DataArray 'value' (model: 1, pathway: 1, variables: 6)>\n",
+       "array([[[0.5404288940429688, 0.31976019287109375, 0.0, 0.03776106,\n",
+       "         0.5397548160000001, 0.0]]], dtype=object)\n",
+       "Coordinates:\n",
+       "  * pathway    (pathway) object 'SSP2-RCP19'\n",
+       "    region     <U3 'CHN'\n",
+       "    year       int64 2050\n",
+       "  * model      (model) <U5 'image'\n",
+       "  * variables  (variables) <U49 'Heating_Commercial (space heating)_Electrici...\n",
+       "Attributes:\n",
+       "    units:    {'dac_solvent': 'Mt CO2/yr', 'Heating_Commercial (space heating...
" + ], + "text/plain": [ + "\n", + "array([[[0.5404288940429688, 0.31976019287109375, 0.0, 0.03776106,\n", + " 0.5397548160000001, 0.0]]], dtype=object)\n", + "Coordinates:\n", + " * pathway (pathway) object 'SSP2-RCP19'\n", + " region 1\u001b[0m df[[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mMain sector\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mSub sector\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mEnergy carrier\u001b[39m\u001b[38;5;124m'\u001b[39m]] \u001b[38;5;241m=\u001b[39m \u001b[43mdf\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mvariable\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m]\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mstr\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msplit\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43m_\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mexpand\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/strings/accessor.py:136\u001b[0m, in \u001b[0;36mforbid_nonstring_types.._forbid_nonstring_types..wrapper\u001b[0;34m(self, *args, **kwargs)\u001b[0m\n\u001b[1;32m 131\u001b[0m msg \u001b[38;5;241m=\u001b[39m (\n\u001b[1;32m 132\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mCannot use .str.\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mfunc_name\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m with values of \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 133\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124minferred dtype \u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_inferred_dtype\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m.\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 134\u001b[0m )\n\u001b[1;32m 135\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mTypeError\u001b[39;00m(msg)\n\u001b[0;32m--> 136\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mfunc\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/strings/accessor.py:916\u001b[0m, in \u001b[0;36mStringMethods.split\u001b[0;34m(self, pat, n, expand, regex)\u001b[0m\n\u001b[1;32m 914\u001b[0m regex \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mTrue\u001b[39;00m\n\u001b[1;32m 915\u001b[0m result \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_data\u001b[38;5;241m.\u001b[39marray\u001b[38;5;241m.\u001b[39m_str_split(pat, n, expand, regex)\n\u001b[0;32m--> 916\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_wrap_result\u001b[49m\u001b[43m(\u001b[49m\u001b[43mresult\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mreturns_string\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mexpand\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mexpand\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mexpand\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/strings/accessor.py:400\u001b[0m, in \u001b[0;36mStringMethods._wrap_result\u001b[0;34m(self, result, name, expand, fill_value, returns_string, returns_bool)\u001b[0m\n\u001b[1;32m 398\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m expand:\n\u001b[1;32m 399\u001b[0m cons \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_orig\u001b[38;5;241m.\u001b[39m_constructor_expanddim\n\u001b[0;32m--> 400\u001b[0m result \u001b[38;5;241m=\u001b[39m \u001b[43mcons\u001b[49m\u001b[43m(\u001b[49m\u001b[43mresult\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcolumns\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mname\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mindex\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mindex\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdtype\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdtype\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 401\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 402\u001b[0m \u001b[38;5;66;03m# Must be a Series\u001b[39;00m\n\u001b[1;32m 403\u001b[0m cons \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_orig\u001b[38;5;241m.\u001b[39m_constructor\n", - "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/frame.py:809\u001b[0m, in \u001b[0;36mDataFrame.__init__\u001b[0;34m(self, data, index, columns, dtype, copy)\u001b[0m\n\u001b[1;32m 807\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m columns \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 808\u001b[0m columns \u001b[38;5;241m=\u001b[39m ensure_index(columns)\n\u001b[0;32m--> 809\u001b[0m arrays, columns, index \u001b[38;5;241m=\u001b[39m \u001b[43mnested_data_to_arrays\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 810\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;66;43;03m# error: Argument 3 to \"nested_data_to_arrays\" has incompatible\u001b[39;49;00m\n\u001b[1;32m 811\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;66;43;03m# type \"Optional[Collection[Any]]\"; expected \"Optional[Index]\"\u001b[39;49;00m\n\u001b[1;32m 812\u001b[0m \u001b[43m \u001b[49m\u001b[43mdata\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 813\u001b[0m \u001b[43m \u001b[49m\u001b[43mcolumns\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 814\u001b[0m \u001b[43m \u001b[49m\u001b[43mindex\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;66;43;03m# type: ignore[arg-type]\u001b[39;49;00m\n\u001b[1;32m 815\u001b[0m \u001b[43m \u001b[49m\u001b[43mdtype\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 816\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 817\u001b[0m mgr \u001b[38;5;241m=\u001b[39m arrays_to_mgr(\n\u001b[1;32m 818\u001b[0m arrays,\n\u001b[1;32m 819\u001b[0m columns,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 822\u001b[0m typ\u001b[38;5;241m=\u001b[39mmanager,\n\u001b[1;32m 823\u001b[0m )\n\u001b[1;32m 824\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n", - "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/internals/construction.py:520\u001b[0m, in \u001b[0;36mnested_data_to_arrays\u001b[0;34m(data, columns, index, dtype)\u001b[0m\n\u001b[1;32m 517\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_named_tuple(data[\u001b[38;5;241m0\u001b[39m]) \u001b[38;5;129;01mand\u001b[39;00m columns \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 518\u001b[0m columns \u001b[38;5;241m=\u001b[39m ensure_index(data[\u001b[38;5;241m0\u001b[39m]\u001b[38;5;241m.\u001b[39m_fields)\n\u001b[0;32m--> 520\u001b[0m arrays, columns \u001b[38;5;241m=\u001b[39m \u001b[43mto_arrays\u001b[49m\u001b[43m(\u001b[49m\u001b[43mdata\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcolumns\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdtype\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdtype\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 521\u001b[0m columns \u001b[38;5;241m=\u001b[39m ensure_index(columns)\n\u001b[1;32m 523\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m index \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n", - "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/internals/construction.py:835\u001b[0m, in \u001b[0;36mto_arrays\u001b[0;34m(data, columns, dtype)\u001b[0m\n\u001b[1;32m 832\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m arrays, columns\n\u001b[1;32m 834\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(data[\u001b[38;5;241m0\u001b[39m], (\u001b[38;5;28mlist\u001b[39m, \u001b[38;5;28mtuple\u001b[39m)):\n\u001b[0;32m--> 835\u001b[0m arr \u001b[38;5;241m=\u001b[39m \u001b[43m_list_to_arrays\u001b[49m\u001b[43m(\u001b[49m\u001b[43mdata\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 836\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(data[\u001b[38;5;241m0\u001b[39m], abc\u001b[38;5;241m.\u001b[39mMapping):\n\u001b[1;32m 837\u001b[0m arr, columns \u001b[38;5;241m=\u001b[39m _list_of_dict_to_arrays(data, columns)\n", - "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/internals/construction.py:856\u001b[0m, in \u001b[0;36m_list_to_arrays\u001b[0;34m(data)\u001b[0m\n\u001b[1;32m 853\u001b[0m content \u001b[38;5;241m=\u001b[39m lib\u001b[38;5;241m.\u001b[39mto_object_array_tuples(data)\n\u001b[1;32m 854\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 855\u001b[0m \u001b[38;5;66;03m# list of lists\u001b[39;00m\n\u001b[0;32m--> 856\u001b[0m content \u001b[38;5;241m=\u001b[39m \u001b[43mlib\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mto_object_array\u001b[49m\u001b[43m(\u001b[49m\u001b[43mdata\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 857\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m content\n", - "\u001b[0;31mKeyboardInterrupt\u001b[0m: " - ] - } - ], - "source": [ - "df[['Main sector', 'Sub sector', 'Energy carrier']] = df['variable'].str.split('_', expand=True)" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "id": "67b9d6b0-ed89-44b3-9bf1-b11aa20e1b84", - "metadata": {}, - "outputs": [], - "source": [ - "from pathways import Pathways\n", - "p = Pathways(datapackage=\"/Users/romain/GitHub/premise/dev/image-SSP2-RCP19/datapackage.json\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "db6729e1-78a9-467f-a8cb-7fa272bb2734", - "metadata": {}, - "outputs": [ + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + }, { - "name": "stdout", - "output_type": "stream", - "text": [ - "Calculating LCA results for image...\n", - "--- Calculating LCA results for SSP2-RCP19...\n", - "------ Calculating LCA results for 2020...\n", - "------ Calculating LCA results for 2030...\n", - "------ Calculating LCA results for 2040...\n" - ] + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiMAAAMXCAYAAADotlW+AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOydeziVWf//35uSw0ZSbBV2EhFC1ENyKLUnJaVSVFJTOg6dhukpyfSbJhojeb4j9Uwxw6SDw5gmHZg0RVGyUQ7FkGrIdJzooOz1+8PlftxspxJl1uu69nXtdf6ste7D517rs9biEEIIKBQKhUKhUHoIiZ4WgEKhUCgUyj8bqoxQKBQKhULpUagyQqFQKBQKpUehygiFQqFQKJQehSojFAqFQqFQehSqjFAoFAqFQulRqDJCoVAoFAqlR6HKCIVCoVAolB6lT08L0JXU19fj9evXPS0GhUKhUHoRffv2haSkZE+L0avpFcoIIQRVVVV48uRJT4tCoVAolF5I//79wePxwOFwelqUXkmvUEYaFREVFRXIysrSi4VCoVAoXQIhBM+fP0d1dTUAQE1NrYcl6p189MpIfX09o4goKyv3tDgUCoVC6WXIyMgAAKqrq6GiokKnbN4DH70Ba6ONiKysbA9LQqFQKJTeSuM7htolvh8+emWkETo1Q6FQKJT3BX3HvF96jTJCoVAoFArl44QqIxRKL6a8vBwcDgdCobDDaTw8PDBz5sw249ja2mLdunXvJBuFQqE08tEbsFIolNZRV1dHZWUlBg4c2NOiUCgUSqtQZYRC6aXU1dVBSkoKPB6vp0WhUCiUNqHTNBTKB0BERASGDBkCkUjE8p8xYwYWL16M0tJSODk5QVVVFVwuF+bm5khJSWHF5fP5+H//7//Bw8MDioqKWL58eYtpmvr6enz66acYNmwYZGRkoKuri9DQULEyBQQEQEVFBQoKClixYgXq6upalb+urg4+Pj4YMmQI5OTkMG7cOKSlpb1Tm1AolH8OVBmhUD4A5s6diwcPHuDcuXOM3+PHj3H69GksWLAANTU1cHBwQEpKCnJyciAQCODo6IiKigpWPrt374aBgQGys7Ph5+fXohyRSIShQ4fi6NGjKCgowLZt2/Dvf/8bR48eZcVLTU1FYWEhzp07h8OHDyMhIQEBAQGtyr9kyRKkp6cjNjYWeXl5mDt3Lj755BPcunXrHVuGQqH8IyAfOS9evCAFBQXkxYsXPS0KhfJOzJgxgyxdupRxR0REEB6PR968eSM2vr6+PgkLC2PcmpqaZObMmaw4ZWVlBADJyclptdzVq1eT2bNnM+7FixeTAQMGkNraWsYvPDyccLlcUl9fTwghxMbGhnh7exNCCCkpKSEcDofcu3ePle+kSZPI5s2b2640hfKRQN817xc6MkKhfCAsWLAAcXFxePXqFQAgJiYG8+fPh6SkJGpra+Hj4wN9fX30798fXC4XRUVFLUZGzMzM2i1n3759MDMzw6BBg8DlcnHgwIEW+YwePZq1kaCFhQVqampw586dFvldu3YNhBDo6OiAy+Uyv/Pnz6O0tPRtmoJCofzDoAasFMoHgqOjI0QiEX799VeYm5vjwoUL+PbbbwEAn3/+OU6fPo1vvvkG2trakJGRwZw5c1rYccjJybVZxtGjR7F+/XoEBwfDwsIC8vLy2L17NzIzMzsko7iNn0QiESQlJZGdnd1im2wul9uhfCkUyj8bqoxQKB8IMjIycHZ2RkxMDEpKSqCjo4MxY8YAAC5cuAAPDw/MmjULAFBTU4Py8vJOl3HhwgVYWlpi9erVjJ+40Yvc3Fy8ePGCOZPj8uXL4HK5GDp0aIu4JiYmqK+vR3V1NSZMmNBpmSgUCoVO01AoHxALFizAr7/+ioMHD2LhwoWMv7a2NuLj4yEUCpGbmws3N7cWK286gra2Nq5evYrTp0/j5s2b8PPzw5UrV1rEq6urw6effoqCggIkJyfD398fa9euhYREy0eGjo4OFixYAHd3d8THx6OsrAxXrlxBYGAgTp482WkZKRTKPw+qjFAoHxATJ07EgAEDUFxcDDc3N8Y/JCQESkpKsLS0hKOjIwQCAUxNTTud/8qVK+Hs7Ix58+Zh3LhxePjwIWuUpJFJkyZhxIgRsLa2houLCxwdHbF9+/ZW8z106BDc3d2xceNG6OrqYsaMGcjMzIS6unqnZaRQKP88OIQQ0tNCvAsvX75EWVkZhg0bBmlp6Z4Wh0KhUCi9EPqueb/QkREKhUKhUCg9ClVGKBQKhUKh9ChUGaFQKBQKhdKjUGWEQqFQKBRKj0KVEQqFQqFQKD0KVUYoFAqFQqH0KFQZoVAoFAqF0qNQZYRCoVAoFEqPQpURCoVCoVAoPUqvPSjv3pMXeFxb137ELkJJTgpD+st0W3ldga2tLYyNjbFnz56eFuUfR2RkJNatW4cnT550OA2fz8e6deuwbt26VuPU1dVBX18fUVFRGD9+/LsL2kNwOBwkJCRg5syZ3V62h4cHnjx5gsTExC7Ls7q6GqNGjYJQKMSQIUO6LN+ebKfOPD/S0tJgZ2eHx48fo3///u9dNsrHR69URu49eYGJ36Th1ZvOHyT2tvTrI4HfNtl2WCFp7YH3Pm7a1vKMj49H3759u6SMzhAXF4ewsDDk5OSgvr4eWlpamDNnDtauXYsBAwZ0uzw9wbx58+Dg4NDl+e7fvx+ampoftSLSXZSXl2PYsGHIycmBsbEx4x8aGoquPiVDRUUFixYtgr+/P/773/92KI2HhweioqJa+AsEApw6dapL5WukM8pNZ54flpaWqKyshKKiIoC3U8YpvZteOU3zuLauWxURAHj1RtStIzFdwYABAyAvL9+tZW7ZsgXz5s2Dubk5kpOTcf36dQQHByM3Nxc//vhjt8ryvnj9+nW7cWRkZKCiotLlZYeFhWHZsmVdnu8/CUVFxffy9b5kyRLExMTg8ePHHU7zySefoLKykvU7fPhwl8vWGRqv7848P6SkpMDj8cDhcN6naJSPmF6pjPQ2MjIyYG1tDRkZGairq8PLywu1tbVMeHR0NMzMzCAvLw8ejwc3NzdUV1cDaPj6s7OzAwAoKSmBw+HAw8MDQMMwa9Mhfz6fj507d2Lp0qWQl5eHhoYG9u/f30IWY2NjSEtLw8zMDImJieBwOBAKhe3WIysrCzt37kRwcDB2794NS0tL8Pl8TJ48GXFxcVi8eDETNzw8HMOHD4eUlBR0dXVbKCocDgcRERGYPn06ZGVloaenh0uXLqGkpAS2traQk5ODhYUFSktLmTTbt2+HsbExDh48CA0NDXC5XKxatQr19fUICgoCj8eDiooKvvrqK1ZZT58+haenJ1RUVKCgoICJEyciNzdXbL5aWlro168fCCF48uQJPD09oaqqCmlpaRgYGODEiRMAGr4Mm77wSktL4eTkBFVVVXC5XJibmyMlJaXdNm3KtWvXUFJSgmnTpjF+dXV1WLt2LdTU1CAtLQ0+n4+vv/6a1Y7h4eGYOnUqZGRkMGzYMBw7doyVr6+vL3R0dCArKwstLS34+fm1ULiSkpJgZmYGaWlpDBw4EM7OziwZfHx8MGTIEMjJyWHcuHFIS0trtz4PHjzArFmzICsrixEjRiApKYkVXlBQAAcHB3C5XKiqqmLRokV48OABE37q1ClYWVmhf//+UFZWxvTp01nXw7BhwwAAJiYm4HA4sLW1BdAwItF0ZMDW1hZeXl7w8fHBgAEDwOPxWpxgXFRUBCsrK0hLS0NfXx8pKSngcDiskU9DQ0PweDwkJCS0W/dG+vXrBx6Px/opKSm1Gv/evXuYN28elJSUoKysDCcnJ5SXl7PiHDx4EKNGjUK/fv2gpqaGtWvXAmi4/wFg1qxZ4HA4jLu167v58+PVq1fw8fGBuro6+vXrhxEjRuD7778H0DA6y+Fw8OTJE6SlpWHJkiV4+vQpOBwOOBwOtm/fji+//BKGhoYt6jRmzBhs27atw21G+TihysgHTn5+PgQCAZydnZGXl4cjR47g4sWLzAMEaHjY79ixA7m5uUhMTERZWRmjcKirqyMuLg4AUFxcjMrKSoSGhrZaXnBwMMzMzJCTk4PVq1dj1apVKCoqAgA8e/YMjo6OMDQ0xLVr17Bjxw74+vp2uC4xMTHgcrlij6wHwLycExIS4O3tjY0bN+L69etYsWIFlixZgnPnzrHi79ixA+7u7hAKhRg5ciTc3NywYsUKbN68GVevXgUAVjsBDS/95ORknDp1CocPH8bBgwcxbdo03L17F+fPn0dgYCC2bt2Ky5cvAwAIIZg2bRqqqqpw8uRJZGdnw9TUFJMmTcKjR4+YfEtKSnD06FHExcVBKBRCJBJh6tSpyMjIQHR0NAoKCrBr1y5ISkqKrXtNTQ0cHByQkpKCnJwcCAQCODo6oqKiosPt+/vvv0NHRwcKCgqM3969e5GUlISjR4+iuLgY0dHRzEumET8/P8yePRu5ublYuHAhXF1dUVhYyITLy8sjMjISBQUFCA0NxYEDBxASEsKE//rrr3B2dsa0adOQk5OD1NRUmJmZMeFLlixBeno6YmNjkZeXh7lz5+KTTz7BrVu32qxPQEAAXFxckJeXBwcHByxYsIBp88rKStjY2MDY2BhXr17FqVOncP/+fbi4uDDpa2trsWHDBly5cgWpqamQkJDArFmzIBI1jJpmZWUBAFJSUlBZWYn4+PhWZYmKioKcnBwyMzMRFBSEL7/8EmfPngUAiEQizJw5E7KyssjMzMT+/fuxZcsWsfmMHTsWFy5caLPeb8vz589hZ2cHLpeL33//HRcvXgSXy8Unn3yCurqGUdvw8HCsWbMGnp6eyM/PR1JSErS1tQEAV65cAQAcOnQIlZWVjBtoeX2Lw93dHbGxsdi7dy8KCwuxb98+cLncFvEsLS2xZ88eKCgoMKM9mzZtwtKlS1FQUMAqNy8vDzk5OczzjNKLIR85L168IAUFBeTFixeMX/7dJ0TT90S3//LvPumw3IsXLyaSkpJETk6O9ZOWliYAyOPHjwkhhCxatIh4enqy0l64cIFISEiw6tyUrKwsAoA8e/aMEELIuXPnWHk2YmNjQ7y9vRm3pqYmWbhwIeMWiURERUWFhIeHE0IICQ8PJ8rKyqxyDxw4QACQnJycdus8depUYmRk1G48S0tLsnz5cpbf3LlziYODA+MGQLZu3cq4L126RACQ77//nvE7fPgwkZaWZtz+/v5EVlaW/P3334yfQCAgfD6f1NfXM366urrk66+/JoQQkpqaShQUFMjLly9Z8gwfPpxEREQw+fbt25dUV1cz4adPnyYSEhKkuLhYbB0PHTpEFBUV22wHfX19EhYWxrg1NTVJSEhIq/G9vb3JxIkTWX6fffYZmThxIhGJRGLTACArV65k+Y0bN46sWrWq1XKCgoLImDFjGLeFhQVZsGCB2LglJSWEw+GQe/fusfwnTZpENm/e3GoZzfu3pqaGcDgckpycTAghxM/Pj0yZMoWV5s6dOwRAq21eXV1NAJD8/HxCCCFlZWVir93FixcTJycnxm1jY0OsrKxYcczNzYmvry8hhJDk5GTSp08fUllZyYSfPXuWACAJCQmsdOvXrye2trat1ru5HOKeEV9++SUTp2kZ33//PdHV1WX19atXr4iMjAw5ffo0IYSQwYMHky1btrRapjiZxV3fhLCfH8XFxQQAOXv2rNh8mz+DWrv+p06dyrr21q1b1+H2et+Ie9dQuo5eacD6sWBnZ4fw8HCWX2ZmJhYuXMi4s7OzUVJSgpiYGMaPEAKRSISysjLo6ekhJycH27dvh1AoxKNHj5gvv4qKCujr63dKJiMjI+Y/h8MBj8djpnyKi4thZGQEaWlpJs7YsWM7nDchpENzxoWFhfD09GT5jR8/vsWITlNZVVVVAYA1zKuqqoqXL1/i77//ZkYL+Hw+a55bVVUVkpKSkJCQYPk11jk7Oxs1NTVQVlZmlf3ixQvWkL+mpiYGDRrEuIVCIYYOHQodHZ126ws0fMUHBATgxIkT+PPPP/HmzRu8ePGiUyMjL168YPUN0DDlMHnyZOjq6uKTTz7B9OnTMWXKFFYcCwuLFu6mX7/Hjx/Hnj17UFJSgpqaGrx584Y1+iIUCrF8+XKxMl27dg2EkBbt8OrVqxZt2pym/SsnJwd5eXlWv5w7d07sl3dpaSl0dHRQWloKPz8/XL58GQ8ePGDdFwYGBm2W3ZYsAKCmpsa6L9TV1cHj8Zjw1u4LGRkZPH/+vMPlintGtGbk3fisaG7H8fLlS5SWlqK6uhp//vknJk2a1OHyG2l+fTdHKBRCUlISNjY2nc67KcuXL8fSpUvx7bffQlJSEjExMQgODn6nPCkfB1QZ6UHk5OSYIdJG7t69y3KLRCKsWLECXl5eLdJraGigtrYWU6ZMwZQpUxAdHY1BgwahoqICAoGAGZrtDM2t4zkcDvMQF6dMkE6sOtDR0cHFixfx+vXrdq3wxZXT3K9pHo1h4vwa5W8e3hinrTqLRCKoqamJtXFoavMhJyfHCpOR6dwy788//xynT5/GN998A21tbcjIyGDOnDmd6sOBAwciPz+f5WdqaoqysjIkJycjJSUFLi4usLe3x/Hjx9vMq7HtLl++jPnz5yMgIAACgQCKioqIjY1lvSDaqqtIJIKkpCSys7NbTFGJUySa0l6/ODo6IjAwsEU6NTU1AICjoyPU1dVx4MABDB48GCKRCAYGBt1yX7TGo0eP2nypN0fcM6I1RCIRxowZw/pwaWTQoEEshbuzNL++m9PZ6701HB0d0a9fPyQkJKBfv3549eoVZs+e3SV5Uz5sqDLygWNqaoobN260+kDKz8/HgwcPsGvXLqirqwMAYy/RiJSUFACgvr7+nWQZOXIkYmJi8OrVK/Tr109sWW3h5uaGvXv34rvvvoO3t3eL8CdPnqB///7Q09PDxYsX4e7uzoRlZGRAT0/vneR/G0xNTVFVVYU+ffq0sLVoCyMjI9y9exc3b97s0OjIhQsX4OHhgVmzZgFosCFpbnjYHiYmJggPD2/xclRQUMC8efMwb948zJkzB5988gkePXrEfGFfvnyZ1daXL1+GiYkJACA9PR2amposG4jbt2+3qGtqaiqWLFkiVqb6+npUV1djwoQJnapPW5iamiIuLg58Ph99+rR8jD18+BCFhYWIiIhgyr148SIrTlfeFxUVFbh//z4zQtfU7qEp169fZwxluxpTU1McOXKEMbQWB5/PR2pqKmPU3py+ffu+VXsYGhpCJBLh/PnzsLe3bze+lJSU2HL69OmDxYsX49ChQ+jXrx/mz58PWVnZTstD+figBqwfOL6+vrh06RLWrFkDoVCIW7duISkpCZ999hmAhtERKSkphIWF4Y8//kBSUhJ27NjBykNTUxMcDgcnTpzAX3/9hZqamreSxc3NDSKRCJ6enigsLGS+5IGWIxniGDduHHx8fLBx40b4+Pjg0qVLuH37NlJTUzF37lxmT4XPP/8ckZGR2LdvH27duoVvv/0W8fHx2LRp01vJ/S7Y29vDwsICM2fOxOnTp1FeXo6MjAxs3bq1TUXMxsYG1tbWmD17Ns6ePcuMTrS2P4S2tjbi4+MhFAqRm5vLtHVnsLOzQ21tLW7cuMH4hYSEIDY2FkVFRbh58yaOHTsGHo/HGtU5duwYDh48iJs3b8Lf3x9ZWVmM4a+2tjYqKioQGxuL0tJS7N27t8VqEH9/fxw+fBj+/v4oLCxEfn4+goKCADSMhi1YsADu7u6Ij49HWVkZrly5gsDAQJw8ebJT9WvKmjVr8OjRI7i6uiIrKwt//PEHzpw5g6VLl6K+vp5ZTbJ//36UlJTgt99+w4YNG1h5qKioQEZGhjF+ffr06VvJMnnyZAwfPhyLFy9GXl4e0tPTGeWt6X3x/PlzZGdnt5gma4tXr16hqqqK9Wu6YqgpCxYswMCBA+Hk5IQLFy6grKwM58+fh7e3NzPiun37dgQHB2Pv3r24desWrl27hrCwMCaPRmWlqqqqU0uQ+Xw+Fi9ejKVLlzJG9GlpaTh69Gir8WtqapCamooHDx6wpq6WLVuG3377DcnJyVi6dGmHZaB83PRKZURJTgr9+nRv1fr1kYCSnFSX52tkZITz58/j1q1bmDBhAkxMTODn58cMRQ8aNAiRkZE4duwY9PX1sWvXLkZBaGTIkCEICAjAF198AVVV1RYrTDqKgoICfvnlFwiFQhgbG2PLli3MkrvmtgqtERgYiJ9++gmZmZkQCAQYNWoUNmzYACMjI2Zp78yZMxEaGordu3dj1KhRiIiIwKFDh97bF2VbcDgcnDx5EtbW1li6dCl0dHQwf/58lJeXM1/BrREXFwdzc3O4urpCX18fPj4+rX51hoSEQElJCZaWlnB0dIRAIICpqWmnZFVWVoazszNrmJ7L5SIwMBBmZmYwNzdHeXk5Tp48yRqyDwgIQGxsLIyMjBAVFYWYmBjG1sjJyQnr16/H2rVrYWxsjIyMDPj5+bHKtbW1xbFjx5CUlARjY2NMnDgRmZmZTPihQ4fg7u6OjRs3QldXFzNmzEBmZiYzkvc2DB48GOnp6aivr4dAIICBgQG8vb2hqKgICQkJSEhIIDY2FtnZ2TAwMMD69euxe/duVh59+vTB3r17ERERgcGDB8PJyemtZJGUlERiYiJqampgbm6OZcuWYevWrQDY98XPP/8MDQ2NTo0QnTp1CmpqaqyflZWV2LiysrL4/fffoaGhAWdnZ+jp6WHp0qV48eIFM1KyePFi7NmzB9999x1GjRqF6dOns1Y1BQcH4+zZs1BXV2dGxzpKeHg45syZg9WrV2PkyJFYvnw5awuCplhaWmLlypWYN28eBg0axCivADBixAhYWlpCV1cX48aN65QMlI8XDunMpP8HyMuXL1FWVoZhw4axbny6HXz3EBMTw+wZ0FXzxpS3Jz8/H/b29mINGcXRk9uJ92bS09NhZWWFkpISDB8+HECDUeu6devg5ubWw9J92BBCMHLkSKxYsaLFaFZP0tq7htI19FqbkSH9Zf6RysH75ocffoCWlhaGDBmC3Nxc+Pr6wsXFhSoiHwiGhoYICgpCeXm52A2kKO+HhIQEcLlcjBgxAiUlJfD29sb48eMZRaS6uhpz5syBq6trD0v6YVNdXY0ff/wR9+7dE2uDROm99FplhPJ+qKqqwrZt21BVVQU1NTXMnTuX2bF05cqViI6OFptu4cKF2LdvX3eK+o+l6U62lO7h2bNn8PHxwZ07dzBw4EDY29uzVhypqKjAx8eHcbe37L6goAAaGhrvVeYPEVVVVQwcOBD79+9vc6dZSu+j107TULqf6upq/P3332LDFBQU3stZLBTKx8ibN2/aXC3V2iohSs9B3zXvF3q1U7oMFRUVqnBQKB2gT58+Hd4/hEL5J9ArV9NQKBQKhUL5eKDKCIVCoVAolB6FKiMUCoVCoVB6FKqMUCgUCoVC6VGoMkKhUCgUCqVH6b3KyJM7wJ/C7vs9udNNFes6bG1tsW7dup4W4x9JZGQk63yYjsDn87Fnz54249TV1UFbWxvp6elvL9wHAIfDQWJiYo+U7eHh0eU70lZXV2PQoEG4d+9el+X5Ptpo+/btMDY2bjNOR9onMTER2trakJSUfO/PmOby0Ofax0nvXNr75A7wnzHAm1fdV2affsDabKB/x87b8PDwwJMnT1o8TNLS0mBnZ4fHjx93+mXVGq3lGR8f3+Jo9O4gLi4OYWFhyMnJQX19PbS0tDBnzhysXbuWOUm2tzNv3jw4ODh0eb779++HpqYmxo8f3+V59zbKy8sxbNgw5OTksF7AoaGh6Ortl1RUVLBo0SL4+/vjv//9b4fStPaMaKSysrLLNwbbtGkTcwjnu7BixQosWbIEXl5eHTqW4F14H/1F6X5658jI84fdq4gADeU9f9i9Zb4jAwYMeO8PiuZs2bIF8+bNg7m5OZKTk3H9+nUEBwcjNzcXP/74Y7fK8r54/fp1u3FkZGTey54sYWFhWLZsWZfn+09CUVGxyz4EmrJkyRLExMR06jTctuDxeOjXr1+X5NUIl8uFsrLyO+VRU1OD6upqCAQCDB48+L0/Y95Xf1G6l96pjPQyMjIyYG1tDRkZGairq8PLy4t1GmZ0dDTMzMwgLy8PHo8HNzc3VFdXA2j4+rOzswMAKCkpgcPhwMPDA0DL4Uw+n4+dO3di6dKlkJeXh4aGBvbv399CFmNjY0hLS8PMzAyJiYngcDgQCoXt1iMrKws7d+5EcHAwdu/eDUtLS/D5fEyePBlxcXGsbczDw8MxfPhwSElJQVdXt4WiwuFwEBERgenTp0NWVhZ6enq4dOkSSkpKYGtrCzk5OVhYWKC0tJRJ0zgEffDgQWhoaIDL5WLVqlWor69HUFAQeDweVFRUmO3tG3n69Ck8PT2hoqICBQUFTJw4Ebm5uWLz1dLSQr9+/UAIwZMnT+Dp6QlVVVVIS0vDwMAAJ06cANBymqa0tBROTk5QVVUFl8uFubk5UlJS2m3Tply7dg0lJSWYNm0a41dXV4e1a9dCTU0N0tLS4PP5+Prrr1ntGB4ejqlTp0JGRgbDhg3DsWPHWPn6+vpCR0cHsrKy0NLSgp+fXwuFKykpCWZmZpCWlsbAgQPh7OzMksHHxwdDhgyBnJwcxo0bh7S0tHbr8+DBA8yaNQuysrIYMWIEkpKSWOEFBQVwcHAAl8uFqqoqFi1ahAcPHjDhp06dgpWVFfr37w9lZWVMnz6ddT0MGzYMAGBiYgIOh8OcCi1u2N/Lyws+Pj4YMGAAeDwetm/fzpKlqKgIVlZWkJaWhr6+PlJSUlpMoxgaGoLH4yEhIaHduneE5vlnZWXBxMSEuTcTEhJY96a4qcHG+7eR5tM09fX12LBhA9OGPj4+bY5CpKWlMcrHxIkTweFwmL6Oi4vDqFGj0K9fP/D5fNZ2+QDw3XffYcSIEZCWloaqqirmzJnDhB0/fhyGhoaQkZGBsrIy7O3tmWfg+5hWo3Q/VBn5wMnPz4dAIICzszPy8vJw5MgRXLx4EWvXrmXi1NXVYceOHcjNzUViYiLKysoYhUNdXR1xcXEAgOLiYlRWViI0NLTV8oKDg2FmZoacnBysXr0aq1atQlFREYCG8zccHR1haGiIa9euYceOHfD19e1wXWJiYsDlcrF69Wqx4Y0PyoSEBHh7e2Pjxo24fv06M+R77tw5VvwdO3bA3d0dQqEQI0eOhJubG1asWIHNmzfj6tWrAMBqJ6DhpZ+cnIxTp07h8OHDOHjwIKZNm4a7d+/i/PnzCAwMxNatW3H58mUADSeITps2DVVVVTh58iSys7NhamqKSZMm4dGjR0y+JSUlOHr0KOLi4iAUCiESiTB16lRkZGQgOjoaBQUF2LVrFyQlJcXWvaamBg4ODkhJSUFOTg4EAgEcHR1RUVHR4fb9/fffoaOjwxwXDwB79+5FUlISjh49iuLiYkRHR4PP57PS+fn5Yfbs2cjNzcXChQvh6uqKwsJCJlxeXh6RkZEoKChAaGgoDhw4gJCQECb8119/hbOzM6ZNm4acnBykpqbCzMyMCV+yZAnS09MRGxuLvLw8zJ07F5988gnr6HpxBAQEwMXFBXl5eXBwcMCCBQuYNq+srISNjQ2MjY1x9epVnDp1Cvfv34eLiwuTvra2Fhs2bMCVK1eQmpoKCQkJzJo1CyKRCEDDyxsAUlJSUFlZifj4+FZliYqKgpycHDIzMxEUFIQvv/wSZ8+eBQCIRCLMnDkTsrKyyMzMxP79+7Flyxax+YwdOxYXLlxos95vQ21tLaZPnw5dXV1kZ2dj+/bt2LRp0zvnGxwcjIMHD+L777/HxYsX8ejRozaVKUtLSxQXFwNoUD4qKythaWmJ7OxsuLi4YP78+cjPz8f27dvh5+eHyMhIAMDVq1fh5eWFL7/8EsXFxTh16hSsra0BNPS1q6srli5disLCQqSlpcHZ2ZlOzfQ2yEfOixcvSEFBAXnx4sX/PO/lEOKv0P2/ezkdlnvx4sVEUlKSyMnJsX7S0tIEAHn8+DEhhJBFixYRT09PVtoLFy4QCQkJdp2bkJWVRQCQZ8+eEUIIOXfuHCvPRmxsbIi3tzfj1tTUJAsXLmTcIpGIqKiokPDwcEIIIeHh4URZWZlV7oEDBwgAkpPTft2nTp1KjIyM2o1naWlJli9fzvKbO3cucXBwYNwAyNatWxn3pUuXCADy/fffM36HDx8m0tLSjNvf35/IysqSv//+m/ETCASEz+eT+vp6xk9XV5d8/fXXhBBCUlNTiYKCAnn58iVLnuHDh5OIiAgm3759+5Lq6mom/PTp00RCQoIUFxeLreOhQ4eIoqJim+2gr69PwsLCGLempiYJCQlpNb63tzeZOHEiy++zzz4jEydOJCKRSGwaAGTlypUsv3HjxpFVq1a1Wk5QUBAZM2YM47awsCALFiwQG7ekpIRwOBxy7949lv+kSZPI5s2bWy2jef/W1NQQDodDkpOTCSGE+Pn5kSlTprDS3LlzhwBotc2rq6sJAJKfn08IIaSsrEzstbt48WLi5OTEuG1sbIiVlRUrjrm5OfH19SWEEJKcnEz69OlDKisrmfCzZ88SACQhIYGVbv369cTW1rbVerclR3Oa5h8REUEGDBhAamtrmfDw8HBW/cRdcwkJCaTpa8Df35+MHj2acaupqZFdu3Yx7tevX5OhQ4e2Kdfjx48JAHLu3DnGz83NjUyePJkV7/PPPyf6+vqEEELi4uKIgoIC695sJDs7mwAg5eXlYssT119Nn2tdhdh3DaXLoCMjPYidnR2EQiHr19y4LTs7G5GRkeByucxPIBBAJBKhrKwMAJCTkwMnJydoampCXl6eGW7uzFd1I0ZGRsx/DocDHo/HTPkUFxfDyMiIdUjU2LFjO5w3IYQ1JNwahYWFLQwwx48fz/paby6rqqoqgIah8KZ+L1++ZB3ex+fzWXPYqqqq0NfXh4SEBMuvsc7Z2dmoqamBsrIyqw/KyspYQ/6ampoYNGgQ4xYKhRg6dCh0dHTarS/Q8GXr4+MDfX199O/fH1wuF0VFRZ3qwxcvXrQ4wMvDwwNCoRC6urrw8vLCmTNnWqSzsLBo4W7a1sePH4eVlRV4PB64XC78/PxYcgmFQkyaNEmsTNeuXQMhBDo6Oqz2O3/+PKv9xNG0f+Xk5CAvL8/ql3PnzrHyHDlyJAAw+ZaWlsLNzQ1aWlpQUFBgpmXe9b4AADU1NdZ9oa6uDh6Px4S3dl/IyMjg+fPnnS6/PQoLCzF69GjIysoyfs37tbM8ffoUlZWVrHz69OnDGvXqjHzi7ulbt26hvr4ekydPhqamJrS0tLBo0SLExMQw7TR69GhMmjQJhoaGmDt3Lg4cONBldjeUD4feuZrmI0FOTq7FYVl3795luUUiEVasWAEvL68W6TU0NFBbW4spU6ZgypQpiI6OxqBBg1BRUQGBQIC6urpOy9R8dQ2Hw2GGtcUpE6QTQ6U6Ojq4ePEiXr9+3e4qHnHlNPdrmkdjmDi/RvmbhzfGaavOIpEIampqYm0cms6/y8nJscJkZGTE1qs1Pv/8c5w+fRrffPMNtLW1ISMjgzlz5nSqDwcOHIj8/HyWn6mpKcrKypCcnIyUlBS4uLjA3t4ex48fbzOvxra7fPky5s+fj4CAAAgEAigqKiI2NpY1399WXUUiESQlJZGdnd1iiorL5bYpQ3v94ujoiMDAwBbp1NTUAACOjo5QV1fHgQMHMHjwYIhEIhgYGHTLfdEajx49YimtXUVH7kMJCYkW8TpibN0VtPfskJeXx7Vr15CWloYzZ85g27Zt2L59O65cuYL+/fvj7NmzyMjIwJkzZxAWFoYtW7YgMzOTUTApHz90ZOQDx9TUFDdu3IC2tnaLn5SUFIqKivDgwQPs2rULEyZMwMiRI5kvtkakpKQANBijvQsjR45EXl4eXr3630qlRtuMjuDm5oaamhp89913YsOfPHkCANDT08PFixdZYRkZGdDT0+u80O+IqakpqqqqmFNWm/4GDhzYajojIyPcvXsXN2/e7FA5Fy5cgIeHB2bNmsUYOrZ1xLw4TExMUFRU1OKFo6CggHnz5uHAgQM4cuQI4uLiWPYujfYxTd2Nowzp6enQ1NTEli1bYGZmhhEjRuD27dst6pqamtqqTPX19aiurm7Rfk1HEjpL433B5/Nb5CsnJ4eHDx+isLAQW7duxaRJk6Cnp9fia7or74uKigrcv3+f8bty5YrYuNevX4eJick7lScOfX195Obm4sWLF4xf834dNGgQnj17xjJ+b8vwXFFREWpqaqx83rx5g+zs7LeST9w9raOjwyipffr0gb29PYKCgpCXl4fy8nL89ttvABqUv/HjxyMgIAA5OTmQkpLqMkNgyocBVUY+cHx9fXHp0iWsWbMGQqEQt27dQlJSErMXgIaGBqSkpBAWFoY//vgDSUlJ2LFjBysPTU1NcDgcnDhxAn/99RdqamreShY3NzeIRCJ4enqisLCQ+ZIHWo5kiGPcuHHw8fHBxo0b4ePjg0uXLuH27dtITU3F3LlzERUVBaBhlCAyMhL79u3DrVu38O233yI+Pr5LDPI6i729PSwsLDBz5kycPn0a5eXlyMjIwNatW9tUxGxsbGBtbY3Zs2fj7NmzzOjEqVOnxMbX1tZGfHw8hEIhcnNzmbbuDHZ2dqitrcWNGzcYv5CQEMTGxqKoqAg3b97EsWPHwOPxWKM6x44dw8GDB3Hz5k34+/sjKyuLMfzV1tZGRUUFYmNjUVpair1797Z4Cfj7++Pw4cPw9/dHYWEh8vPzERQUBKBhNGzBggVwd3dHfHw8ysrKcOXKFQQGBuLkyZOdql9T1qxZg0ePHsHV1RVZWVn4448/cObMGSxduhT19fVQUlKCsrIy9u/fj5KSEvz222/YsGEDKw8VFRXIyMgwxq9Pnz59K1kmT56M4cOHY/HixcjLy0N6ejpjwNr0vnj+/Dmys7MxZcqUDuf99OnTFlO54qaZ3NzcICEhgU8//RQFBQU4efIkc282Mm7cOMjKyuLf//43SkpK8NNPPzEGpK3h7e2NXbt2ISEhAUVFRVi9ejXz0dAZNm7ciNTUVOzYsQM3b95EVFQU/vOf/zD39IkTJ7B3714IhULcvn0bP/zwA0QiEXR1dZGZmYmdO3fi6tWrqKioQHx8PP76668e+TihvD96pzIiq9ywCVl30qdfQ7ldjJGREc6fP49bt25hwoQJMDExgZ+fHzMUPWjQIERGRuLYsWPQ19fHrl27WjyEhgwZgoCAAHzxxRdQVVVtscKkoygoKOCXX36BUCiEsbExtmzZgm3btgFAC1uF1ggMDMRPP/2EzMxMCAQCjBo1Chs2bICRkRGztHfmzJkIDQ3F7t27MWrUKERERODQoUOMLUx3wuFwcPLkSVhbW2Pp0qXQ0dHB/PnzUV5eztiptEZcXBzMzc3h6uoKfX19+Pj4tPoVHhISAiUlJVhaWsLR0RECgQCmpqadklVZWRnOzs6IiYlh/LhcLgIDA2FmZgZzc3OUl5fj5MmTLBuZgIAAxMbGwsjICFFRUYiJiYG+vj4AwMnJCevXr8fatWthbGyMjIwM+Pn5scq1tbXFsWPHkJSUBGNjY0ycOBGZmZlM+KFDh+Du7o6NGzdCV1cXM2bMQGZmJtTVO7ZBoDgGDx6M9PR01NfXQyAQwMDAAN7e3lBUVISEhAQkJCQQGxuL7OxsGBgYYP369di9ezcrjz59+mDv3r2IiIjA4MGD4eTk9FaySEpKIjExETU1NTA3N8eyZcuwdetWAOz74ueff4aGhgYmTJjQ4bzT0tJgYmLC+jXec03hcrn45ZdfUFBQABMTE2zZsqXFFNaAAQMQHR2NkydPwtDQEIcPH26xRLk5GzduhLu7Ozw8PGBhYQF5eXnMmjWrw/I3YmpqiqNHjyI2NhYGBgbYtm0bvvzyS2bVX//+/REfH4+JEydCT08P+/btw+HDhzFq1CgoKCjg999/h4ODA3R0dLB161YEBwdj6tSpnZaD8uHCIZ2Z9P8AefnyJcrKyjBs2DD2C/HJne7dhExWucO7r/YmYmJisGTJEjx9+rTTdhKUric/Px/29vYoKSnp0GZTHA4HCQkJdJ+GLiY9PR1WVlYoKSnB8OHDATQYta5btw5ubm7dIkNrO8xS3o5W3zWULqH3GrD2V/9HKgfvmx9++AFaWloYMmQIcnNz4evrCxcXF6qIfCAYGhoiKCgI5eXlrJVFlPdLQkICuFwuRowYgZKSEnh7e2P8+PGMIlJdXY05c+bA1dW1hyWlUD5Meq8yQnkvVFVVYdu2baiqqoKamhrmzp3L7Fi6cuVKREdHi023cOFC7Nu3rztF/cfSdCdbSvfw7Nkz+Pj44M6dOxg4cCDs7e1ZK45UVFTg4+PDuCsqKpipMHEUFBRAQ0PjvcpMoXxI9N5pGkq3U11dzdrToykKCgrv5SwWCuVj5M2bN22uluLz+ejTh34rfkjQd837hV7tlC5DRUWFKhwUSgdoXCpOoVAa6J2raSgUCoVCoXw0UGWEQqFQKBRKj0KVEQqFQqFQKD0KVUYoFAqFQqH0KFQZoVAoFAqF0qP02tU0lTWVePyq+46ZVuqnBDWuWreV1xXY2trC2NgYe/bs6WlR/nFERkZi3bp1nTrng8/nY926dVi3bl2rcerq6qCvr4+oqKgWR7Z/TPTkzrAeHh548uQJEhMTuyzP6upqjBo1CkKhEEOGDOmyfD9U6O6vlM7SK5WRyppKTE+cjrr6zh8V/rZISUrhxMwTHVZIWnvgpaWlwc7ODo8fP2YdZvYutJZnfHx8i6PRu4O4uDiEhYUhJycH9fX10NLSwpw5c7B27VoMGDCg2+XpCebNmwcHB4cuz3f//v3Q1NT8qBWR7qK1F2ZoaGiLk4/fFRUVFSxatAj+/v7473//26E0Hh4eiIqKwtdff40vvviC8U9MTMSsWbM6JSP98KB86PTKaZrHrx53qyICAHX1dd06EtMVDBgwoEPnl3QlW7Zswbx582Bubo7k5GRcv34dwcHByM3NxY8//titsrwvXr9+3W4cGRmZ97InS1hYGJYtW9bl+f6TUFRU7LIPgaYsWbIEMTExePy4488JaWlpBAYGdirN+6Qj1zaF8jb0SmWkt5GRkQFra2vIyMhAXV0dXl5eqK2tZcKjo6NhZmYGeXl58Hg8uLm5obq6GkDD15+dnR0AQElJCRwOhzkp09bWljXkz+fzsXPnTixduhTy8vLQ0NDA/v37W8hibGwMaWlpmJmZITExERwOB0KhsN16ZGVlYefOnQgODsbu3bthaWkJPp+PyZMnIy4ujrWNeXh4OIYPHw4pKSno6uq2UFQ4HA4iIiIwffp0yMrKQk9PD5cuXUJJSQlsbW0hJycHCwsLlJaWMmm2b98OY2NjHDx4EBoaGuByuVi1ahXq6+sRFBQEHo8HFRUVZnv7Rp4+fQpPT0+oqKhAQUEBEydORG5urth8tbS00K9fPxBC8OTJE3h6ekJVVRXS0tIwMDDAiRMnADRM0zR94ZWWlsLJyQmqqqrgcrkwNzdHSkpKu23alGvXrqGkpATTpk1j/Orq6rB27VqoqalBWloafD4fX3/9Nasdw8PDMXXqVMjIyGDYsGE4duwYK19fX1/o6OhAVlYWWlpa8PPza/FSSkpKgpmZGaSlpTFw4EA4OzuzZPDx8cGQIUMgJyeHcePGIS0trd36PHjwALNmzYKsrCxGjBiBpKQkVnhBQQEcHBzA5XKhqqqKRYsW4cGDB0z4qVOnYGVlhf79+0NZWRnTp09nXQ/Dhg0DAJiYmIDD4TCnQnt4eLCmh2xtbeHl5QUfHx8MGDAAPB6vxWm3RUVFsLKygrS0NPT19ZGSkgIOh8Ma+TQ0NASPx0NCQkK7dW/E3t4ePB6P1WfNefjwIVxdXTF06FDIysoyJ/I24uHhgfPnzyM0NBQcDgccDgfl5eUtrkEAzP3cSGvXdntt2xEqKysxbdo05rr76aefwOfzWaM33377LQwNDSEnJwd1dXWsXr0aNTU1TPjt27fh6OgIJSUlyMnJYdSoUTh58mSn5KB8GFBl5AMnPz8fAoEAzs7OyMvLw5EjR3Dx4kWsXbuWiVNXV4cdO3YgNzcXiYmJKCsrYxQOdXV1xMXFAQCKi4tRWVmJ0NDQVssLDg6GmZkZcnJysHr1aqxatQpFRUUAGs7fcHR0hKGhIa5du4YdO3bA19e3w3WJiYkBl8vF6tWrxYY3PhgTEhLg7e2NjRs34vr161ixYgWWLFmCc+fOseLv2LED7u7uEAqFGDlyJNzc3LBixQps3rwZV69eBQBWOwENL/3k5GScOnUKhw8fxsGDBzFt2jTcvXsX58+fR2BgILZu3YrLly8DAAghmDZtGqqqqnDy5ElkZ2fD1NQUkyZNwqNHj5h8S0pKcPToUcTFxUEoFEIkEmHq1KnIyMhAdHQ0CgoKsGvXLkhKSoqte01NDRwcHJCSkoKcnBwIBAI4OjqioqKiw+37+++/Q0dHBwoKCozf3r17kZSUhKNHj6K4uBjR0dHg8/msdH5+fpg9ezZyc3OxcOFCuLq6orCwkAmXl5dHZGQkCgoKEBoaigMHDiAkJIQJ//XXX+Hs7Ixp06YhJycHqampMDMzY8KXLFmC9PR0xMbGIi8vD3PnzsUnn3yCW7dutVmfgIAAuLi4IC8vDw4ODliwYAHT5pWVlbCxsYGxsTGuXr2KU6dO4f79+3BxcWHS19bWYsOGDbhy5QpSU1MhISGBWbNmQSQSAWhQjgEgJSUFlZWViI+Pb1WWqKgoyMnJITMzE0FBQfjyyy9x9uxZAIBIJMLMmTMhKyuLzMxM7N+/H1u2bBGbz9ixY3HhwoU2690USUlJ7Ny5E2FhYbh7967YOC9fvsSYMWNw4sQJXL9+HZ6enli0aBEyMzMBNEw7WVhYYPny5aisrERlZSXU1Tt+iGjzaxtov207gru7O/7880+kpaUhLi4O+/fvZz6iGpGQkMDevXtx/fp1REVF4bfffmOd8bNmzRq8evUKv//+O/Lz8xEYGAgul9thGSgfEOQj58WLF6SgoIC8ePGC8bvx4AYxiDTo9t+NBzc6LPfixYuJpKQkkZOTY/2kpaUJAPL48WNCCCGLFi0inp6erLQXLlwgEhISrDo3JSsriwAgz549I4QQcu7cOVaejdjY2BBvb2/GrampSRYuXMi4RSIRUVFRIeHh4YQQQsLDw4mysjKr3AMHDhAAJCcnp906T506lRgZGbUbz9LSkixfvpzlN3fuXOLg4MC4AZCtW7cy7kuXLhEA5Pvvv2f8Dh8+TKSlpRm3v78/kZWVJX///TfjJxAICJ/PJ/X19Yyfrq4u+frrrwkhhKSmphIFBQXy8uVLljzDhw8nERERTL59+/Yl1dXVTPjp06eJhIQEKS4uFlvHQ4cOEUVFxTbbQV9fn4SFhTFuTU1NEhIS0mp8b29vMnHiRJbfZ599RiZOnEhEIpHYNADIypUrWX7jxo0jq1atarWcoKAgMmbMGMZtYWFBFixYIDZuSUkJ4XA45N69eyz/SZMmkc2bN7daRvP+rampIRwOhyQnJxNCCPHz8yNTpkxhpblz5w4B0GqbV1dXEwAkPz+fEEJIWVmZ2Gt38eLFxMnJiXHb2NgQKysrVhxzc3Pi6+tLCCEkOTmZ9OnTh1RWVjLhZ8+eJQBIQkICK9369euJra1tq/VuTY5//etfZOnSpYQQQhISEkh7j24HBweyceNGVh2a3uuEiL8Gm+ct7toWR0fbtpHCwkICgFy5coXxu3XrFgHQ5jV+9OhRoqyszLgNDQ3J9u3b25StqxD3rqF0HXRkpAexs7ODUChk/Zobt2VnZyMyMhJcLpf5CQQCiEQilJWVAQBycnLg5OQETU1NyMvLM8PNnfmqbsTIyIj5z+FwwOPxmK+V4uJiGBkZsQ6JGjt2bIfzJoSwhoBbo7CwsIUB5vjx41lf681lVVVVBdAwFN7U7+XLl6zD+/h8PstORlVVFfr6+pCQkGD5NdY5OzsbNTU1UFZWZvVBWVkZa1haU1MTgwYNYtxCoRBDhw6Fjo5Ou/UFGr40fXx8oK+vj/79+4PL5aKoqKhTffjixYsWB3h5eHhAKBRCV1cXXl5eOHPmTIt0FhYWLdxN2/r48eOwsrICj8cDl8uFn58fSy6hUIhJkyaJlenatWsghEBHR4fVfufPn293WL9p/8rJyUFeXp7VL+fOnWPlOXLkSABg8i0tLYWbmxu0tLSgoKDATMu8630BAGpqaqz7Ql1dHTwejwlv7b6QkZHB8+fPO11+YGAgoqKiUFBQ0CKsvr4eX331FYyMjJjr9MyZM29VT3E0v7aBd2/b4uJi9OnTB6ampoyftrY2lJSUWPHOnTuHyZMnY8iQIZCXl4e7uzsePnzITFN7eXnh//2//4fx48fD398feXl571JVSg/SK1fTfCzIycm1OCyr+VCsSCTCihUr4OXl1SK9hoYGamtrMWXKFEyZMgXR0dEYNGgQKioqIBAIUFfXeSPe5qtrOBwOM/QqTpkgnbDo19HRwcWLF/H69et2V/GIK6e5X9M8GsPE+TUdOhZXv7bqLBKJoKamJtbGoel8u5ycHCtMRkZGbL1a4/PPP8fp06fxzTffQFtbGzIyMpgzZ06n+nDgwIHIz89n+ZmamqKsrAzJyclISUmBi4sL7O3tcfz48Tbzamy7y5cvY/78+QgICIBAIICioiJiY2MRHBzMxG2rriKRCJKSksjOzm4xRdXecHp7/eLo6IjAwMAW6dTUGla0OTo6Ql1dHQcOHMDgwYMhEolgYGDQLfdFazx69KjFi70jWFtbQyAQ4N///jczBdtIcHAwQkJCsGfPHsa+Yt26de3WU0JCosX9K85Atfm1Dbx727b23Gjqf/v2bTg4OGDlypXYsWMHBgwYgIsXL+LTTz9l5Fy2bBkEAgF+/fVXnDlzBl9//TWCg4Px2WefdUgOyocDHRn5wDE1NcWNGzegra3d4iclJYWioiI8ePAAu3btwoQJEzBy5MgW865SUlIAGr6g3oWRI0ciLy8Pr169YvwabTM6gpubG2pqavDdd9+JDW/cc0NPTw8XL15khWVkZEBPT6/zQr8jpqamqKqqYk5ZbfobOHBgq+mMjIxw9+5d3Lx5s0PlXLhwAR4eHpg1axZj6NjWEfPiMDExQVFRUYsHvYKCAubNm4cDBw7gyJEjiIuLY9m7NNrHNHU3jjKkp6dDU1MTW7ZsgZmZGUaMGIHbt2+3qGtqamqrMtXX16O6urpF+zUdSegsjfcFn89vka+cnBwePnyIwsJCbN26FZMmTYKenl6LFSldeV9UVFTg/v37jN+VK1fExr1+/TpMTEzeqpxdu3bhl19+QUZGBsv/woULcHJywsKFCzF69GhoaWm1sMeRkpJqUc9Bgwbh2bNnLGP4jhiid6Rt22PkyJF48+YNcnJyGL+SkhLWvjtXr17FmzdvEBwcjH/961/Q0dHBn3/+2SIvdXV1rFy5EvHx8di4cSMOHDjQKVkoHwZUGfnA8fX1xaVLl7BmzRoIhULcunULSUlJjOavoaEBKSkphIWF4Y8//kBSUhJ27NjBykNTUxMcDgcnTpzAX3/9xbJG7wxubm4QiUTw9PREYWEh8yUPtBzJEMe4cePg4+ODjRs3wsfHB5cuXcLt27eRmpqKuXPnIioqCkDDKEFkZCT27duHW7du4dtvv0V8fDw2bdr0VnK/C/b29rCwsMDMmTNx+vRplJeXIyMjA1u3bm1TEbOxsYG1tTVmz56Ns2fPMqMTp06dEhtfW1sb8fHxEAqFyM3NZdq6M9jZ2aG2thY3btxg/EJCQhAbG4uioiLcvHkTx44dA4/HY43qHDt2DAcPHsTNmzfh7++PrKwsxvBXW1sbFRUViI2NRWlpKfbu3dtiNYi/vz8OHz4Mf39/FBYWIj8/H0FBQQAaRsMWLFgAd3d3xMfHo6ysDFeuXEFgYOA7rXpYs2YNHj16BFdXV2RlZeGPP/7AmTNnsHTpUtTX10NJSQnKysrYv38/SkpK8Ntvv2HDhg2sPFRUVCAjI8MYvz59+vStZJk8eTKGDx+OxYsXIy8vD+np6YwBa9P74vnz58jOzsaUKVPeqhxDQ0MsWLAAYWFhLH9tbW2cPXsWGRkZKCwsxIoVK1BVVcWKw+fzkZmZifLycjx48AAikQjjxo2DrKws/v3vf6OkpAQ//fQTIiMj25WjI23bHiNHjoS9vT08PT2RlZWFnJwceHp6QkZGhmmz4cOH482bN8yz7ccff8S+fftY+axbtw6nT59GWVkZrl27ht9++61HPloo7w5VRj5wjIyMcP78edy6dQsTJkyAiYkJ/Pz8mKHoQYMGITIyEseOHYO+vj527drFKAiNDBkyBAEBAfjiiy+gqqraYoVJR1FQUMAvv/wCoVAIY2NjbNmyBdu2bQOAFrYKrREYGIiffvoJmZmZEAgEGDVqFDZs2AAjIyNmae/MmTMRGhqK3bt3Y9SoUYiIiMChQ4cYW5juhMPh4OTJk7C2tsbSpUuho6OD+fPno7y8nLFTaY24uDiYm5vD1dUV+vr68PHxafUrPCQkBEpKSrC0tISjoyMEAgFrPr0jKCsrw9nZGTExMYwfl8tFYGAgzMzMYG5ujvLycpw8eZJlIxMQEIDY2FgYGRkhKioKMTEx0NfXBwA4OTlh/fr1WLt2LYyNjZGRkQE/Pz9Wuba2tjh27BiSkpJgbGyMiRMnMis5AODQoUNwd3fHxo0boaurixkzZiAzM7NTKzqaM3jwYKSnp6O+vh4CgQAGBgbw9vaGoqIiJCQkICEhgdjYWGRnZ8PAwADr16/H7t27WXn06dMHe/fuRUREBAYPHgwnJ6e3kkVSUhKJiYmoqamBubk5li1bhq1btwJg3xc///wzNDQ0MGHChLeu944dO1qMfPn5+cHU1BQCgQC2trbg8Xgtdq7dtGkTJCUloa+vz0zlDhgwANHR0Th58iSzHLj5kmVxdKRtO8IPP/wAVVVVWFtbY9asWVi+fDnk5eWZNjM2Nsa3336LwMBAGBgYICYmpsUS5/r6eqxZswZ6enr45JNPoKur2+rIK+XDhkM6M+n/AfLy5UuUlZVh2LBhzEX8MezA2luIiYnBkiVL8PTp007bSVC6nvz8fNjb26OkpKRDG9r15LbrvZn09HRYWVmhpKQEw4cPB9Bg1Lpu3Tq4ubn1sHQfJnfv3oW6ujpSUlJaNYjuScS9ayhdR680YFXjquHEzBP0bJr3wA8//AAtLS0MGTIEubm58PX1hYuLC1VEPhAMDQ0RFBSE8vJy1soiyvslISEBXC4XI0aMQElJCby9vTF+/HhGEamursacOXPg6uraw5J+OPz222+oqamBoaEhKisr4ePjAz6fD2tr654WjdID9EplBGhQSP4JykF3U1VVhW3btqGqqgpqamqYO3cus2PpypUrER0dLTbdwoULW8z3Ut4PTXeypXQPz549g4+PD+7cuYOBAwfC3t6eteJIRUWFtVlXRUUFMxUmjoKCAmhoaLxXmXua169f49///jf++OMPyMvLw9LSEjExMT1yXhal5+mV0zSUnqG6upq1p0dTFBQU3stZLBTKx8ibN2/aXC3F5/PRp0+v/Vb8KKHvmvcLvdopXYaKigpVOCiUDtC4VJxCoTRAV9NQKBQKhULpUagyQqFQKBQKpUehygiFQqFQKJQehSojFAqFQqFQehSqjFAoFAqFQulReu1qmtd//ok3nTy86V3oo6SEvoMHd1t5XYGtrS2MjY2xZ8+enhblH0dkZCTWrVvHOhisPfh8PtatW4d169a1Gqeurg76+vqIiorC+PHj313QHqInd4b18PDAkydPkJiY2GV5VldXY9SoURAKhRgyZEiX5dse27dvR2JiInMAXkfq1t5zoXme4ngfbUjp3fRKZeT1n3+i9JOpIG9xVPjbwpGSwvBTyR1WSFq7WdPS0mBnZ4fHjx+zDjN7F1rLMz4+vkc2GIqLi0NYWBhycnJQX18PLS0tzJkzB2vXrsWAAQO6XZ6eYN68eXBwcOjyfPfv3w9NTc2PWhHpLsrLyzFs2DDk5OTA2NiY8Q8NDW31iPu3RUVFBYsWLYK/vz/++9//dihNdXU1/Pz8kJycjPv370NJSQmjR4/G9u3bYWFh8VZyvI+69WQ5lN5Dr5ymefP4cbcqIgBA6uq6dSSmKxgwYECHzi/pSrZs2YJ58+bB3NwcycnJuH79OoKDg5Gbm4sff/yxW2V5X7x+/brdODIyMu9lT5awsDAsW7asy/P9J6GoqNhlHwJNWbJkCWJiYvC4g8+J2bNnIzc3F1FRUbh58yaSkpJga2uLR48evbUM76tuPVUOpffQK5WR3kZGRgasra0hIyMDdXV1eHl5oba2lgmPjo6GmZkZ5OXlwePx4ObmhurqagANX392dnYAGo7+5nA48PDwANAwHNt0yJ/P52Pnzp1YunQp5OXloaGhgf3797eQxdjYGNLS0jAzM0NiYiI4HE6bQ7aNZGVlYefOnQgODsbu3bthaWkJPp+PyZMnIy4ujrWNeXh4OIYPHw4pKSno6uq2UFQ4HA4iIiIwffp0yMrKQk9PD5cuXUJJSQlsbW0hJycHCwsLlJaWMmm2b98OY2NjHDx4EBoaGuByuVi1ahXq6+sRFBQEHo8HFRUVZnv7Rp4+fQpPT0+oqKhAQUEBEydORG5urth8tbS00K9fPxBC8OTJE3h6ekJVVRXS0tIwMDDAiRMnADRM0zR9WJeWlsLJyQmqqqrgcrkwNzdHSkpKu23alGvXrqGkpATTpk1j/Orq6rB27VqoqalBWloafD6fdfIph8NBeHg4pk6dChkZGQwbNgzHjh1j5evr6wsdHR3IyspCS0sLfn5+LRSupKQkmJmZQVpaGgMHDoSzszNLBh8fHwwZMgRycnIYN24c0tLS2q3PgwcPMGvWLMjKymLEiBFISkpihRcUFMDBwQFcLheqqqpYtGgRHjx4wISfOnUKVlZW6N+/P5SVlTF9+nTW9TBs2DAAgImJCTgcDnMqtIeHB2t6yNbWFl5eXvDx8cGAAQPA4/FanG5bVFQEKysrSEtLQ19fHykpKeBwOKyRT0NDQ/B4PCQkJLRb9ydPnuDixYsIDAyEnZ0dNDU1MXbsWGzevJnVvxUVFXBycgKXy4WCggJcXFxw//79VvNtXrfa2lq4u7uDy+VCTU2NtYV9e0REREBdXR2ysrKYO3cua8qxeTmvXr2Cl5cXVFRUIC0tDSsrK1y5coUJT0tLA4fDwenTp2FiYgIZGRlMnDgR1dXVSE5Ohp6eHhQUFODq6ornz58z6drr4/au/+3bt0NDQwP9+vXD4MGD4eXl1eH6U7oWqox84OTn50MgEMDZ2Rl5eXk4cuQILl68iLVr1zJx6urqsGPHDuTm5iIxMRFlZWWMwqGuro64uDgAQHFxMSorKxEaGtpqecHBwTAzM0NOTg5Wr16NVatWoaioCEDD+RuOjo4wNDTEtWvXsGPHDvj6+na4LjExMeByuVi9erXY8MaXc0JCAry9vbFx40Zcv34dK1aswJIlS3Du3DlW/B07dsDd3R1CoRAjR46Em5sbVqxYgc2bN+Pq1asAwGonoOGln5ycjFOnTuHw4cM4ePAgpk2bhrt37+L8+fMIDAzE1q1bcfnyZQAAIQTTpk1DVVUVTp48iezsbJiammLSpEmsL9SSkhIcPXoUcXFxEAqFEIlEmDp1KjIyMhAdHY2CggLs2rULkpKSYuteU1MDBwcHpKSkICcnBwKBAI6OjqioqOhw+/7+++/Q0dGBgoIC47d3714kJSXh6NGjKC4uRnR0NPh8Piudn58f8xW+cOFCuLq6orCwkAmXl5dHZGQkCgoKEBoaigMHDiAkJIQJ//XXX+Hs7Ixp06YhJycHqampMDMzY8KXLFmC9PR0xMbGIi8vD3PnzsUnn3yCW7dutVmfgIAAuLi4IC8vDw4ODliwYAHT5pWVlbCxsYGxsTGuXr2KU6dO4f79+3BxcWHS19bWYsOGDbhy5QpSU1MhISGBWbNmQSQSAWhQjgEgJSUFlZWViI+Pb1WWqKgoyMnJITMzE0FBQfjyyy9x9uxZAIBIJMLMmTMhKyuLzMxM7N+/H1u2bBGbz9ixY3HhwoU26w0AXC4XXC4XiYmJePXqldg4hBDMnDkTjx49wvnz53H27FmUlpZi3rx57ebfyOeff45z584hISEBZ86cQVpaGrKzs9tN13i9//LLLzh16hSEQiHWrFnTanwfHx/ExcUhKioK165dg7a2NgQCQYtRnu3bt+M///kPMjIycOfOHbi4uGDPnj346aef8Ouvv+Ls2bMICwtj4rfXx21d/8ePH0dISAgiIiJw69YtJCYm0sMlexLykfPixQtSUFBAXrx4wfg9v36dFOiO7Pbf8+vXOyz34sWLiaSkJJGTk2P9pKWlCQDy+PFjQgghixYtIp6enqy0Fy5cIBISEqw6NyUrK4sAIM+ePSOEEHLu3DlWno3Y2NgQb29vxq2pqUkWLlzIuEUiEVFRUSHh4eGEEELCw8OJsrIyq9wDBw4QACQnJ6fdOk+dOpUYGRm1G8/S0pIsX76c5Td37lzi4ODAuAGQrVu3Mu5Lly4RAOT7779n/A4fPkykpaUZt7+/P5GVlSV///034ycQCAifzyf19fWMn66uLvn6668JIYSkpqYSBQUF8vLlS5Y8w4cPJxEREUy+ffv2JdXV1Uz46dOniYSEBCkuLhZbx0OHDhFFRcU220FfX5+EhYUxbk1NTRISEtJqfG9vbzJx4kSW32effUYmTpxIRCKR2DQAyMqVK1l+48aNI6tWrWq1nKCgIDJmzBjGbWFhQRYsWCA2bklJCeFwOOTevXss/0mTJpHNmze3Wkbz/q2pqSEcDockJycTQgjx8/MjU6ZMYaW5c+cOAdBqm1dXVxMAJD8/nxBCSFlZmdhrd/HixcTJyYlx29jYECsrK1Ycc3Nz4uvrSwghJDk5mfTp04dUVlYy4WfPniUASEJCAivd+vXria2tbav1bsrx48eJkpISkZaWJpaWlmTz5s0kNzeXCT9z5gyRlJQkFRUVjN+NGzcIAJKVlUUIabg2R48eLbZuz549I1JSUiQ2NpYJf/jwIZGRkWE9F5rj7+9PJCUlyZ07dxi/5ORkIiEhwbRB03JqampI3759SUxMDBO/rq6ODB48mAQFBRFC/veMSklJYeJ8/fXXBAApLS1l/FasWEEEAkGrsjXv47au/+DgYKKjo0Pq6upaza8p4t41lK6Djoz0IHZ2dhAKhaxfc+O27OxsREZGMl9KXC4XAoEAIpEIZWVlAICcnBw4OTlBU1MT8vLyzHBzZ76qGzEyMmL+czgc8Hg8ZsqnuLgYRkZGrEOixo4d2+G8CSHgcDjtxissLGxhgDl+/HjW13pzWVVVVQGA9WWjqqqKly9fsg7v4/P5LDsZVVVV6OvrQ0JCguXXWOfs7GzU1NRAWVmZ1QdlZWWs4WBNTU0MGjSIcQuFQgwdOhQ6Ojrt1hdo+MLz8fGBvr4++vfvDy6Xi6Kiok714YsXL1oc4OXh4QGhUAhdXV14eXnhzJkzLdI1N4a0sLBgtfXx48dhZWUFHo8HLpcLPz8/llxCoRCTJk0SK9O1a9dACIGOjg6r/c6fP89qP3E07V85OTnIy8uz+uXcuXOsPEeOHAkATL6lpaVwc3ODlpYWFBQUmGmZd70vAEBNTY11X6irq4PH4zHhrd0XMjIyrGmGtpg9ezb+/PNPJCUlQSAQIC0tDaampoiMjATQcJ+oq6tDXV2dSdN4/TS/V8RRWlqKuro6Vv8PGDAAurq67abV0NDA0KFDGbeFhQVEIhGKi4vFlvP69WvWPd23b1+MHTu23Xu6cWqwqV9juzfm3VYft3X9z507Fy9evICWlhaWL1+OhIQEvHnzpt26U94PvXI1zceCnJxci8Oy7t69y3KLRCKsWLFC7FymhoYGamtrMWXKFEyZMgXR0dEYNGgQKioqIBAIUPcWRrzNV9dwOBxmyFOcMkE6YTGvo6ODixcv4vXr1+2u4hFXTnO/pnk0honza5S/eXhjnLbqLBKJoKamJtbGoanNh5ycHCtMRkZGbL1a4/PPP8fp06fxzTffQFtbGzIyMpgzZ06n+nDgwIHIz89n+ZmamqKsrAzJyclISUmBi4sL7O3tcfz48Tbzamy7y5cvY/78+QgICIBAIICioiJiY2NZtgVt1VUkEkFSUhLZ2dktpqi4XG6bMrTXL46OjggMDGyRTk1NDQDg6OgIdXV1HDhwAIMHD4ZIJIKBgUG33Bet8ejRI5bS2h7S0tKYPHkyJk+ejG3btmHZsmXw9/eHh4dHq+V2VJ7O3Lvt0Vhea/KIC+vIPd1WuwPt93Fb17+6ujqKi4tx9uxZpKSkYPXq1di9ezfOnz/fI6sM/+nQkZEPHFNTU9y4cQPa2totflJSUigqKsKDBw+wa9cuTJgwASNHjmR9OQCAlJQUAKC+vv6dZBk5ciTy8vJYc9iNthkdwc3NDTU1Nfjuu+/EhjcawOnp6eHixYussIyMDOjp6XVe6HfE1NQUVVVVzCmrTX8DBw5sNZ2RkRHu3r2LmzdvdqicCxcuwMPDA7NmzWIMHds6Yl4cJiYmKCoqavGSUVBQwLx583DgwAEcOXIEcXFxrLn6RvuYpu7GUYb09HRoampiy5YtMDMzw4gRI3D79u0WdU1NTW1Vpvr6elRXV7dov6YjCZ2l8b7g8/kt8pWTk8PDhw9RWFiIrVu3YtKkSdDT02uxiqUr74uKigqW4WhT48ymXL9+HSYmJm9dlr6+PmO8rq+vj4qKCty5c4cJLygowNOnTzt0r2hra6Nv376s/n/8+HGHrtmKigr8+eefjPvSpUuQkJAQOxLY+Kxqek+/fv0aV69efad7uiN9DLR9/cvIyGDGjBnYu3cv0tLScOnSpRYKPaV7oMrIB46vry8uXbqENWvWQCgU4tatW0hKSsJnn30GoGF0REpKCmFhYfjjjz+QlJSEHTt2sPLQ1NQEh8PBiRMn8Ndff6GmpuatZHFzc4NIJIKnpycKCwuZL3lA/BdRc8aNGwcfHx9s3LgRPj4+uHTpEm7fvo3U1FTMnTsXUVFRABpGCSIjI7Fv3z7cunUL3377LeLj47Fp06a3kvtdsLe3h4WFBWbOnInTp0+jvLwcGRkZ2Lp1a5uKmI2NDaytrTF79mycPXuW+To7deqU2Pja2tqIj4+HUChEbm4u09adwc7ODrW1tbhx4wbjFxISgtjYWBQVFeHmzZs4duwYeDwea1Tn2LFjOHjwIG7evAl/f39kZWUxhr/a2tqoqKhAbGwsSktLsXfv3harQfz9/XH48GH4+/ujsLAQ+fn5CAoKAtAwGrZgwQK4u7sjPj4eZWVluHLlCgIDA3Hy5MlO1a8pa9aswaNHj+Dq6oqsrCz88ccfOHPmDJYuXYr6+nooKSlBWVkZ+/fvR0lJCX777Tds2LCBlYeKigpkZGQY49enT5++lSyTJ0/G8OHDsXjxYuTl5SE9PZ0xYG16Xzx//hzZ2dmYMmVKu3k+fPgQEydORHR0NPLy8lBWVoZjx44hKCgITk5OABquTSMjIyxYsADXrl1DVlYW3N3dYWNjwzIgbg0ul4tPP/0Un3/+OVJTU3H9+nV4eHiwpixbQ1paGosXL0Zubi4uXLgALy8vuLi4iFUw5eTksGrVKnz++ec4deoUCgoKsHz5cjx//hyffvppu2W1Rkf6uK3rPzIyEt9//z2uX7+OP/74Az/++CNkZGSgqan51jJR3h6qjHzgGBkZ4fz587h16xYmTJgAExMT+Pn5MUPRgwYNQmRkJI4dOwZ9fX3s2rWLURAaGTJkCAICAvDFF19AVVW1xQqTjqKgoIBffvkFQqEQxsbG2LJlC7Zt2wYALWwVWiMwMBA//fQTMjMzIRAIMGrUKGzYsAFGRkbM0t6ZM2ciNDQUu3fvxqhRoxAREYFDhw4xtjDdCYfDwcmTJ2FtbY2lS5dCR0cH8+fPR3l5OWOn0hpxcXEwNzeHq6sr9PX14ePj0+pXeEhICJSUlGBpaQlHR0cIBAKYmpp2SlZlZWU4OzsjJiaG8eNyuQgMDISZmRnMzc1RXl6OkydPsl44AQEBiI2NhZGREaKiohATEwN9fX0AgJOTE9avX4+1a9fC2NgYGRkZ8PPzY5Vra2uLY8eOISkpCcbGxpg4cSIyMzOZ8EOHDsHd3R0bN26Erq4uZsyYgczMTJatQ2cZPHgw0tPTUV9fD4FAAAMDA3h7e0NRURESEhKQkJBAbGwssrOzYWBggPXr12P37t2sPPr06YO9e/ciIiICgwcPZl7ynUVSUhKJiYmoqamBubk5li1bhq1btwJg3xc///wzNDQ0MGHChHbz5HK5GDduHEJCQmBtbQ0DAwP4+flh+fLl+M9//gMAzNJhJSUlWFtbw97eHlpaWjhy5EiHZd+9ezesra0xY8YM2Nvbw8rKCmPGjGk3nba2NpydneHg4IApU6bAwMCg1RFPANi1axdmz56NRYsWwdTUFCUlJTh9+jSUlJQ6LGtzOtLHbV3//fv3x4EDBzB+/HhmdO+XX36BsrLyW8tEeXs4pCsnDnuAly9foqysDMOGDWNu/I9hB9beQkxMDJYsWYKnT5922k6C0vXk5+fD3t4eJSUlHdrQrie3Xe/NpKenw8rKCiUlJRg+fDiABqPWdevWwc3NrYelo7wN4t41lK6jVxqw9h08GMNPJdOzad4DP/zwA7S0tDBkyBDk5ubC19cXLi4uVBH5QDA0NERQUBDKy8vpngndSEJCArhcLkaMGIGSkhJ4e3tj/PjxjCJSXV2NOXPmwNXVtYclpVA+THqlMgI0KCT/BOWgu6mqqsK2bdtQVVUFNTU1zJ07l9mxdOXKlYiOjhabbuHChdi3b193ivqPpelOtpTu4dmzZ/Dx8cGdO3cwcOBA2Nvbs1YcqaiowMfHh3FXVFQwU2HiKCgogIaGxnuVmUL5kOiV0zSUnqG6upq1p0dTFBQU3stZLBTKx8ibN2/aXC3F5/PRp0+v/Vb8KKHvmvcLvdopXYaKigpVOCiUDtC4VJxCoTRAV9NQKBQKhULpUagyQqFQKBQKpUehygiFQqFQKJQehSojFAqFQqFQehSqjFAoFAqFQulReq0y8uzRS/xV8azbfs8evezpKncaW1tbrFu3rqfF+EcSGRnJOh+mI/D5fOzZs6fNOHV1ddDW1kZ6evrbC/cB0LjVeU/g4eHR5TvSVldXY9CgQbh3716X5tse27dvh7GxMePuSN0+hOfChyADpXvplUt7nz16iZhtl1H/pnMHjb0Lkn0ksODLf0F+QMfWn3t4eODJkyctHrhpaWmws7PD48ePO/2yao3W8oyPj++Ro7Lj4uIQFhaGnJwc1NfXQ0tLC3PmzMHatWsxYMCAbpenJ5g3bx4cHBy6PN/9+/dDU1MT48eP7/K8exvl5eUYNmwYcnJyWC/s0NDQFicfvysqKipYtGgR/P398d///rdDaaqrq+Hn54fk5GTcv38fSkpKGD16NLZv3w4LC4u3kuN91I1C6Qp65cjIy5rX3aqIAED9GxFe1rzu1jLflQEDBnTo/JKuZMuWLZg3bx7Mzc2RnJyM69evIzg4GLm5ufjxxx+7VZb3xevX7V8HMjIy72VPlrCwMCxbtqzL8/0noaio2GUfAk1ZsmQJYmJixB5zL47Zs2cjNzcXUVFRuHnzJpKSkmBra4tHjx69tQzvq24UyrvSK5WR3kZGRgasra0hIyMDdXV1eHl5oba2lgmPjo6GmZkZ5OXlwePx4ObmhurqagANX392dnYAGo7c5nA48PDwANByKJTP52Pnzp1YunQp5OXloaGhgf3797eQxdjYGNLS0jAzM0NiYiI4HA6EQmG79cjKysLOnTsRHByM3bt3w9LSEnw+H5MnT0ZcXBxrG/Pw8HAMHz4cUlJS0NXVbaGocDgcREREYPr06ZCVlYWenh4uXbqEkpIS2NraQk5ODhYWFigtLWXSNA5ZHzx4EBoaGuByuVi1ahXq6+sRFBQEHo8HFRUVZnv7Rp4+fQpPT0+oqKhAQUEBEydORG5urth8tbS00K9fPxBC8OTJE3h6ekJVVRXS0tIwMDDAiRMnALScpiktLYWTkxNUVVXB5XJhbm6OlJSUdtu0KdeuXUNJSQmmTZvG+NXV1WHt2rVQU1ODtLQ0+Hw+vv76a1Y7hoeHY+rUqZCRkcGwYcNw7NgxVr6+vr7Q0dGBrKwstLS04Ofn10LhSkpKgpmZGaSlpTFw4EA4OzuzZPDx8cGQIUMgJyeHcePGIS0trd36PHjwALNmzYKsrCxGjBiBpKQkVnhBQQEcHBzA5XKhqqqKRYsW4cGDB0z4qVOnYGVlhf79+0NZWRnTp09nXQ/Dhg0DAJiYmIDD4TCnQjefyrC1tYWXlxd8fHwwYMAA8Hg8bN++nSVLUVERrKysIC0tDX19faSkpLSYajI0NASPx0NCQkK7dX/y5AkuXryIwMBA2NnZQVNTE2PHjsXmzZtZ/VtRUQEnJydwuVwoKCjAxcUF9+/fbzXf5nWrra2Fu7s7uFwu1NTUWFvYt0Vb/f348WO4u7tDSUkJsrKymDp1Km7dusWEP3z4EK6urhg6dChkZWVhaGiIw4cPd6hcSu+FKiMfOPn5+RAIBHB2dkZeXh6OHDmCixcvYu3atUycuro67NixA7m5uUhMTERZWRmjcKirqyMuLg4AUFxcjMrKSoSGhrZaXnBwMMzMzJCTk4PVq1dj1apVKCoqAtBw/oajoyMMDQ1x7do17NixA76+vh2uS0xMDLhcLlavXi02vPHlnJCQAG9vb2zcuBHXr1/HihUrsGTJEpw7d44Vf8eOHXB3d4dQKMTIkSPh5uaGFStWYPPmzbh69SoAsNoJaHjpJycn49SpUzh8+DAOHjyIadOm4e7duzh//jwCAwOxdetWXL58GQBACMG0adNQVVWFkydPIjs7G6amppg0aRLrC7WkpARHjx5FXFwchEIhRCIRpk6dioyMDERHR6OgoAC7du2CpKSk2LrX1NTAwcEBKSkpyMnJgUAggKOjIyoqKjrcvr///jt0dHSgoKDA+O3duxdJSUk4evQoiouLER0dDT6fz0rn5+fHfIUvXLgQrq6uKCwsZMLl5eURGRmJgoIChIaG4sCBAwgJCWHCf/31Vzg7O2PatGnIyclBamoqzMzMmPAlS5YgPT0dsbGxyMvLw9y5c/HJJ5+wXlDiCAgIgIuLC/Ly8uDg4IAFCxYwbV5ZWQkbGxsYGxvj6tWrOHXqFO7fvw8XFxcmfW1tLTZs2IArV64gNTUVEhISmDVrFkSihlHTrKwsAEBKSgoqKysRHx/fqixRUVGQk5NDZmYmgoKC8OWXX+Ls2bMAAJFIhJkzZ0JWVhaZmZnYv38/tmzZIjafsWPH4sKFC23WGwC4XC64XC4SExPx6tUrsXEIIZg5cyYePXqE8+fP4+zZsygtLcW8efPazb+Rzz//HOfOnUNCQgLOnDmDtLQ0ZGdnt5mmvf728PDA1atXkZSUhEuXLoEQAgcHB0aBffnyJcaMGYMTJ07g+vXr8PT0xKJFi5CZmdlhuSm9EPKR8+LFC1JQUEBevHjB+FXf/pv8Z0Vqt/+qb//dYbkXL15MJCUliZycHOsnLS1NAJDHjx8TQghZtGgR8fT0ZKW9cOECkZCQYNW5KVlZWQQAefbsGSGEkHPnzrHybMTGxoZ4e3szbk1NTbJw4ULGLRKJiIqKCgkPDyeEEBIeHk6UlZVZ5R44cIAAIDk5Oe3WeerUqcTIyKjdeJaWlmT58uUsv7lz5xIHBwfGDYBs3bqVcV+6dIkAIN9//z3jd/jwYSItLc24/f39iaysLPn77//1k0AgIHw+n9TX1zN+urq65OuvvyaEEJKamkoUFBTIy5cvWfIMHz6cREREMPn27duXVFdXM+GnT58mEhISpLi4WGwdDx06RBQVFdtsB319fRIWFsa4NTU1SUhISKvxvb29ycSJE1l+n332GZk4cSIRiURi0wAgK1euZPmNGzeOrFq1qtVygoKCyJgxYxi3hYUFWbBggdi4JSUlhMPhkHv37rH8J02aRDZv3txqGc37t6amhnA4HJKcnEwIIcTPz49MmTKFlebOnTsEQKttXl1dTQCQ/Px8QgghZWVlYq/dxYsXEycnJ8ZtY2NDrKysWHHMzc2Jr68vIYSQ5ORk0qdPH1JZWcmEnz17lgAgCQkJrHTr168ntra2rda7KcePHydKSkpEWlqaWFpaks2bN5Pc3Fwm/MyZM0RSUpJUVFQwfjdu3CAASFZWFiGk4docPXq02Lo9e/aMSElJkdjYWCb84cOHREZGhvVcaE5b/X3z5k0CgKSnpzN+Dx48IDIyMuTo0aOt5ung4EA2btzIuJs/mz4ExL1rKF0HHRnpQezs7CAUClm/5sZt2dnZiIyMZL6UuFwuBAIBRCIRysrKAAA5OTlwcnKCpqYm5OXlmeHmznxVN2JkZMT853A44PF4zJRPcXExjIyMWIdEjR07tsN5E0LA4XDajVdYWNjCAHP8+PGsr/XmsqqqqgJoGApv6vfy5UvW4X18Pp9lJ6Oqqgp9fX1ISEiw/BrrnJ2djZqaGigrK7P6oKysjDXkr6mpiUGDBjFuoVCIoUOHQkdHp936Ag1f8T4+PtDX10f//v3B5XJRVFTUqT588eJFiwO8PDw8IBQKoaurCy8vL5w5c6ZFuubGkBYWFqy2Pn78OKysrMDj8cDlcuHn58eSSygUYtKkSWJlunbtGggh0NHRYbXf+fPnWe0njqb9KycnB3l5eVa/nDt3jpXnyJEjAYDJt7S0FG5ubtDS0oKCggIzLfOu9wUAqKmpse4LdXV18Hg8Jry1+0JGRgbPnz/vUJmzZ8/Gn3/+iaSkJAgEAqSlpcHU1BSRkZEAGu4TdXV1qKurM2kar5/m94o4SktLUVdXx+r/AQMGQFdXt810bfV3YWEh+vTpg3HjxjF+ysrK0NXVZWSqr6/HV199BSMjI+a+OnPmzFv1C6X30CtX03wsyMnJtTgs6+7duyy3SCTCihUr4OXl1SK9hoYGamtrMWXKFEyZMgXR0dEYNGgQKioqIBAIUFdX12mZmq+u4XA4zLC2OGWCdMIyX0dHBxcvXsTr16/bXcUjrpzmfk3zaAwT59cof/Pwxjht1VkkEkFNTU2sjUNTmw85OTlWmIyMjNh6tcbnn3+O06dP45tvvoG2tjZkZGQwZ86cTvXhwIEDkZ+fz/IzNTVFWVkZkpOTkZKSAhcXF9jb2+P48eNt5tXYdpcvX8b8+fMREBAAgUAARUVFxMbGsmwL2qqrSCSCpKQksrOzW0xRcbncNmVor18cHR0RGBjYIp2amhoAwNHREerq6jhw4AAGDx4MkUgEAwODbrkvWuPRo0cspbU9pKWlMXnyZEyePBnbtm3DsmXL4O/vDw8Pj1bL7ag8nbl3m9JWf7eWZ1OZgoODERISgj179sDQ0BBycnJYt27dW/ULpfdAR0Y+cExNTXHjxg1oa2u3+ElJSaGoqAgPHjzArl27MGHCBIwcOZL5YmtESkoKQMMXybswcuRI5OXlseawG20zOoKbmxtqamrw3XffiQ1/8uQJAEBPTw8XL15khWVkZEBPT6/zQr8jpqamqKqqYk5ZbfobOHBgq+mMjIxw9+5d3Lx5s0PlXLhwAR4eHpg1axZj6NjWEfPiMDExQVFRUYsXgoKCAubNm4cDBw7gyJEjiIuLY9m7NNrHNHU3jjKkp6dDU1MTW7ZsgZmZGUaMGIHbt2+3qGtqamqrMtXX16O6urpF+zUdSegsjfcFn89vka+cnBwePnyIwsJCbN26FZMmTYKenl6LVSxdeV9UVFSwDEevXLkiNu7169dhYmLy1mXp6+szxuv6+vqoqKjAnTt3mPCCggI8ffq0Q/eKtrY2+vbty+r/x48ft3vNttXf+vr6ePPmDcv+4+HDh7h58yYj04ULF+Dk5ISFCxdi9OjR0NLSatd+iNL7ocrIB46vry8uXbqENWvWQCgU4tatW0hKSsJnn30GoGF0REpKCmFhYfjjjz+QlJSEHTt2sPLQ1NQEh8PBiRMn8Ndff6GmpuatZHFzc4NIJIKnpycKCwuZL3mg5UiGOMaNGwcfHx9s3LgRPj4+uHTpEm7fvo3U1FTMnTsXUVFRABpGCSIjI7Fv3z7cunUL3377LeLj47Fp06a3kvtdsLe3h4WFBWbOnInTp0+jvLwcGRkZ2Lp1a5uKmI2NDaytrTF79mycPXuWGZ04deqU2Pja2tqIj4+HUChEbm4u09adwc7ODrW1tbhx4wbjFxISgtjYWBQVFeHmzZs4duwYeDwea1Tn2LFjOHjwIG7evAl/f39kZWUxhr/a2tqoqKhAbGwsSktLsXfv3harQfz9/XH48GH4+/ujsLAQ+fn5CAoKAtAwGrZgwQK4u7sjPj4eZWVluHLlCgIDA3Hy5MlO1a8pa9aswaNHj+Dq6oqsrCz88ccfOHPmDJYuXYr6+nooKSlBWVkZ+/fvR0lJCX777Tds2LCBlYeKigpkZGQY49enT5++lSyTJ0/G8OHDsXjxYuTl5SE9PZ0xYG16Xzx//hzZ2dmYMmVKu3k+fPgQEydORHR0NPLy8lBWVoZjx44hKCgITk5OABquTSMjIyxYsADXrl1DVlYW3N3dYWNjwzIobQ0ul4tPP/0Un3/+OVJTU3H9+nV4eHiwpizF0VZ/jxgxAk5OTli+fDkuXrzIGEUPGTKEkVtbWxtnz55FRkYGCgsLsWLFClRVVbUrL6V3Q5WRDxwjIyOcP38et27dwoQJE2BiYgI/Pz9mKHrQoEGIjIzEsWPHoK+vj127djEKQiNDhgxBQEAAvvjiC6iqqrZYYdJRFBQU8Msvv0AoFMLY2BhbtmzBtm3bAKCFrUJrBAYG4qeffkJmZiYEAgFGjRqFDRs2wMjIiFnaO3PmTISGhmL37t0YNWoUIiIicOjQIcYWpjvhcDg4efIkrK2tsXTpUujo6GD+/PkoLy9n7FRaIy4uDubm5nB1dYW+vj58fHxa/QoPCQmBkpISLC0t4ejoCIFAAFNT007JqqysDGdnZ8TExDB+XC4XgYGBMDMzg7m5OcrLy3Hy5EnWCycgIACxsbEwMjJCVFQUYmJioK+vDwBwcnLC+vXrsXbtWhgbGyMjIwN+fn6scm1tbXHs2DEkJSXB2NgYEydOZH0ZHzp0CO7u7ti4cSN0dXUxY8YMZGZmsmwdOsvgwYORnp6O+vp6CAQCGBgYwNvbG4qKipCQkICEhARiY2ORnZ0NAwMDrF+/Hrt372bl0adPH+zduxcREREYPHgw87LsLJKSkkhMTERNTQ3Mzc2xbNkybN26FQD7vvj555+hoaGBCRMmtJsnl8vFuHHjEBISAmtraxgYGMDPzw/Lly/Hf/7zHwD/26VWSUkJ1tbWsLe3h5aWFo4cOdJh2Xfv3g1ra2vMmDED9vb2sLKywpgxY9pM05H+HjNmDKZPnw4LCwsQQnDy5ElmqsvPzw+mpqYQCASwtbUFj8fr8h1vKR8fHPK2E4cfCC9fvkRZWRmGDRvG3Pgfww6svYWYmBgsWbIET58+7bSdBKXryc/Ph729PUpKSjq0oR2Hw0FCQgJ9GXQx6enpsLKyQklJCYYPHw6gwah13bp1cHNz62HpKG+DuHcNpevolQas8gOkseDLf3XrjqjS3L7/CEXkhx9+gJaWFoYMGYLc3Fz4+vrCxcWFKiIfCIaGhggKCkJ5eTlrZRHl/ZKQkAAul4sRI0agpKQE3t7eGD9+PKOIVFdXY86cOXB1de1hSSmUD5NeqYwADQrJP0E56G6qqqqwbds2VFVVQU1NDXPnzmV2LF25ciWio6PFplu4cCH27dvXnaL+Y2m6ky2le3j27Bl8fHxw584dDBw4EPb29qwVRyoqKvDx8WHcFRUVzFSYOAoKCqChofFeZaZQPiR65TQNpWeorq5m7enRFAUFhfdyFguF8jHy5s2bNldL8fl89OnTa78VP0rou+b9Qq92SpehoqJCFQ4KpQM0LhWnUCgN0NU0FAqFQqFQehSqjFAoFAqFQulRqDJCoVAoFAqlR6HKCIVCoVAolB6FKiMUCoVCoVB6lF67mubvB9V40coy0/eBjIICFAZ+XCtJbG1tYWxsjD179vS0KF3G9u3bkZiYCKFQ2GocDw8PPHnyBImJie9dns7ucNoR+YGGLbXv37+P/fv3v7uQPUR39kNz0tLSYGdnh8ePH7PO6XlX5syZA0tLyxbn4LwLPdlOkZGRWLduHXOIZXvw+XysW7cO69ate69yUXofvVIZ+ftBNQ6uW4H61923A6tk375YuieiwwpJaw+Y9/GQbC3P+Pj4Fkejv0/Ky8sxbNgwxq2goAA9PT1s2bIFjo6OXVLGpk2bmEMEu5PWlIjKykooKSl1aVn3799HaGgo8vLyujTf3oo4pdvS0hKVlZVQVFTs0rK2bdsGOzs7LFu2DAoKCu3Gb7w3xVFZWflOJxu3RmeUm3nz5sHBwaHDeV+5cgVycnKMmx43QOkovXKa5sXff3erIgIA9a9fd+tITFcwYMCADp1f0tWkpKSgsrISmZmZGDt2LGbPno3r1693Sd5cLhfKyspdkldXwOPx0K9fvy7N8/vvv4eFhQX4fH6X5vtPQkpKCjwer0OnTXcGIyMj8Pl81mGFHaG4uBiVlZWsX0/v2fP69WvIyMh0So5BgwZBVlb2PUpF6a30SmWkt5GRkQFra2vIyMhAXV0dXl5eqK2tZcKjo6NhZmYGeXl58Hg8uLm5obq6GkDDaETjl5eSkhI4HA48PDwANHwxNh1O5fP52LlzJ5YuXQp5eXloaGi0mAbIyMiAsbExpKWlYWZmhsTERHA4nHanFZqirKwMHo+HkSNH4quvvsLr169x7tw5JvzevXuYN28ecwy8k5MTa7fKtLQ0jB07FnJycujfvz/Gjx+P27dvA2gYoTA2Nmbi1tfXY8OGDejfvz+UlZXh4+OD5psOE0IQFBQELS0tyMjIYPTo0Th+/DirPA6Hg9TUVJiZmUFWVhaWlpYoLi4G0DCUHRAQgNzcXHA4HHA4HERGRgL438mqjfj6+kJHRweysrLQ0tKCn58fXndScY6NjcWMGTNYfsePH4ehoSFkZGSgrKwMe3t75hrx8PDAzJkzERAQABUVFSgoKGDFihWoq6tj0p86dQpWVlZMO02fPh2lpaWsMu7evYv58+djwIABkJOTg5mZGeu01l9++QVjxoyBtLQ0tLS0EBAQgDdv3rRbn2+++QZqampQVlbGmjVrWO1RV1cHHx8fDBkyBHJychg3bhzS0tKY8IcPH8LV1RVDhw6FrKwsDA0NcfjwYSbcw8MD58+fR2hoKNM35eXlTJ82Tj9ERkaif//+OH36NPT09MDlcvHJJ5+gsrKSyevNmzfw8vJi2sjX1xeLFy9u8dU/Y8YMlgwdQUVFBTwej/VrerJyU9q7XgHgxo0bmDZtGhQUFCAvL48JEyagtLQU27dvR1RUFH7++WemPdLS0lBeXg4Oh4OjR4/C1tYW0tLSiI6OZtqlKUlJSTAzM4O0tDQGDhwIZ2dnJozP5zMjUI3K8qxZs8DhcMDn81FeXg4JCQlcvXqVlWdYWBg0NTVb3JuUfw5UGfnAyc/Ph0AggLOzM/Ly8nDkyBFcvHgRa9euZeLU1dVhx44dyM3NRWJiIsrKyhiFQ11dHXFxcQD+9/UVGhraannBwcEwMzNDTk4OVq9ejVWrVqGoqAhAw/kbjo6OMDQ0xLVr17Bjxw74+vq+dd1ev36NAwcOAAAzXfT8+XPY2dmBy+Xi999/x8WLF5kXQ11dHd68eYOZM2fCxsYGeXl5uHTpEjw9PVv9wg0ODsbBgwfx/fff4+LFi3j06BESEhJYcbZu3YpDhw4hPDwcN27cwPr167Fw4UKcP3+eFW/Lli0IDg7G1atX0adPHyxduhRAw1D2xo0bMWrUKOardt68eWLlkZeXR2RkJAoKChAaGooDBw4gJCSkw232+PFjXL9+HWZmZoxfZWUlXF1dsXTpUhQWFiItLQ3Ozs6sB3tqaioKCwtx7tw5HD58GAkJCQgICGDCa2trsWHDBly5cgWpqamQkJDArFmzIBI1nHxdU1MDGxsb/Pnnn0hKSkJubi58fHyY8NOnT2PhwoXw8vJCQUEBIiIiEBkZyZxb1Brnzp1DaWkpzp07h6ioKERGRjKKHAAsWbIE6enpiI2NRV5eHubOnYtPPvkEt27dAtCwRfeYMWNw4sQJXL9+HZ6enli0aBGjJIWGhsLCwgLLly9n+kZdXV2sLM+fP8c333yDH3/8Eb///jsqKiqwadMmJjwwMBAxMTE4dOgQ0tPT8ffff4ud6hg7diyysrLw6tWrNuv+trR3vd67dw/W1taQlpbGb7/9huzsbCxduhRv3rzBpk2b4OLiwihalZWVsLS0ZPL29fWFl5cXCgsLIRAIWpT966+/wtnZGdOmTUNOTg6joIvjypUrAIBDhw6hsrISV65cAZ/Ph729PQ4dOsSKe+jQIXh4eHT5SBXlI4J85Lx48YIUFBSQFy9eMH5VpbfINy7Tuv1XVXqrw3IvXryYSEpKEjk5OdZPWlqaACCPHz8mhBCyaNEi4unpyUp74cIFIiEhwapzU7KysggA8uzZM0IIIefOnWPl2YiNjQ3x9vZm3JqammThwoWMWyQSERUVFRIeHk4IISQ8PJwoKyuzyj1w4AABQHJyctqtc1lZGQFAZGRkiJycHJGQkCAACJ/PJw8fPiSEEPL9998TXV1dIhKJmHSvXr0iMjIy5PTp0+Thw4cEAElLSxNbhr+/Pxk9ejTjVlNTI7t27WLcr1+/JkOHDiVOTk6EEEJqamqItLQ0ycjIYOXz6aefEldXV0LI/9ovJSWFCf/1118JAKYtmpfbCACSkJDQapsEBQWRMWPGtCp/c3JycggAUlFRwfhlZ2cTAKS8vFxsmsWLF5MBAwaQ2tpaxi88PJxwuVxSX18vNk11dTUBQPLz8wkhhERERBB5eXmmn5ozYcIEsnPnTpbfjz/+SNTU1Fqty+LFi4mmpiZ58+YN4zd37lwyb948QgghJSUlhMPhkHv37rHSTZo0iWzevLnVfB0cHMjGjRsZd/PrnJCW98ShQ4cIAFJSUsLE+b//+z+iqqrKuFVVVcnu3bsZ95s3b4iGhgZzLTWSm5vbZn+Ik6P5c0BHR4eJs3jx4k5dr5s3bybDhg0jdXV1Ystsml8jjffmnj17WP6HDh0iioqKjNvCwoIsWLCg1fpoamqSkJAQxi3u+j9y5AhRUlIiL1++JIQQIhQKCYfDIWVlZa3m+yEg7l1D6Tp6pQHrx4KdnR3Cw8NZfpmZmVi4cCHjzs7ORklJCWsOmhACkUiEsrIy6OnpIScnB9u3b4dQKMSjR4+Yr9X2TgYVh5GREfOfw+GAx+MxUz7FxcUwMjJiHRI1duzYTuUPAEeOHMHIkSNx8+ZNrFu3Dvv27cOAAQNY9W1uy/Ly5UuUlpZiypQp8PDwgEAgwOTJk2Fvbw8XFxeoqam1KOfp06eorKyEhYUF49enTx+YmZkxowYFBQV4+fIlJk+ezEpbV1cHExOTVtumsbzq6upOna56/Phx7NmzByUlJaipqcGbN286ZOjYyIsXLwCA1QejR4/GpEmTYGhoCIFAgClTpmDOnDksw9nRo0ez5vItLCxQU1ODO3fuQFNTE6WlpfDz88Ply5fx4MED1jVkYGAAoVAIExMTpp+ak52djStXrrBGQurr6/Hy5Us8f/68VTuCUaNGQVJSknGrqakhPz8fAHDt2jUQQqCjo8NK8+rVK8YuqL6+Hrt27cKRI0dw7949vHr1Cq9evWIZUXYUWVlZDB8+nCVL47X/9OlT3L9/n3W9S0pKYsyYMUxbNSIjIwOgYaSlo1y4cIF1zbd2SF5HrlehUIgJEya8lXF6a6McjQiFQixfvrzT+TZl5syZWLt2LRISEjB//nwcPHgQdnZ21AbqHw5VRnoQOTm5Fodl3b17l+UWiURYsWIFvLy8WqTX0NBAbW0tpkyZgilTpiA6OhqDBg1CRUUFBAIByyagozR/gHE4HOZhSwhpMYxK3mKOV11dHSNGjMCIESPA5XIxe/ZsFBQUQEVFBSKRCGPGjBFrADho0CAADUO6Xl5eOHXqFI4cOYKtW7fi7Nmz+Ne//tVpWRrr9uuvv2LIkCGssOaGp03bprEdmr+I2uLy5cuYP38+AgICIBAIoKioiNjYWNZR8+0xcOBAAA3TNY3tISkpibNnzyIjIwNnzpxBWFgYtmzZgszMTNbqJXE01sPR0RHq6uo4cOAABg8eDJFIBAMDA+YaanzBtoZIJEJAQADLfqCRtk44bet6E4lEkJSURHZ2NkthARoMlYGGabiQkBDs2bMHhoaGkJOTw7p167rs2m9+fXfk+n/06BGA/12vHWHYsGEdWj3Xkeu1vb5qi/aUuHfJuxEpKSksWrQIhw4dgrOzM3766adetb0A5e2gysgHjqmpKW7cuNHqCZ/5+fl48OABdu3axcyFNzcOk5KSAtDwFfkujBw5EjExMXj16hXz4GteVmexsbGBgYEBvvrqK4SGhsLU1BRHjhxhDC1bw8TEBCYmJti8eTMsLCzw008/tVBGFBUVoaamhsuXL8Pa2hpAgxFidnY2TE1NAQD6+vro168fKioqYGNj89b1kJKSard909PToampiS1btjB+jYa3HWX48OFQUFBAQUEBa8SAw+Fg/PjxGD9+PLZt2wZNTU0kJCQw+13k5ubixYsXzMvk8uXL4HK5GDp0KB4+fIjCwkJERERgwoQJAICLFy+yyjUyMsJ///tfPHr0SOzoiKmpKYqLi7v0JFoTExPU19ejurqakas5Fy5cgJOTEzOaKBKJcOvWLejp6TFxOtI37aGoqAhVVVVkZWUxstTX1yMnJ4dlMA0A169fx9ChQxnFsSvpyPVqZGSEqKgovH79WuzoyLu0h5GREVJTU7FkyZIOxe/bt6/YspYtWwYDAwN89913eP36tVgllvLPghqwfuD4+vri0qVLWLNmDYRCIW7duoWkpCRmLw0NDQ1ISUkhLCwMf/zxB5KSkrBjxw5WHpqamuBwODhx4gT++usv1NTUvJUsbm5uEIlE8PT0RGFhIU6fPo1vvvkGQMsvxs6wceNGRERE4N69e1iwYAEGDhwIJycnXLhwAWVlZTh//jy8vb1x9+5dlJWVYfPmzbh06RJu376NM2fO4ObNm6yXT1O8vb2xa9cuJCQkoKioCKtXr2Zt4CQvL49NmzZh/fr1iIqKQmlpKXJycvB///d/iIqK6nAd+Hw+ysrKIBQK8eDBA7HGi9ra2qioqEBsbCxKS0uxd+/eFsa07SEhIQF7e3uWspCZmYmdO3fi6tWrqKioQHx8PP766y9Wm9TV1eHTTz9FQUEBkpOT4e/vj7Vr10JCQoJZtbR//36UlJTgt99+a7Fpl6urK3g8HmbOnIn09HT88ccfiIuLw6VLlwA07K/xww8/YPv27bhx4wYKCwuZUau3RUdHBwsWLIC7uzvi4+NRVlaGK1euIDAwECdPngTQ0KaNo0KFhYVYsWIFqqqqWPnw+XxkZmaivLycNQXVWT777DN8/fXX+Pnnn1FcXAxvb288fvy4xbV/4cIFTJkypVN5V1dXo6qqivUTt8qqI9fr2rVr8ffff2P+/Pm4evUqbt26hR9//JFZ/cXn85GXl4fi4mI8ePCgU6u5/P39cfjwYfj7+6OwsBD5+fkICgpqNT6fz0dqaiqqqqrw+PFjxl9PTw//+te/4OvrC1dX1y4ZcaF83FBl5APHyMgI58+fx61btzBhwgSYmJjAz8+PsVkYNGgQIiMjcezYMejr62PXrl2MgtDIkCFDEBAQgC+++AKqqqqslTidQUFBAb/88guEQiGMjY2xZcsWbNu2DUDbQ/HtMX36dPD5fHz11VeQlZXF77//Dg0NDTg7O0NPTw9Lly7FixcvoKCgAFlZWRQVFWH27NnQ0dGBp6cn1q5dixUrVojNe+PGjXB3d4eHhwcsLCwgLy+PWbNmseLs2LED27Ztw9dffw09PT0IBAL88ssv7U5xNGX27Nn45JNPYGdnh0GDBold2unk5IT169dj7dq1MDY2RkZGBvz8/DrXWAA8PT0RGxvLvFQVFBTw+++/w8HBATo6Oti6dSuCg4MxdepUJs2kSZMwYsQIWFtbw8XFBY6Ojti+fTuABgUnNjYW2dnZMDAwwPr167F7925WmVJSUjhz5gxUVFTg4OAAQ0ND7Nq1i5k+EQgEOHHiBM6ePQtzc3P861//wrfffgtNTc1O168phw4dgru7OzZu3AhdXV3MmDEDmZmZzCign58fTE1NIRAIYGtryyhMTdm0aRMkJSWhr6/PTGO+DY0vTnd3d1hYWIDL5UIgELCu/ZcvXyIhIaHTdhW6urpQU1Nj/bKzs8XGbe96VVZWxm+//casgBozZgwOHDjAjJIsX74curq6MDMzw6BBg5Cent5hOW1tbXHs2DEkJSXB2NgYEydOZC3vbk5wcDDOnj0LdXX1FjZYn376Kerq6phVaZR/NhzyNpP+HxAvX75EWVkZhg0bxjwUPoYdWHsLMTExWLJkCZ4+fUq/broJQgj+9a9/Yd26dXB1dW03fk9uJ96bEYlE0NPTg4uLCzMa+X//93/4+eefcebMmR6W7sPnq6++QmxsLGOw/KEj7l1D6Tp6pc2IwkAVLN0TQc+meQ/88MMP0NLSwpAhQ5CbmwtfX1+4uLhQRaQb4XA42L9/P90OvptpnBa0sbHBq1ev8J///AdlZWVwc3Nj4vTt2xdhYWE9KOWHT01NDQoLCxEWFtZiSpnyz6VXKiNAg0LyT1AOupuqqips27YNVVVVUFNTw9y5c5nlnCtXrkR0dLTYdAsXLsS+ffu6U9RezejRozF69OieFuMfhYSEBCIjI7Fp0yYQQmBgYICUlBSWbY6npycrzdSpU3HhwgWx+f373//Gv//97/cq84fI2rVrcfjwYcycOZNO0VAYeuU0DaVnqK6uxt+tjEYpKCj0+FkbFEp3c+/ePWZvmOYMGDCg1X1bKB8e9F3zfum1IyOU7kdFRYUqHBRKE5rvBUKhUMRDV9NQKBQKhULpUagyQqFQKBQKpUehygiFQqFQKJQehSojFAqFQqFQehSqjFAoFAqFQulReq0y8ubJS9Tdq+m235snL3u6yp3G1tYW69at62kxupTt27e3OLisOR4eHi22DH9fcDicTu182hH5gYZt0JvvafGx0Z390Jy0tDRwOBzWOUVdwZw5c/Dtt992WX7vo43Ky8vB4XAgFApbjdOR9qmqqsLkyZMhJyfXoROH34Xm8kRGRr73MindS69c2vvmyUtUfXMVeNONW6j04YC3yQx9+nds/XlrW3SnpaXBzs4Ojx8/7rKbrbU84+PjxZ7q+b4oLy9nnfeioKAAPT09bNmyBY6Ojl1SxqZNm5hDBLuT7du3IzExscUDvrKyEkpKSl1a1v379xEaGkp3YO0gtra2MDY2Zh1Tb2lpicrKSigqKnZpWdu2bYOdnR2WLVvW5qnTjbR3v4eGhqKrt4JSV1dHZWXlO58qHBISgsrKSgiFwi5vx+a8r/6ifDj0ypERUe2b7lVEAOANaSj3I2LAgAGQl5fv9nJTUlJQWVmJzMxMjB07FrNnz8b169e7JG8ulwtlZeUuyasr4PF46NevX5fm+f3338PCwgJ8Pr9L8/0nISUlBR6P906nTYvDyMgIfD4fMTExXZKfoqJil48ASEpKgsfjoU+fd/sWLS0txZgxYzBixIj3vr/Q++ovyodDr1RGehsZGRmwtraGjIwM1NXV4eXlhdraWiY8OjoaZmZmkJeXB4/Hg5ubG6qrqwE0jEbY2dkBAJSUlMDhcODh4QGg5TQNn8/Hzp07sXTpUsjLy0NDQwP79+9vIYuxsTGkpaVhZmaGxMTEdod8m6OsrAwej4eRI0fiq6++wuvXr3Hu3Dkm/N69e5g3bx5ztL2TkxPKy8uZ8LS0NIwdO5YZHh4/fjxu374NoOU0R319PTZs2ID+/ftDWVkZPj4+Lb40CSEICgqClpYWZGRkMHr0aBw/fpxVHofDQWpqKszMzCArKwtLS0vmSPbIyEgEBAQgNzcXHA4HHA4HkZGRAFpO0/j6+kJHRweysrLQ0tKCn59fp45wB4DY2FjMmDGD5Xf8+HEYGhpCRkYGysrKsLe3Z66RxqH+gIAAqKioQEFBAStWrEBdXR2T/tSpU7CysmLaafr06SgtLWWVcffuXcyfPx8DBgyAnJwczMzMWCe2/vLLLxgzZgykpaWhpaWFgIAAvPn/7J17XI/n//if77LojJQaHRaidKJmYqSPQ+YzMj5YDtWYGJZDTTPHPmbYNBo+ZmbltE8+H2QO+xJWqRBSOZRGK429MTRnpd7X749+3R93BxWR2f18PN6Px/u67uvwuq77uu/7dV/X675exdUr6EuWLMHCwgITExMmTpwo64+ioiKmT59OixYt0NfX54033iA+Pl46fv36dXx9fWnZsiV6eno4OTnJPCYHBASQkJBARESEdG7y8vKqnPbfu3cv9vb2GBgY0LdvX9RqtVRWcXExQUFBUh+Fhobi7+9fYRllwIABlXptfhLKL9PcvXsXPz8/DAwMsLCwIDw8vMJ1XNnSYOPGjaUxWdkyzY8//oidnR26urp4eXnJrrfKsLGxYevWraxfv152T8nPz8fHxwcDAwOMjIwYOnQoV65ckfJlZGTg5eWFoaEhRkZGuLm5cfz4caDU90///v1p0qQJ+vr6tG/fnh9//BF4dstqCi8OijLygnPq1Cm8vb0ZNGgQJ0+eZPPmzSQlJTFp0iQpTVFREfPnzycjI4Pt27eTm5sr3RwsLS3ZunUrANnZ2ajVaiIiIqqsLzw8HHd3d9LS0pgwYQIffPABZ8+eBeD27dv0798fJycnTpw4wfz58wkNDX3itj18+JA1a9YASMtF9+7dw8vLCwMDAw4ePEhSUpL0YCgqKqK4uJiBAwfi6enJyZMnOXz4MIGBgVW+MYWHh/Pdd9+xdu1akpKSuHHjBjExMbI0s2bNIjIyklWrVnHmzBmmTp3KyJEjSUhIkKWbOXMm4eHhHD9+nAYNGkh+NYYNG0ZwcDDt27dHrVajVqsZNmxYpfIYGhoSFRVFZmYmERERrFmzhqVLl9a4zwoKCjh9+jTu7u5SnFqtxtfXl9GjR5OVlUV8fDyDBg2SKV0HDhwgKyuLuLg4/v3vfxMTE0NYWJh0/O7du0ybNo1jx45x4MABtLS0eOedd9BoNACSO/rffvuNHTt2kJGRwfTp06Xje/fuZeTIkQQFBZGZmcnq1auJioqS/BZVRVxcHDk5OcTFxbFu3TqioqKkhybAe++9R3JyMtHR0Zw8eZIhQ4bQt29fzp07B5Ru0e3m5sauXbs4ffo0gYGBjBo1SlKSIiIi8PDwYOzYsdK5sbS0rFSWe/fusWTJEjZs2MDBgwfJz88nJCREOr548WI2bdpEZGQkycnJ3Lp1q1J7oE6dOnH06FEKCwsf2/Yn4aOPPiIuLo6YmBhiY2OJj48nNTX1qcr89ddfGTRoEP369SM9PZ3333+fjz/++LF5jh07Rt++fRk6dKh0TxFCMHDgQG7cuEFCQgL79u0jJydHdi2MGDGCli1bcuzYMVJTU/n444+la3/ixIkUFhZy8OBBTp06xeLFizEwMHiqtin8iRB/cu7fvy8yMzPF/fv3pbjCi7fFr6EHn/uv8OLtGsvt7+8vtLW1hb6+vuzXqFEjAYiCggIhhBCjRo0SgYGBsryJiYlCS0tL1uZHOXr0qADE7dul8sTFxcnKLMPT01NMnjxZCltbW4uRI0dKYY1GI8zMzMSqVauEEEKsWrVKmJiYyOpds2aNAERaWlq1bc7NzRWA0NXVFfr6+kJLS0sAwsbGRly/fl0IIcTatWtF27ZthUajkfIVFhYKXV1dsXfvXnH9+nUBiPj4+ErrmDt3rnBxcZHCFhYWYtGiRVL44cOHomXLlsLHx0cIIcSdO3dEo0aNxKFDh2TljBkzRvj6+goh/td/+/fvl47v3r1bAFJflK+3DEDExMRU2Seff/65cHNzq1L+8qSlpQlA5OfnS3GpqakCEHl5eZXm8ff3F02bNhV3796V4latWiUMDAxESUlJpXmuXr0qAHHq1CkhhBCrV68WhoaG0nkqT7du3cRnn30mi9uwYYOwsLCosi3+/v7C2tpaFBcXS3FDhgwRw4YNE0IIcf78eaFSqcSlS5dk+Xr27ClmzJhRZbn9+vUTwcHBUrj8OBei4jURGRkpAHH+/HkpzcqVK0Xz5s2lcPPmzcUXX3whhYuLi4WVlZU0lsrIyMh47Pl4nBzl8ff3l8q/ffu20NHREdHR0dLx69evC11dXVn7KhtzxsbGIjIyUgjxv+uw7JqdMWOGsLe3l11zoaGhj5VLCCF8fHyEv7+/FI6NjRXa2tqysXnmzBkBiKNHjwohhDA0NBRRUVGVlufk5CTmzZtX6bHKzpexsXGVsj0LKnvWKNQdL6UB658FLy8vVq1aJYtLSUlh5MiRUjg1NZXz58/L1qCFEGg0GnJzc7G3tyctLY158+aRnp7OjRs3pLfV/Px8HBwcaiWTs7Oz9F+lUmFubi4t+WRnZ+Ps7CxzEtWpU6dalQ+wefNm2rVrx88//8yUKVP4+uuvJYdhZe0tb8vy4MEDcnJy6NOnDwEBAXh7e9O7d2969erF0KFDsbCwqFDPzZs3UavVeHh4SHENGjTA3d1dmjXIzMzkwYMH9O7dW5a3qKiIDh06VNk3ZfVdvXoVKyurGrd9y5YtLFu2jPPnz3Pnzh2Ki4trZOhYRpnTtUfPgYuLCz179sTJyQlvb2/69OnDP/7xD5nhrIuLC3p6elLYw8ODO3fu8Ouvv2JtbU1OTg6zZ8/myJEjXLt2TTaGHB0dSU9Pp0OHDlU6dktNTeXYsWOymZCSkhIePHjAvXv3ZHU/Svv27dHW1pbCFhYWnDp1CoATJ04ghMDOzk6Wp7CwULILKikpYdGiRWzevJlLly5RWFhIYWEh+vr61XdmOfT09GjVqpVMlrKxf/PmTa5cuSIb79ra2ri5uUl9VYauri5QOtNSl+Tk5FBUVCQbz02bNqVt27ZPVW5WVhadO3eWzS4+WkdtyrG0tJTNPDk4ONC4cWOysrJ4/fXXmTZtGu+//z4bNmygV69eDBkyROrzoKAgPvjgA2JjY+nVqxeDBw+WXXMKLzeKMlKP6Ovr07p1a1ncxYsXZWGNRsO4ceMICgqqkN/Kyoq7d+/Sp08f+vTpw8aNGzE1NSU/Px9vb2+ZTUBNKf91jUqlkm62QogKyyHiCSz9LS0tadOmDW3atMHAwIDBgweTmZmJmZkZGo0GNze3Sg0ATU1NAYiMjCQoKIg9e/awefNmZs2axb59++jcuXOtZSlr2+7duys4NStvePpo35T1Q/kH0eM4cuQI7777LmFhYXh7e2NsbEx0dDTh4eE1LqPsC4iCggKpP7S1tdm3bx+HDh0iNjaW5cuXM3PmTFJSUmRfL1VGWTv69++PpaUla9as4dVXX0Wj0eDo6CiNobIHbFVoNBrCwsIYNGhQhWOP83D6uPGm0WjQ1tYmNTVVprAA0vR9eHg4S5cuZdmyZTg5OaGvr8+UKVPqbOyXH981Gf83btwA/jde64qaXmuVyf04u6QnuYarKqey5dJH4+fNm8fw4cPZvXs3//d//8fcuXOJjo7mnXfe4f3338fb25vdu3cTGxvLwoULCQ8Pr5ev4xSeP4rNyAtOx44dOXPmDK1bt67w09HR4ezZs1y7do1FixbRrVs32rVrJ73NlaGjowOUvkU+De3atePkyZOytfAy47MnxdPTE0dHR+mNumPHjpw7dw4zM7MK7X30s74OHTowY8YMDh06hKOjI99//32Fso2NjbGwsODIkSNSXHFxsWyN3cHBgYYNG5Kfn1+hvqpsCypDR0en2v5NTk7G2tqamTNn4u7uTps2bSTD25rSqlUrjIyMyMzMlMWrVCq6du1KWFgYaWlp6OjoyGxjMjIyZK7sjxw5goGBAS1btuT69etkZWUxa9Ysevbsib29PQUFBbLynZ2dpZm3yujYsSPZ2dmVjlMtrSe7zXTo0IGSkhKuXr1aoUxzc3MAEhMT8fHxYeTIkbi4uGBrayvZk5RRk3NTHcbGxjRv3pyjR49KcSUlJaSlpVVIe/r0aVq2bPnUn86Wp3Xr1rzyyiuy8VxQUMDPP/8sS2dqaiozvD137txjZ2kcHBxkZQIVwjXBwcGB/Px8fv31VykuMzOTmzdvYm9vL8XZ2dkxdepUYmNjGTRoEJGRkdIxS0tLxo8fz7Zt2wgODpZsyhRefhRl5AUnNDSUw4cPM3HiRNLT0zl37hw7duyQ3hasrKzQ0dFh+fLl/PLLL+zYsYP58+fLyrC2tkalUrFr1y5+//137ty580SyDB8+HI1GQ2BgIFlZWezdu5clS5YAFd8Ya0NwcDCrV6/m0qVLjBgxgmbNmuHj40NiYiK5ubkkJCQwefJkLl68SG5uLjNmzODw4cNcuHCB2NhYfv75Z9nN7lEmT57MokWLiImJ4ezZs0yYMEFmkW9oaEhISAhTp05l3bp15OTkkJaWxsqVK1m3bl2N22BjY0Nubi7p6elcu3atUuPF1q1bk5+fT3R0NDk5OXz11VcVjGmrQ0tLi169epGUlCTFpaSk8Nlnn3H8+HHy8/PZtm0bv//+u6xPioqKGDNmDJmZmdIb6aRJk9DS0pK+Wvrmm284f/48P/30E9OmTZPV6+vri7m5OQMHDiQ5OZlffvmFrVu3cvjwYaB0f43169czb948zpw5Q1ZWljRr9aTY2dkxYsQI/Pz82LZtG7m5uRw7dozFixdLX1m0bt1amhXKyspi3LhxXL58WVaOjY0NKSkp5OXlyZagasuHH37IwoUL+eGHH8jOzmby5MkUFBRUGPuJiYn06dOnVmWfOnWK9PR02a88BgYGjBkzho8++ogDBw5w+vRpAgICKih7f/vb31ixYgUnTpzg+PHjjB8//rH7CY0fP56cnBymTZtGdnY233//vcyIuKb06tULZ2dnRowYwYkTJzh69Ch+fn54enri7u7O/fv3mTRpEvHx8Vy4cIHk5GSOHTsmjdMpU6awd+9ecnNzOXHiBD/99FOV17XCy4eijLzgODs7k5CQwLlz5+jWrRsdOnRg9uzZks2CqakpUVFR/Pe//8XBwYFFixZJCkIZLVq0ICwsjI8//pjmzZvLvsSpDUZGRuzcuZP09HRcXV2ZOXMmc+bMAR4/FV8db7/9NjY2NixYsAA9PT0OHjyIlZUVgwYNwt7entGjR3P//n2MjIzQ09Pj7NmzDB48GDs7OwIDA5k0aRLjxo2rtOzg4GD8/PwICAjAw8MDQ0ND3nnnHVma+fPnM2fOHBYuXIi9vT3e3t7s3Lmz2iWORxk8eDB9+/bFy8sLU1PTSj/t9PHxYerUqUyaNAlXV1cOHTrE7Nmza9dZQGBgINHR0dJD1cjIiIMHD9KvXz/s7OyYNWsW4eHhvPXWW1Kenj170qZNG7p3787QoUPp378/8+bNA0oVnOjoaFJTU3F0dGTq1Kl88cUXsjp1dHSIjY3FzMyMfv364eTkxKJFi6TlE29vb3bt2sW+fft4/fXX6dy5M19++SXW1ta1bt+jREZG4ufnR3BwMG3btmXAgAGkpKRIs1azZ8+mY8eOeHt706NHD0lhepSQkBC0tbVxcHCQljGfhNDQUHx9ffHz88PDwwMDAwO8vb1lY//BgwfExMQwduzYWpXdvXt3OnToIPtVxhdffEH37t0ZMGAAvXr14s0338TNzU2WJjw8HEtLS7p3787w4cMJCQmp0mYHSl9otm7dys6dO3FxceHrr7/ms88+q5X88L9Pips0aUL37t3p1asXtra2bN68GShdTrx+/Tp+fn7Y2dkxdOhQ3nrrLemrrpKSEiZOnIi9vT19+/albdu2/Otf/6q1HAp/TlSirhYM64kHDx6Qm5vLa6+9Jt0U/gw7sL4sbNq0iffee4+bN29Wa1egUDcIIejcuTNTpkzB19e32vRV7far8HRoNBrs7e0ZOnSoNBu5cuVKfvjhB2JjY5+bHJXtMKtQ91T2rFGoO15KA9YGjRthHuL+XHdE1dJv8JdQRNavX4+trS0tWrQgIyOD0NBQhg4dqigizxGVSsU333yjbAf/nClbFvT09KSwsJAVK1aQm5vL8OHDpTSvvPIKy5cvr0cpFRT+nLyUygiUKiQ0rm8pXj4uX77MnDlzuHz5MhYWFgwZMkQyPh0/fjwbN26sNN/IkSP5+uuvn6eoLzUuLi64uLjUtxh/KbS0tIiKiiIkJAQhBI6Ojuzfv19m11DeeeFbb71FYmJipeV98sknfPLJJ89UZgWFPwsv5TKNQv1w9epVbt26VekxIyOjZ+6/QkHhRePSpUuyr5gepWnTplXu26Lw4qE8a54tL+3MiMLzx8zMTFE4FBQeofzeNQoKCpWjfE2joKCgoKCgUK8oyoiCgoKCgoJCvaIoIwoKCgoKCgr1iqKMKCgoKCgoKNQrijKioKCgoKCgUK+8tF/T/PHHH3Xuwvtx6Onp0bhx4+dWX13wMu7cOG/ePLZv316pb48ynueOpCqVipiYmApblFdFTeSH0m3Qr1y5wjfffPP0QtYT9bkzbHx8PF5eXhQUFNTpdfuPf/yDLl26VPDt87LyMt5DFOqHl1IZ+eOPP1ixYgXFxc9vB9YGDRowadKkGt/YqroRP4ubZFVlbtu27bEOtOqavLw8mb8XIyMj7O3tmTlzJv3796+TOkJCQurF5XhVSoRaraZJkyZ1WteVK1eIiIhQdmCtIZU9MLt06YJarZZ5gq4L5syZg5eXF++//z5GRkbVpi+7Ntu3b09GRobk6wegcePGLFu2jICAgBrVHRUVxZQpU2SOIBUU/iy8lMs09+7de66KCJS6pn+eMzF1QdOmTTE0NHzu9e7fvx+1Wk1KSgqdOnVi8ODBnD59uk7KNjAwwMTEpE7KqgvMzc1p2LBhnZa5du1aPDw8sLGxqdNy/0ro6Ohgbm7+VN6mK8PZ2RkbGxs2bdpUq3w5OTmsX7++TmV5Gh4+fFjfIij8xXgplZGXjUOHDtG9e3d0dXWxtLQkKCiIu3fvSsc3btyIu7s7hoaGmJubM3z4cK5evQqUzkZ4eXkB0KRJE1QqlfSm1aNHD6ZMmSKVY2Njw2effcbo0aMxNDTEysqqwjLAoUOHcHV1pVGjRri7u7N9+3ZUKlW1ywqPYmJigrm5Oe3atWPBggU8fPiQuLg46filS5cYNmyY5Nrex8eHvLw86Xh8fDydOnVCX1+fxo0b07VrVy5cuACUzlC4urpKaUtKSpg2bRqNGzfGxMSE6dOnU37TYSEEn3/+Oba2tujq6uLi4sKWLVtk9alUKg4cOIC7uzt6enp06dKF7OxsoPSNNCwsjIyMDFQqFSqVSnLBXubJtIzQ0FDs7OzQ09PD1taW2bNn1/rGHx0dzYABA2RxW7ZswcnJCV1dXUxMTOjVq5c0RgICAhg4cCBhYWGYmZlhZGTEuHHjKCoqkvLv2bOHN998U+qnt99+m5ycHFkdFy9e5N1336Vp06bo6+vj7u5OSkqKdHznzp24ubnRqFEjbG1tCQsLq9FLwZIlS7CwsMDExISJEyfK+qOoqIjp06fTokUL9PX1eeONN4iPj5eOX79+HV9fX1q2bImenh5OTk4yj8kBAQEkJCQQEREhnZu8vDzpnJbNIkRFRdG4cWP27t2Lvb09BgYG9O3bF7VaLZVVXFxMUFCQ1EehoaH4+/tXWIIbMGBApV6bH8eHH37I3LlzefDgQZVpvvzyS5ycnNDX18fS0pIJEyZw584doHSMljmsLGtnmVfm8mMQSmddysZoXl4eKpWK//znP/To0YNGjRqxcePGavu2pnz66aeYmZlhaGjI+++/z8cffyy7Ro8dO0bv3r1p1qwZxsbGeHp6cuLECVkZ8+bNw8rKioYNG/Lqq68SFBRUazkUXmwUZeQF59SpU3h7ezNo0CBOnjzJ5s2bSUpKYtKkSVKaoqIi5s+fT0ZGBtu3byc3N1dSOCwtLdm6dSsA2dnZqNVqIiIiqqwvPDwcd3d30tLSmDBhAh988AFnz54F4Pbt2/Tv3x8nJydOnDjB/PnzCQ0NfeK2PXz4kDVr1gBIy0X37t3Dy8sLAwMDDh48SFJSkvRgKCoqori4mIEDB+Lp6cnJkyc5fPgwgYGBVb7hhoeH891337F27VqSkpK4ceMGMTExsjSzZs0iMjKSVatWcebMGaZOncrIkSNJSEiQpZs5cybh4eEcP36cBg0aMHr0aACGDRtGcHAw7du3R61Wo1arGTZsWKXyGBoaEhUVRWZmJhEREaxZs4alS5fWuM8KCgo4ffo07u7uUpxarcbX15fRo0eTlZVFfHw8gwYNkildBw4cICsri7i4OP79738TExMjuW4HuHv3LtOmTePYsWMcOHAALS0t3nnnHTQaDQB37tzB09OT3377jR07dpCRkcH06dOl43v37mXkyJEEBQWRmZnJ6tWriYqKkvwWVUVcXBw5OTnExcWxbt06oqKipIckwHvvvUdycjLR0dGcPHmSIUOG0LdvX86dOweUbtHt5ubGrl27OH36NIGBgYwaNUpSkiIiIvDw8GDs2LHSubG0tKxUlnv37rFkyRI2bNjAwYMHyc/PJyQkRDq+ePFiNm3aRGRkJMnJydy6datSe5dOnTpx9OhRCgsLH9v2R5kyZQrFxcWsWLGiyjRaWlp89dVXnD59mnXr1vHTTz8xffp0oHTZadmyZRgZGUntfFT2mhAaGkpQUBBZWVl4e3tX27c1YdOmTSxYsIDFixeTmpqKlZUVq1atkqW5ffs2/v7+JCYmcuTIEdq0aUO/fv24ffs2UKpoL126lNWrV3Pu3Dm2b9+Ok5NTrdqm8OLzUtqM/FnYtWsXBgYGsriSkhJZ+IsvvmD48OHSDEabNm346quv8PT0ZNWqVTRq1Eh6KALY2try1Vdf0alTJ+7cuYOBgYHk/8LMzKxaO5R+/foxYcIEoPTmtHTpUuLj42nXrh2bNm1CpVKxZs0aGjVqhIODA5cuXWLs2LG1aneXLl3Q0tLi/v37aDQabGxsGDp0KFD61q+lpcW3334rKRiRkZE0btyY+Ph43N3duXnzJm+//TatWrUCkDkqK8+yZcuYMWMGgwcPBuDrr79m79690vG7d+/y5Zdf8tNPP+Hh4SH1YVJSEqtXr8bT01NKu2DBAin88ccf8/e//50HDx6gq6uLgYEBDRo0wNzc/LFtnzVrlvTfxsaG4OBgNm/eLD1UquPChQsIIXj11VelOLVaTXFxMYMGDcLa2hqgws1aR0eH7777Dj09Pdq3b88///lPPvroI+bPn4+WlpbUP2WsXbsWMzMzMjMzcXR05Pvvv+f333/n2LFj0nhq3bq1rG8+/vhj/P39pT6cP38+06dPZ+7cuVW2p0mTJqxYsQJtbW3atWvH3//+dw4cOMDYsWPJycnh3//+NxcvXpTaGxISwp49e4iMjOSzzz6jRYsWsofuhx9+yJ49e/jvf//LG2+8gbGxMTo6Oujp6VV7bh4+fMjXX38tjatJkybxz3/+Uzq+fPlyZsyYwTvvvAPAihUr+PHHHyuU06JFCwoLC7l8+bJ0PqpDT0+PuXPn8sknnzB27NhKbVkencV87bXXmD9/Ph988AH/+te/0NHRwdjYGJVKVW07q2LKlCkMGjRIFve4vq0Jy5cvZ8yYMbz33ntAqU1NbGysNKMD8Le//U2WZ/Xq1TRp0oSEhATefvtt8vPzMTc3p1evXrzyyitYWVnRqVOnJ2qjwouLMjNSj3h5eZGeni77ffvtt7I0qampREVFYWBgIP28vb3RaDTk5uYCkJaWho+PD9bW1hgaGtKjRw8A8vPzay2Ts7Oz9L/sxla25JOdnY2zs7PMSdST3BQ2b95MWloaO3bsoHXr1nz77bfSAy41NZXz589jaGgotbdp06Y8ePCAnJwcmjZtSkBAAN7e3vTv35+IiAjZVPqj3Lx5E7VaLSkZUGpo/OisQmZmJg8ePKB3796yPl6/fn2FZYpH+8bCwgJA6puasmXLFt58803Mzc0xMDBg9uzZtTpPZU7XHj0HLi4u9OzZEycnJ4YMGcKaNWsoKCiQ5XNxcUFPT08Ke3h4cOfOHX799Veg1GZh+PDh2NraYmRkJBkal8mWnp5Ohw4dqnTslpqayj//+U9ZH5bNRjzOlqp9+/Yyo00LCwupT0+cOIEQAjs7O1m5CQkJ0rkpKSlhwYIFODs7Y2JigoGBAbGxsU809vX09CRFpLwsN2/e5MqVK7Lxrq2tjZubW4VydHV1AWptQzZmzBiaNWvG4sWLKz0eFxdH7969adGiBYaGhvj5+XH9+nXZku3T8Oh1AXXTt9nZ2RXuEeXDV69eZfz48djZ2WFsbIyxsTF37tyR6hkyZAj379/H1taWsWPHEhMT89xtAhWePcrMSD2ir68ve7uE0nX5R9FoNIwbN67SNVIrKyvu3r1Lnz596NOnDxs3bsTU1JT8/Hy8vb1lNgE1pfzXNSqVSpqKF0JUWA55EqfPlpaWtGnThjZt2mBgYMDgwYPJzMzEzMwMjUaDm5tbpQaApqamQOlMSVBQEHv27GHz5s3MmjWLffv20blz51rLUta23bt3V3BqVt7w9NG+KeuHsvw14ciRI7z77ruEhYXh7e2NsbEx0dHRhIeH17iMZs2aAaXLNWX9oa2tzb59+zh06BCxsbEsX76cmTNnkpKSIvt6qTLK2tG/f38sLS1Zs2YNr776KhqNBkdHR2kMlT1gq0Kj0RAWFlbhzRp4rIfTx403jUaDtrY2qampMoUFkGYUw8PDWbp0KcuWLZPsKaZMmVJnY7/8+K7J+L9x4wbwv/FaUxo0aMCnn35KQECAbBkWSmfE+vXrx/jx45k/fz5NmzYlKSmJMWPGVGtzVFk7Ksujr68vC9dV31bXZwEBAfz+++8sW7YMa2trGjZsiIeHh1SPpaUl2dnZ7Nu3j/379zNhwgS++OILEhISnuvXgArPFmVm5AWnY8eOnDlzhtatW1f46ejocPbsWa5du8aiRYvo1q0b7dq1q/C2rqOjA1RcAqot7dq14+TJk7K18OPHjz9VmZ6enjg6Okq2BR07duTcuXOYmZlVaO+jU9cdOnRgxowZHDp0SFpGKI+xsTEWFhYcOXJEiisuLiY1NVUKOzg40LBhQ/Lz8yvUV5VtQWXo6OhU27/JyclYW1szc+ZM3N3dadOmjWR4W1NatWqFkZERmZmZsniVSkXXrl0JCwsjLS0NHR0dmW1MRkaGzJX9kSNHMDAwoGXLlly/fp2srCxmzZpFz549sbe3rzCz4uzsTHp6uvSgLU/Hjh3Jzs6udJxqaT3ZbaZDhw6UlJRw9erVCmWWLUUkJibi4+PDyJEjcXFxwdbWVrInKaMm56Y6jI2Nad68OUePHpXiSkpKSEtLq5D29OnTtGzZUlIca8OQIUNo3769zJ4HSq+z4uJiwsPD6dy5M3Z2dvz222+yNFW109TUVDZ7eO7cuRrN2tSkb6ujbdu2sj4ra0v5eoKCgujXrx/t27enYcOGXLt2TZZGV1eXAQMG8NVXXxEfH8/hw4c5depUrWRReLFRlJEXnNDQUA4fPszEiRNJT0/n3Llz7NixQ9pLw8rKCh0dHZYvX84vv/zCjh07mD9/vqwMa2trVCoVu3bt4vfff5et19aG4cOHo9FoCAwMJCsri71797JkyRKg4ttPbQgODmb16tVcunSJESNG0KxZM3x8fEhMTCQ3N5eEhAQmT57MxYsXyc3NZcaMGRw+fJgLFy4QGxvLzz//XKXdyOTJk1m0aBExMTGcPXuWCRMmyPZhMDQ0JCQkhKlTp7Ju3TpycnJIS0tj5cqVrFu3rsZtsLGxITc3l/T0dK5du1ap8WLr1q3Jz88nOjqanJwcvvrqqwrGtNWhpaVFr169SEpKkuJSUlL47LPPOH78OPn5+Wzbto3ff/9d1idFRUWMGTOGzMxM/u///o+5c+cyadIktLS0pK+WvvnmG86fP89PP/1UYdMuX19fzM3NGThwIMnJyfzyyy9s3bqVw4cPA6W2AOvXr2fevHmcOXOGrKwsadbqSbGzs2PEiBH4+fmxbds2cnNzOXbsGIsXL5ZsNVq3bi3NCmVlZTFu3DguX74sK8fGxoaUlBTy8vK4du1arWazHuXDDz9k4cKF/PDDD2RnZzN58mQKCgoqjP3ExET69OnzZI0GFi1axHfffSdbfmnVqhXFxcXSdb5hwwa+/vprWT4bGxvu3LnDgQMHuHbtmqRw/O1vf2PFihWcOHGC48ePM378+BrNKNSkb6vjww8/ZO3ataxbt45z587x6aefcvLkSVmftW7dmg0bNpCVlUVKSgojRoyQzcRFRUWxdu1aTp8+LbVdV1e3xvY4Cn8OFGXkBcfZ2ZmEhATOnTtHt27d6NChA7Nnz5ZsFkxNTYmKiuK///0vDg4OLFq0SFIQymjRogVhYWF8/PHHNG/evMIUcE0xMjJi586dpKen4+rqysyZM5kzZw7w+Kn46nj77bexsbFhwYIF6OnpcfDgQaysrBg0aBD29vaMHj2a+/fvY2RkhJ6eHmfPnmXw4MHY2dkRGBjIpEmTGDduXKVlBwcH4+fnR0BAAB4eHhgaGkoGiGXMnz+fOXPmsHDhQuzt7fH29mbnzp3VLnE8yuDBg+nbty9eXl6YmppW+gmkj48PU6dOZdKkSbi6unLo0CFmz55du84CAgMDiY6Olh6qRkZGHDx4kH79+mFnZ8esWbMIDw/nrbfekvL07NmTNm3a0L17d4YOHUr//v2lTz+1tLSIjo4mNTUVR0dHpk6dyhdffCGrU0dHh9jYWMzMzOjXrx9OTk4sWrRIWj7x9vZm165d7Nu3j9dff53OnTvz5ZdfPvUDIzIyEj8/P4KDg2nbti0DBgwgJSVFmrWaPXs2HTt2xNvbmx49ekgK06OEhISgra2Ng4ODtIz5JISGhuLr64ufnx8eHh6S/dajY//BgwfExMTU2qj7Uf72t7/xt7/9TWYX4erqypdffsnixYtxdHRk06ZNLFy4UJavS5cujB8/nmHDhmFqasrnn38OlC63WFpa0r17d4YPH05ISIjMfqgqatK31TFixAhmzJhBSEgIHTt2lL70e7TPvvvuOwoKCujQoQOjRo0iKCgIMzMz6Xjjxo1Zs2YNXbt2xdnZmQMHDrBz584Xaj8hhadHJZ5k0f8F4sGDB+Tm5vLaa69JA/zPsAPry8KmTZuk/Q2qsytQqBuEEHTu3JkpU6bg6+tbbfr63Hb9ZUaj0WBvb8/QoUOl2ciVK1fyww8/EBsbW8/Svbj07t0bc3NzNmzYUN+i1IrKnjUKdcdLacDauHFjJk2apPimeQasX78eW1tbWrRoQUZGBqGhoQwdOlRRRJ4jKpWKb775RtkO/jlTtizo6elJYWEhK1asIDc3l+HDh0tpXnnlFZYvX16PUr5Y3Lt3j6+//hpvb2+0tbX597//zf79+9m3b199i6bwgvFSKiNQqpD8FZSD583ly5eZM2cOly9fxsLCgiFDhkjGp+PHj2fjxo2V5hs5cmSFNW6FJ8fFxQUXF5f6FuMvhZaWFlFRUYSEhCCEwNHRkf3798tscwIDA2V53nrrLRITEyst75NPPuGTTz55pjLXNyqVih9//JFPP/2UwsJC2rZty9atW+nVq1d9i6bwgvFSLtMo1A9Xr17l1q1blR4zMjKSrQMrKPwVuHTpkuwrpkdp2rRplfu2KLx4KM+aZ8tLOzOi8PwxMzNTFA4FhUcov3eNgoJC5Shf0ygoKCgoKCjUK4oyoqCgoKCgoFCvKMqIgoKCgoKCQr2iKCMKCgoKCgoK9YqijCgoKCgoKCjUKy+tMvLgwW/cun36uf0ePPiteqFeMHr06MGUKVPqW4w6Zd68ebi6uj42TUBAQK23tX5SVCpVrXY+rYn8ULpVd/k9Lf5sPM/zUJ74+HhUKpXMT1Fd8I9//IMvv/yyTsusjry8PFQqFenp6UDN2hYVFfXYfZjKl1kZz6oPFf6avJSf9j548BuHj/RCo6norOxZoaXVEI/O+2nU6NUapa9qi+74+Hi8vLwoKCios03bqipz27Ztz9UFd15enszfi5GREfb29sycOZP+/fvXSR0hISGSE8Hnybx589i+fXuFm7daraZJkyZ1WteVK1eIiIhQdmCtIT169MDV1ZVly5ZJcV26dEGtVss8QdcFc+bMwcvLi/fffx8jI6Ma5Vm9ejX/+te/OH/+PK+88gqvvfYa7777LqGhoU8kw7NqW33Vo/DX4KWcGSl6eOO5KiIAGk0hRQ8rd6/+otK0aVMMDQ2fe7379+9HrVaTkpJCp06dGDx4MKdPn66Tsg0MDF4oB1rm5uY0bNiwTstcu3YtHh4e2NjY1Gm5fyV0dHQwNzd/Km/TleHs7IyNjQ2bNm2qUfq1a9cybdo0goKCyMjIIDk5menTpz+xZ214dm2rr3oU/hq8lMrIy8ahQ4fo3r07urq6WFpaEhQUJHMvvnHjRtzd3TE0NMTc3Jzhw4dz9epVoHQ2wsvLC4AmTZqgUqkICAgAKi7T2NjY8NlnnzF69GgMDQ2xsrLim2++qSCLq6srjRo1wt3dne3bt1c7nVseExMTzM3NadeuHQsWLODhw4fExcVJxy9dusSwYcMk1/Y+Pj7k5eVJx+Pj4+nUqRP6+vo0btyYrl27cuHCBaDiMkdJSQnTpk2jcePGmJiYMH36dMpvOiyE4PPPP8fW1hZdXV1cXFzYsmWLrD6VSsWBAwdwd3dHT0+PLl26kJ2dDZROeYeFhZGRkYFKpUKlUhEVFQVUXKYJDQ3Fzs4OPT09bG1tmT17Ng8fPqxx3wFER0czYMAAWdyWLVtwcnJCV1cXExMTevXqJY2RsuWQsLAwzMzMMDIyYty4cRQVFUn59+zZw5tvvin109tvv01OTo6sjosXL/Luu+/StGlT9PX1cXd3JyUlRTq+c+dO3NzcaNSoEba2toSFhdXIWeWSJUuwsLDAxMSEiRMnyvqjqKiI6dOn06JFC/T19XnjjTeIj4+Xjl+/fh1fX19atmyJnp4eTk5OMo/JAQEBJCQkEBERIZ2bvLy8CksMZcsWe/fuxd7eHgMDA/r27YtarZbKKi4uJigoSOqj0NBQ/P39Kyw1DRgwoFKvzZWxc+dOhg4dypgxY2jdujXt27fH19dXcrwHpQ75/vnPf9KyZUsaNmyIq6sre/bsqbLMypZPoqKisLKyQk9Pj3feeYfr16/XSL6zZ8/SpUsXGjVqRPv27WV9X1k9W7dupX379jRs2BAbGxvCw8Nl5dnY2PDpp5/i5+eHgYEB1tbW/PDDD/z+++/4+PhgYGCAk5MTx48fl/JUd47h8eP/cfcLhRcHRRl5wTl16hTe3t4MGjSIkydPsnnzZpKSkpg0aZKUpqioiPnz55ORkcH27dslN90AlpaWbN26FYDs7GzUajURERFV1hceHo67uztpaWlMmDCBDz74gLNnzwJw+/Zt+vfvj5OTEydOnGD+/PlPPJUM8PDhQ9asWQMgLRfdu3cPLy8vDAwMOHjwIElJSdKDoaioiOLiYgYOHIinpycnT57k8OHDBAYGVvl2Fh4eznfffcfatWtJSkrixo0bxMTEyNLMmjWLyMhIVq1axZkzZ5g6dSojR44kISFBlm7mzJmEh4dz/PhxGjRowOjRowEYNmwYwcHBtG/fHrVajVqtZtiwYZXKY2hoSFRUFJmZmURERLBmzRqWLl1a4z4rKCjg9OnTuLu7S3FqtRpfX19Gjx5NVlYW8fHxDBo0SKZ0HThwgKysLOLi4vj3v/9NTEwMYWFh0vG7d+8ybdo0jh07xoEDB9DS0uKdd95Bo9EAcOfOHTw9Pfntt9/YsWMHGRkZTJ8+XTq+d+9eRo4cSVBQEJmZmaxevZqoqCjJb1FVxMXFkZOTQ1xcHOvWrSMqKkpS5ADee+89kpOTiY6O5uTJkwwZMoS+ffty7tw5oHSLbjc3N3bt2sXp06cJDAxk1KhRkpIUERGBh4cHY8eOlc6NpaVlpbLcu3ePJUuWsGHDBg4ePEh+fj4hISHS8cWLF7Np0yYiIyNJTk7m1q1bldoDderUiaNHj1JYWP3srLm5OUeOHHnswzEiIoLw8HCWLFnCyZMn8fb2ZsCAAVIfVEdKSgqjR49mwoQJpKen4+XlxaefflqjvB999BHBwcGkpaXRpUsXBgwYUKUik5qaytChQ3n33Xc5deoU8+bNY/bs2bLzCbB06VK6du1KWloaf//73xk1ahR+fn6MHDmSEydO0Lp1a/z8/KTxW905ftz4r+39QqEeEX9y7t+/LzIzM8X9+/eluJu3Ton9B2yf++/mrVM1ltvf319oa2sLfX192a9Ro0YCEAUFBUIIIUaNGiUCAwNleRMTE4WWlpaszY9y9OhRAYjbt28LIYSIi4uTlVmGp6enmDx5shS2trYWI0eOlMIajUaYmZmJVatWCSGEWLVqlTAxMZHVu2bNGgGItLS0atucm5srAKGrqyv09fWFlpaWAISNjY24fv26EEKItWvXirZt2wqNRiPlKywsFLq6umLv3r3i+vXrAhDx8fGV1jF37lzh4uIihS0sLMSiRYuk8MOHD0XLli2Fj4+PEEKIO3fuiEaNGolDhw7JyhkzZozw9fUVQvyv//bv3y8d3717twCkvihfbxmAiImJqbJPPv/8c+Hm5lal/OVJS0sTgMjPz5fiUlNTBSDy8vIqzePv7y+aNm0q7t69K8WtWrVKGBgYiJKSkkrzXL16VQDi1KnSMb169WphaGgonafydOvWTXz22WeyuA0bNggLC4sq2+Lv7y+sra1FcXGxFDdkyBAxbNgwIYQQ58+fFyqVSly6dEmWr2fPnmLGjBlVltuvXz8RHBwshcuPcyEqXhORkZECEOfPn5fSrFy5UjRv3lwKN2/eXHzxxRdSuLi4WFhZWUljqYyMjIzHno9H+e2330Tnzp0FIOzs7IS/v7/YvHmz7Ly8+uqrYsGCBbJ8r7/+upgwYYIQ4n/XVdk1WL5tvr6+om/fvrL8w4YNE8bGxlXKVVZmZdfO4sWLK61n+PDhonfv3rJyPvroI+Hg4CCFy99j1Gq1AMTs2bOluMOHDwtAqNXqKuV79Bw/bvxXd7+oDZU9axTqDmVmpB7x8vIiPT1d9vv2229laVJTU4mKisLAwED6eXt7o9FoyM3NBSAtLQ0fHx+sra0xNDSkR48eAOTn59daJmdnZ+m/SqXC3NxcWvLJzs7G2dlZ5iSqU6dOta5j8+bNpKWlsWPHDlq3bs23334rOQxLTU3l/PnzGBoaSu1t2rQpDx48ICcnh6ZNmxIQEIC3tzf9+/cnIiJCNpX+KDdv3kStVuPh4SHFNWjQQDarkJmZyYMHD+jdu7esj9evX19hmeLRvrGwsACQ+qambNmyhTfffBNzc3MMDAyYPXt2rc5TmdO1R8+Bi4sLPXv2xMnJiSFDhrBmzRoKCgpk+VxcXNDT05PCHh4e3Llzh19//RWAnJwchg8fjq2tLUZGRpKhcZls6enpdOjQoUrHbqmpqfzzn/+U9WHZbMS9e/eqbE/79u3R1taWwhYWFlKfnjhxAiEEdnZ2snITEhKkc1NSUsKCBQtwdnbGxMQEAwMDYmNjn2js6+np0apVq0pluXnzJleuXJGNd21tbdzc3CqUo6urC/DYdj9ax+HDhzl16hRBQUE8fPgQf39/+vbti0aj4datW/z222907dpVlq9r165kZWXVqF1ZWVmyawCoEK6Kyq6dqurNysqqVM5z585RUlIixT16HTVv3hwAJyenCnFlfV/dOX7c+K/N/UKhfnkpv6b5s6Cvr0/r1q1lcRcvXpSFNRoN48aNIygoqEJ+Kysr7t69S58+fejTpw8bN27E1NSU/Px8vL29ZTYBNaX81zUqlUqaihdCVJjeFE/g9NnS0pI2bdrQpk0bDAwMGDx4MJmZmZiZmaHRaHBzc6vUANDU1BSAyMhIgoKC2LNnD5s3b2bWrFns27ePzp0711qWsrbt3r27glOz8oanj/ZNWT+U5a8JR44c4d133yUsLAxvb2+MjY2Jjo6usK7+OJo1awaULteU9Ye2tjb79u3j0KFDxMbGsnz5cmbOnElKSors66XKKGtH//79sbS0ZM2aNbz66qtoNBocHR2lMVT2gK0KjUZDWFgYgwYNqnDscR5OHzfeNBoN2trapKamyhQWKDVUhtJluKVLl7Js2TKcnJzQ19dnypQpdTb2y4/vmoz/GzdKDdnLzk9NcHR0xNHRkYkTJ5KUlES3bt1ISEiQlJ3K6q3pUsOTXKOPo6p6a3p/qOw6ety1Vd05rm781+X9QuHZocyMvOB07NiRM2fO0Lp16wo/HR0dzp49y7Vr11i0aBHdunWjXbt2Fd7WdXR0AGRvJ09Cu3btOHnypGwt/FFDsyfB09MTR0dHybagY8eOnDt3DjMzswrtffQTwg4dOjBjxgwOHTqEo6Mj33//fYWyjY2NsbCw4MiRI1JccXExqampUtjBwYGGDRuSn59fob6qbAsqQ0dHp9r+TU5OxtrampkzZ+Lu7k6bNm1qbUjXqlUrjIyMyMzMlMWrVCq6du1KWFgYaWlp6OjoyGxjMjIyZK7sjxw5goGBAS1btuT69etkZWUxa9Ysevbsib29fYWZFWdnZ9LT06UHbXk6duxIdnZ2peNUS+vJbjMdOnSgpKSEq1evVijT3NwcgMTERHx8fBg5ciQuLi7Y2tpWsKWoybmpDmNjY5o3b87Ro0eluJKSEtLS0iqkPX36NC1btpQUx9ri4OAAlNrxGBkZ8eqrr5KUlCRLc+jQIezt7Wtc3qPXAFAhXBWVXTvt2rWrsp7K5LSzs6ugTNaGmpzj6sZ/Te4XCvWLooy84ISGhnL48GEmTpxIeno6586dY8eOHdJeGlZWVujo6LB8+XJ++eUXduzYIbPEB7C2tkalUrFr1y5+//33J/5scPjw4Wg0GgIDA8nKymLv3r0sWbIEqPptqSYEBwezevVqLl26xIgRI2jWrBk+Pj4kJiaSm5tLQkICkydP5uLFi+Tm5jJjxgwOHz7MhQsXiI2N5eeff67yxjx58mQWLVpETEwMZ8+eZcKECTLrf0NDQ0JCQpg6dSrr1q0jJyeHtLQ0Vq5cybp162rcBhsbG3Jzc0lPT+fatWuVGi+2bt2a/Px8oqOjycnJ4auvvqpgTFsdWlpa9OrVS3bTT0lJ4bPPPuP48ePk5+ezbds2fv/9d1mfFBUVMWbMGDIzM/m///s/5s6dy6RJk9DS0pK+Wvrmm284f/48P/30E9OmTZPV6+vri7m5OQMHDiQ5OZlffvmFrVu3cvjwYaB0f43169czb948zpw5Q1ZWlvQW+qTY2dkxYsQI/Pz82LZtG7m5uRw7dozFixfz448/AqV9WvZWnJWVxbhx47h8+bKsHBsbG1JSUsjLy+PatWu1ms16lA8//JCFCxfyww8/kJ2dzeTJkykoKKgw9hMTE+nTp0+Nyvzggw+YP38+ycnJXLhwgSNHjuDn54epqam0RPLRRx+xePFiNm/eTHZ2Nh9//DHp6elMnjy5RnWUzQp8/vnn/Pzzz6xYseKxX+M8ysqVK6VrZ+LEiRQUFEiG2+UJDg7mwIEDzJ8/n59//pl169axYsUKmRHwk1DdOX7c+K/t/UKh/lCUkRccZ2dnEhISOHfuHN26daNDhw7Mnj1bslkwNTUlKiqK//73vzg4OLBo0SJJQSijRYsWhIWF8fHHH9O8eXPZlzi1wcjIiJ07d5Keno6rqyszZ85kzpw5wOOn4qvj7bffxsbGhgULFqCnp8fBgwexsrJi0KBB2NvbM3r0aO7fv4+RkRF6enqcPXuWwYMHY2dnR2BgIJMmTWLcuHGVlh0cHIyfnx8BAQF4eHhgaGjIO++8I0szf/585syZw8KFC7G3t8fb25udO3dWu8TxKIMHD6Zv3754eXlhampa6aedPj4+TJ06lUmTJuHq6sqhQ4eYPXt27ToLCAwMJDo6WnqoGhkZcfDgQfr164ednR2zZs0iPDyct956S8rTs2dP2rRpQ/fu3Rk6dCj9+/dn3rx5QKmCEx0dTWpqKo6OjkydOpUvvvhCVqeOjg6xsbGYmZnRr18/nJycWLRokfTG6+3tza5du9i3bx+vv/46nTt35ssvv8Ta2rrW7XuUyMhI/Pz8CA4Opm3btgwYMICUlBRp1mr27Nl07NgRb29vevToISlMjxISEoK2tjYODg7SMuaTEBoaiq+vL35+fnh4eEj2W4+O/QcPHhATE8PYsWNrVGavXr04cuQIQ4YMwc7OjsGDB9OoUSMOHDgg7ZcTFBREcHAwwcHBODk5sWfPHnbs2EGbNm1qVEfnzp359ttvWb58Oa6ursTGxtZYSVy0aBGLFy/GxcWFxMREfvjhhypnfDp27Mh//vMfoqOjcXR0ZM6cOfzzn/+Uvux7Uqo7x48b/7W9XyjUHypR1wuKz5kHDx6Qm5vLa6+9Jt0U/gw7sL4sbNq0iffee4+bN29Wa1egUDcIIejcuTNTpkzB19e32vRV7far8HRoNBrs7e0ZOnSoNBu5cuVKfvjhB2JjY+tZOoW6prJnjULd8VIasDZq9Coenfc/1x1RdV5p+pdQRNavX4+trS0tWrQgIyOD0NBQhg4dqigizxGVSsU333yjbAf/nCmb5vf09KSwsJAVK1aQm5vL8OHDpTSvvPIKy5cvr0cpFRT+nLyUygiUKiR/BeXgeXP58mXmzJnD5cuXsbCwYMiQIZLx6fjx49m4cWOl+UaOHMnXX3/9PEV9qXFxccHFxaW+xfhLoaWlRVRUFCEhIQghcHR0ZP/+/TL7g/LOC9966y0SExMrLe+TTz7hk08+eaYyKyj8WXgpl2kU6oerV69y69atSo8ZGRlhZmb2nCVSUKhfLl26JPuK6VGaNm1a5b4tCi8eyrPm2fLSzowoPH/MzMwUhUNB4RHK712joKBQOcrXNAoKCgoKCgr1iqKMKCgoKCgoKNQrijKioKCgoKCgUK8oyoiCgoKCgoJCvaIoIwoKCgoKCgr1ykurjFx8UMTJ2/ee2+/ig9p7Ca1vevTowZQpU+pbjDpl3rx5uLq6PjZNQEBAhS3DnxUqlapWO5/WRH4o3SK7/J4Wfzae53koT3x8PCqVSuanqC74xz/+wZdfflmnZVZHXl4eKpWK9PR0oGZti4qKonHjxs9FvhdZBoUXh5fy096LD4rompJFoeb5baHSUEtF8hv2tGykU6P0VW3RHR8fj5eXFwUFBXV2oVZV5rZt2yq4TX+W5OXlyfy9GBkZYW9vz8yZM+nfv3+d1BESEiI5EXyezJs3j+3bt0sPhDLUajVNmjSp07quXLlCRESEsgNrDenRoweurq4sW7ZMiuvSpQtqtVrmCboumDNnDl5eXrz//vsYGRnVKM/q1av517/+xfnz53nllVd47bXXePfddwkNDX0iGZ5V2xQUniUv5czIjYfFz1URASjUCG48LH6udT4tTZs2xdDQ8LnXu3//ftRqNSkpKXTq1InBgwdz+vTpOinbwMBAcjD2ImBubk7Dhg3rtMy1a9fi4eGBjY1NnZb7V0JHRwdzc/On8jZdGc7OztjY2LBp06YapV+7di3Tpk0jKCiIjIwMkpOTmT59+hN71oZn1zYFhWfJS6mMvGwcOnSI7t27o6uri6WlJUFBQdy9e1c6vnHjRtzd3TE0NMTc3Jzhw4dz9epVoHQ2wsvLC4AmTZqgUqkkL5rll2lsbGz47LPPGD16NIaGhlhZWfHNN99UkMXV1ZVGjRrh7u7O9u3bZVPENcHExARzc3PatWvHggULePjwIXFxcdLxS5cuMWzYMMm1vY+PD3l5edLx+Ph4OnXqhL6+Po0bN6Zr165cuHABqLjMUVJSwrRp02jcuDEmJiZMnz6d8psOCyH4/PPPsbW1RVdXFxcXF7Zs2SKrT6VSceDAAdzd3dHT06NLly5kZ2cDpdPNYWFhZGRkoFKpUKlUREVFARWXaUJDQ7Gzs0NPTw9bW1tmz57Nw4cPa9x3ANHR0QwYMEAWt2XLFpycnNDV1cXExIRevXpJY6RsOSQsLAwzMzOMjIwYN24cRUX/W1rcs2cPb775ptRPb7/9Njk5ObI6Ll68yLvvvkvTpk3R19fH3d2dlJQU6fjOnTtxc3OjUaNG2NraEhYWRnFx9Qr6kiVLsLCwwMTEhIkTJ8r6o6ioiOnTp9OiRQv09fV54403iI+Pl45fv34dX19fWrZsiZ6eHk5OTjKPyQEBASQkJBARESGdm7y8vApLGWVLBnv37sXe3h4DAwP69u2LWq2WyiouLiYoKEjqo9DQUPz9/SssNQ0YMKBSr82VsXPnToYOHcqYMWNo3bo17du3x9fXV3K8B6UO+f75z3/SsmVLGjZsiKurK3v27KmyzMqWaaKiorCyskJPT4933nmH69evVytbded71apVtGrVCh0dHdq2bcuGDRtk+b/88kucnJzQ19fH0tKSCRMmPJWSpfByoygjLzinTp3C29ubQYMGcfLkSTZv3kxSUhKTJk2S0hQVFTF//nwyMjLYvn07ubm5ksJhaWnJ1q1bAcjOzkatVhMREVFlfeHh4bi7u5OWlsaECRP44IMPOHv2LAC3b9+mf//+ODk5ceLECebPn//EU8kADx8+ZM2aNQDSctG9e/fw8vLCwMCAgwcPkpSUJD0YioqKKC4uZuDAgXh6enLy5EkOHz5MYGBglW+B4eHhfPfdd6xdu5akpCRu3LhBTEyMLM2sWbOIjIxk1apVnDlzhqlTpzJy5EgSEhJk6WbOnEl4eDjHjx+nQYMGjB49GoBhw4YRHBxM+/btUavVqNVqhg0bVqk8hoaGREVFkZmZSUREBGvWrGHp0qU17rOCggJOnz6Nu7u7FKdWq/H19WX06NFkZWURHx/PoEGDZErXgQMHyMrKIi4ujn//+9/ExMQQFhYmHb979y7Tpk3j2LFjHDhwAC0tLd555x00Gg0Ad+7cwdPTk99++40dO3aQkZHB9OnTpeN79+5l5MiRBAUFkZmZyerVq4mKipL8FlVFXFwcOTk5xMXFsW7dOqKioiRFDuC9994jOTmZ6OhoTp48yZAhQ+jbty/nzp0DSrfodnNzY9euXZw+fZrAwEBGjRolPTQjIiLw8PBg7Nix0rmxtLSsVJZ79+6xZMkSNmzYwMGDB8nPzyckJEQ6vnjxYjZt2kRkZCTJycncunWrUnugTp06cfToUQoLq/cabm5uzpEjRyRlujIiIiIIDw9nyZIlnDx5Em9vbwYMGCD1QXWkpKQwevRoJkyYQHp6Ol5eXnz66aePzVPd+Y6JiWHy5MkEBwdz+vRpxo0bx3vvvSd7qdDS0uKrr77i9OnTrFu3jp9++onp06fXSGaFvyDiT879+/dFZmamuH//vhSXceuuaP5T2nP/Zdy6W2O5/f39hba2ttDX15f9GjVqJABRUFAghBBi1KhRIjAwUJY3MTFRaGlpydr8KEePHhWAuH37thBCiLi4OFmZZXh6eorJkydLYWtrazFy5EgprNFohJmZmVi1apUQQohVq1YJExMTWb1r1qwRgEhLS6u2zbm5uQIQurq6Ql9fX2hpaQlA2NjYiOvXrwshhFi7dq1o27at0Gg0Ur7CwkKhq6sr9u7dK65fvy4AER8fX2kdc+fOFS4uLlLYwsJCLFq0SAo/fPhQtGzZUvj4+AghhLhz545o1KiROHTokKycMWPGCF9fXyHE//pv//790vHdu3cLQOqL8vWWAYiYmJgq++Tzzz8Xbm5uVcpfnrS0NAGI/Px8KS41NVUAIi8vr9I8/v7+omnTpuLu3f+Nz1WrVgkDAwNRUlJSaZ6rV68KQJw6dUoIIcTq1auFoaGhdJ7K061bN/HZZ5/J4jZs2CAsLCyqbIu/v7+wtrYWxcXFUtyQIUPEsGHDhBBCnD9/XqhUKnHp0iVZvp49e4oZM2ZUWW6/fv1EcHCwFC4/zoWoeE1ERkYKQJw/f15Ks3LlStG8eXMp3Lx5c/HFF19I4eLiYmFlZSWNpTIyMjIeez4e5bfffhOdO3cWgLCzsxP+/v5i8+bNsvPy6quvigULFsjyvf7662LChAlCiP9dV2XXYPm2+fr6ir59+8ryDxs2TBgbG1cpV3Xnu0uXLmLs2LGyuCFDhoh+/fpVWeZ//vMfYWJiIoUjIyMfK8OLRmXPGoW6Q5kZqUe8vLxIT0+X/b799ltZmtTUVKKiojAwMJB+3t7eaDQacnNzAUhLS8PHxwdra2sMDQ3p0aMHAPn5+bWWydnZWfqvUqkwNzeXlnyys7NxdnaWOYnq1KlTrevYvHkzaWlp7Nixg9atW/Ptt99KDsNSU1M5f/48hoaGUnubNm3KgwcPyMnJoWnTpgQEBODt7U3//v2JiIiQTaU/ys2bN1Gr1Xh4eEhxDRo0kM0qZGZm8uDBA3r37i3r4/Xr11dYpni0bywsLACkvqkpW7Zs4c0338Tc3BwDAwNmz55dq/NU5nTt0XPg4uJCz549cXJyYsiQIaxZs4aCggJZPhcXF/T09KSwh4cHd+7c4ddffwUgJyeH4cOHY2tri5GRkWRoXCZbeno6HTp0qNKxW2pqKv/85z9lfVg2G3Hv3r0q29O+fXu0tbWlsIWFhdSnJ06cQAiBnZ2drNyEhATp3JSUlLBgwQKcnZ0xMTHBwMCA2NjYJxr7enp6tGrVqlJZbt68yZUrV2TjXVtbGzc3twrl6OrqAjy23Y/WcfjwYU6dOkVQUBAPHz7E39+fvn37otFouHXrFr/99htdu3aV5evatStZWVk1aldWVpbsGgAqhMtT3fnOysqqVqa4uDh69+5NixYtMDQ0xM/Pj+vXr8uWmBUUyngpv6b5s6Cvr0/r1q1lcRcvXpSFNRoN48aNIygoqEJ+Kysr7t69S58+fejTpw8bN27E1NSU/Px8vL29ZTYBNaX81zUqlUqamhVCVFgOEU/g9NnS0pI2bdrQpk0bDAwMGDx4MJmZmZiZmaHRaHBzc6vUANDU1BSAyMhIgoKC2LNnD5s3b2bWrFns27ePzp0711qWsrbt3r27glOz8oanj/ZNWT+U5a8JR44c4d133yUsLAxvb2+MjY2Jjo4mPDy8xmU0a9YMKF2uKesPbW1t9u3bx6FDh4iNjWX58uXMnDmTlJQU2ddLlVHWjv79+2NpacmaNWt49dVX0Wg0ODo6SmOo7AFbFRqNhrCwMAYNGlTh2OM8nD5uvGk0GrS1tUlNTZUpLFBqqAyly3BLly5l2bJlkn3ClClT6mzslx/fNRn/N27cAP43XmuCo6Mjjo6OTJw4kaSkJLp160ZCQoKk7FRWb00NVJ/kGq3ufFcn04ULF+jXrx/jx49n/vz5NG3alKSkJMaMGVNrGymFvwbKzMgLTseOHTlz5gytW7eu8NPR0eHs2bNcu3aNRYsW0a1bN9q1a1fhbV1Hp/Rz45KSkqeSpV27dpw8eVK2Fn78+PGnKtPT0xNHR0fJtqBjx46cO3cOMzOzCu199FPFDh06MGPGDA4dOoSjoyPff/99hbKNjY2xsLDgyJEjUlxxcTGpqalS2MHBgYYNG5Kfn1+hvqpsCypDR0en2v5NTk7G2tqamTNn4u7uTps2bR5rK1AZrVq1wsjIiMzMTFm8SqWia9euhIWFkZaWho6Ojsw2JiMjQ+bK/siRIxgYGNCyZUuuX79OVlYWs2bNomfPntjb21eYWXF2diY9PV160JanY8eOZGdnVzpOtbSe7DbToUMHSkpKuHr1aoUyzc3NAUhMTMTHx4eRI0fi4uKCra1tBVuKmpyb6jA2NqZ58+YcPXpUiispKSEtLa1C2tOnT9OyZUtJcawtDg4OQKkdj5GREa+++ipJSUmyNIcOHcLe3r7G5T16DQAVwuWp7nzb29s/Vqbjx49TXFxMeHg4nTt3xs7Ojt9++61G8ir8NVGUkRec0NBQDh8+zMSJE0lPT+fcuXPs2LFD2kvDysoKHR0dli9fzi+//MKOHTtklvgA1tbWqFQqdu3axe+///7EFu3Dhw9Ho9EQGBhIVlYWe/fuZcmSJUDFt6TaEBwczOrVq7l06RIjRoygWbNm+Pj4kJiYSG5uLgkJCUyePJmLFy+Sm5vLjBkzOHz4MBcuXCA2Npaff/65yhvz5MmTWbRoETExMZw9e5YJEybIvjIwNDQkJCSEqVOnsm7dOnJyckhLS2PlypWsW7euxm2wsbEhNzeX9PR0rl27VqnxYuvWrcnPzyc6OpqcnBy++uqrCsa01aGlpUWvXr1kD4KUlBQ+++wzjh8/Tn5+Ptu2beP333+X9UlRURFjxowhMzOT//u//2Pu3LlMmjQJLS0t6aulb775hvPnz/PTTz8xbdo0Wb2+vr6Ym5szcOBAkpOT+eWXX9i6dSuHDx8GSvfXWL9+PfPmzePMmTNkZWVJs1ZPip2dHSNGjMDPz49t27aRm5vLsWPHWLx4MT/++CNQ2qdls0JZWVmMGzeOy5cvy8qxsbEhJSWFvLw8rl27VqvZrEf58MMPWbhwIT/88APZ2dlMnjyZgoKCCmM/MTGRPn361KjMDz74gPnz55OcnMyFCxc4cuQIfn5+mJqaSkspH330EYsXL2bz5s1kZ2fz8ccfk56ezuTJk2tUR9ks4ueff87PP//MihUrHvs1DlR/vj/66COioqL4+uuvOXfuHF9++SXbtm2TDH5btWpFcXGxdF/asGEDX3/9dY3kVfhroigjLzjOzs4kJCRw7tw5unXrRocOHZg9e7Zks2BqakpUVBT//e9/cXBwYNGiRZKCUEaLFi0ICwvj448/pnnz5rIvcWqDkZERO3fuJD09HVdXV2bOnMmcOXOAx0/FV8fbb7+NjY0NCxYsQE9Pj4MHD2JlZcWgQYOwt7dn9OjR3L9/HyMjI/T09Dh79iyDBw/Gzs6OwMBAJk2axLhx4yotOzg4GD8/PwICAvDw8MDQ0JB33nlHlmb+/PnMmTOHhQsXYm9vj7e3Nzt37qx2ieNRBg8eTN++ffHy8sLU1LTSTzt9fHyYOnUqkyZNwtXVlUOHDjF79uzadRYQGBhIdHS09FA1MjLi4MGD9OvXDzs7O2bNmkV4eDhvvfWWlKdnz560adOG7t27M3ToUPr378+8efOAUgUnOjqa1NRUHB0dmTp1Kl988YWsTh0dHWJjYzEzM6Nfv344OTmxaNEiafnE29ubXbt2sW/fPl5//XU6d+7Ml19+ibW1da3b9yiRkZH4+fkRHBxM27ZtGTBgACkpKdKs1ezZs+nYsSPe3t706NFDeoA+SkhICNra2jg4OEjLmE9CaGgovr6++Pn54eHhIdlvPTr2Hzx4QExMDGPHjq1Rmb169eLIkSMMGTIEOzs7Bg8eTKNGjThw4IC0X05QUBDBwcEEBwfj5OTEnj172LFjB23atKlRHZ07d+bbb79l+fLluLq6EhsbW62SWN35HjhwIBEREXzxxRe0b9+e1atXExkZKdmrubq68uWXX7J48WIcHR3ZtGkTCxcurJG8Cn9NVOJJFhRfIB48eEBubi6vvfaadFP4M+zA+rKwadMm3nvvPW7evFmjdWaFp0cIQefOnZkyZQq+vr7Vpq9qt1+Fp0Oj0WBvb8/QoUOl2ciVK1fyww8/EBsbW8/SKdQ1lT1rFOqOl9KAtWUjHZLfsH+uO6I2faXBX0IRWb9+Pba2trRo0YKMjAxCQ0MZOnSooog8R1QqFd98842yHfxzpmxZ0NPTk8LCQlasWEFubi7Dhw+X0rzyyissX768HqVUUPhz8lIqI1CqkPwVlIPnzeXLl5kzZw6XL1/GwsKCIUOGSMan48ePZ+PGjZXmGzlypLJmXIe4uLjg4uJS32L8pdDS0iIqKoqQkBCEEDg6OrJ//36ZbU5554VvvfUWiYmJlZb3ySef8MknnzxTmRUU/iy8lMs0CvXD1atXuXXrVqXHjIyMMDMze84SKSjUL5cuXZJ9xfQoTZs2rXIfD4UXD+VZ82x5aWdGFJ4/ZmZmisKhoPAI5feuUVBQqBzlaxoFBQUFBQWFekVRRhQUFBQUFBTqFUUZUVBQUFBQUKhXFGVEQUFBQUFBoV5RlBEFBQUFBQWFeuWl/Zrm0h/3Kbhbe8+dT0oTfR1aNP5zbfzVo0cPXF1dWbZsWX2LUmfMmzeP7du3k56eXmWa57kjqUqlIiYmpsIW5VVRE/mhdBv0K1eu8M033zy9kPVAfe4KGx8fj5eXFwUFBTRu3LjOyv3HP/5Bly5dKvj1eRrqs5+ioqKYMmWKzJfT47CxsWHKlClMmTLlmcql8HLyUiojl/64z9+WxFNY/GQOsZ6Ehg20+CmkR40VkqpuMs/iRllVmdu2bavgNv1ZkpeXJ/P3YmRkhL29PTNnzqR///51UkdISIjkRPB5UpUSoVaradKkSZ3WdeXKFSIiIp7pDqwvi6JaWTu6dOmCWq2WeYGuC+bMmYOXlxfvv/8+RkZG1aYvuy4rQ61WS56J65LaKDfDhg2jX79+NS772LFj6OvrS+HaKuIKf21eymWagrtFz1URASgs1jzXmZi6oGnTphgaGj73evfv349arSYlJYVOnToxePBgTp8+XSdlGxgYSA7GXgTMzc1p2LBhnZa5du1aPDw8sLGxqdNynwVFRS/eNaGjo4O5uflTeZquDGdnZ2xsbNi0aVOt8mVnZ6NWq2W/+t6v5+HDh+jq6tZKDlNTU/T09J6hVAovMy+lMvKycejQIbp3746uri6WlpYEBQVx9+5d6fjGjRtxd3fH0NAQc3Nzhg8fztWrV4HS2Yiyt68mTZqgUqkICAgASt8aH51StbGx4bPPPmP06NEYGhpiZWVVYRng0KFDuLq60qhRI9zd3dm+fTsqlaraZYVHMTExwdzcnHbt2rFgwQIePnxIXFycdPzSpUsMGzZMcm3v4+NDXl6edDw+Pp5OnTqhr69P48aN6dq1KxcuXABKZyhcXV2ltCUlJUybNo3GjRtjYmLC9OnTKb/psBCCzz//HFtbW3R1dXFxcWHLli2y+lQqFQcOHMDd3R09PT26dOlCdnY2UDqdHRYWRkZGBiqVCpVKRVRUFFD6dvjoW2hoaCh2dnbo6elha2vL7NmzefjwYY37DiA6OpoBAwZI4Z07d9K4cWPJi296ejoqlYqPPvpISjNu3DjJqd7169fx9fWlZcuW6Onp4eTkJPMyHBAQQEJCAhEREVJ7yvo/MzOTfv36YWBgQPPmzRk1ahTXrl2T8vbo0YNJkyYxbdo0mjVrRu/evR/bliVLlmBhYYGJiQkTJ06U9UVRURHTp0+nRYsW6Ovr88YbbxAfHy8df9J2lJ3PsuWHqKgoGjduzN69e7G3t8fAwIC+ffuiVqulsoqLiwkKCpLGUWhoKP7+/hXe+gcMGFCpx+bHYWZmhrm5ueynpVX5rbm6sQpw5swZ/v73v2NkZIShoSHdunUjJyeHefPmsW7dOn744QepP+Lj48nLy0OlUvGf//yHHj160KhRIzZu3Cj1y6Ps2LEDd3d3GjVqRLNmzRg0aJB0zMbGRpqBKlOU33nnHVQqFTY2NuTl5aGlpcXx48dlZS5fvhxra+sK16XCXwtFGXnBOXXqFN7e3gwaNIiTJ0+yefNmkpKSmDRpkpSmqKiI+fPnk5GRwfbt28nNzZUUDktLS7Zu3Qr87w0sIiKiyvrCw8Nxd3cnLS2NCRMm8MEHH3D27FkAbt++Tf/+/XFycuLEiRPMnz+f0NDQJ27bw4cPWbNmDYC0XHTv3j28vLwwMDDg4MGDJCUlSQ+HoqIiiouLGThwIJ6enpw8eZLDhw8TGBhY5VtueHg43333HWvXriUpKYkbN24QExMjSzNr1iwiIyNZtWoVZ86cYerUqYwcOZKEhARZupkzZxIeHs7x48dp0KABo0ePBkqns4ODg2nfvr30Zjts2LBK5TE0NCQqKorMzEwiIiJYs2YNS5curXGfFRQUcPr0adzd3aW47t27c/v2bdLS0gBISEigWbNmMvnj4+Px9PQESre1dnNzY9euXZw+fZrAwEBGjRpFSkoKABEREXh4eDB27FipPZaWlqjVajw9PXF1deX48ePs2bOHK1euMHToUJmM69ato0GDBiQnJ7N69eoq2xIXF0dOTg5xcXGsW7eOqKgoSYkDeO+990hOTiY6OpqTJ08yZMgQ+vbty7lz556qHZVx7949lixZwoYNGzh48CD5+fmEhIRIxxcvXsymTZuIjIwkOTmZW7duVbrU0alTJ44ePUphYWGV7X4aqhurly5donv37jRq1IiffvqJ1NRURo8eTXFxMSEhIQwdOlRStNRqNV26dJHKDg0NJSgoiKysLLy9vSvUvXv3bgYNGsTf//530tLSJOW8Mo4dOwZAZGQkarWaY8eOYWNjQ69evYiMjJSljYyMJCAgoM5nqhT+ZIg/Offv3xeZmZni/v37Utypi38I69Bdz/136uIfNZbb399faGtrC319fdmvUaNGAhAFBQVCCCFGjRolAgMDZXkTExOFlpaWrM2PcvToUQGI27dvCyGEiIuLk5VZhqenp5g8ebIUtra2FiNHjpTCGo1GmJmZiVWrVgkhhFi1apUwMTGR1btmzRoBiLS0tGrbnJubKwChq6sr9PX1hZaWlgCEjY2NuH79uhBCiLVr14q2bdsKjUYj5SssLBS6urpi79694vr16wIQ8fHxldYxd+5c4eLiIoUtLCzEokWLpPDDhw9Fy5YthY+PjxBCiDt37ohGjRqJQ4cOycoZM2aM8PX1FUL8r//2798vHd+9e7cApL4oX28ZgIiJiamyTz7//HPh5uZWpfzlSUtLE4DIz8+XxXfs2FEsWbJECCHEwIEDxYIFC4SOjo64deuWUKvVAhBZWVlVltuvXz8RHBwshcuPDSGEmD17tujTp48s7tdffxWAyM7OlvK5urpWWU8Z/v7+wtraWhQXF0txQ4YMEcOGDRNCCHH+/HmhUqnEpUuXZPl69uwpZsyY8VTtKH89REZGCkCcP39eSrNy5UrRvHlzKdy8eXPxxRdfSOHi4mJhZWUljaMyMjIyBCDy8vIe3wGPyFH+HmBnZyel8ff3r9VYnTFjhnjttddEUVFRpXU+Wl4ZZdflsmXLZPGRkZHC2NhYCnt4eIgRI0ZU2R5ra2uxdOlSKVzZ2N+8ebNo0qSJePDggRBCiPT0dKFSqURubm6V5b4oVPasUag7XkoD1j8LXl5erFq1ShaXkpLCyJEjpXBqairnz5+XrUMLIdBoNOTm5mJvb09aWhrz5s0jPT2dGzduSNP1+fn5ODg41EomZ2dn6b9KpcLc3Fxa8snOzsbZ2VnmJKpTp061Kh9g8+bNtGvXjp9//pkpU6bw9ddfSw7Dytpb3pblwYMH5OTk0KdPHwICAvD29qZ379706tWLoUOHYmFhUaGemzdvolar8fDwkOIaNGiAu7u7NCWcmZnJgwcPKiwnFBUV0aFDhyr7pqy+q1evYmVlVeO2b9myhWXLlnH+/Hnu3LlDcXFxjYwdyyhzulbeUVePHj2Ij49n2rRpJCYm8umnn7J161aSkpL4448/aN68Oe3atQNKl64WLVrE5s2buXTpEoWFhRQWFsqMDysjNTWVuLg4DAwMKhzLycnBzs4OoMq35fK0b98ebW1tKWxhYcGpU6cAOHHiBEIIqcwyCgsLJZugJ21HZejp6dGqVSuZLGXj/ubNm1y5ckU21rW1tXFzc5OutTJ0dUsN2O/du1fjuhMTE2XjvUGDym/LNRmr6enpdOvW7YkM06s7b+np6YwdO7bW5T7KwIEDmTRpEjExMbz77rt89913eHl5/SnsnxSeLYoyUo/o6+vTunVrWdzFixdlYY1Gw7hx4wgKCqqQ38rKirt379KnTx/69OnDxo0bMTU1JT8/H29v7ycyHix/E1OpVNINVwhRYSpVPME6r6WlJW3atKFNmzYYGBgwePBgMjMzMTMzQ6PR4ObmVqkRoKmpKVA6rRsUFMSePXvYvHkzs2bNYt++fXTu3LnWspS1bffu3RWcmpU3PH20b8r6ofzD6HEcOXKEd999l7CwMLy9vTE2NiY6Oprw8PAal9GsWTOgdLmmrD+gVBlZu3YtGRkZaGlp4eDggKenJwkJCRQUFEhLNFC6dLV06VKWLVuGk5MT+vr6TJkypdrxotFo6N+/P4sXL65w7FFlsKbKwOPGmkajQVtbm9TUVJnCAkjK0JO2o6aylB/bNRn7N27cAJCdm+p47bXXavTlXE3Gapky9CRUd96epuwydHR0GDVqFJGRkQwaNIjvv//+T//FlkLdoCgjLzgdO3bkzJkzFZSWMk6dOsW1a9dYtGiRtB5e3kBMR0cHKH2TfBratWvHpk2bKCwslG5+5euqLZ6enjg6OrJgwQIiIiLo2LEjmzdvxszM7LEzBh06dKBDhw7MmDEDDw8Pvv/++wrKiLGxMRYWFhw5coTu3bsDpYaIqampdOzYEQAHBwcaNmxIfn6+7IFdW3R0dKrt3+TkZKytrZk5c6YUV2Z4W1NatWqFkZERmZmZslmDMruRZcuW4enpiUqlwtPTk4ULF1JQUMDkyZOltImJifj4+EgzcBqNhnPnzmFvb//Y9nTs2JGtW7diY2NT5dt7XdGhQwdKSkq4evUq3bp1qzTNk7ajthgbG9O8eXOOHj0qyVJSUkJaWprMWBrg9OnTtGzZUlIa65KajFVnZ2fWrVvHw4cPK50deZr+cHZ25sCBA7z33ns1Sv/KK69UWtf777+Po6Mj//rXv3j48KHMCFbhr4tiwPqCExoayuHDh5k4cSLp6emcO3eOHTt2SHtpWFlZoaOjw/Lly/nll1/YsWMH8+fPl5VhbW2NSqVi165d/P7779y5c+eJZBk+fDgajYbAwECysrLYu3cvS5YsASq+NdaG4OBgVq9ezaVLlxgxYgTNmjXDx8eHxMREcnNzSUhIYPLkyVy8eJHc3FxmzJjB4cOHuXDhArGxsfz888+yB9CjTJ48mUWLFhETE8PZs2eZMGGCbBMnQ0NDQkJCmDp1KuvWrSMnJ4e0tDRWrlzJunXratwGGxsbcnNzSU9P59q1a5UaMLZu3Zr8/Hyio6PJycnhq6++qmBMWx1aWlr06tWLpKQkWbyxsTGurq5s3LiRHj16AKUKyokTJ/j555+luDI59u3bx6FDh8jKymLcuHFcvny5QntSUlLIy8vj2rVraDQaJk6cyI0bN/D19eXo0aP88ssvxMbGMnr06Kd+4JfHzs6OESNG4Ofnx7Zt28jNzeXYsWMsXryYH3/88ana8SR8+OGHLFy4kB9++IHs7GwmT55MQUFBhXGfmJhInz59alX21atXuXz5suxX2RdWNRmrkyZN4tatW7z77rscP36cc+fOsWHDBunLLxsbG06ePEl2djbXrl2r1Zdcc+fO5d///jdz584lKyuLU6dO8fnnn1eZ3sbGhgMHDnD58mUKCgqkeHt7ezp37kxoaCi+vr51MuOi8OdHUUZecJydnUlISODcuXN069aNDh06MHv2bGla3NTUlKioKP773//i4ODAokWLJAWhjBYtWhAWFsbHH39M8+bNZV/i1AYjIyN27txJeno6rq6uzJw5kzlz5gAVbRhqw9tvv42NjQ0LFixAT0+PgwcPYmVlxaBBg7C3t2f06NHcv38fIyMj9PT0OHv2LIMHD8bOzo7AwEAmTZrEuHHjKi07ODgYPz8/AgIC8PDwwNDQkHfeeUeWZv78+cyZM4eFCxdib2+Pt7c3O3fulG3QVh2DBw+mb9++eHl5YWpqWunnnT4+PkydOpVJkybh6urKoUOHmD17du06CwgMDCQ6OrrCg9XLy4uSkhJJ8WjSpAkODg6YmprKlLXZs2fTsWNHvL296dGjB+bm5hU+UQ0JCUFbW1vKn5+fz6uvvkpycjIlJSV4e3vj6OjI5MmTMTY2rvJT1KchMjISPz8/goODadu2LQMGDCAlJUWaAXzSdjwJZQ9OPz8/PDw8MDAwwNvbWzbuHzx4QExMTK3tKtq2bYuFhYXsl5qaWmna6saqiYkJP/30E3fu3MHT0xM3NzfWrFkjzZKMHTuWtm3b4u7ujqmpKcnJyTWWs0ePHvz3v/9lx44duLq68re//U36cqkywsPD2bdvH5aWlhXsr8aMGUNRUZH0RZqCgko8yaL/C8SDBw/Izc3ltddek24Mf4YdWF8WNm3axHvvvcfNmzeVN5znhBCCzp07M2XKFGnvEIXni0ajwd7enqFDh0ozkStXruSHH34gNja2nqV78VmwYAHR0dGSwfKfgcqeNQp1x0tpM9KisS4/hfRQfNM8A9avX4+trS0tWrQgIyOD0NBQhg4dqigizxGVSsU333zzTLeDV5BTtiTo6elJYWEhK1asIDc3l+HDh0tpXnnlFZYvX16PUr743Llzh6ysLJYvX15hOVnhL059fVNcVyjffj9fFi9eLKytrUXDhg2FjY2NmDJlirh7964QQohx48ZV2DOh7Ddu3Lh6llxB4cnJz88XXbp0EUZGRsLQ0FB4eHiIhISEx+bp27dvldfDggULnpPkLxb+/v5CR0dHDB06VLbHzJ8B5VnzbHkpl2kU6oerV69y69atSo8ZGRnVu78NBYXnyaVLl6R9YcrTtGlTaW8dhT8HyrPm2fJSLtMo1A9mZmaKwqGg8P8pvxeIgoJC1Shf0ygoKCgoKCjUK4oyoqCgoKCgoFCvKMqIgoKCgoKCQr2iKCMKCgoKCgoK9YqijCgoKCgoKCjUK4oyoqCgoKCgoFCvvLzKyB+/wm/pz+/3x6/PqWF1R48ePZgyZUp9i1GnzJs3r4In1fIEBARU8GHyrFCpVGzfvr3G6WsiP5T6ZQkMDHxyweqZ53kOyhMfH49KpZI5TKwL/vGPf/Dll1/WWXnPoo/y8vJQqVSkp6dXmaYm/XP58mV69+6Nvr4+jRs3rlMZq5MnKirqmdep8Px5OfcZ+eNXWOEGxRU9pz4zGjSESanQ2LJGyQMCAvjjjz8qPKji4+Px8vKioKCgzi64qsrctm1bpW7GnxV5eXky53NGRkbY29szc+ZM+vfvXyd1hISESB6Nnyfz5s1j+/btFW7yarWaJk2a1GldV65cISIi4pluB9+jRw9cXV1ZtmzZM6vjeVBZO7p06YJarcbY2LhO65ozZw5eXl68//77GBkZVZu+ums9IiKCut6T0tLSErVaTbNmzZ6qnKVLl6JWq0lPT6/zfizPszpfCi8WL+fMyL3rz1cRgdL67l1/vnU+JU2bNsXQ0PC517t//37UajUpKSl06tSJwYMHc/r06Top28DAABMTkzopqy4wNzenYcOGdVrm2rVr8fDwwMbGpk7LfRYUFT0//1A1RUdHB3Nzc1QqVZ2W6+zsjI2NDZs2baqT8oyNjet8BkBbWxtzc3MaNHi699CcnBzc3Nxo06bNM9/o8FmdL4UXi5dTGXnJOHToEN27d0dXVxdLS0uCgoK4e/eudHzjxo24u7tjaGiIubk5w4cP5+rVq0DpbISXlxdQ6lJepVIREBAAVFymsbGx4bPPPmP06NEYGhpiZWXFN998U0EWV1dXGjVqhLu7O9u3b6922rc8JiYmmJub065dOxYsWMDDhw+Ji4uTjl+6dIlhw4bRpEkTTExM8PHxIS8vTzoeHx9Pp06dpCnirl27cuHCBaDiMkdJSQnTpk2jcePGmJiYMH369Apvm0IIPv/8c2xtbdHV1cXFxYUtW7bI6lOpVBw4cAB3d3f09PTo0qUL2dnZQOm0cVhYGBkZGahUKlQqFVFRUUDFZZrQ0FDs7OzQ09PD1taW2bNn8/Dhwxr3HUB0dDQDBgyQwjt37qRx48ZoNKVeqtPT01GpVHz00UdSmnHjxkkefq9fv46vry8tW7ZET08PJycn/v3vf0tpAwICSEhIICIiQmpPWf9nZmbSr18/DAwMaN68OaNGjeLatWtS3h49ejBp0iSmTZtGs2bN6N2792PbsmTJEiwsLDAxMWHixImyvigqKmL69Om0aNECfX193njjDeLj46XjT9qOqqb99+7di729PQYGBvTt2xe1Wi2VVVxcTFBQkDSOQkND8ff3r7CMMmDAAJkMT0P5ZZq7d+/i5+eHgYEBFhYWhIeHV7iGK1sWbNy4sTQeK1um+fHHH7Gzs0NXVxcvLy/ZtVYZNjY2bN26lfXr18vuJ/n5+fj4+GBgYICRkRFDhw7lypUrUr6MjAy8vLwwNDTEyMgINzc3jh8/DpQ6Iuzfvz9NmjRBX1+f9u3b8+OPPwLPbllN4cVCUUZecE6dOoW3tzeDBg3i5MmTbN68maSkJCZNmiSlKSoqYv78+WRkZLB9+3Zyc3OlG4SlpSVbt24FIDs7G7VaTURERJX1hYeH4+7uTlpaGhMmTOCDDz7g7NmzANy+fZv+/fvj5OTEiRMnmD9/PqGhoU/ctocPH7JmzRoAabno3r17eHl5YWBgwMGDB0lKSpIeDkVFRRQXFzNw4EA8PT05efIkhw8fJjAwsMq3pvDwcL777jvWrl1LUlISN27cICYmRpZm1qxZREZGsmrVKs6cOcPUqVMZOXIkCQkJsnQzZ84kPDyc48eP06BBA0aPHg3AsGHDCA4Opn379qjVatRqNcOGDatUHkNDQ6KiosjMzCQiIoI1a9awdOnSGvdZQUEBp0+fxt3dXYrr3r07t2/fJi0tDYCEhASaNWsmkz8+Ph5PT0+g1MeGm5sbu3bt4vTp0wQGBjJq1ChSUlKA0uUBDw8Pxo4dK7WnbHrf09MTV1dXjh8/zp49e7hy5QpDhw6Vybhu3ToaNGhAcnIyq1evrrItcXFx5OTkEBcXx7p164iKipIemgDvvfceycnJREdHc/LkSYYMGULfvn05d+7cU7WjMu7du8eSJUvYsGEDBw8eJD8/n5CQEOn44sWL2bRpE5GRkSQnJ3Pr1q1KbYE6derE0aNHKSys+5nZjz76iLi4OGJiYoiNjSU+Pp7U1NSnKvPXX39l0KBB9OvXj/T0dN5//30+/vjjx+Y5duwYffv2ZejQodL9RAjBwIEDuXHjBgkJCezbt4+cnBzZdTBixAhatmzJsWPHSE1N5eOPP5au+4kTJ1JYWMjBgwc5deoUixcvxsDA4KnapvAnoz699NUFlXpSvJQmxFyj5/+7lFZjuf39/YW2tnYFb56NGjUSgCgoKBBCCDFq1CgRGBgoy5uYmCi0tLSq9B559OhRAYjbt28LIYSIi4uTlVmGp6enmDx5shS2trYWI0eOlMIajUaYmZmJVatWCSGEWLVqlTAxMZHVu2bNGgGItLTq256bmysAoaurK/T19YWWlpYAhI2Njbh+/boQQoi1a9eKtm3bCo1GI+UrLCwUurq6Yu/eveL69esCEPHx8ZXWMXfuXOHi4iKFLSwsxKJFi6Tww4cPRcuWLYWPj48QQog7d+6IRo0aiUOHDsnKGTNmjPD19RVC/K//9u/fLx3fvXu3AKS+KF9vGYCIiYmpsk8+//xz4ebmVqX85UlLSxOAyM/Pl8V37NhRLFmyRAghxMCBA8WCBQuEjo6OuHXrllCr1QIQWVlZVZbbr18/ERwcLIXLjw0hhJg9e7bo06ePLO7XX38VgMjOzpbyubq6VllPGf7+/sLa2lrmuXXIkCFi2LBhQgghzp8/L1Qqlbh06ZIsX8+ePcWMGTOeqh3lr4fIyEgBiPPnz0tpVq5cKZo3by6FmzdvLr744gspXFxcLKysrKRxVEZGRoYARF5e3uM7oBI5yuPv7y+Vf/v2baGjoyOio6Ol49evXxe6urqy9lU23oyNjUVkZKQQ4n/XYNn1OmPGDGFvby+73kJDQx8rlxBC+Pj4CH9/fykcGxsrtLW1ZePyzJkzAhBHjx4VQghhaGgooqKiKi3PyclJzJs3r9JjlZ0vY2PjKmV7Vihee58tL6cB658ELy8vVq1aJYtLSUlh5MiRUjg1NZXz58/L1qGFEGg0GnJzc7G3tyctLY158+aRnp7OjRs3pOn6/Px8HBwcaiWTs7Oz9F+lUmFubi4t+WRnZ+Ps7CzzWNmpU6dalQ+wefNm2rVrx88//8yUKVP4+uuvJQ+mZe0tb8vy4MEDcnJy6NOnDwEBAXh7e9O7d2969erF0KFDsbCwqFDPzZs3UavVeHh4SHENGjTA3d1dWqrJzMzkwYMHFZYTioqK6NChQ5V9U1bf1atXsbKyqnHbt2zZwrJlyzh//jx37tyhuLi4RsaOZZR5gS3vNbRHjx7Ex8czbdo0EhMT+fTTT9m6dStJSUn88ccfNG/enHbt2gGlS1eLFi1i8+bNXLp0icLCQgoLC9HX139s3ampqcTFxVX6xpqTk4OdnR2AbNbmcbRv3x5tbW0pbGFhwalTpwA4ceIEQgipzDIKCwslm6AnbUdl6Onp0apVK5ksZeP+5s2bXLlyRTbWtbW1cXNzk661MnR1dYHSmZa6JCcnh6KiItlYbtq0KW3btn2qcrOysujcubNsZvHROmpTjqWlpWzmycHBgcaNG5OVlcXrr7/OtGnTeP/999mwYQO9evViyJAhUp8HBQXxwQcfEBsbS69evRg8eLDselN4+VGUkXpEX1+f1q1by+IuXrwoC2s0GsaNG0dQUFCF/FZWVty9e5c+ffrQp08fNm7ciKmpKfn5+Xh7ez+R8WD5r2tUKpV0wxVCVFgOEU9g7W9paUmbNm1o06YNBgYGDB48mMzMTMzMzNBoNLi5uVVqBGhqagpAZGQkQUFB7Nmzh82bNzNr1iz27dtH586day1LWdt2795dwctqecPTR/umrB/KP4wex5EjR3j33XcJCwvD29sbY2NjoqOjCQ8Pr3EZZV9BFBQUSP0BpcrI2rVrycjIQEtLCwcHBzw9PUlISKCgoEBaooHSpaulS5eybNkynJyc0NfXZ8qUKdWOF41GQ//+/Vm8eHGFY48qgzVVBh431jQaDdra2qSmpsoUFkBShp60HTWVpfzYrsnYv3HjBoDs3NQFNb3OKpP7cTZJT3L9VlVOZUulj8bPmzeP4cOHs3v3bv7v//6PuXPnEh0dzTvvvMP777+Pt7c3u3fvJjY2loULFxIeHl4vX8Yp1A+KzcgLTseOHTlz5gytW7eu8NPR0eHs2bNcu3aNRYsW0a1bN9q1aye90ZWho6MDlL5JPg3t2rXj5MmTsvXwMgO0J8XT0xNHR0cWLFgAlLb33LlzmJmZVWjvo5/2dejQgRkzZnDo0CEcHR35/vvvK5RtbGyMhYUFR44ckeKKi4tl6+wODg40bNiQ/Pz8CvVVZV9QGTo6OtX2b3JyMtbW1sycORN3d3fatGkjGd7WlFatWmFkZERmZqYsvsxuZNmyZXh6eqJSqfD09CQ+Pl5mLwKQmJiIj48PI0eOxMXFBVtbW8kO43HtKRuLNjY2FfrqSWYjHkeHDh0oKSnh6tWrFeoyNzd/qnbUFmNjY5o3b87Ro0eluJKSEslG51FOnz5Ny5Ytn/rT2fK0bt2aV155RTaWCwoK+Pnnn2XpTE1NZYa3586de+wsjYODg6xMoEK4Jjg4OJCfn8+vv/5vv6XMzExu3ryJvb29FGdnZ8fUqVOJjY1l0KBBREZGSscsLS0ZP34827ZtIzg4WLInU/hroCgjLzihoaEcPnyYiRMnkp6ezrlz59ixY4f0xmBlZYWOjg7Lly/nl19+YceOHcyfP19WhrW1NSqVil27dvH7779z586dJ5Jl+PDhaDQaAgMDycrKYu/evSxZsgSo+NZYG4KDg1m9ejWXLl1ixIgRNGvWDB8fHxITE8nNzSUhIYHJkydz8eJFcnNzmTFjBocPH+bChQvExsby888/y254jzJ58mQWLVpETEwMZ8+eZcKECTKrfENDQ0JCQpg6dSrr1q0jJyeHtLQ0Vq5cybp162rcBhsbG3Jzc0lPT+fatWuVGjC2bt2a/Px8oqOjycnJ4auvvqpgTFsdWlpa9OrVi6SkJFm8sbExrq6ubNy4kR49egClCsqJEyf4+eefpbgyOfbt28ehQ4fIyspi3LhxXL58uUJ7UlJSyMvL49q1a2g0GiZOnMiNGzfw9fXl6NGj/PLLL8TGxjJ69OinfuCXx87OjhEjRuDn58e2bdvIzc3l2LFjLF68WPrK4knb8SR8+OGHLFy4kB9++IHs7GwmT55MQUFBhXGfmJhInz59alX2qVOnSE9Pl/3KY2BgwJgxY/joo484cOAAp0+fJiAgAC0t+S38b3/7GytWrODEiRMcP36c8ePHP3YvofHjx5OTk8O0adPIzs7m+++/lxkR15RevXrh7OzMiBEjOHHiBEePHsXPzw9PT0/c3d25f/8+kyZNIj4+ngsXLpCcnMyxY8ek63bKlCns3buX3NxcTpw4wU8//VTlNa3wcvJyKiN6JqWbkD1PGjQsrbeOcXZ2JiEhgXPnztGtWzc6dOjA7NmzpWlxU1NToqKi+O9//4uDgwOLFi2SFIQyWrRoQVhYGB9//DHNmzeXfYlTG4yMjNi5cyfp6em4uroyc+ZM5syZA1S0YagNb7/9NjY2NixYsAA9PT0OHjyIlZUVgwYNwt7entGjR3P//n2MjIzQ09Pj7NmzDB48GDs7OwIDA5k0aRLjxo2rtOzg4GD8/PwICAjAw8MDQ0ND3nnnHVma+fPnM2fOHBYuXIi9vT3e3t7s3LlTtkFbdQwePJi+ffvi5eWFqalppZ93+vj4MHXqVCZNmoSrqyuHDh1i9uzZtessIDAwkOjo6AoPVi8vL0pKSiTFo0mTJjg4OGBqaiq7sc+ePZuOHTvi7e1Njx49MDc3r/CJakhICNra2lL+/Px8Xn31VZKTkykpKcHb2xtHR0cmT56MsbFxhYdiXRAZGYmfnx/BwcG0bduWAQMGkJKSIs1YPWk7noTQ0FB8fX3x8/PDw8MDAwMDvL29ZeP+wYMHxMTEMHbs2FqV3b17dzp06CD7VcYXX3xB9+7dGTBgAL169eLNN9/Ezc1NliY8PBxLS0u6d+/O8OHDCQkJQU9Pr8q6rays2Lp1Kzt37sTFxYWvv/6azz77rFbyw/8+KW7SpAndu3enV69e2NrasnnzZqDUxub69ev4+flhZ2fH0KFDeeuttwgLCwNKZ5omTpyIvb09ffv2pW3btvzrX/+qtRwKf15Uoq4WDeuJBw8ekJuby2uvvSZ/IP7x6/PdhEzPpMa7r75MbNq0iffee4+bN29KxnsKzxYhBJ07d2bKlCnS3iEKzxeNRoO9vT1Dhw6VZiJXrlzJDz/8QGxs7HOT42XZKffPQJXP4o0+KgABAABJREFUGoU64eU1YG1s+ZdUDp4169evx9bWlhYtWpCRkUFoaChDhw5VFJHniEql4ptvvnmm28EryClbEvT09KSwsJAVK1aQm5vL8OHDpTSvvPIKy5cvr0cpFRT+vLycyzQKz4zLly8zcuRI7O3tmTp1KkOGDJF2aR0/fjwGBgaV/saPH1/Pkr9cuLi4MGrUqPoW4y+DlpYWUVFRvP7663Tt2pVTp06xf/9+2fJXYGCg7FPbt956q8rr4UmWQhQUXmZe3mUahefO1atXuXXrVqXHjIyMnrkPCwWFF4lLly5J+8KUp2nTptLeOgp/DpRnzbPl5V2mUXjumJmZKQqHgsL/p/y+NQoKClWjLNMoKCgoKCgo1CuKMqKgoKCgoKBQryjKiIKCgoKCgkK9oigjCgoKCgoKCvWKoowoKCgoKCgo1Csv7dc06jtqCgoLnlt9TRo2wcKgohv7F5mXcffGefPmsX379kr9e5QREBDAH3/8wfbt25+5PCqVipiYmArblFdFTeSH0q3Qr1y5Iu3x8mfjeZ6D8sTHx+Pl5UVBQQGNGzeus3L/8Y9/0KVLF6ZNm1ZnZb7IvIz3D4X646VURtR31Ly9/W2KSmrvSvxJ0dHWYdfAXTVWSKq6GT+LG2VVZW7btu2xTrTqmry8PJm/FyMjI+zt7Zk5cyb9+/evkzpCQkLqxe14VUqEWq2mSZMmdVrXlStXiIiIeKY7sL4sD5rK2tGlSxfUarXMC3RdMGfOHLy8vHj//fcxMjKqNn3Zddm+fXsyMjLQ1taWjjVu3Jhly5YREBBQo7qjoqKYMmWKzAmkgsKfiZdymaagsOC5KiIARSVFz3Umpi5o2rQphoaGz73e/fv3o1arSUlJoVOnTgwePJjTp0/XSdkGBgaYmNS9w8InxdzcnIYN69Zp49q1a/Hw8MDGxqZOy30WFBU93+uwJujo6GBubv5UnqYrw9nZGRsbGzZt2lSrfDk5Oaxfv75OZXkaHj58WN8iKPwFeSmVkZeNQ4cO0b17d3R1dbG0tCQoKIi7d+9Kxzdu3Ii7uzuGhoaYm5szfPhwrl69CpTORnh5eQGlXlxVKpX0ttWjRw+mTJkilWNjY8Nnn33G6NGjMTQ0xMrKqsIywKFDh3B1daVRo0a4u7uzfft2VCpVtcsKj2JiYoK5uTnt2rVjwYIFPHz4kLi4OOn4pUuXGDZsGE2aNMHExAQfHx/y8vKk4/Hx8XTq1Al9fX0aN25M165duXDhAlA6Q+Hq6iqlLSkpYdq0aTRu3BgTExOmT59O+U2HhRB8/vnn2Nraoquri4uLC1u2bJHVp1KpOHDgAO7u7ujp6dGlSxeys7OB0rfSsLAwMjIyUKlUqFQqyQ17mTfTMkJDQ7Gzs0NPTw9bW1tmz55d65t/dHQ0AwYMkMI7d+6kcePGkhff9PR0VCoVH330kZRm3LhxklO969ev4+vrS8uWLdHT08PJyUnmZTggIICEhAQiIiKk9pT1f2ZmJv369cPAwIDmzZszatQorl27JuXt0aMHkyZNYtq0aTRr1ozevXs/ti1LlizBwsICExMTJk6cKOuLoqIipk+fTosWLdDX1+eNN94gPj5eOv6k7Sg7n2WzCFFRUTRu3Ji9e/dib2+PgYEBffv2Ra1WS2UVFxcTFBQkjaPQ0FD8/f0rLL8NGDCgUo/Nj+PDDz9k7ty5PHjwoMo0X375JU5OTujr62NpacmECRO4c+cOUDo+y5xVlrVz3rx5QMXxB6WzLmXjMy8vD5VKxX/+8x969OhBo0aN2LhxY7V9W1M+/fRTzMzMMDQ05P333+fjjz+WXZ/Hjh2jd+/eNGvWDGNjYzw9PTlx4oSsjHnz5mFlZUXDhg159dVXCQoKqrUcCi8+ijLygnPq1Cm8vb0ZNGgQJ0+eZPPmzSQlJTFp0iQpTVFREfPnzycjI4Pt27eTm5srKRyWlpZs3boVgOzsbNRqNREREVXWFx4ejru7O2lpaUyYMIEPPviAs2fPAnD79m369++Pk5MTJ06cYP78+YSGhj5x2x4+fMiaNWsApOWie/fu4eXlhYGBAQcPHiQpKUl6OBQVFVFcXMzAgQPx9PTk5MmTHD58mMDAwCrfcsPDw/nuu+9Yu3YtSUlJ3Lhxg5iYGFmaWbNmERkZyapVqzhz5gxTp05l5MiRJCQkyNLNnDmT8PBwjh8/ToMGDRg9ejQAw4YNIzg4mPbt26NWq1Gr1QwbNqxSeQwNDYmKiiIzM5OIiAjWrFnD0qVLa9xnBQUFnD59Gnd3dymue/fu3L59m7S0NAASEhJo1qyZTP74+Hg8PT2B0m2t3dzc2LVrF6dPnyYwMJBRo0aRkpICQEREBB4eHowdO1Zqj6WlJWq1Gk9PT1xdXTl+/Dh79uzhypUrDB06VCbjunXraNCgAcnJyaxevbrKtsTFxZGTk0NcXBzr1q0jKipKekgCvPfeeyQnJxMdHc3JkycZMmQIffv25dy5c0/Vjsq4d+8eS5YsYcOGDRw8eJD8/HxCQkKk44sXL2bTpk1ERkaSnJzMrVu3KrV36dSpE0ePHqWwsLDKdpdnypQpFBcXs2LFiirTaGlp8dVXX3H69GnWrVvHTz/9xPTp04HSZadly5ZhZGQktfNR2WtCaGgoQUFBZGVl4e3tXW3f1oRNmzaxYMECFi9eTGpqKlZWVqxatUqW5vbt2/j7+5OYmMiRI0do06YN/fr14/bt2wBs2bKFpUuXsnr1as6dO8f27dtxcnKqVdsU/iSIPzn3798XmZmZ4v79+1LcmWtnhGOU43P/nbl2psZy+/v7C21tbaGvry/7NWrUSACioKBACCHEqFGjRGBgoCxvYmKi0NLSkrX5UY4ePSoAcfv2bSGEEHFxcbIyy/D09BSTJ0+WwtbW1mLkyJFSWKPRCDMzM7Fq1SohhBCrVq0SJiYmsnrXrFkjAJGWllZtm3NzcwUgdHV1hb6+vtDS0hKAsLGxEdevXxdCCLF27VrRtm1bodFopHyFhYVCV1dX7N27V1y/fl0AIj4+vtI65s6dK1xcXKSwhYWFWLRokRR++PChaNmypfDx8RFCCHHnzh3RqFEjcejQIVk5Y8aMEb6+vkKI//Xf/v37peO7d+8WgNQX5estAxAxMTFV9snnn38u3NzcqpS/PGlpaQIQ+fn5sviOHTuKJUuWCCGEGDhwoFiwYIHQ0dERt27dEmq1WgAiKyurynL79esngoODpXD5sSGEELNnzxZ9+vSRxf36668CENnZ2VI+V1fXKuspw9/fX1hbW4vi4mIpbsiQIWLYsGFCCCHOnz8vVCqVuHTpkixfz549xYwZM56qHeWvh8jISAGI8+fPS2lWrlwpmjdvLoWbN28uvvjiCylcXFwsrKyspHFURkZGhgBEXl7e4zugnBxff/21aNq0qfjjjz+EEEIYGxuLyMjIKvP+5z//ESYmJlI4MjJSGBsbV0hX2fh7tOyya3LZsmXVyluTvn2UN954Q0ycOFEW17Vr18eO7+LiYmFoaCh27twphBAiPDxc2NnZiaKiomrle9ZU9qxRqDuUmZF6xMvLi/T0dNnv22+/laVJTU0lKipK5vHT29sbjUZDbm4uAGlpafj4+GBtbY2hoSE9evQAID8/v9YyOTs7S/9VKhXm5ubSkk92djbOzs4yJ1GdOnWqdR2bN28mLS2NHTt20Lp1a7799lvJaVhqairnz5/H0NBQam/Tpk158OABOTk5NG3alICAALy9venfvz8RERGy6fRHuXnzJmq1Gg8PDymuQYMGslmFzMxMHjx4QO/evWV9vH79enJycqrsGwuLUkPlsr6pKVu2bOHNN9/E3NwcAwMDZs+eXavzVOZ4rbyjrh49ehAfH48QgsTERHx8fHB0dCQpKYm4uDiaN29Ou3btgNKlqwULFuDs7IyJiQkGBgbExsZWK0dqaipxcXGyfior89G+erR/H0f79u1lRpsWFhZSf544cQIhBHZ2drL6EhISpLqetB2VoaenR6tWrSqV5ebNm1y5ckU21rW1tXFzc6tQjq6uLlA601IbxowZQ7NmzVi8eHGlx+Pi4ujduzctWrTA0NAQPz8/rl+/LluufRrKn7O66Nvs7OwK94fy4atXrzJ+/Hjs7OwwNjbG2NiYO3fuSPUMGTKE+/fvY2try9ixY4mJiaG4uPgJW6nwIvNSfk3zZ0FfX5/WrVvL4i5evCgLazQaxo0bV+k6qZWVFXfv3qVPnz706dOHjRs3YmpqSn5+Pt7e3k9kPFj+6xqVSiXZIgghKiyHiCdw+mxpaUmbNm1o06YNBgYGDB48mMzMTMzMzNBoNLi5uVVqBGhqagpAZGQkQUFB7Nmzh82bNzNr1iz27dtH586day1LWdt2795dwbFZecPTR/umrB/K8teEI0eO8O677xIWFoa3tzfGxsZER0cTHh5e4zKaNWsGlC7XlPUHlCoja9euJSMjAy0tLRwcHPD09CQhIYGCggJpiQZKl66WLl3KsmXLJDuEKVOmVDteNBoN/fv3r/SBWaacQem4rgmPG2sajQZtbW1SU1NlCguUGik/TTtqKkv5sV2TsX/jxg0A2bmpCQ0aNODTTz8lICBAtgQLcOHCBfr168f48eOZP38+TZs2JSkpiTFjxlRrb1RZOyrLU/6c1VXfVtdnAQEB/P777yxbtgxra2saNmyIh4eHVI+lpSXZ2dns27eP/fv3M2HCBL744gsSEhKe65eACs8eRRl5wenYsSNnzpypoLSUcerUKa5du8aiRYuk9fDjx4/L0ujo6AClbztPQ7t27di0aROFhYXSg7p8XbXF09MTR0dHFixYQEREBB07dmTz5s2YmZk99vPIDh060KFDB2bMmIGHhwfff/99BWXE2NgYCwsLjhw5Qvfu3YFSQ8TU1FQ6duwIgIODAw0bNiQ/P1/2wK4tOjo61fZvcnIy1tbWzJw5U4orM7ytKa1atcLIyIjM/8feecdlVf0P/H0f9pahgIqiIsQSUKLUCs2B8cudGhpKDhy4F5ojrSi1KE3TzFTMhg1nqbgHKm5xBG6QVBQVVPZ4nvv7g7hfHpYPiKB036/Xo9xzzz3nc85dn3s+n3M+sbE4OjpK6YV+IwsXLsTX1xdBEPD19eWzzz4jNTWVcePGSXkLR07ee+89oODFf+XKFZydncttT8uWLVm/fj329vZoaz/bR4eXlxdKpZLk5GRef/31UvNUth0VxczMDGtra44fPy7JolQqOXPmjJozJsCFCxdo2LChpDRWhD59+vD5558zd+5ctfSTJ0+Sn59PeHg4CkXBYPZvv/2mlqesdtatW1dt5PDKlSsajdpo0rdPwsnJiePHjxMYGKjWluL1LF26FH9/fwD++ecfNYdoKBht6tatG926dSMkJISXXnqJ8+fPS/ewTO1ANtM854SGhhIdHU1ISAgxMTFcuXKFLVu2SGtpNGrUCF1dXRYvXsz169fZsmULH3/8sVoZjRs3RhAE/vrrL+7duyd54VeU/v37o1KpCA4OJi4ujh07dvDFF18AJb+AKsKkSZNYvnw5t27dYsCAAVhZWdG9e3eioqKIj4/nwIEDjBs3jps3bxIfH8/06dOJjo7mxo0b7Ny5k8uXL5f5kBw3bhzz5s1j48aNXLx4kVGjRqmtxWBiYsLkyZOZMGECa9as4dq1a5w5c4ZvvvmGNWvWaNwGe3t74uPjiYmJ4f79+6U6MDo4OJCYmMi6deu4du0aX3/9dQln2iehUCjo2LEjhw4dUks3MzPD09OTH3/8UTLTvfHGG5w+fZrLly9LaYVy7Nq1iyNHjhAXF8fw4cO5c+dOifYcO3aMhIQE7t+/j0qlIiQkhJSUFAICAjh+/DjXr19n586dDB48+Klf+MVxdHRkwIABDBw4kA0bNhAfH8+JEyeYP38+27Zte6p2VIYxY8bw2WefsXnzZi5dusS4ceNITU0tcd1HRUXRuXPnyjUamDdvHqtWrVIzvzRr1oz8/HzpHl+7di3ffvut2nH29vakp6ezZ88e7t+/Lykcb775JkuWLOH06dOcPHmSESNGaDSioEnfPokxY8awcuVK1qxZw5UrV/jkk084d+6cWp85ODiwdu1a4uLiOHbsGAMGDJBMXVAw02nlypVcuHBBaruBgQGNGzeukCwyzz+1Uhkx1zNHV0u3WuvU1dLFXK9qF7eCAj+FAwcOcOXKFV5//XW8vLyYNWuWNCxet25dIiIi+P3333FxcWHevHmSglBIgwYNmDt3LtOmTcPa2rrEMLCmmJqa8ueffxITE4OnpyczZsxg9uzZQEkfhorw9ttvY29vT1hYGIaGhhw8eJBGjRrRq1cvnJ2dGTx4MFlZWZiammJoaMjFixfp3bs3jo6OBAcHM3r0aIYPH15q2ZMmTWLgwIEEBQXRunVrTExM6Nmzp1qejz/+mNmzZ/PZZ5/h7OyMn58ff/75p9oCbU+id+/edOnShfbt21O3bt1Sp0F2796dCRMmMHr0aDw9PTly5AizZs2qWGcBwcHBrFu3rsSLtX379iiVSknxMDc3x8XFhbp166opa7NmzaJly5b4+fnRrl07bGxsSkxRnTx5MlpaWtLxiYmJ1K9fn8OHD6NUKvHz88PNzY1x48ZhZmYmfbFXJatXr2bgwIFMmjQJJycnunXrxrFjx6QRwMq2ozKEhoYSEBDAwIEDad26teS7VfS6z87OZuPGjQwbNqzSbX7zzTd588031fwiPD09+fLLL5k/fz5ubm789NNPfPbZZ2rHtWnThhEjRtCvXz/q1q3LggULgAJzi52dHW+88Qb9+/dn8uTJGBoaPlEOTfr2SQwYMIDp06czefJkWrZsKc3yK9pnq1atIjU1FS8vLwIDAxk7diz16tWT9tepU4cVK1bQtm1bWrRowZ49e/jzzz+fq7WEZKoGQayM0f85Ijs7m/j4eJo0aaJ2kcvLwVcPP/30k7TGQdEvGplnhyiKvPrqq4wfP15aO0SmelGpVDg7O9O3b19pJPKbb75h8+bN7Ny5s4ale37p1KkTNjY2rF27tqZFqTBlvWtkqoZa6zNia2z7n1QOnjU//PADTZs2pUGDBpw9e5bQ0FD69u0rKyLViCAIfPfdd890OXgZdQpNgr6+vuTk5LBkyRLi4+Pp37+/lEdHR4fFixfXoJTPF5mZmXz77bf4+fmhpaXFL7/8wu7du9m1a1dNiybzHFIrzTQyz447d+7w3nvv4ezszIQJE+jTp4+0SuuIESPUpmEW/Y0YMaKGJa9deHh4qDkGyjxbFAoFERERvPzyy7Rt25bz58+ze/duNfNXcHAwTk5O0vZbb71V5v3w6aef1kQzqhVBENi2bRuvv/46rVq14s8//2T9+vV07NixpkWTeQ6ptWYameonOTmZx48fl7rP1NRUzRYsI1PbuXXrlrQuTHEsLCyktXVkXgzkd82zpdaaaWSqn3r16skKh4zMvxRft0ZGRqZsZDONjIyMjIyMTI0iKyMyMjIyMjIyNYqsjMjIyMjIyMjUKLIyIiMjIyMjI1OjyMqIjIyMjIyMTI1Sa5WRvNu3yfr772r75d2+XdNNrjDt2rVj/PjxNS1GlTJnzpwSwcuKExQUVOGlrSuLIAhs2rRJ4/yayA8Fy3UHBwdXXrAapjrPQXH279+PIAhqMYqqgnfeeYcvv/yySst8EgkJCQiCQExMDKBZ2yIiIqhTp47GZZbGs+pDmf8utXJqb97t21zr8hZiJUKJVxZBV5dmkdvRqV9fo/xBQUE8fPiwxItq//79tG/fntTU1HIfGBWhrDI3bNhQrWG4ExIS1OK9mJqa4uzszIwZM+jatWuV1DF58mQpiGB1MmfOHDZt2lTiAZ6UlIS5edXGLLp79y6LFi16piuwtmvXDk9PTxYuXPjM6qgOSmtHmzZtSEpKwszMrErrmj17Nu3bt2fo0KHlRpwuyvLly1m6dClXr15FR0eHJk2a8O677xIaGlopGZ5V22qqHpn/DrVyZCQ/NbVaFREAMTeX/NTqi4VTFVhYWGBiYlLt9e7evZukpCSOHTuGj48PvXv35sKFC1VStrGx8XMVRMvGxgY9Pb0qLXPlypW0bt0ae3v7Ki33WZBbzfehJujq6mJjY/NUkaZLo0WLFtjb2/PTTz9plH/lypVMnDiRsWPHcvbsWQ4fPszUqVMrHVUbnl3baqoemf8OtVIZqW0cOXKEN954AwMDA+zs7Bg7dqxaiPEff/wRb29vTExMsLGxoX///iQnJwMFoxHt27cHCqK4CoJAUFAQUNJMY29vz6effsrgwYMxMTGhUaNG0lLvRWXx9PREX18fb29vNm3a9MQh3eJYWlpiY2PDSy+9RFhYGHl5eezbt0/af+vWLfr164e5uTmWlpZ0796dhIQEaf/+/fvx8fHByMiIOnXq0LZtW27cuAGUNHMolUomTpxInTp1sLS0ZOrUqRRfdFgURRYsWEDTpk0xMDDAw8ODP/74Q60+QRDYs2cP3t7eGBoa0qZNGy5dugQUDHvPnTuXs2fPIggCgiAQEREBlDTThIaG4ujoiKGhIU2bNmXWrFnk5eVp3HcA69ato1u3btL2n3/+SZ06daQovjExMQiCwJQpU6Q8w4cPl4LqPXjwgICAABo2bIihoSHu7u5qUYaDgoI4cOAAixYtktpT2P+xsbH4+/tjbGyMtbU1gYGB3L9/Xzq2Xbt2jB49mokTJ2JlZUWnTp3KbcsXX3yBra0tlpaWhISEqPVFbm4uU6dOpUGDBhgZGfHKK6+wf/9+aX9l21HcxFBottixYwfOzs4YGxvTpUsXkpKSpLLy8/MZO3asdB2FhoYyaNCgEqambt26lRqxuTT+/PNP+vbty5AhQ3BwcMDV1ZWAgAAp8B4UBOT76KOPaNiwIXp6enh6ehIZGVlmmaWZTyIiImjUqBGGhob07NmTBw8eaCTfxYsXadOmDfr6+ri6uqr1fWn1rF+/HldXV/T09LC3tyc8PFytPHt7ez755BMGDhyIsbExjRs3ZvPmzdy7d4/u3btjbGyMu7s7J0+elI550jkG+OOPP3B3d8fAwABLS0s6duwoPR/Le1bIPF/Iyshzzvnz5/Hz86NXr16cO3eOX3/9lUOHDjF69GgpT25uLh9//DFnz55l06ZNUqhuADs7O9avXw/ApUuXSEpKYtGiRWXWFx4ejre3N2fOnGHUqFGMHDmSixcvApCWlkbXrl1xd3fn9OnTfPzxx5UeTgbIy8tjxYoVAJK5KDMzk/bt22NsbMzBgwc5dOiQ9HLIzc0lPz+fHj164Ovry7lz54iOjiY4OLjML7Tw8HBWrVrFypUrOXToECkpKWzcuFEtz8yZM1m9ejXLli3j77//ZsKECbz33nscOHBALd+MGTMIDw/n5MmTaGtrM3jwYAD69evHpEmTcHV1JSkpiaSkJPr161eqPCYmJkRERBAbG8uiRYtYsWIFX331lcZ9lpqayoULF/D29pbS3njjDdLS0jhz5gwABw4cwMrKSk3+/fv34+vrCxQsa92qVSv++usvLly4QHBwMIGBgRw7dgyARYsW0bp1a4YNGya1x87OjqSkJHx9ffH09OTkyZNERkZy9+5d+vbtqybjmjVr0NbW5vDhwyxfvrzMtuzbt49r166xb98+1qxZQ0REhKTEAbz//vscPnyYdevWce7cOfr06UOXLl24cuXKU7WjNDIzM/niiy9Yu3YtBw8eJDExkcmTJ0v758+fz08//cTq1as5fPgwjx8/LtUXyMfHh+PHj5OTk1NmuwuxsbHh6NGj5b4cFy1aRHh4OF988QXnzp3Dz8+Pbt26SX3wJI4dO8bgwYMZNWoUMTExtG/fnk8++USjY6dMmcKkSZM4c+YMbdq0oVu3bmUqMqdOnaJv3768++67nD9/njlz5jBr1iy18wnw1Vdf0bZtW86cOcP//d//ERgYyMCBA3nvvfc4ffo0Dg4ODBw4UPpgeNI5TkpKIiAggMGDBxMXF8f+/fvp1asXoihW+FkhU8OILzhZWVlibGysmJWVJaVlXrggxjq9VO2/zAsXNJZ70KBBopaWlmhkZKT209fXFwExNTVVFEVRDAwMFIODg9WOjYqKEhUKhVqbi3L8+HERENPS0kRRFMV9+/aplVmIr6+vOG7cOGm7cePG4nvvvSdtq1QqsV69euKyZctEURTFZcuWiZaWlmr1rlixQgTEM2fOPLHN8fHxIiAaGBiIRkZGokKhEAHR3t5efPDggSiKorhy5UrRyclJVKlU0nE5OTmigYGBuGPHDvHBgwciIO7fv7/UOj788EPRw8ND2ra1tRXnzZsnbefl5YkNGzYUu3fvLoqiKKanp4v6+vrikSNH1MoZMmSIGBAQIIri//pv9+7d0v6tW7eKgNQXxestBBA3btxYZp8sWLBAbNWqVZnyF+fMmTMiICYmJqqlt2zZUvziiy9EURTFHj16iGFhYaKurq74+PFjMSkpSQTEuLi4Msv19/cXJ02aJG0XvzZEURRnzZoldu7cWS3tn3/+EQHx0qVL0nGenp5l1lPIoEGDxMaNG4v5+flSWp8+fcR+/fqJoiiKV69eFQVBEG/duqV2XIcOHcTp06c/VTuK3w+rV68WAfHq1atSnm+++Ua0traWtq2trcXPP/9c2s7PzxcbNWokXUeFnD17VgTEhISE8jtAFMXbt2+Lr776qgiIjo6O4qBBg8Rff/1VVCqVUp769euLYWFhase9/PLL4qhRo0RR/N89VXj/FW9bQECA2KVLF7Xj+/XrJ5qZmZUpV2GZpd038+fPL7We/v37i506dVIrZ8qUKaKLi4u0Xfz5Unhdzpo1S0qLjo4WATEpKalM+Yqe41OnTpXZ3096VlSU0t41MlWHPDJSg7Rv356YmBi13/fff6+W59SpU0RERKhF/PTz80OlUhEfHw/AmTNn6N69O40bN8bExIR27doBkJiYWGGZWrRoIf0tCAI2NjaSyefSpUu0aNFCLUiUj49Phev49ddfOXPmDFu2bMHBwYHvv/9eChp26tQprl69iomJidReCwsLsrOzuXbtGhYWFgQFBeHn50fXrl1ZtGiR2nB6UR49ekRSUhKtW7eW0rS1tdVGFWJjY8nOzqZTp05qffzDDz9w7dq1MvvG1tYWQOobTfnjjz947bXXsLGxwdjYmFmzZlXoPBUGXiseqKtdu3bs378fURSJioqie/fuuLm5cejQIfbt24e1tTUvvfQSUGC6CgsLo0WLFlhaWmJsbMzOnTufKMepU6fYt2+fWj8Vllm0r4r2b3m4urqipaUlbdva2kr9efr0aURRxNHRUa2+AwcOSHVVth2lYWhoSLNmzUqV5dGjR9y9e1ftWtfS0qJVq1YlyjEwMAAKRlqehK2tLdHR0Zw/f56xY8eSl5fHoEGD6NKlCyqVisePH3P79m3atm2rdlzbtm2Ji4vTqF1xcXFq1z9QYrssSrtvyqo3Li6uVDmvXLmCUqmU0oreQ9bW1gC4u7uXSCvs+yedYw8PDzp06IC7uzt9+vRhxYoVpP7ru1eRZ4VMzVMrZ9O8KBgZGeHg4KCWdvPmTbVtlUrF8OHDGTt2bInjGzVqREZGBp07d6Zz5878+OOP1K1bl8TERPz8/CrlPFh8do0gCJIvgiiKJYY4xUoEfbazs6N58+Y0b94cY2NjevfuTWxsLPXq1UOlUtGqVatSnQDr1q0LwOrVqxk7diyRkZH8+uuvzJw5k127dvHqq69WWJbCtm3durVEYLPijqdF+6awHwqP14SjR4/y7rvvMnfuXPz8/DAzM2PdunUlbOvlYWVlBRSYawr7AwqUkZUrV3L27FkUCgUuLi74+vpy4MABUlNTJRMNFJiuvvrqKxYuXIi7uztGRkaMHz/+ideLSqWia9euzJ8/v8S+QuUMCq5rTSjvWlOpVGhpaXHq1Ck1hQUKnJSfph2aylL82tbk2k9JSQFQOzdPws3NDTc3N0JCQjh06BCvv/46Bw4ckJSd0urV1NRQmfuzPMqqV9NnQ2n3UHn31ZPOsZaWFrt27eLIkSPs3LmTxYsXM2PGDI4dO0aTJk2q9Fkh82yRR0aec1q2bMnff/+Ng4NDiZ+uri4XL17k/v37zJs3j9dff52XXnqpxNe6rq4ugNoXSmV46aWXOHfunJo9vKizWWXw9fXFzc2NsLAwoKC9V65coV69eiXaW3QaoZeXF9OnT+fIkSO4ubnx888/lyjbzMwMW1tbjh49KqXl5+dz6tQpadvFxQU9PT0SExNL1FeWf0Fp6OrqPrF/Dx8+TOPGjZkxYwbe3t40b968ws50zZo1w9TUlNjYWLX0Qr+RhQsX4uvriyAI+Pr6sn//fjV/EUAaOXnvvffw8PCgadOmJXwQSmtP4bVob29foq80VUA0xcvLC6VSSXJycom6bGxsnqodFcXMzAxra2uOHz8upSmVSslHpygXLlygYcOGktJYUVxcXADIyMjA1NSU+vXrc+jQIbU8R44cwdnZWePyil7/QIntsijtvikcCSutntLkdHR0LKFMVgRNzrEgCLRt25a5c+dy5swZdHV11fzCNHlWyNQ8sjLynBMaGkp0dDQhISHExMRw5coVtmzZIq2l0ahRI3R1dVm8eDHXr19ny5Ytat74AI0bN0YQBP766y/u3btX6amD/fv3R6VSERwcTFxcHDt27OCLL74Ayv5i0oRJkyaxfPlybt26xYABA7CysqJ79+5ERUURHx/PgQMHGDduHDdv3iQ+Pp7p06cTHR3NjRs32LlzJ5cvXy7z4Txu3DjmzZvHxo0buXjxIqNGjVKbAWBiYsLkyZOZMGECa9as4dq1a5w5c4ZvvvmGNWvWaNwGe3t74uPjiYmJ4f79+6U6MDo4OJCYmMi6deu4du0aX3/9dQln2iehUCjo2LFjiQe/mZkZnp6e/Pjjj5KZ7o033uD06dNcvnxZSiuUo/BrMi4ujuHDh3Pnzp0S7Tl27BgJCQncv38flUpFSEgIKSkpBAQEcPz4ca5fv87OnTsZPHjwU7/wi+Po6MiAAQMYOHAgGzZsID4+nhMnTjB//ny2bdv2VO2oDGPGjOGzzz5j8+bNXLp0iXHjxpGamlriuo+KiqJz584alTly5Eg+/vhjDh8+zI0bNzh69CgDBw6kbt26kolkypQpzJ8/n19//ZVLly4xbdo0YmJiGDdunEZ1FI4KLFiwgMuXL7NkyZJyZ+MU5ZtvvpHum5CQEFJTUyWn7eJMmjSJPXv28PHHH3P58mXWrFnDkiVL1JyAK8OTzvGxY8f49NNPOXnyJImJiWzYsIF79+7h7Oxc4WeFTM1SK5URbXNzhH9HA6oLQVcX7Spe3AoKbKwHDhzgypUrvP7663h5eTFr1ixpWLxu3bpERETw+++/4+Liwrx58yQFoZAGDRowd+5cpk2bhrW1tdpMnIpgamrKn3/+SUxMDJ6ensyYMYPZs2cDJX0YKsLbb7+Nvb09YWFhGBoacvDgQRo1akSvXr1wdnZm8ODBZGVlYWpqiqGhIRcvXqR37944OjoSHBzM6NGjGT58eKllT5o0iYEDBxIUFETr1q0xMTGhZ8+eank+/vhjZs+ezWeffYazszN+fn78+eefagu0PYnevXvTpUsX2rdvT926dUud3tm9e3cmTJjA6NGj8fT05MiRI8yaNatinQUEBwezbt26Ei/W9u3bo1QqJcXD3NwcFxcX6tatq/YAnjVrFi1btsTPz4927dphY2NTYorq5MmT0dLSko5PTEykfv36HD58GKVSiZ+fH25ubowbNw4zMzMUiqp/lKxevZqBAwcyadIknJyc6NatG8eOHZNGrCrbjsoQGhpKQEAAAwcOpHXr1pLvVtHrPjs7m40bNzJs2DCNyuzYsSNHjx6lT58+ODo60rt3b/T19dmzZ4+0Vs7YsWOZNGkSkyZNwt3dncjISLZs2ULz5s01quPVV1/l+++/Z/HixXh6erJz505mzpyp0bHz5s1j/vz5eHh4EBUVxebNm8sc8WnZsiW//fYb69atw83NjdmzZ/PRRx9Js/oqy5POsampKQcPHsTf3x9HR0dmzpxJeHg4b731VoWfFTI1iyBWtVGxmsnOziY+Pp4mTZqoPRjybt+u1kXItM3NNV59tTbx008/8f777/Po0SPJeU/m2SKKIq+++irjx4+X1g6RqV5UKhXOzs707dtXGon85ptv2Lx5Mzt37qxh6WSeBWW9a2SqhlrrwKpTv/5/Ujl41vzwww80bdqUBg0acPbsWUJDQ+nbt6+siFQjgiDw3XffPdPl4GXUKRzm9/X1JScnhyVLlhAfH0///v2lPDo6OixevLgGpZSReXGplWYamWfHnTt3eO+993B2dmbChAn06dNHWqV1xIgRatMwi/5GjBhRw5LXLjw8PAgMDKxpMf4zKBQKIiIiePnll2nbti3nz59n9+7dauav4OBgnJycpO233nqrzPvh008/rYlmyMg8t9RaM41M9ZOcnMzjx49L3Wdqakq9evWqWSIZmZrj1q1b0rowxbGwsJDW1pF5MZDfNc+WWmumkal+6tWrJyscMjL/UnzdGhkZmbKRzTQyMjIyMjIyNYqsjMjIyMjIyMjUKLIyIiMjIyMjI1OjyMqIjIyMjIyMTI0iKyMyMjIyMjIyNUqtVUbSUrK5l5hWbb+0lOyabnKFadeuHePHj69pMaqUOXPm4OnpWW6eoKCgEsuGPysEQWDTpk0a59dEfihYJjs4OLjygtUw1XkOirN//34EQVCLUVQVvPPOO3z55ZdVWuaTSEhIQBAEYmJiAM3aFhERQZ06dapFvudZBpnni1o5tTctJZufZh9FmV+5oFiVQUtbwYCPXsXEQrP550FBQTx8+LDEi2r//v20b9+e1NTUKrtZyypzw4YNJUKnP0sSEhLU4r2Ympri7OzMjBkz6Nq1a5XUMXnyZCmIYHUyZ84cNm3aJL0UCklKSsK8imMW3b17l0WLFj3TFVjbtWuHp6cnCxcufGZ1VAeltaNNmzYkJSWpRYGuCmbPnk379u0ZOnQopqamGh2zfPlyli5dytWrV9HR0aFJkya8++67hIaGVkqGZ9U2GZlnTa0cGclOz6tWRQRAma8iOz2vWut8WiwsLDAxMan2enfv3k1SUhLHjh3Dx8eH3r17c+HChSop29jYWAoy9jxgY2ODnp5elZa5cuVKWrdujb29fZWW+yzIzc2taRFKoKuri42NzVNFmi6NFi1aYG9vz08//aRR/pUrVzJx4kTGjh3L2bNnOXz4MFOnTq10VG14dm2TkXnW1EplpLZx5MgR3njjDQwMDLCzs2Ps2LFkZGRI+3/88Ue8vb0xMTHBxsaG/v37k5ycDBSMRrRv3x4oiOIqCIIUSbO4mcbe3p5PP/2UwYMHY2JiQqNGjaSl3ovK4unpib6+Pt7e3mzatEltmFgTLC0tsbGx4aWXXiIsLIy8vDz27dsn7b916xb9+vXD3NwcS0tLunfvTkJCgrR///79+Pj4YGRkRJ06dWjbti03btwASpo5lEolEydOpE6dOlhaWjJ16lSKLzosiiILFiygadOmGBgY4OHhwR9//KFWnyAI7NmzB29vbwwNDWnTpg2XLl0CCoac586dy9mzZxEEAUEQiIiIAEqaaUJDQ3F0dMTQ0JCmTZsya9Ys8vIqpsSuW7eObt26Sdt//vknderUkaL4xsTEIAgCU6ZMkfIMHz5cCqr34MEDAgICaNiwIYaGhri7u6tFGQ4KCuLAgQMsWrRIak9h/8fGxuLv74+xsTHW1tYEBgZy//596dh27doxevRoJk6ciJWVFZ06dSq3LV988QW2trZYWloSEhKi1he5ublMnTqVBg0aYGRkxCuvvML+/ful/ZVtR3FTRqHJYMeOHTg7O2NsbEyXLl1ISkqSysrPz2fs2LHSdRQaGsqgQYNKmJq6detWasTm0vjzzz/p27cvQ4YMwcHBAVdXVwICAqTAe1AQkO+jjz6iYcOG6Onp4enpSWRkZJlllmamiYiIoFGjRhgaGtKzZ08ePHjwRNlu3rzJu+++i4WFBUZGRnh7e3Ps2DFp/7Jly2jWrBm6uro4OTmxdu1ateO//PJL3N3dMTIyws7OjlGjRj2VkiVT+5GVkeec8+fP4+fnR69evTh37hy//vorhw4dYvTo0VKe3NxcPv74Y86ePcumTZuIj4+XFA47OzvWr18PwKVLl0hKSmLRokVl1hceHo63tzdnzpxh1KhRjBw5kosXLwKQlpZG165dcXd35/Tp03z88ceVHk4GyMvLY8WKFQCSuSgzM5P27dtjbGzMwYMHOXTokPRyyM3NJT8/nx49euDr68u5c+eIjo4mODi4zC/B8PBwVq1axcqVKzl06BApKSls3LhRLc/MmTNZvXo1y5Yt4++//2bChAm89957HDhwQC3fjBkzCA8P5+TJk2hrazN48GAA+vXrx6RJk3B1dSUpKYmkpCT69etXqjwmJiZEREQQGxvLokWLWLFiBV999ZXGfZaamsqFCxfw9vaW0t544w3S0tI4c+YMAAcOHMDKykpN/v379+Pr6wsULGvdqlUr/vrrLy5cuEBwcDCBgYHSy2bRokW0bt2aYcOGSe2xs7MjKSkJX19fPD09OXnyJJGRkdy9e5e+ffuqybhmzRq0tbU5fPgwy5cvL7Mt+/bt49q1a+zbt481a9YQEREhKXEA77//PocPH2bdunWcO3eOPn360KVLF65cufJU7SiNzMxMvvjiC9auXcvBgwdJTExk8uTJ0v758+fz008/sXr1ag4fPszjx49L9QXy8fHh+PHj5OTklNnuQmxsbDh69KikSJfGokWLCA8P54svvuDcuXP4+fnRrVs3qQ+exLFjxxg8eDCjRo0iJiaG9u3b88knn5R7THp6Or6+vty+fZstW7Zw9uxZpk6dKim7GzduZNy4cUyaNIkLFy4wfPhw3n//fbUPCoVCwddff82FCxdYs2YNe/fuZerUqRrJLPMfRXzBycrKEmNjY8WsrCwpLfnGY3HJ8D3V/ku+8VhjuQcNGiRqaWmJRkZGaj99fX0REFNTU0VRFMXAwEAxODhY7dioqChRoVCotbkox48fFwExLS1NFEVR3Ldvn1qZhfj6+orjxo2Tths3biy+99570rZKpRLr1asnLlu2TBRFUVy2bJloaWmpVu+KFStEQDxz5swT2xwfHy8CooGBgWhkZCQqFAoREO3t7cUHDx6IoiiKK1euFJ2cnESVSiUdl5OTIxoYGIg7duwQHzx4IALi/v37S63jww8/FD08PKRtW1tbcd68edJ2Xl6e2LBhQ7F79+6iKIpienq6qK+vLx45ckStnCFDhogBAQGiKP6v/3bv3i3t37p1qwhIfVG83kIAcePGjWX2yYIFC8RWrVqVKX9xzpw5IwJiYmKiWnrLli3FL774QhRFUezRo4cYFhYm6urqio8fPxaTkpJEQIyLiyuzXH9/f3HSpEnSdvFrQxRFcdasWWLnzp3V0v755x8REC9duiQd5+npWWY9hQwaNEhs3LixmJ+fL6X16dNH7NevnyiKonj16lVREATx1q1basd16NBBnD59+lO1o/j9sHr1ahEQr169KuX55ptvRGtra2nb2tpa/Pzzz6Xt/Px8sVGjRtJ1VMjZs2dFQExISCi/A0RRvH37tvjqq6+KgOjo6CgOGjRI/PXXX0WlUinlqV+/vhgWFqZ23MsvvyyOGjVKFMX/3VOF91/xtgUEBIhdunRRO75fv36imZlZmXItX75cNDExke7J4rRp00YcNmyYWlqfPn1Ef3//Msv87bffREtLS2l79erV5crwPFLau0am6pBHRmqQ9u3bExMTo/b7/vvv1fKcOnWKiIgItYiffn5+qFQq4uPjAThz5gzdu3encePGmJiY0K5dOwASExMrLFOLFi2kvwVBwMbGRjL5XLp0iRYtWqgFifLx8alwHb/++itnzpxhy5YtODg48P3330tBw06dOsXVq1cxMTGR2mthYUF2djbXrl3DwsKCoKAg/Pz86Nq1K4sWLVIbTi/Ko0ePSEpKonXr1lKatra22qhCbGws2dnZdOrUSa2Pf/jhB65du1Zm39ja2gJIfaMpf/zxB6+99ho2NjYYGxsza9asCp2nwsBrxQN1tWvXjv379yOKIlFRUXTv3h03NzcOHTrEvn37sLa25qWXXgIKTFdhYWG0aNECS0tLjI2N2blz5xPlOHXqFPv27VPrp8Iyi/ZV0f4tD1dXV7S0tKRtW1tbqT9Pnz6NKIo4Ojqq1XfgwAGprsq2ozQMDQ1p1qxZqbI8evSIu3fvql3rWlpatGrVqkQ5BgYGQMFIy5OwtbUlOjqa8+fPM3bsWPLy8hg0aBBdunRBpVLx+PFjbt++Tdu2bdWOa9u2LXFxcRq1Ky4uTu36B0psFycmJgYvL68yA/nFxcU9UaZ9+/bRqVMnGjRogImJCQMHDuTBgwdq5mUZmaLUytk0LwpGRkY4ODiopd28eVNtW6VSMXz4cMaOHVvi+EaNGpGRkUHnzp3p3LkzP/74I3Xr1iUxMRE/P79KOQ8Wn10jCII0PCuKYglziFiJoM92dnY0b96c5s2bY2xsTO/evYmNjaVevXqoVCpatWpVqhNg3bp1AVi9ejVjx44lMjKSX3/9lZkzZ7Jr1y5effXVCstS2LatW7eWCGxW3PG0aN8U9kPh8Zpw9OhR3n33XebOnYufnx9mZmasW7eO8PBwjcuwsrICCsw1hf0BBcrIypUrOXv2LAqFAhcXF3x9fTlw4ACpqamSiQYKTFdfffUVCxculOz648ePf+L1olKp6Nq1K/Pnzy+xr1A5g4LrWhPKu9ZUKhVaWlqcOnVKTWGBAiflp2mHprIUv7Y1ufZTUlIA1M7Nk3Bzc8PNzY2QkBAOHTrE66+/zoEDByRlp7R6NXVQrcz9WahQlUd5Mt24cQN/f39GjBjBxx9/jIWFBYcOHWLIkCEV9o+S+e8gKyPPOS1btuTvv/8uobQUcv78ee7fv8+8efMke/jJkyfV8ujq6gIFX5JPw0svvcRPP/1ETk6O9KIuXldF8fX1xc3NjbCwMBYtWkTLli359ddfqVevXrnTI728vPDy8mL69Om0bt2an3/+uYQyYmZmhq2tLUePHuWNN94AChwRT506RcuWLQFwcXFBT0+PxMREtRd2RdHV1X1i/x4+fJjGjRszY8YMKa08f4HSaNasGaampsTGxuLo6CilF/qNLFy4EF9fXwRBwNfXl88++4zU1FTGjRsn5S0cOXnvvfeAghf/lStXcHZ2Lrc9LVu2ZP369djb26Ot/WwfHV5eXiiVSpKTk3n99ddLzVPZdlQUMzMzrK2tOX78uCSLUqnkzJkzJdaEuXDhAg0bNpSUxori4uICQEZGBqamptSvX59Dhw5J1y8UOJFrOiLp4uLC0aNH1dKKbxenRYsWfP/996SkpJQ6OuLs7MyhQ4cYOHCgmkyF/X7y5Eny8/MJDw9HoSgYfP/tt980klfmv4tspnnOCQ0NJTo6mpCQEGJiYrhy5QpbtmyR1tJo1KgRurq6LF68mOvXr7NlyxY1b3yAxo0bIwgCf/31F/fu3au0V3v//v1RqVQEBwcTFxfHjh07+OKLL4CSX0oVYdKkSSxfvpxbt24xYMAArKys6N69O1FRUcTHx3PgwAHGjRvHzZs3iY+PZ/r06URHR3Pjxg127tzJ5cuX1V5ARRk3bhzz5s1j48aNXLx4kVGjRqnNNDAxMWHy5MlMmDCBNWvWcO3aNc6cOcM333zDmjVrNG6Dvb098fHxxMTEcP/+/VIdGB0cHEhMTGTdunVcu3aNr7/+uoQz7ZNQKBR07NiRQ4cOqaWbmZnh6enJjz/+KJnp3njjDU6fPs3ly5eltEI5du3axZEjR4iLi2P48OHcuXOnRHuOHTtGQkIC9+/fR6VSERISQkpKCgEBARw/fpzr16+zc+dOBg8e/NQv/OI4OjoyYMAABg4cyIYNG4iPj+fEiRPMnz+fbdu2PVU7KsOYMWP47LPP2Lx5M5cuXWLcuHGkpqaWuO6joqLo3LmzRmWOHDmSjz/+mMOHD3Pjxg2OHj3KwIEDqVu3rmRKmTJlCvPnz+fXX3/l0qVLTJs2jZiYGDXlsjwKRxAXLFjA5cuXWbJkSbmzcQACAgKwsbGhR48eHD58mOvXr7N+/Xqio6MlmSIiIvj222+5cuUKX375JRs2bJAcfps1a0Z+fr70TFq7di3ffvutRvLK/HeRlZHnnBYtWnDgwAGuXLnC66+/jpeXF7NmzZKGxevWrUtERAS///47Li4uzJs3T1IQCmnQoAFz585l2rRpWFtbq83EqQimpqb8+eefxMTE4OnpyYwZM5g9ezZQ0oehIrz99tvY29sTFhaGoaEhBw8epFGjRvTq1QtnZ2cGDx5MVlYWpqamGBoacvHiRXr37o2joyPBwcGMHj2a4cOHl1r2pEmTGDhwIEFBQbRu3RoTExN69uyplufjjz9m9uzZfPbZZzg7O+Pn58eff/6ptkDbk+jduzddunShffv21K1bt9Tpnd27d2fChAmMHj0aT09Pjhw5wqxZsyrWWUBwcDDr1q0r8WJt3749SqVSUjzMzc1xcXGhbt26asrarFmzaNmyJX5+frRr10568RRl8uTJaGlpSccnJiZSv359Dh8+jFKpxM/PDzc3N8aNG4eZmZn0BVyVrF69moEDBzJp0iScnJzo1q0bx44dk0YAK9uOyhAaGkpAQAADBw6kdevWku9W0es+OzubjRs3MmzYMI3K7NixI0ePHqVPnz44OjrSu3dv9PX12bNnj7RWztixY5k0aRKTJk3C3d2dyMhItmzZQvPmzTWq49VXX+X7779n8eLFeHp6snPnTmbOnFnuMbq6uuzcuZN69erh7++Pu7s78+bNk8xlPXr0YNGiRXz++ee4urqyfPlyVq9eLV13np6efPnll8yfPx83Nzd++uknPvvsM43klfnvIoiVMSo+R2RnZxMfH0+TJk2kB8OLsAJrbeGnn37i/fff59GjRxrZmmWeHlEUefXVVxk/fry0dohM9aJSqXB2dqZv377SSOQ333zD5s2b2blzZw1LJ/MsKO1dI1N11EqfERMLfQZ89Gq1roiqb6zzn1BEfvjhB5o2bUqDBg04e/YsoaGh9O3bV1ZEqhFBEPjuu++e6XLwMuoUmgR9fX3JyclhyZIlxMfH079/fymPjo4OixcvrkEpZWReXGqlMgIFCsl/QTmobu7cucPs2bO5c+cOtra29OnTh7CwMABGjBjBjz/+WOpx7733nmw3rkI8PDzw8PCoaTH+MygUCiIiIpg8eTKiKOLm5sbu3bvVzF/FAxe+9dZbREVFlVreBx98wAcffPBMZZaReZGolWYamZohOTmZx48fl7rP1NSUevXqVbNEMjI1x61bt6R1YYpjYWFR5joeMs8n8rvm2VJrR0Zkqp969erJCoeMzL8UX7dGRkambOTZNDIyMjIyMjI1iqyMyMjIyMjIyNQosjIiIyMjIyMjU6PIyoiMjIyMjIxMjSIrIzIyMjIyMjI1Sq2dTfP4fjJZZUwzfRYYmJpialX9M0kEQWDjxo0llsGuLdRU+/bv30/79u1JTU2lTp06T11eQkICTZo0KTW4WlEuXbqEr68vV65cwcTE5KnrfR6ZM2cOmzZtIiYmRqP8OTk5NG/enI0bN0qRbKsCe3t7xo8fz/jx46usTE0JCgri4cOHbNq06Yl5Nb12ZGReZF4oZeTgwYN8/vnnnDp1iqSkJDZu3EiXLl1K5Ht8P5lV44ejrMZw1Vo6OgxeuFxjhaQiD6PqoqpfwE/izp07hIWFsXXrVm7dukW9evXw9PRk/PjxdOjQ4ZnXXx5t2rQhKSkJMzOzaq13xowZhISE1FpFBArixRQGetQEPT09Jk+eTGhoKLt379bomDlz5jB37twS6U5OTly8eFHjuitCRZSbRYsWoekST3Z2diQlJUmRgKv7PpWRqQ5eKDNNRkYGHh4eLFmypNx8WY8fV6siAqDMy6vWkZiaJDc396nLSEhIoFWrVuzdu5cFCxZw/vx5IiMjad++PSEhIVUg5dOhq6uLjY3NU0Ujrig3b95ky5YtvP/++9VWZ01gbGwsBYLTlAEDBhAVFUVcXJzGx7i6upKUlKT2Kx7tuLpRKpWoVCrMzMw0ViS0tLSwsbFBW/uF+naUkakQL5Qy8tZbb/HJJ5/Qq1evUverVCpu3rzJ5SuXq1myp6ddu3aMHTuWqVOnYmFhgY2NDXPmzFHLc+XKFd544w309fVxcXFh165davv379+PIAg8fPhQSouJiUEQBBISEoCCGBtdu3bF3NwcIyMjXF1d2bZtGwkJCbRv3x4oiPYqCAJBQUGSbKNHj2bixIlYWVnRqVMnBg8ezNtvv61Wf35+PjY2NqxateqJ7R01ahSCIHD8+HHeeecdHB0dcXV1ZeLEiRw9elQt7/379+nZsyeGhoY0b96cLVu2qO2PjY3F398fY2NjrK2tCQwM5P79+2p9O2bMGMaPH4+5uTnW1tZ89913ZGRk8P7772NiYkKzZs3Yvn17uX15+PBhfH19MTQ0xNzcHD8/P1JTUwGIjIzktddeo06dOlhaWvL2229z7dq1J/ZDUX777Tc8PDxo2LChlPbgwQMCAgJo2LAhhoaGuLu7l4gI/DTt27FjB15eXhgYGPDmm2+SnJzM9u3bcXZ2xtTUlICAADIzM6XjcnJyGDt2LPXq1UNfX5/XXnuNEydOlCh3z549eHt7Y2hoSJs2bbh06ZKUZ86cOWrmhhMnTtCpUyesrKwwMzPD19eX06dPq7XR0tKSNm3alBoNuSy0tbWxsbFR+xWOLpTGo0ePCA4Opl69epiamvLmm29y9uxZtTxbtmzB29sbfX19rKyspGdRu3btuHHjBhMmTEAQBEmJjYiIoE6dOvz111+4uLigp6fHjRs3CAoKUjM9qlQq5s+fj4ODA3p6ejRq1EgKs5CQkIAgCMTExJR5n/7www9YWlqSk5OjJm/v3r0ZOHCgxn0mI1NTvFDKyJNISEggPT2dhg0aPjnzc8iaNWswMjLi2LFjLFiwgI8++khSOFQqFb169UJLS4ujR4/y7bffEhoaWuE6QkJCyMnJ4eDBg5w/f5758+djbGyMnZ0d69evBwr8FpKSkli0aJGabNra2hw+fJjly5czdOhQIiMjSUpKkvJs27aN9PR0+vbtW64MKSkpREZGEhISgpGRUYn9xb8Y586dS9++fTl37hz+/v4MGDCAlJQUAJKSkvD19cXT05OTJ08SGRnJ3bt3S8iwZs0arKysOH78OGPGjGHkyJH06dOHNm3acPr0afz8/AgMDFR78RYlJiaGDh064OrqSnR0NIcOHaJr164olUqgYNRu4sSJnDhxgj179qBQKOjZsycqleaRow8ePIi3t7daWnZ2Nq1ateKvv/7iwoULBAcHExgYyLFjx6qkfXPmzGHJkiUcOXKEf/75h759+7Jw4UJ+/vlntm7dyq5du9SCv02dOpX169ezZs0aTp8+jYODA35+ftL5KGTGjBmEh4dz8uRJtLW1GTx4cJntTktLY9CgQURFRXH06FGaN2+Ov78/aWlpavl8fHzKjPXytIiiyP/93/9x584dtm3bxqlTp2jZsiUdOnSQ2rZ161Z69erF//3f/3HmzBlJ4QLYsGEDDRs25KOPPpJGYQrJzMzks88+4/vvv+fvv/8udZXi6dOnM3/+fGbNmkVsbCw///wz1tbWJfKVdZ/26dMHpVKppqjfv3+fv/76q9aPtMnUDmrNuF9OTg4pKSm0aNGC1JuJNS1OpWjRogUffvghAM2bN2fJkiXs2bOHTp06sXv3buLi4khISJC+nD/99FPeeuutCtWRmJhI7969cXd3B6Bp06bSvsJYGfXq1SuhEDg4OLBgwQK1NCcnJ9auXcvUqVMBWL16NX369MHY2LhcGa5evYooirz00ksayRwUFERAQABQ0ObFixdz/PhxunTpwrJly2jZsiWffvqplH/VqlXY2dlx+fJlHB0dgYLAcjNnzgQKHvzz5s3DysqKYcOGATB79myWLVvGuXPnePXVV0vIsGDBAry9vVm6dKmU5urqKv3du3dvtfwrV66kXr16xMbG4ubmplE7C01XRWnQoAGTJ0+WtseMGUNkZCS///47r7zyipRe2fZ98skntG3bFoAhQ4Ywffp0rl27Jl0X77zzDvv27SM0NJSMjAyWLVtGRESEdN2tWLGCXbt2sXLlSqZMmSKVGxYWhq+vLwDTpk3j//7v/8jOzi41psebb76ptr18+XLMzc05cOCA2uhbgwYNpBE+TTh//nyJa/Hdd9/l+++/L5F33759nD9/nuTkZPT09AD44osv2LRpE3/88QfBwcGEhYXx7rvvqvmiFAYrtLCwQEtLCxMTE2xsbNTKzsvLY+nSpWUGNkxLS2PRokUsWbKEQYMGAdCsWTNee+21Enm1tLTKvE/79+8v3YMAP/30Ew0bNqRdu3bldZOMzHNBrVFGCgNSXbhwgbQ7t2tYmsrRokULtW1bW1uSk5MBiIuLo1GjRmpD+K1bt65wHWPHjmXkyJHs3LmTjh070rt37xL1lkbxL3aAoUOH8t133zF16lSSk5PZunUre/bseWJZhY57mvpjFJXPyMgIExMTqV9OnTrFvn37SlWArl27JikjRcvQ0tLC0tJSUsgA6Su0sNzixMTESA/50rh27RqzZs3i6NGj3L9/XxoRSUxM1FgZycrKKvGyViqVzJs3j19//ZVbt26Rk5NDTk5OiRGlyrav6HHW1tYYGhqqKajW1tYcP35camNeXp6kvADo6Ojg4+NTwpejaLm2trZS3Y0aNSrR7uTkZGbPns3evXu5e/cuSqWSzMxMEhPVPyoMDAzKHLkqDScnpxImvbIcg0+dOkV6enoJX5asrCzJ3BYTEyMpdxVBV1e33HssLi6OnJycp3baHjZsGC+//DK3bt2iQYMGrF69mqCgoGr1e5KRqSy1RhkpxMXFhXuG+pysaUEqgY6Ojtq2IAjSS600z/viDxmFQlEib14xR96hQ4fi5+fH1q1b2blzJ5999hnh4eFPnN1Qmjll4MCBTJs2jejoaKKjo7G3t+f1118vtxwoGPURBIG4uDiNpuyW1y8qlYquXbsyf/78EscVvgTLKqNoWmFflmVWMTAwKFfGrl27Ymdnx4oVK6hfvz4qlQo3N7cKOftaWVlJPiiFhIeH89VXX7Fw4ULc3d0xMjJi/PjxJcqtbPuK59HkGix+3YmiWCKtIn0bFBTEvXv3WLhwIY0bN0ZPT4/WrVuXaGNKSgp169YttYzS0NXVxcHBQaO8KpUKW1tb9u/fX2Jf4ejDk66BsjAwMChXIahsucXx8vLCw8ODH374AT8/P86fP8+ff/5ZJWXLyDxrao3PSOENnZeXh66ubg1LU/W4uLiQmJjI7dv/G/WJjo5Wy1P4oC5qry5tLQc7OztGjBjBhg0bmDRpEitWrACQ+q3QD+JJWFpa0qNHD1avXs3q1as1tk1bWFjg5+fHN998Q0ZGRon9RZ1Gn0TLli35+++/sbe3x8HBQe1XmgJVWVq0aFHmqM+DBw+Ii4tj5syZdOjQAWdn5xJKhSZ4eXkRGxurlhYVFUX37t1577338PDwoGnTply5cqVSbXhaHBwc0NXVVZuRkpeXx8mTJ3F2dq50uVFRUYwdOxZ/f39cXV3R09NTc0Au5MKFC3h5eVW6nvJo2bIld+7cQVtbu8R1VOj0Wt41AAX3j6b3TlGaN2+OgYGBRqOKhfVA6ffp0KFDWb16NatWraJjx47Y2dlVWB4ZmZrghVJG0tPTiYmJkV6w8fHxxMXFkZ+fj56eHhYWFsTHx/O4mONbbaBjx444OTkxcOBAzp49S1RUFDNmzFDL4+DggJ2dHXPmzOHy5cts3bqV8PBwtTzjx49nx44dxMfHc/r0afbu3Su9SBo3bowgCPz111/cu3eP9PT0J8o1dOhQ1qxZQ1xcnGTv1oSlS5eiVCrx8fFh/fr1XLlyhbi4OL7++usKmZ9CQkJISUkhICCA48ePc/36dXbu3MngwYMr9WIoi+nTp3PixAlGjRrFuXPnuHjxIsuWLeP+/fuYm5tjaWnJd999x9WrV9m7dy8TJ06scB1+fn5ER0erye3g4MCuXbs4cuQIcXFxDB8+nDt37lRZuyqCkZERI0eOZMqUKURGRhIbG8uwYcPIzMxkyJAhlS7XwcGBtWvXEhcXx7FjxxgwYECpowVRUVF07txZ43Lz8/O5c+eO2u/u3bul5u3YsSOtW7emR48e7Nixg4SEBI4cOcLMmTM5ebJgnPXDDz/kl19+4cMPPyQuLo7z58+r+VHZ29tz8OBBbt26VaoyVRb6+vqEhoYydepUfvjhB65du8bRo0dZuXJlqfnLu08HDBjArVu3WLFiRblOwzIyzxsvlDJy8uRJvLy8pK+jiRMn0rNnT+lL2t7eHktLS+7W0MP6WaJQKNi4cSM5OTn4+PgwdOhQaepfITo6Ovzyyy9cvHgRDw8P5s+fzyeffKKWR6lUEhISgrOzM126dMHJyUlyymzQoAFz585l2rRpWFtbM3r06CfK1bFjR2xtbfHz86N+/foat6dJkyacPn2a9u3bM2nSJNzc3OjUqRN79uxh2bJlGpdTv359Dh8+jFKpxM/PDzc3N8aNG4eZmZlktqoKHB0d2blzJ2fPnsXHx4fWrVuzefNmtLW1USgUrFu3jlOnTuHm5saECRP4/PPPK1yHv78/Ojo6agt7zZo1i5YtW+Ln50e7du2wsbGp0dV2582bR+/evQkMDKRly5ZcvXqVHTt2YG5uXukyV61aRWpqKl5eXgQGBkpTh4sSHR3No0ePeOeddzQu9++//8bW1lbt17hx41LzCoLAtm3beOONNxg8eDCOjo68++67JCQkSP427dq14/fff2fLli14enry5ptvqs1q+uijj0hISKBZs2YVMidBwXmeNGkSs2fPxtnZmX79+pXpv1TefWpqakrv3r0xNjautasyy9ROBFHTZQCBZcuWsWzZMsmj3dXVldmzZ5c5o6NwpcDixMXFaTyT4klkZ2cTHx9PkyZNJOe/F2EF1tpCZmYm9evXZ9WqVWWu/yKjOUuXLmXz5s3s2LGjpkV5rujTpw9eXl588MEHNS3Kc0+nTp1wdnbm66+/rmlRahWlvWtkqo4KObA2bNiQefPmSU5ha9asoXv37pw5c0ZtmmNxLl26hKmpqbRd0a+GimJqVY/BC5f/J2LT1BQqlYo7d+4QHh6OmZkZ3bp1q2mRagXBwcGkpqaSlpZWq5eErwg5OTl4eHgwYcKEmhbluSYlJYWdO3eyd+/eJ65SLSPzvFGhkZHSsLCw4PPPPy/VZlwdMRRkbbVmKAze1bBhQyIiItSmJSYmJuLi4lLmsbGxsaVO8ZSR0ZTy1rLZvn27RrO6ahv29vakpqYya9YstbVpZKoG+V3zbKn01F6lUsnvv/9ORkbGEx0Ovby8yM7OxsXFhZkzZ5ZquikPlUrF7du3MTExKTFFLjc3F5VKhVKprFKHRZnysbOzIz8/X9ou2vfW1tacOnWqzGOtra3lcyXzVJR3fTVo0OA/eX0VDT/wX2z/s6YwrlB6enqVxOf6ryCKImlpadSvX79cP74KKyPnz5+ndevWZGdnY2xszMaNG8v8Cra1teW7776jVatW5OTksHbtWjp06MD+/ft54403yqyjcGGnQm7dulVmHY0bN+bbb7+VFj2Tef45f/58TYsgU4t5VlF5ZWTu37/P//3f/3Hjxo2aFuWF459//lFbtLM4FTbT5ObmkpiYyMOHD1m/fj3ff/89Bw4cKHdYvihdu3ZFEIQSKyMWpazw3//884+a70mhPHfv3sXe3l4eOpORkZGReSZkZ2dLs6tq41pWz4rHjx9jZ2fHw4cPMTMzKzPfU/uMdOzYkWbNmrF8+XKN8oeFhfHjjz+WGwq8+MhIYWMePXpUQhmR7XgyMjIyMs8a+V1TOR4/foyZmVmp7++iPPVy8KIolghbXR5nzpxRW6a7NPT09KRgVTIyMjIyMjK1mwopIx988AFvvfUWdnZ2pKWlsW7dOvbv309kZCRQsErlrVu3+OGHHwBYuHAh9vb2uLq6kpuby48//sj69eulENgyMjIyMjIyMhVSRu7evUtgYCBJSUmYmZnRokULIiMj6dSpE1AQE6VopM3c3FwmT57MrVu3MDAwwNXVla1bt+Lv71+1rZCRkZGRkZF5YanQetkrV64kISGBnJwckpOT2b17t6SIAERERKhFvZw6dSpXr14lKyuLlJQUoqKiqk0RyX+YTe6t9Gr75T/MrpZ2FUcQBDZt2lQjdVcHNdW+/fv3IwhChYL2lUdCQgKCIJQauLAoly5dwsbGhrRaGF+pkDlz5uDp6alx/pycHBo1alTudN6KYm9vz8KFC6usPCh4/j1pPaUntV2T606TemRkXjSe2mfkeST/YTZ3vjgJ+U/lm1sxtAVsJnujXUczx6agoCAePnz4XCkS1bFIXVHu3LlDWFgYW7du5datW9SrVw9PT0/Gjx+vtohaTdCmTRtpBLA6mTFjBiEhIbV69dXJkyczZswYjfPr6ekxefJkQkND1eL2lMecOXPYtGlTmcrfiRMnqjSqM0C/fv2q5WOruuqRkalOXqhAeZqiysivXkUEIF8sqPc/QFUs+JOQkECrVq3Yu3cvCxYs4Pz580RGRtK+fXtCQkKqQMqnQ1dXFxsbmxKL7D1Lbt68yZYtW3j//ferrc6awNjYGEtLywodM2DAAKKiosqdhVcR6tati6GhYZWUVYiBgUGJAH/PguqqR0amOqmVysiLSLt27Rg7dixTp07FwsICGxsb5syZo5bnypUrvPHGG+jr6+Pi4sKuXbvU9pc2xBsTE4MgCFJwwxs3btC1a1fMzc0xMjLC1dWVbdu2kZCQIK2Ma25ujiAIBAUFSbKNHj2aiRMnYmVlRadOnRg8eDBvv/22Wv35+fnY2NiwatWqJ7Z31KhRCILA8ePHeeedd3B0dMTV1ZWJEydy9OhRtbz379+nZ8+eGBoa0rx58xJr1MTGxuLv74+xsTHW1tYEBgaqhXBv164dY8aMYfz48Zibm2Ntbc13331HRkYG77//PiYmJjRr1ozt27eX25eHDx/G19cXQ0NDzM3N8fPzIzU1FYDIyEhee+016tSpg6WlJW+//bbaipia8Ntvv+Hh4aG2MNCDBw8ICAigYcOGGBoa4u7uzi+//KJ23NO0b8eOHXh5eWFgYMCbb75JcnIy27dvx9nZGVNTUwICAsjMzJSOy8nJkaLq6uvr89prr3HixIkS5e7Zswdvb28MDQ1p06YNly5dkvIUN1WcOHGCTp06YWVlhZmZGb6+vpw+fVqtjZaWlrRp06ZE2ytLcTNNafdWUROhJvdWaeaTefPmYW1tjYmJCUOGDCE7WzNz7uHDh/Hw8EBfX59XXnlFbaHA0upZtmwZzZo1Q1dXFycnJ9auXau2XxAEli9fzttvv42hoSHOzs5ER0dz9epV2rVrh5GREa1bt1a7Zq9du0b37t2xtrbG2NiYl19+ucTI1NKlS2nevDn6+vpYW1urRVX+448/cHd3x8DAAEtLSzp27EhGRoZG7Zf57yErI88Ra9aswcjIiGPHjrFgwQI++ugjSeFQqVT06tULLS0tjh49yrfffktoaGiF6wgJCSEnJ4eDBw9y/vx55s+fj7GxMXZ2dtIsp0uXLpGUlMSiRYvUZNPW1ubw4cMsX76coUOHEhkZSVJSkpRn27ZtpKen07dv33JlSElJITIykpCQkFKHyos/aOfOnUvfvn05d+4c/v7+DBgwgJSUFKDAadrX1xdPT09OnjxJZGQkd+/eLSHDmjVrsLKy4vjx44wZM4aRI0fSp08f2rRpw+nTp/Hz8yMwMFDtxVuUmJgYOnTogKurK9HR0Rw6dIiuXbtKy25nZGQwceJETpw4wZ49e1AoFPTs2ROVSlVuXxTl4MGDeHt7q6VlZ2fTqlUr/vrrLy5cuEBwcDCBgYFqoeufpn1z5sxhyZIlHDlyhH/++Ye+ffuycOFCfv75Z7Zu3cquXbtYvHixlH/q1KmsX7+eNWvWcPr0aRwcHPDz85PORyEzZswgPDyckydPoq2tzeDBg8tsd1paGoMGDSIqKoqjR4/SvHlz/P39S/jN+Pj4EBUVpXF/akpV3VvF+e233/jwww8JCwvj5MmT2NrasnTpUo2OnTJlCl988QUnTpygXr16dOvWjbwyopBv3LiRcePGMWnSJC5cuMDw4cN5//332bdvn1q+jz/+mIEDBxITE8NLL71E//79GT58ONOnT+fkyZMAjB49Wsqfnp6Ov78/u3fv5syZM/j5+dG1a1dpksLJkycZO3YsH330EZcuXSIyMlJaWTspKYmAgAAGDx5MXFwc+/fvp1evXjzlslYytRnxBeDRo0ciID569KjEvqysLDE2NlbMysqS0nJupon/hB6s9l/OzTSN2zRo0CCxe/fu0ravr6/42muvqeV5+eWXxdDQUFEURXHHjh2ilpaW+M8//0j7t2/fLgLixo0bRVEUxX379omAmJqaKuU5c+aMCIjx8fGiKIqiu7u7OGfOnFJlKu34Qtk8PT1L5HdxcRHnz58vbffo0UMMCgp6UtPFY8eOiYC4YcOGJ+YFxJkzZ0rb6enpoiAI4vbt20VRFMVZs2aJnTt3Vjvmn3/+EQHx0qVLkvxF+zY/P180MjISAwMDpbSkpCQREKOjo0VRLNkXAQEBYtu2bZ8obyHJyckiIJ4/f14URVGMj48XAfHMmTNlHuPh4SF+9NFHTyzb399fnDRpkrT9NO3bvXu3lOezzz4TAfHatWtS2vDhw0U/Pz9RFAv6XkdHR/zpp5+k/bm5uWL9+vXFBQsWlFnu1q1bRUC6Rz/88EPRw8OjzPbl5+eLJiYm4p9//qmWvmjRItHe3v6J/aNJHY0bNxa/+uorURSr7t5avXq1aGZmJu1v3bq1OGLECLV6X3nllXLlKqxn3bp1UtqDBw9EAwMD8ddffy21njZt2ojDhg1TK6dPnz6iv7+/tF38PoqOjhYBceXKlVLaL7/8Iurr65cpmygW3POLFy8WRVEU169fL5qamoqPHz8uke/UqVMiICYkJJRb3otEae8amSdT3vu7KPLIyHNEixYt1LZtbW1JTk4GIC4ujkaNGqkN4T8pQGFpjB07lk8++YS2bdvy4Ycfcu7cOY2OK/7FDjB06FBWr14NQHJyMlu3bi33C7gQ8d+vI039MYr2i5GRESYmJlK/nDp1in379mFsbCz9XnrpJUA9cFjRMrS0tLC0tMTd3V1Ks7a2ltpRGoUjI2Vx7do1+vfvT9OmTTE1NaVJkyYAalPdn0RWVlaJlR2VSiVhYWG0aNECS0tLjI2N2blzZ4lyK9u+osdZW1tjaGhI06ZN1dIKj7l27Rp5eXm0bdtW2q+jo4OPj08JX46i5RYuclhW3yYnJzNixAgcHR0xMzPDzMyM9PT0Em00MDAoc+Tqaaiqe6u0couXo2m5RfNZWFjg5ORUpr9MXFyc2jkBaNu2bbnnpPB6KH6NZGdn8/jxY6BgtG/q1Km4uLhQp04djI2NuXjxonReOnXqROPGjWnatCmBgYH89NNP0vnx8PCgQ4cOuLu706dPH1asWCGZNGVkSkNWRp4jdHR01LYFQZCG+cVShjeLv8wLIyIWzVt8aHfo0KFcv36dwMBAzp8/j7e3t9owfFmUZk4ZOHAg169fJzo6mh9//BF7e3uNQrc3b94cQRA0dkYsr19UKhVdu3YlJiZG7VfoA1BeGUXTCvuyLLOKgYFBuTJ27dqVBw8esGLFCo4dOyaZUSri7GtlZVXigR0eHs5XX33F1KlT2bt3LzExMfj5+ZUot7LtK55Hk2uw+HUnimKJtIr0bVBQEKdOnWLhwoUcOXKEmJgYLC0tS7QxJSWFunXrllrG01BV99azpjzlvbLnpLzzNGXKFNavX09YWBhRUVHExMTg7u4unRcTExNOnz7NL7/8gq2tLbNnz8bDw4OHDx+ipaXFrl272L59Oy4uLixevBgnJyfi4+OfogdkajOyMvKC4OLiQmJiIrdv35bSoqOj1fIUPqiL+nGUNrXRzs6OESNGsGHDBiZNmsSKFSsApOBPmoYft7S0pEePHqxevZrVq1drPAvEwsICPz8/vvnmm1Id2iqytkfLli35+++/sbe3x8HBQe1XlVM3W7RowZ49e0rd9+DBA+Li4pg5cyYdOnTA2dm5Ul+BXl5exMbGqqVFRUXRvXt33nvvPTw8PGjatClXrlypVBueFgcHB3R1dTl06JCUlpeXx8mTJ3F2dq50uVFRUYwdOxZ/f39cXV3R09NTc0Au5MKFC3h5eVW6nrKoynurKM7OziWcsYtvl0XRfKmpqVy+fFka8SutnqLnBODIkSNPdU6g4LwEBQXRs2dP3N3dsbGxkZx1C9HW1qZjx44sWLCAc+fOkZCQwN69e4EC5aZt27bMnTuXM2fOoKury8aNG59KJpnai6yMvCB07NgRJycnBg4cyNmzZ4mKimLGjBlqeRwcHLCzs2POnDlcvnyZrVu3Eh4erpZn/Pjx7Nixg/j4eE6fPs3evXulh1bjxo0RBIG//vqLe/fukZ6e/kS5hg4dypo1a4iLi2PQoEEat2fp0qUolUp8fHxYv349V65cIS4ujq+//rpCQ+QhISGkpKQQEBDA8ePHuX79Ojt37mTw4MEaK1WaMH36dE6cOMGoUaM4d+4cFy9eZNmyZdy/fx9zc3MsLS357rvvuHr1Knv37mXixIkVrsPPz4/o6Gg1uR0cHNi1axdHjhwhLi6O4cOHc+fOnSprV0UwMjJi5MiRTJkyhcjISGJjYxk2bBiZmZkMGTKk0uU6ODiwdu1a4uLiOHbsGAMGDCh1JCoqKorOnTtrXG5WVlaJEbOrV6+WyFdV91Zxxo0bx6pVq1i1ahWXL1/mww8/5O+//9ZI9o8++og9e/Zw4cIFgoKCsLKyokePHqXmnTJlChEREXz77bdcuXKFL7/8kg0bNjB58mSN6ioLBwcHNmzYQExMDGfPnqV///5qo1t//fUXX3/9NTExMdy4cYMffvgBlUqFk5MTx44d49NPP+XkyZMkJiayYcMG7t2799QKkkztRVZGXhAUCgUbN24kJycHHx8fhg4dSlhYmFoeHR0dfvnlFy5evIiHhwfz58/nk08+UcujVCoJCQnB2dmZLl264OTkJHn4N2jQgLlz5zJt2jSsra3VPOvLomPHjtja2uLn50f9+vU1bk+TJk04ffo07du3Z9KkSbi5udGpUyf27NnDsmXLNC6nfv36HD58GKVSiZ+fH25ubowbNw4zMzNpaL0qcHR0ZOfOnZw9exYfHx9at27N5s2b0dbWRqFQsG7dOk6dOoWbmxsTJkzg888/r3Ad/v7+6OjoqE2fnDVrFi1btsTPz4927dphY2NT5kupOpg3bx69e/cmMDCQli1bcvXqVXbs2IG5uXmly1y1ahWpqal4eXkRGBgoTR0uSnR0NI8ePVKbOvokLl++jJeXl9pv6NChJfJV1b1VnH79+jF79mxCQ0Np1aoVN27cYOTIkRrJPm/ePMaNG0erVq1ISkpiy5YtZYat79GjB4sWLeLzzz/H1dWV5cuXs3r1atq1a6dRXWXx1VdfYW5uTps2bejatSt+fn60bNlS2l+nTh02bNjAm2++ibOzM99++y2//PILrq6umJqacvDgQfz9/XF0dGTmzJmEh4fz1ltvPZVMzxP/3LnOD9s+5Y8933D0/E7upd5+8kEyZSKIpRlMnzPKC0FcWljnF2EF1tpCZmYm9evXZ9WqVfTq1aumxXnhWbp0KZs3b2bHjh01LcpzRZ8+ffDy8uKDDz6otjoFQWDjxo01qvzJPD9kZWVx8VIsu+O+53haNFd081EW88sxUKkwVwqYqrQxEfUxVRhjqmtOHX1r6po0xNayGY1snGjawBltbZ0yaqpdlPf+LkqtXA5eu44+NpO9q3VFVIWR9n9KEVGpVNy5c4fw8HDMzMzo1q1bTYtUKwgODiY1NZW0tLRavSR8RcjJycHDw4MJEybUtCgy/zGysjNIy0ohOz+TjLwcUvIesotrJOkpAYH6uSpEAR5qQZZC8e8PbqMEMv793YXsi5AN3AMugpYoUkcpUkephYmoi4lghJm2GWZ6VlgYN8C6TmPsrJ1o1tAVM2OLmuyCaqNWKiNQoJBQp6alqL0kJibSpEkTGjZsSEREBNra2mr7XFxcyjw2NjaWRo0aVYeYLxza2tol/BX+6+jp6TFz5ky1NGNj4zLzb9++XaNZXTIyRRFFkczsdNKzUslWZpKDkrzCgQ8BVIKAADTLBps0I3IEFWmp7YnNfI162om8pH8aU92bCNoZ5GspUQkigqBEqcgnV6EkU0vFYy2Rh1oCSkHggbbAA20RyPn3lwL58fDwBDwEEoBjYKz8d7RF1MEEA0wUJpjpWmBuYE09s0bYWjajaX0XGtRrikJLq0b6riqotcqIzLPF3t6+zNUU69evX+5Mg4r4lsjIlEZ511eDBg2qpI4XwIIt8xSIokhG1mPSsx6SrSpQPvILzS5FrC+6ImiLAnlKBToqBdfuvM/lR+rmhuR8e5LT7Z9Yp4HwmCZ6p6lrcAUd7YeotHLJU4goBCWioCRPkU+2loo0LRWpWgK5CoF0LQXpWgD5QFrBT7wNmRcgE0gCLoCOKGKuFDFTamEi6mGiMMZMuw5m+nWxMm6Ijbl9gYmooRuG+lUbJLIqkJURmSpHW1sbBweHmhZDphYjX18yFUUUVaRnPiI9+xE5qiyyUf7P50Mo+EegQPnQUgmoEBAQyM2vQ5aoj5ifS7YyhwxVDlC5mXpZoimx2e0gu125+QTyqa9zkeb6FzDWS0LUyiJfoQJBBf+OtmRrKcnQUvFIC9K0FOQJAsnaAsnaIgU2oWzgPuRehRQKfv+uA2mmVFFHqcBUpYOJYIiJlgl1dK1o5x7Aa541ExFaVkZkZGRkZGodKpWKtMxUMnIekaPKIUdQoqQU5UMFWmKB6URLJZCttCBTLH3mUnUhos2tPDdu5bkVDIaUg4niHk30T2Ghfx0dnTTyFXnkCwWjLSqFkjyFkiwtpWQiyhcEHmkpeKQFkAc8KvipbpJ9LF1WRmRkZGRkZCqLUqUkLSOFzJzHZIs55AgqVCWUDxE9lYBCVKAUQEulIEtpQb744s5sSVPV5VxmlwKTTTlok0ND3b9paPA3BrrJqLRyyFOoEFCBQkm+Ip9cUfPAnlWNrIzIyMjIyLxw5CvzeZyRQlbuY3LEXLIFEcnL51/lQ4GIbhHlQ6HSJivfAiUvrqNnZclHj4TcliTktix1v7ZCYPSbNWf+lJURGRkZGZnnnvz8PB5lPCArL40cMZccgWLKB2j9q3wIhcqHUodMpQUqeX3P5x5ZGZGRkZGRee7IzcspGPnISyeHXHJLUz5EEV2xQPlQAah0yVBaICKUXqjMc0utVRcfPnzI7du3q+1XkeBuVYkgCGzatKlG6q4Oaqp9+/fvRxCEKjuvCQkJCILwxOBqly5dwsbGhrS0J3itvcDMmTMHT09PjfPn5OTQqFEjTp06VWUy2Nvbs3DhwiorDyAiIoI6deqUm0eTth8+fBh3d3d0dHSe+eqvxeUJCgqqsRVnc3KzuffwFv/cu8zVe39z5dFV7uan8Fj43yiItihioBIwUCrQVyrQyTciI7cBaXm2ZOTZkqG0lBWRF5RaOTLy8OFDlixZQn5+9a3Aqq2tzejRo5/4MCokKCiIhw8fPleKxP79+2nfvj2pqakat+NpuHPnDmFhYWzdupVbt25Rr149PD09GT9+PB06dHjm9ZdHmzZtSEpKwszMrFrrnTFjBiEhIbV69dXJkyczZswYjfPr6ekxefJkQkND1eL2lMecOXPYtGlTmcrfiRMnqjSqMxTEovH3f/qZCBMnTsTT05Pt27eXu7hbVVDRc1GVZOdk8jgzhez8DHLIJ7fIAmOF6Igi2qICRAEREFWGpCur956UqR5qpTKSmZlZrYoIQH5+PpmZmdXyEq9pcnNzywzapSkJCQm0bduWOnXqsGDBAlq0aEFeXh47duwgJCSEixcvVpG0lUNXVxcbG5tqrfPmzZts2bKlyr/YnzeMjY0r/JIdMGAAU6ZMIS4urkoiv9atW/epyyiOgYFBqdGGK8q1a9cYMWIEDRs2rAKpyqcy56KyZGank5aZSrYyo8TqpoXoiCI6ogJRLEhUKo1JV9VexVzmf9RaM82LRrt27Rg7dixTp07FwsICGxsb5syZo5bnypUrvPHGG+jr6+Pi4sKuXbvU9pdmWoiJiUEQBBISEgC4ceMGXbt2xdzcHCMjI1xdXdm2bRsJCQm0b98eAHNzcwRBICgoSJJt9OjRTJw4ESsrKzp16sTgwYN5++231erPz8/HxsaGVatWPbG9o0aNQhAEjh8/zjvvvIOjoyOurq5MnDiRo0ePquW9f/8+PXv2xNDQkObNm7Nlyxa1/bGxsfj7+2NsbIy1tTWBgYHcv39frW/HjBnD+PHjMTc3x9ramu+++46MjAzef/99TExMaNasGdu3by+3Lw8fPoyvry+GhoaYm5vj5+dHamoqAJGRkbz22mvUqVMHS0tL3n77ba5du/bEfijKb7/9hoeHh9pL6MGDBwQEBNCwYUMMDQ1xd3fnl19+UTvuadq3Y8cOvLy8MDAw4M033yQ5OZnt27fj7OyMqakpAQEBZGb+b85gTk6OFFVXX1+f1157jRMnTpQod8+ePXh7e2NoaEibNm24dOmSlKe4aeDEiRN06tQJKysrzMzM8PX15fTp02pttLS0pE2bNiXaXlmKm2lKu7eKmgg1ubdKM9PMmzcPa2trTExMGDJkCNnZ2WXKVGjKe/DgAYMHD0YQBCIiIgA4cOAAPj4+6OnpYWtry7Rp09Q+uP744w/c3d0xMDDA0tKSjh07kpGRIcnu4+ODkZERderUoW3btty4cQOouMmsImRlp3Mn5QY37l3k0r0LxKff4L7qMenC/xQRXREMVQL6SgUGSgXkmZOWW5/0PFvS82zJkhWR/wyyMvIcsWbNGoyMjDh27BgLFizgo48+khQOlUpFr1690NLS4ujRo3z77beEhoZWuI6QkBBycnI4ePAg58+fZ/78+RgbG2NnZ8f69euBAr+FpKQkFi1apCabtrY2hw8fZvny5QwdOpTIyEiSkpKkPNu2bSM9PZ2+ffuWK0NKSgqRkZGEhISUOlRe/IE+d+5c+vbty7lz5/D392fAgAGkpKQAkJSUhK+vL56enpw8eZLIyEju3r1bQoY1a9ZgZWXF8ePHGTNmDCNHjqRPnz60adOG06dP4+fnR2BgoNqLtygxMTF06NABV1dXoqOjOXToEF27dkWpLFiJMSMjg4kTJ3LixAn27NmDQqGgZ8+eqFSaz9s/ePAg3t7eamnZ2dm0atWKv/76iwsXLhAcHExgYCDHjh2rkvbNmTOHJUuWcOTIEf755x/69u3LwoUL+fnnn9m6dSu7du1i8eLFUv6pU6eyfv161qxZw+nTp3FwcMDPz086H4XMmDGD8PBwTp48iba2NoMHDy6z3WlpaQwaNIioqCiOHj1K8+bN8ff3L+E34+PjQ1RUlMb9qSlVdW8V57fffuPDDz8kLCyMkydPYmtry9KlS8vMb2dnR1JSEqampixcuJCkpCT69evHrVu38Pf35+WXX+bs2bMsW7aMlStX8sknnwAF90BAQACDBw8mLi6O/fv306tXL0RRJD8/nx49euDr68u5c+eIjo4mODgYQXg2fhUZWY+5ff8aV+/9zfX0GzxQpZMu/G+ZdT0RDJUFyoehUoEq14K03Ppk/Kt8ZKuev2XKZaqHWmmmeVFp0aIFH374IQDNmzdnyZIl7Nmzh06dOrF7927i4uJISEiQvpw//fRT3nrrrQrVkZiYSO/evXF3dwegadOm0j4Li4LokPXq1SuhEDg4OLBgwQK1NCcnJ9auXcvUqVMBWL16NX369HnisO/Vq1cRRZGXXnpJI5mDgoIICAgACtq8ePFijh8/TpcuXVi2bBktW7bk008/lfKvWrUKOzs7Ll++jKOjIwAeHh5SsLXp06czb948rKysGDZsGACzZ89m2bJlnDt3jldffbWEDAsWLMDb21vtZeLq6ir93bt3b7X8K1eupF69esTGxuLm5qZROxMSEmjVqpVaWoMGDZg8ebK0PWbMGCIjI/n999955ZVXpPTKtu+TTz6hbdu2AAwZMoTp06dz7do16bp455132LdvH6GhoWRkZLBs2TIiIiKk627FihXs2rWLlStXMmXKFKncsLAwfH19AZg2bRr/93//R3Z2Nvr6JSNbv/nmm2rby5cvx9zcnAMHDqiNvjVo0EAahahKqureKs7ChQsZPHgwQ4cOBQr6evfu3WWOjmhpaWFjY4MgCJiZmUlmwqVLl2JnZ8eSJUsQBIGXXnqJ27dvExoayuzZs0lKSiI/P59evXrRuHFjAOn+TklJ4dGjR7z99ts0a9YMoErMXEVRKvO5k3qDTDG7hN+HXuHS6oKAQhTIzjcnU9Sr0vplagfyyMhzRIsWLdS2bW1tSU5OBiAuLo5GjRqpDeG3bt26wnWMHTtWegF9+OGHnDt3TqPjin+xAwwdOpTVq1cDkJyczNatW8v9Ai6kMACZpl9nRfvFyMgIExMTqV9OnTrFvn37JNu3sbGxpOQUNZMULUNLSwtLS0vpgQ1gbW0ttaM0CkdGyuLatWv079+fpk2bYmpqSpMmTYAC5U9TsrKySryslUolYWFhtGjRAktLS4yNjdm5c2eJcivbvqLHWVtbY2hoqKagWltbS8dcu3aNvLw8SXkB0NHRwcfHh7i4uDLLtbW1LbXuQpKTkxkxYgSOjo6YmZlhZmZGenp6iTYaGBiUOXL1NFTVvVVaucXLqUy5heUUvV/atm1Leno6N2/exMPDgw4dOuDu7k6fPn1YsWKFZD60sLAgKCgIPz8/unbtyqJFi9RGM6uCWynXeMj/FBF9FRgqFegrBfJzLUjLq09Gri1peTbkyYqITBnIyshzhI6O+pLEgiBIw/ylRRAt/jJXKBQl8ubl5anlGTp0KNevXycwMJDz58/j7e2tNgxfFqWZUwYOHMj169eJjo7mxx9/xN7eXqPQ7c2bN0cQhBIvsLIor19UKhVdu3YlJiZG7VfoA1BeGUXTCvuyLLPKkxwTu3btyoMHD1ixYgXHjh2TzCi5ubkatRHAyspKeokUEh4ezldffcXUqVPZu3cvMTEx+Pn5lSi3su0rnkeTa7D4dSeKYom0ivRtUFAQp06dYuHChRw5coSYmBgsLS1LtDElJeWZOJ5W1b31rCitf4ueCy0tLXbt2sX27dtxcXFh8eLFODk5ER8fDxSMWEZHR9OmTRt+/fVXHB0dS/hlVZZHafdJEwp8Vwz/9fvIzav771Tb+uSKT+/QK/PfQFZGXhBcXFxITEzk9u3bUlp0dLRansIHddEvn9KmNtrZ2TFixAg2bNjApEmTWLFiBYA0Q6bQD+JJWFpa0qNHD1avXs3q1at5//33NTrOwsICPz8/vvnmG8nJrigVWdujZcuW/P3339jb2+Pg4KD2q8qpmy1atGDPnj2l7nvw4AFxcXHMnDmTDh064OzsXEKp0AQvLy9iY2PV0qKioujevTvvvfceHh4eNG3alCtXrlSqDU+Lg4MDurq6HDp0SErLy8vj5MmTTzX0HxUVxdixY/H398fV1RU9PT01B+RCLly4gJeXV6XrKYuqvLeK4uzsXOKlXxklwMXFhSNHjqgpQkeOHMHExIQGDRoABUpJ27ZtmTt3LmfOnEFXV5eNGzdK+b28vJg+fTpHjhzBzc2Nn3/+ucJyFEelUnEv+y4ABiqBXKUZ6Xm25NVwkDmZFxNZGXlB6NixI05OTgwcOJCzZ88SFRXFjBkz1PI4ODhgZ2fHnDlzuHz5Mlu3biU8PFwtz/jx49mxYwfx8fGcPn2avXv3Si+Sxo0bIwgCf/31F/fu3SM9Pf2Jcg0dOpQ1a9YQFxfHoEGDNG7P0qVLUSqV+Pj4sH79eq5cuUJcXBxff/11hYayQ0JCSElJISAggOPHj3P9+nV27tzJ4MGDNVaqNGH69OmcOHGCUaNGce7cOS5evMiyZcu4f/8+5ubmWFpa8t1333H16lX27t3LxIkTK1yHn58f0dHRanI7ODiwa9cujhw5QlxcHMOHD+fOnTtV1q6KYGRkxMiRI5kyZQqRkZHExsYybNgwMjMzGTJkSKXLdXBwYO3atcTFxXHs2DEGDBhQ6khUVFQUnTt31rjcrKysEiNmV69eLZGvqu6t4owbN45Vq1axatUqLl++zIcffsjff/+tsfyFjBo1in/++YcxY8Zw8eJFNm/ezIcffsjEiRNRKBQcO3aMTz/9lJMnT5KYmMiGDRu4d+8ezs7OxMfHM336dKKjo7lx4wY7d+7k8uXLVeI3kpyaSI4ACkRUQI7K8KnLlPnvIisjLwgKhYKNGzeSk5ODj48PQ4cOJSwsTC2Pjo4Ov/zyCxcvXsTDw4P58+dLHveFKJVKQkJCcHZ2pkuXLjg5OUlOmQ0aNGDu3LlMmzYNa2trRo8e/US5OnbsiK2tLX5+ftSvX1/j9jRp0oTTp0/Tvn17Jk2ahJubG506dWLPnj0sW7ZM43Lq16/P4cOHUSqV+Pn54ebmxrhx4zAzM5OG1qsCR0dHdu7cydmzZ/Hx8aF169Zs3rwZbW1tFAoF69at49SpU7i5uTFhwgQ+//zzCtfh7++Pjo6O2sJes2bNomXLlvj5+dGuXTtsbGxqbIVMKJiq2rt3bwIDA2nZsiVXr15lx44dmJubV7rMVatWkZqaipeXF4GBgdLU4aJER0fz6NEj3nnnHY3LvXz5Ml5eXmq/QmfSolTVvVWcfv36MXv2bEJDQ2nVqhU3btxg5MiRGstfSIMGDdi2bRvHjx/Hw8ODESNGMGTIEMlh2dTUlIMHD+Lv74+joyMzZ84kPDyct956C0NDQy5evEjv3r1xdHQkODiY0aNHM3z48ArLUZSc3CxSxYKPFX2lFlm51bsmj0ztQxBLM5g+Zzx+/BgzMzMePXqEqamp2r7s7Gzi4+Np0qSJ5Pz3IqzAWlvIzMykfv36rFq1il69etW0OC88S5cuZfPmzezYsaOmRXmu6NOnD15eXnzwwQfVVqcgCGzcuLFGlb/nlRv3LpIuKNEVQUupS3p+1fvyPG+I+bkk377JnH3J3EqrulHX54XCqL3jOzpWabnlvb/V6q/SWp8T6tSpw+jRo5+J531ZGBoa/qcUEZVKxZ07dwgPD8fMzIxu3brVtEi1guDgYFJTU0lLS6vVS8JXhJycHDw8PJgwYUJNiyIDPEy7R7pQ8DIWRMV/QhGRefbUSmUEChSS/5JyUN0kJibSpEkTGjZsSEREBNra2mr7XFxcyjw2NjaWRo0aVYeYLxza2tol/BX+6+jp6UkmiULKW8tm+/btGs3qkqk4KpWK+9nJIBQ4rebl1alpkWRqCbVWGZF5ttjb25c6JRIK/DjKm2lQEd8SGZnSKO/6Kpxh8rS8ABbsaudu6o0iTqsCOfLUXZkqQlZGZKocbW1tHBwcaloMmVqMfH1VP9k5WTwUMwABfaUW6Xmy06pM1SHPppGRkZGReSJ3H99AhYCuCKJKB5FnE99G5r+JrIzIyMjIyJRL6uNkyWkVUUG60qpmBZKpdcjKiIyMjIxMmahUSu7n3AMKnFaVeZVfU0ZGpixkZURGRkZGpkzupiaS+6/TqgjkiiUjL8vIPC2yMiIjIyMjUyrZOZn/Oq2CnlKLzFzbGpZIprZSa5WR7OzbPE67UG2/7OzbTxbqGSAIAps2baqRuquDmmrf/v37EQShQkH7yiMhIQFBEJ4YXO3SpUvY2NiQlpZWJfU+j8yZMwdPT0+N8+fk5NCoUSNOnTr17IR6znhe7us7jxNRIaAnAipd2WlV5plRoam9y5YtY9myZSQkJADg6urK7Nmzeeutt8o85sCBA0ycOJG///6b+vXrM3XqVEaMGPFUQj+J7OzbRB/tiEqV80zrKYpCoUfrV3ejr6/ZGhpBQUE8fPjwuXjgFLJ//37at29PampqtSwYd+fOHcLCwti6dSu3bt2iXr16eHp6Mn78eDp06PDM6y+PNm3akJSUhJmZWbXWO2PGDEJCQmr16quTJ09mzJgxGufX09Nj8uTJhIaGqsXtKY85c+Ywd+5chg8fzrfffiulx8TE4OXlRXx8PPb29hqV9Tzeq9VByuNkMv51WhVFBelKyxqWSKY2U6GRkYYNGzJv3jxOnjzJyZMnefPNN+nevXuZkSjj4+Px9/fn9ddf58yZM3zwwQeMHTuW9evXV4nwZZGbl1KtigiASpVDbl5KtdZZU+Tm5j51GQkJCbRq1Yq9e/eyYMECzp8/T2RkJO3btyckJKQKpHw6dHV1sbGxQRCq70vw5s2bbNmyhffff7/a6qwJjI2NsbSs2IttwIABREVFERcXp/Ex+vr6rFy5ksuXL1dUxGeCUqlEpVLVtBgaoVQpefCv06qh7LQqUw1USBnp2rWrFBnS0dGRsLAwjI2NOXr0aKn5v/32Wxo1asTChQtxdnZm6NChDB48mC+++KJKhK9NtGvXjrFjxzJ16lQsLCywsbFhzpw5anmuXLnCG2+8gb6+Pi4uLuzatUttf2mmhZiYGARBkEazbty4QdeuXTE3N8fIyAhXV1e2bdtGQkIC7du3B8Dc3BxBEAgKCpJkGz16NBMnTsTKyopOnToxePBg3n77bbX68/PzsbGxYdWqVU9s76hRoxAEgePHj/POO+/g6OiIq6srEydOLHE93b9/n549e2JoaEjz5s3ZsmWL2v7Y2Fj8/f0xNjbG2tqawMBA7t+/r9a3Y8aMYfz48Zibm2Ntbc13331HRkYG77//PiYmJjRr1ozt27eX25eHDx/G19cXQ0NDzM3N8fPzIzU1FYDIyEhee+016tSpg6WlJW+//TbXrl17Yj8U5bfffsPDw4OGDRtKaQ8ePCAgIICGDRtiaGiIu7s7v/zyi9pxT9O+HTt24OXlhYGBAW+++SbJycls374dZ2dnTE1NCQgIUIvxlJOTI0XV1dfX57XXXuPEiRMlyt2zZw/e3t4YGhrSpk0bLl26JOUpbqY5ceIEnTp1wsrKCjMzM3x9fTl9+rRaGy0tLWnTpk2JtpeHk5MT7du3L7GUfFGUSiVDhgyhSZMmGBgY4OTkxKJFi9RkXbNmDZs3b0YQBARBYP/+/RrdaxEREdSpU4e//voLFxcX9PT0uHHjhkbtfRJpaWkMGDAAIyMjbG1t+eqrr2jXrh3jx4+X8vz44494e3tjYmKCjY0N/fv3Jzk5WdqfmprKgAEDqFu3LgYGBjRv3pzVq1cDBSut5gqghYhKlJ1WiyICKiNt8psYk9vKklxvS3JbWpLrZUGuhwW5LczJdTMnz7UOec5m5L1kRp6jKXkOpuQ3MyG/iTH59sbkNzIiv6Eh+Q0MUdoaoLQxQFlPH2VdfZSWeigtdFHV0UVlpoPKRAeVkTYqQ21U+lqIegpEHQWitoCoAFEokOtFptIrsCqVSn7//XcyMjJo3bp1qXmio6Pp3LmzWpqfnx8rV64kLy8PHR2dUo/LyckhJ+d/IxuPHz+urJgvFGvWrGHixIkcO3aM6OhogoKCaNu2LZ06dUKlUtGrVy+srKw4evQojx8/VnvwaEpISAi5ubkcPHgQIyMjYmNjMTY2xs7OjvXr19O7d28uXbqEqakpBgb/W+p5zZo1jBw5ksOHDyOKIikpKbzxxhskJSVha1vg1LZt2zbS09Pp27dvuTKkpKQQGRlJWFgYRkZGJfYXNxHNnTuXBQsW8Pnnn7N48WIGDBjAjRs3sLCwICkpCV9fX4YNG8aXX35JVlYWoaGh9O3bl71796rJP3XqVI4fP86vv/7KyJEj2bRpEz179uSDDz7gq6++IjAwkMTERAwNDUvIFBMTQ4cOHRg8eDBff/012tra7Nu3D6WyYBg7IyODiRMn4u7uTkZGBrNnz6Znz57ExMSgUGim8x88eBBvb2+1tOzsbFq1akVoaCimpqZs3bqVwMBAmjZtyiuvvPLU7ZszZw5LlizB0NCQvn370rdvX/T09Pj5559JT0+nZ8+eLF68mNDQUACmTp3K+vXrWbNmDY0bN2bBggX4+flx9epVLCwspHJnzJhBeHg4devWZcSIEQwePJjDhw+X2u60tDQGDRrE119/DUB4eDj+/v5cuXJFzVzl4+NDVFSURn1ZyLx583j55Zc5ceIEL7/8con9KpWKhg0b8ttvv2FlZcWRI0cIDg7G1taWvn37MnnyZOLi4nj8+LH0orawsODIkSMa1Z+Zmclnn33G999/j6WlJfXq1SM+Pl6j9pbHxIkTOXz4MFu2bMHa2prZs2dz+vRpNSUvNzeXjz/+GCcnJ5KTk5kwYQJBQUFs27YNgFmzZhEbG8v27duxsrLi6tWrZGVlkZWTwSMxExDQVWqRkSc7rQKgUICOQF4rK3L1nsPFy0XxX01JBNW/2yoRoTBN2lfwt1A0TRTJF+EmNReNuMI9ev78eVq3bk12djbGxsZs3LixzKBod+7cwdraWi3N2tqa/Px87t+/L73EivPZZ58xd+7cior2wtOiRQs+/PBDAJo3b86SJUvYs2cPnTp1Yvfu3cTFxZGQkCB9OX/66afl+uuURmJiIr1798bd3R2Apk2bSvsKXyb16tUroRA4ODiwYMECtTQnJyfWrl3L1KlTAVi9ejV9+vQpN4gZwNWrVxFFkZdeekkjmYOCgggICAAK2rx48WKOHz9Oly5dWLZsGS1btuTTTz+V8q9atQo7OzsuX76Mo2NBOGwPDw/pC3n69OnMmzcPKysrhg0bBsDs2bNZtmwZ586d49VXXy0hw4IFC/D29mbp0qVSmqurq/R379691fKvXLmSevXqERsbi5ubm0btLDRdFaVBgwZMnjxZ2h4zZgyRkZH8/vvvaspIZdv3ySef0LZtWwCGDBnC9OnTuXbtmnRdvPPOO+zbt4/Q0FAyMjJYtmwZERER0nW3YsUKdu3axcqVK5kyZYpUblhYGL6+vgBMmzaN//u//yM7Oxt9/ZJf2G+++aba9vLlyzE3N+fAgQNqo28NGjSQRh00pWXLlvTt25dp06axZ8+eEvt1dHTUnjVNmjThyJEj/Pbbb/Tt2xdjY2MMDAzIycnBxqbiy5/n5eWxdOlSPDw8pDRN21sWaWlprFmzhp9//lnyrVq9enWJmE+DBw+W/m7atClff/01Pj4+pKenY2xsTGJiIl5eXpICXOhDk3AvDpVQ4LQqqnRf+C/uSiEIoCUgahX8j5aAmCciaisQDYB8EcWDHMjKR9RVICBQcmxCQEoW/pf0v///3S+AKPzvbwSh4Kco+Fv8939K/F/MhFxYRrH0ss5f8XQVcD07T4POeTZUWBlxcnIiJiaGhw8fsn79egYNGsSBAwfKVEiK29wLg0+VZ4ufPn06EydOlLYfP36MnZ1dRUV94WjRooXatq2trTSsGhcXR6NGjdSG8MsakSqPsWPHMnLkSHbu3EnHjh3p3bt3iXpLo/gXO8DQoUP57rvvmDp1KsnJyWzdurXUB35xNLkGilJUPiMjI0xMTKR+OXXqFPv27StVAbp27ZqkjBQtQ0tLC0tLS0khAySluegwdlFiYmLo06dPmTJeu3aNWbNmcfToUe7fvy/5BiQmJmqsjGRlZZV4WSuVSubNm8evv/7KrVu3pFHD4iNKlW1f0eOsra0xNDRUU1Ctra05fvy41Ma8vDxJeYGCl7mPj08JX46i5RZ+dCQnJ5carTk5OZnZs2ezd+9e7t69i1KpJDMzk8TERLV8BgYGaiYjTfnkk09wdnZm586d1KtXr8T+b7/9lu+//54bN26QlZVFbm5uhWb7lIeurm6J+0vT9pbF9evXycvLw8fHR0ozMzPDyclJLd+ZM2eYM2cOMTExpKSkqF2TLi4ujBw5kt69e3P69Gk6d+5Mjx49eMm1GRlCQT5RVJD5n3BaLaZ4aP+rDBRHFBGUIuY37+GQkUhjxX0sxUdk5BmQrG3BPwb1uGxmy2O9KnQ+LxztEIuMduSBIKoQi4x+FOYpGAUBEP+nbYggiKKa9iEWtkegwMbzr8Zk61C36mSvIBVWRnR1daUgVd7e3pw4cYJFixaxfPnyEnltbGy4c+eOWlpycjLa2trlOrDp6emhp6dXUdFeeIqbrQRBkB4gpUUQLf4yLzQHFM2bl6eu6Q4dOhQ/Pz+2bt3Kzp07+eyzzwgPD3/i7IbSzCkDBw5k2rRpREdHEx0djb29vUah25s3b44gCMTFxdGjR48n5i+vX1QqFV27dmX+/Pkljis68lZaGUXTCvuyLAfDoiar0ujatSt2dnasWLGC+vXro1KpcHNzq5Czr5WVleSDUkh4eDhfffUVCxcuxN3dHSMjI8aPH1+i3Mq2r3geTa7B0j4wiqdVpG+DgoK4d+8eCxcupHHjxujp6dG6desSbUxJSaFu3Yo/LJs1a8awYcOYNm0aK1euVNv322+/MWHCBMLDw2ndujUmJiZ8/vnnHDt2rNwyNbnXoOC6Kd43mra3LMo7D4VkZGTQuXNnOnfuzI8//kjdunVJTEzEz89Pquett97ixo0bbN26ld27d9OhQwf6v9+PiR9NwVAlkJ1nQa1EUVTxUJQcYSjMplKhp8pFnxz0hUwQs1Ap7vNBg49RqcpeykGZp01+nj7KPANUefoocw3IzzMgR2lElsqIdExIFepwV8ecRENrLpnYkqVX0jQM/G+0AwG0/pes6WhHRdK1BWhiVf6o9rPkqQ1foiiq+XcUpXXr1vz5559qaTt37sTb27tMfxGZ0nFxcSExMZHbt29Lw7HR0dFqeQof1ElJSZibF3i/l7auhZ2dHSNGjGDEiBFMnz6dFStWMGbMGHR1dQEkP4gnYWlpSY8ePVi9ejXR0dEazwKxsLDAz8+Pb775hrFjx5ZQdB4+fKjx1OKWLVuyfv167O3t0dZ+dnbcFi1asGfPnlLNhw8ePCAuLo7ly5dLytihQ4cqXIeXlxexsbFqaVFRUXTv3p333nsPKHihX7lyBWdn50q04ulwcHBAV1eXQ4cO0b9/f6DgBXzy5MlK+S8VEhUVxdKlS/H39wfgn3/+UXNALuTChQt4eXlVqo7Zs2fTrFkz1q1bV6LuNm3aMGrUKCmtuOOxrq5uiXtC03utNDRtb1k0a9YMHR0djh8/Lo0YP378mCtXrkimsYsXL3L//n3mzZsn5Tl58mSJsurWrUtQUBBBQUG4e73Ex3PmMeWjyahEgTyxFnwQlmJuKW3UQxBV6Kry0ScbPbLRV2SipVCqTfHIVYrSocp8bfLzDFHm6qHQzkNLJxttnRwEQURLOx8t7XQwSNdYzPw8HZR5Bijz9FDlGqDMMyAvz4BcpRGZKmMeY0qqlhlJOpbcMLTmmkk9cnTK/0B60ajQ0/uDDz7grbfews7OjrS0NNatW8f+/fuJjIwECswrt27d4ocffgBgxIgRLFmyhIkTJzJs2DCio6NZuXJlhTziZQro2LEjTk5ODBw4kPDwcB4/fsyMGTPU8jg4OGBnZ8ecOXP45JNPuHLlCuHh4Wp5xo8fz1tvvYWjoyOpqans3btXerE1btwYQRD466+/8Pf3x8DA4In+H0OHDuXtt99GqVQyaNAgjduzdOlS2rRpg4+PDx999BEtWrQgPz+fXbt2sWzZMo2ncIaEhLBixQoCAgKYMmWK5Ii3bt06VqxYgZaW1pML0YDp06fj7u7OqFGjGDFiBLq6uuzbt48+ffpgYWGBpaUl3333Hba2tiQmJjJt2rQK1+Hn58fQoUNRKpWS3A4ODqxfv54jR45gbm7Ol19+yZ07d2pEGTEyMmLkyJFMmTIFCwsLGjVqxIIFC8jMzGTIkCGVLtfBwYG1a9fi7e3N48ePmTJlSqkjUVFRUXz88ceVqsPa2pqJEyfy+eefl6j7hx9+YMeOHTRp0oS1a9dy4sQJmjRpIuWxt7dnx44dXLp0CUtLS8zMzDS61562vWVhYmLCoEGDpPNQr149PvzwQxQKhTRa0qhRI3R1dVm8eDEjRozgwoULJfpu9uzZtGrVCldXVx4+TiVy526aOjZFV6lF+gvptKqhuQURHVU++mIOekI2+kImOkKe2shDISqlNqJSBzFfm7wckfzMdO5Evk3e/UzEXBEyVGiJAqKOFio9EYWhiGCoRMsgF4VhDoJ+Dgr9LAS9LATdbLR0sxB0s9DSyfpXgclFEES0tfPQ1s6DCugX+bm65Ofpo8ozQJlbMBKTl184AlOgwDxQ1CFJz5IEI2uumlij0tKtdO8+ayqkjNy9e5fAwEBpMagWLVoQGRlJp06dgIKvhKJ2zyZNmrBt2zYmTJjAN998Q/369fn6669LOPvJPBmFQsHGjRsZMmQIPj4+2Nvb8/XXX9OlSxcpj46ODr/88gsjR47Ew8ODl19+mU8++UTN10GpVBISEsLNmzcxNTWlS5cufPXVV0CBg+DcuXOZNm0a77//PgMHDiQiIqJcuTp27IitrS2urq4lHOjKo0mTJpw+fZqwsDAmTZpEUlISdevWpVWrVixbtkzjcurXr8/hw4cJDQ3Fz8+PnJwcGjduTJcuXTSexaIJjo6O7Ny5kw8++AAfHx8MDAx45ZVXCAgIQKFQsG7dOsaOHYubmxtOTk58/fXXtGvXrkJ1+Pv7o6Ojw+7du/Hz8wMKZjzEx8fj5+eHoaEhwcHB9OjRg0ePHlVZ2yrCvHnzUKlUBAYGkpaWhre3Nzt27JBGByrDqlWrCA4OxsvLi0aNGvHpp5+qOe1CwSjgo0ePeOeddypdz5QpU1i2bBnZ2dlS2ogRI4iJiaFfv34IgkBAQACjRo1SmwY9bNgw9u/fj7e3N+np6ezbt4927do98V57mvY+iS+//JIRI0bw9ttvY2pqytSpU/nnn38kn6O6desSERHBBx98wNdff03Lli354osv6Natm1SGrq4u06dPJyEhAT19XVq+2opFyz9HVL0gIyKSuUVRoHiUYW7RFvPRE3MLRjyETHSFHIRSHg1FFQ8xXxtRKYAKFPn56OZlocjPRS87ixbHdqBIStJYzDyFDo+M65FmbE2mfmPydIzI19L/d3quiJaRCoWhEsEgF8EgB4V+NoJ+Fgq9bBR6mQVKjE4WCt1stHWy0NYpMLNp6+T++7dms01FUSA/RxdlURNSngG5+Ybk5BuSJRojZHWAJj01bltVIoilOSM8Zzx+/BgzMzMePXqEqamp2r7s7Gzi4+Np0qSJdCO+CCuw1hYyMzOpX78+q1atolevXjUtzgvP0qVL2bx5Mzt27KhpUZ4r+vTpg5eXFx988EFNi/JckpGRQYMGDQgPD6/wKNWDR3e4k/cAAB2VguznMf6MhuYWhahCV8wtMLcIWegL2Sgo6atUoHhoI+brlKp4aKnySxyTo1KReO8eWp+EVUgZqQzZOkY8NLImzdiKbP065OsYkq/QRdDTQtQRURgpEQzzURjkojDIQTDIRqFXoMAIulkodLNQ6GaipZuDlk5WwaiLBiSf7UjAhJL+n09Dee/vojyHk6WfHn39+rR+dXe1roiqq2Pxn1JEVCoVd+7cITw8HDMzM7UvLpnKExwcTGpqKmlpabV6SfiKkJOTg4eHBxMmTKhpUZ4bzpw5w8WLF/Hx8eHRo0d89NFHAHTv3r1C5SiV+TzIfQACGCoFsvOfh9kzmptbdMU89MRs9P9VPLSFfIqHz1GpCkc6dBDzNFM8ahr9vAxsHl7H5uF1jfKrgEwDcx4Z1SPdsD5ZeqYodfRRCjoI+grQFhFMlAgGShSG2Sj0c1AYZCNIoy8FCowyo+bMOLVSGYECheS/pBxUN4mJiTRp0oSGDRsSERGh5jxaOHWwLGJjY0ud4ikD2traJXyB/uvo6emVWEW1PF+m7du3azSr60Xniy++4NKlS+jq6tKqVSuioqKwsrKqUBl3Um+QJ4CWKCIikCfWwMuoIuYWstGnQPnQIbdARymSXaXSKhjtUOog5mshKhWgfL4Vj6pAARhnpWKclQpcelJ2AJSCgnRDSx4ZW5Nh2JhsHWNavVxz78xaq4zIPFvs7e1LnW4MBX4c5c0sqIhviYxMaZR3fTVo0KD6BKkhvLy8njqKcWZ2Go8o8J/RVVWT02pxc4t2MW3iXxQo//XzKBjx0CMHhaBublGptFApdf41tfyreKhAkVe7FY+qQktUYZZxD7OMghhEaGtj1fnZBrEtD1kZkalytLW1pbVoZGSeBfL19fTcTbuJKICeCkTVM4o9o6V4orlFQERXzC2Y2UIWeuSgTX6JEQ+lUr+Ic6mseNQ2ZGVERkZG5j/G/UdJZP470qBCQbayCqPyahcEcStL+dAhTzK36JH9P3PLvzxZ8cioOlllnhtkZURGRkbmP0S+Mp+U3BTJaTWrKpxWy1BAFCiLKB45BeaWIrNbCkwtekVmtciKx38VWRmRkZGR+Q9xNzWBPAG0RRERBflP67Sqp4Wo978Vw7TIx4h0jMhAn/+t6aJSaSEqdcgvqniIoMiVFQ8ZWRmRkZGR+c+QkZXGIwrWX9KpCqdVLQWiXsEKYiY8xpg09MlGFBWo8nXIVxr9a24pVDyUsuIhUyqyMiIjIyPzHyE5/R9EAfRVoFI+ZWwTQUAwFBARMCYN85x0xHxdcvMNEEVQ5KjQy8tES1XxSMsy/z2qbr3s54yb2bmcS8ustt/NbM2js1YlgiCwadOmGqm7Oqip9u3fvx9BEHj48GGVlJeQkIAgCE8Mpnbp0iVsbGxIS0urknqfR+bMmYOnp6fG+XNycmjUqNFTT2WtCFV9/p8H7j+8TaYgIgBKFGSq6jxVeVr6AipBC23yqJOTQX6WLgYP0jB69BDjxw8xzHksz3KR0ZhaOTJyMzuXtsfiyFFV30r3egqBw68401BfM/tr0P+zd+ZxUdXrH3+f2diXAWIVRUVMUXCLcik1NZQrleu9aioaeVXUiFyzRU1NvVG2aerP7ZZpdc2lVNBQEw3FJbUCzA1xAZF9Z7bz+2NkZGQbcLd5v15Tzjnf813OHM55zvf7eZ4nLIy8vLyHypDYv38/PXv2JDc31+SsuXdCRkYGCxYsYMeOHVy9ehVXV1fatWtHZGQkvXr1uuft10aXLl0MOZjuJ7NnzyYiIuKxjr46depUJk+ebHJ5CwsLpk6dyowZM/j5559NPi4nJ4d58+axdetWrl27hrOzM3379mXu3LlGQfd69OhBu3btWLp0aX2G8Uih0arJUeeCAFY6gVJ1/YKjVUEuQSOXASIuuiw0GgX2BQ8mX9K9RisBlQzKdaCRQIEt2MlAYbaz7iqPpTGSo9bcV0MEoFwnkqPWmGyMPMqoVCoUijsbZ2pqKl27dsXR0ZElS5YQEBCAWq0mNjaWiIgIUlJS7lJvG4ZCocDd3f2+tnnlyhW2b9/+WD8UQR89ta5s0LczYsQIpk2bRnJyskkZi3NycnjmmWdQKBQsW7aMNm3akJqayttvv81TTz1FQkICzZo1a+gQGoxarUYul9/3disircpEEVGUoBHvoA8SAaz0glUluUiKLbDJffQNEY1Ub3SoZKCWgUomoJaB7qZzkE4tkFsIi4fLSFfJsFCJOBTDEwUirnnglqf/v2ueiFse2JdUF87NTE08tss0jxo9evRgypQpTJ8+HScnJ9zd3ZkzZ45RmbNnz/Lcc89haWlJ69at2bNnj9H+6qaWT548iSAIpKamAnDp0iVCQ0NRKpXY2Njg7+/Pzp07SU1NpWfPngAolUoEQSAsLMzQt0mTJhEVFYWLiwt9+vRh7Nix9O/f36h9jUaDu7s7a9asqXO8EydORBAEEhMTGTx4MH5+fvj7+xMVFcXhw4eNymZlZTFgwACsra1p0aIF27dvN9qflJRESEgItra2uLm5MXLkSLKysozO7eTJk4mMjESpVOLm5sbKlSspLi5mzJgx2NnZ0bx5c6NMrdWdy0OHDtG9e3esra1RKpUEBweTm5sLQExMDN26dcPR0RFnZ2f69+/P+fPn6zwPlfnuu+8IDAykUaNGhm3Z2dkMGzaMRo0aYW1tTdu2bdm4caPRcXcyvtjYWNq3b4+VlRXPP/88mZmZ7Nq1i1atWmFvb8+wYcMoKbm15l9eXs6UKVNwdXXF0tKSbt26cfTo0Sr1xsXF0alTJ6ytrenSpQtnztwKUX37Ms3Ro0fp06cPLi4uODg40L17d06cOGE0RmdnZ7p06VJl7DUxe/Zsrl27xs8//0xISAiNGzfmueeeIzY2FrlcTkREBKCfofzll1/45JNPEATB6G8F4Pjx4zWOA+DHH3+kY8eOWFpa0qxZM+bOnYtGc+uVWRAEvvzyS1566SVsbGyYP3++Sf2/mxSXFlBwF0Wr0ps6EUtKsSnRIC8uR+Chz7cKgIje0Ci2hFxbyHSEK84CF90E0p4QyFAK5NgJFFoJlMtvGSJyLcg1IBFBcvNFt1whkKkU+LOJhH2BEjZ1l/LpS1LeHi3jtddljHpTytRXpSwZJGF9Lwm7OgqcaC5wxVlv8JgxxmyMPESsX78eGxsbjhw5wpIlS5g3b57B4NDpdAwcOBCpVMrhw4f58ssvmTFjRr3biIiIoLy8nAMHDvD777+zePFibG1t8fb2ZvPmzYBet5Cens4nn3xi1DeZTMahQ4dYsWIF4eHhxMTEkF4pe+XOnTspKipi6NChtfYhJyeHmJgYIiIisLGxqbL/9iWiuXPnMnToUE6fPk1ISAgjRowgJ0efBDE9PZ3u3bvTrl07jh07RkxMDNevX6/Sh/Xr1+Pi4kJiYiKTJ09mwoQJDBkyhC5dunDixAmCg4MZOXKk0YO3MidPnqRXr174+/uTkJDAwYMHCQ0NRavVAvqsqVFRURw9epS4uDgkEgkDBgxAp6uaMbQmDhw4QKdOnYy2lZWV0bFjR3766Sf++OMPxo0bx8iRIzly5MhdGd+cOXP4/PPP+fXXX7l8+TJDhw5l6dKlfPPNN+zYsYM9e/bw2WefGcpPnz6dzZs3s379ek6cOIGvry/BwcGG36OC2bNnEx0dzbFjx5DJZIwdO7bGcRcWFjJ69Gji4+M5fPgwLVq0ICQkpIpuJigoiPj4+DrPo06nY9OmTYwYMaLK7JaVlRUTJ04kNjaWnJwcPvnkEzp37sxrr71Geno66enpeHt7mzSO2NhYXnnlFaZMmUJSUhIrVqxg3bp1LFiwwKjN9957j5deeonff/+91vNwLxBFketFVxC5O6JVwUKCRiJDghZnTR4anRQLVend6exdRBSgXAZFlpBjC9cd4bKLwEV3gcsuAtcdBXJtBYosBVRyfXlB1C+9WJeL2JaK2JWK2JSJWKhAK2CYJbEqB68sEd+rOvxTdbQ7r6P9OR1tL+pofk3EqUBEEEXKFQJprgLH/CTsCJKw9gUpi4ZKiRon45VpMv49Scq7r0j5vL+E77pJ+KWNQEojfX9Nv2s8Ppjts4eIgIAA3nvvPQBatGjB559/TlxcHH369OHnn38mOTmZ1NRUw5vzwoUL6devX73aSEtLY9CgQbRt2xbAaKrayckJAFdX1yoGga+vL0uWLDHa1rJlS7766iumT58OwNq1axkyZEidU/Dnzp1DFEWefPJJk/ocFhbGsGHDAP2YP/vsMxITE+nbty/Lly+nQ4cOLFy40FB+zZo1eHt789dff+Hn5wdAYGCgIdnarFmzWLRoES4uLrz22msAvPvuuyxfvpzTp0/zzDPPVOnDkiVL6NSpE8uWLTNs8/f3N/x70KBBRuVXr16Nq6srSUlJtGnTxqRxpqam0rFjR6NtXl5eTJ061fB98uTJxMTE8P333/P0008btjd0fPPnz6dr164AvPrqq8yaNYvz588brovBgwezb98+ZsyYQXFxMcuXL2fdunWG627VqlXs2bOH1atXM23aNEO9CxYsoHv37gDMnDmTf/zjH5SVlWFpWTXs+PPPP2/0fcWKFSiVSn755Rej2TcvLy+jWYuauHHjBnl5eTUu57Rq1QpRFDl37hxBQUEoFAqsra2rXZarbRwLFixg5syZjB49GtD/Lb3//vtMnz7d8HcMMHz48PtuhFSQlX+N0kqi1bI7Ea1KJehuxhNxFrPRliuwz3mwyzM6ofKyyq3lFY205mMkon6WQ6YVEW5O6IgCaKTCzWWaGhZX9O8dFFsJpEurz6kDIIgiDkWgLBaxLhVRaPX1q2QCBdaQbQ+lFgK5dgK5dpDiXU2UWrWIa37VpZ+K75ZqU8/Qo4PZGHmICAgIMPru4eFBZmYmAMnJyTRu3NhoCr9z5871bmPKlClMmDCB3bt307t3bwYNGlSl3eq4/Y0dIDw8nJUrVzJ9+nQyMzPZsWMHcXFxddZVkWBPqDYteFUq98/GxgY7OzvDeTl+/Dj79u2r1gA6f/68wRipXIdUKsXZ2dlgkAG4ubkBGOq9nZMnTzJkyJAa+3j+/HneeecdDh8+TFZWlmFGJC0tzWRjpLS0tMrDWqvVsmjRIr799luuXr1KeXk55eXlVWaUGjq+yse5ublhbW1tZKC6ubmRmJhoGKNarTYYLwByuZygoCCSk5NrrNfDw8PQdnXZmjMzM3n33XfZu3cv169fR6vVUlJSQlpamlE5KyurGmeu6kN9rr/axnH8+HGOHj1qNBOi1WopKyujpKQEa2troPq/nfuBRlMhWhWw0gqUaO5AtGrkxluAoliKZV7R3etsHVSISCuMDv2/BbS1zO1LdPqZDplOb3SIgE4C6ptGR7n83ig6REEgzw7y7KA6g0WmFnHPFrEvEbFUgVTUj6/UQiDPRm+sqOUCV13gqkv1fXQoNjZSKhsrToV6g+tRw2yMPETcLmwTBMHwUKsuQ+7tN1OJRFKlrFptbEKHh4cTHBzMjh072L17Nx988AHR0dF1ejdUt5wyatQoZs6cSUJCAgkJCfj4+JiUur1FixYIgkBycjIvv/xyneVrOy86nY7Q0FAWL15c5biKh0dNdVTeVnEua1pWsbKqfXo7NDQUb29vVq1ahaenJzqdjjZt2qBSme7y7eLiYtCgVBAdHc3HH3/M0qVLadu2LTY2NkRGRlapt6Hju72MKdfg7dedKIpVttXn3IaFhXHjxg2WLl1KkyZNsLCwoHPnzlXGmJOTwxNPPFFtHZV54okncHR0JCkpqdr9KSkpCIJA8+bN66yrtnHodDrmzp3LwIEDqxxX2ais7m/nfpCRl4pGEAyRVrV3IFqVWgpoDG68JYhqKVKd9i72Vk+1IlKp3oioCZkW5FoRqQ6D0aGVgEYmUKaAh01GqpELZDhDhnM1/RJF7ErAqVDEtkxEfjNfoEoGhVYCOfZQZCWQbyOQbwNnvarWIdWKPFFpVuX2/9uU3+MBNhCzMfKI0Lp1a9LS0rh27Rqenp4AJCQkGJWpuFGnp6ejVOoTX1UX18Lb25vx48czfvx4Zs2axapVq5g8ebLBQ6ZCB1EXzs7OvPzyy6xdu5aEhATGjBlj0nFOTk4EBwfzxRdfMGXKlCo367y8PJNdizt06MDmzZvx8fFBJrt3l3NAQABxcXHMnTu3yr7s7GySk5NZsWKFwRg7ePBgvdto3759lQdofHw8L730Eq+88gqgfwCePXvWJI+Su42vry8KhYKDBw8yfPhwQG/sHjt2jMjIyAbXGx8fz7JlywgJCQHg8uXLRgLkCv744w/at29fZ30SiYShQ4eyYcMG5s2bZ7T8UlpayrJlywgODjYsSyoUCpOv+cp06NCBM2fOPJQZhItK8ilAb8zJ7lS0epsbr1qrwKGw4cszIreMDrX8pvEh1XuuiLXYDXItyDQ3jQ5uLq1I9MsrpYqHy+BoMIJAoQ0U2kB1RpRUK+KaK+JQLGKlAqkWdFIok+tnVbIcQCsVyHCCDKfqz4lNadXZFNc8cC0CR+6+gWkqZmPkEaF37960bNmSUaNGER0dTUFBAbNnzzYq4+vri7e3N3PmzGH+/PmcPXuW6OhoozKRkZH069cPPz8/cnNz2bt3r+HB1qRJEwRB4KeffiIkJAQrK6s69R/h4eH0798frVZrWDs3hWXLltGlSxeCgoKYN28eAQEBaDQa9uzZw/Lly6tM+9dEREQEq1atYtiwYUybNg0XFxfOnTvHpk2bWLVqFVJpLYvH9WDWrFm0bduWiRMnMn78eBQKBfv27WPIkCE4OTnh7OzMypUr8fDwIC0tjZkzZ9a7jeDgYMLDw9FqtYZ++/r6snnzZn799VeUSiUfffQRGRkZD8QYsbGxYcKECUybNg0nJycaN27MkiVLKCkp4dVXX21wvb6+vnz11Vd06tSJgoICpk2bVu1MVHx8PO+//75JdS5YsMCgt1qyZAlt2rTh4sWLvP3226jVar744gtDWR8fH44cOUJqaiq2trYGI6Uu3n33Xfr374+3tzdDhgxBIpFw+vRpfv/99wfiNVOBKIpkFl+tFGnVuuGV3ebGK5RYmKwTEQVQ1+AuWxOCeNPo0IpIbhodOgG0Ev3SitriMTE6GohWKpCphExl9efBulTEuUDErkxEodafP733kEC2HRTYCBRbCVywggseVeuYXPIn4+7xGGrC7E3ziCCRSNiyZQvl5eUEBQURHh5eRbUvl8vZuHEjKSkpBAYGsnjx4io3Ra1WS0REBK1ataJv3760bNnSIMr08vJi7ty5zJw5Ezc3NyZNmlRnv3r37o2HhwfBwcGGGRtTaNq0KSdOnKBnz568+eabtGnThj59+hAXF8fy5ctNrsfT05NDhw6h1WoJDg6mTZs2vP766zg4OBiWre4Gfn5+7N69m1OnThEUFETnzp3Ztm0bMpkMiUTCpk2bOH78OG3atOGNN97gP//5T73bCAkJQS6XGwX2euedd+jQoQPBwcH06NEDd3d3k5a27hWLFi1i0KBBjBw5kg4dOnDu3DliY2MNM3ENYc2aNeTm5tK+fXtGjhxpcB2uTEJCAvn5+QwePNikOl1cXDh8+DA9e/bk3//+N82aNWPo0KE0a9aMo0ePGulipk6dilQqpXXr1jzxxBNVtCo1ERwczE8//cSePXt46qmneOaZZ/joo49o0qSJ6YO/B2TlXTUSrZbqGh6473Y3XouiMqjGjbdcDgVWkG0H6UpIe0LvLnvFRSDTUSDPVqDY8pYhIohgoQabMr3Xiu1NzxWFRj9rUmIhUGSld7EtttQvt9S2VGNGT4mVwGU3gaQmEk76SvjNV8IfPhIuugsUWYFLnkjzqzoCLug9gALP63gyTcQzW0SuFinS3D8d0O0IYnVihIeMgoICHBwcyM/Px97e3mhfWVkZFy9epGnTpoZ12kchAuvjQklJCZ6enqxZs6batXMz9WPZsmVs27aN2NjYB92Vh4ohQ4bQvn173nrrrQfdlYcatUbFhdy/0AgC1loJJeon0DZwAlxiIUFroXfj9dBkoitVYFdNcLNcW8i1rf5NvUJEKtWJSCpEpIJez6GW1r4s87ChU+vIvJLJ4nOLSVel133AI4aVRsLoDuOIaB9xV+ut7fldmcdymaaRpYJDT7ciR33/4vU6yWV/K0NEp9ORkZFBdHQ0Dg4OvPjiiw+6S48F48aNIzc3l8LCwsc6JHx9KC8vJzAwkDfeeONBd+WhJyP3UiXRqtBgQwSpBO3tbrzVGCKliluGiKVKRKa9qefgpohU+nCKSM1URS2XIBEe3PTTY2mMgN4g+TsZB/ebtLQ0mjZtSqNGjVi3bp2ReDQtLY3WrVvXeGxSUlK1Lp5mQCaTVdEC/d2xsLAwxFCpoDYt065du0zy6nrcKCzJo1CoLFptYDoDQUBiLaCt7MabW3X6XiuBTEe9kWFbKlKmqDA8zJipP4+tMWLm3uLj41OtuzHodRy1Zaetj7bEjJnqqO368vLyun8deUjQi1avVRKt1i/3T2Wklhi58aKSIhWrelnccNAbJHKNXs9RW6AxM2bqwmyMmLnryGSyh9Ld0czjg/n6MuZG3hXKDKJVgTJdA5f4bs/Gq1VgX1R1eSbfRi8yFUS9CDWvBs2IGTOmYtYnmzFjxswjjFqjIlejNxistBLUKtc6jqiBKm68Cuyzqhoi5XLIttMbH47FIvk2ZkPEzJ1jnhkxY8aMmUeYjFx9pFW5KILYcNGq1FpAY3Dj1SIvrBo9WCfA9Zs6EZsykSJL4ZHyiDHz8GKeGTFjxoyZR5TC4lwKBH3KB6lOSqGmYaJViYVgyMbrpM5Dq5UgV1eNG37DQa8NqfCaqS2AmRkz9cFsjJgxY8bMI4goimSWXAPA6k5Eq1J9PBHQu/Hq1NXHEymw0kfyBLAr1c+KmDFztzDbtWbMmDHzCJKZe4UyQT9DoWmoaLWabLxWuYVViqlkkG1/SyeS95jrRCQiKEQpch0oRP1HpREo1kp4OteBZF0x1yxLKJTfv1hWjzuPrTFyNa+U3GLTM6beKUobBV6OtWd2vRcIgsCWLVseaIjwe8mDGt/+/fvp2bMnubm5Jiftq43U1FSaNm3Kb7/9Rrt27Wosd+bMGbp3787Zs2cf26Bnc+bMYevWrbW651amvLycFi1asGXLFjp27HhvO1eJdevWERkZSV5eHmBav8PCwsjLy2Pr1q0m1VkdprSjUpeTq80HQcBKK6FE3TDRqtTqNjfecgkS0Ti7snhTJyIKYFUuUmLxeOhEZDoBhShBIYJcFLAQRRRokYsaZELVDNNliDiIKmaXJGNZdBmAfNGaC4I7KTI7kuUSzlppOG9TRKnswSWce1R5LI2Rq3mlPP/hfso11acsvxdYyCTsndrDZIOkrpvWg+BuP4DrIiMjgwULFrBjxw6uXr2Kq6sr7dq1IzIykl69et3z9mujS5cupKen4+DQ8LweDWH27NlEREQ8toYI6HPBTJ482eTyFhYWTJ06lRkzZhjl7amN4uJi5s2bx/fff8+1a9ews7PD39+fqVOn0r9///vS74ZiSjvX8y6hNYhWJWhpQJAPuQSNrMKNNxuNVo59cdXlmSx7vTZEqgOZDkot6t/Ug0AQQS5KUOgEFKKAQhRRIKIQtcjRIBFqSBdy09BSi1JUggyVIEclyFELWkqEQv7Ah8ZiAa5CPg5CCe25QHsNoAFKgRxIE135S+JCstyCvyxE/rIu45plsd5jyUy1PJbGSG6x6r4aIgDlGh25xaoHMjtyv1GpVCgUdxZqMTU1la5du+Lo6MiSJUsICAhArVYTGxtLREQEKSkpd6m3DUOhUBilnr8fXLlyhe3bt7N06dL72u79xtbWts5s0LczYsQIpk2bRnJyskkZi8ePH09iYiKff/45rVu3Jjs7m19//ZXs7OyGdrtB/b4X7RQU59wmWnWrfyO3ufFSIq82G2+RJRRa6R+g9iVijTloHhRSUUCuk9w0NsBCFJGjQyFqkAs1zE7cHIJOBLUgR4WMckGOWiJHI0jRSiQgCEhFkGl1SDVaJDoNEjVoRTmH7J/n8hM9yLOQIlGpUBbl07ToGq3KU2mtScVNyKWxkEljMZPeKkAFFEKhaMk5wZMzlWZRzplnUQyYBawPCT169GDKlClMnz4dJycn3N3dmTNnjlGZs2fP8txzz2FpaUnr1q3Zs2eP0f79+/cjCILRFPDJkycRBIHU1FQALl26RGhoKEqlEhsbG/z9/dm5cyepqan07NkTAKVSiSAIhIWFGfo2adIkoqKicHFxoU+fPowdO7bKG6ZGo8Hd3Z01a9bUOd6JEyciCAKJiYkMHjwYPz8//P39iYqK4vDhw0Zls7KyGDBgANbW1rRo0YLt27cb7U9KSiIkJARbW1vc3NwYOXIkWVlZRud28uTJREZGolQqcXNzY+XKlRQXFzNmzBjs7Oxo3rw5u3btqvVcHjp0iO7du2NtbY1SqSQ4OJjc3FwAYmJi6NatG46Ojjg7O9O/f3/Onz9f53mozHfffUdgYCCNGjUybMvOzmbYsGE0atQIa2tr2rZty8aNG42Ou5PxxcbG0r59e6ysrHj++efJzMxk165dtGrVCnt7e4YNG0ZJSYnhuPLyckNWXUtLS7p168bRo0er1BsXF0enTp2wtramS5cunDlzxlBmzpw5RktVR48epU+fPri4uODg4ED37t05ceKE0RidnZ3p0qVLlbHXxI8//shbb71FSEgIPj4+dOzYkcmTJzN69GhDmdzcXEaNGoVSqcTa2pp+/fpx9uzZGuu8vd9arZaoqCjDbz59+vQaoxLfztatW/Hz88PS0pI+ffpw+fLlGtvR6XTMmzePRo0aYWFhwTNPd+Fg3EGsdKDV2nH1chqB3kpif9xC2MB+BPl6MPwfz5N64Rx/nDzBsJCePNOyERNeGUxOtv7vQmot8PvxE0x8KYT2PgH4tWzNC2Fh/JaUZGhXLYU5K5bRu11vOni1p90zz7Nw1kLD/k1rNhESFEKHRh14rvVzvDHm3uQOkusk2GilOGpkuKpleKukNFPBk+UanlSX01xbireuBDexBEdKsaHcYIhoRQklKMjDhkyJI1elLqTJXUm1cOeypQdZMmeKBTtEjRyJSoOgUiOWiahKJRSXSSjRCJSJEsoEOaUSOeWihD+zrPktxY6rpyyQpJSgTLuE9LoVRy17sKjZJMa0fI+IRm/yvmMY3yt68jtNKRdl2AlltOcC/9KcYm7pb3yT8zuJly+y40IpS1Nt+PcVZ3pkOeFVYq23lP5mmI2Rh4j169djY2PDkSNHWLJkCfPmzTMYHDqdjoEDByKVSjl8+DBffvklM2bMqHcbERERlJeXc+DAAX7//XcWL16Mra0t3t7ebN68GdDrFtLT0/nkk0+M+iaTyTh06BArVqwgPDycmJgY0tNvZa/cuXMnRUVFDB06tNY+5OTkEBMTQ0REBDY2NlX2375ENHfuXIYOHcrp06cJCQlhxIgR5OTkAJCenk737t1p164dx44dIyYmhuvXr1fpw/r163FxcSExMZHJkyczYcIEhgwZQpcuXThx4gTBwcGMHDnS6MFbmZMnT9KrVy/8/f1JSEjg4MGDhIaGotXqb3rFxcVERUVx9OhR4uLikEgkDBgwAJ3O9Bm6AwcO0KlTJ6NtZWVldOzYkZ9++ok//viDcePGMXLkSI4cOXJXxjdnzhw+//xzfv31Vy5fvszQoUNZunQp33zzDTt27GDPnj189tlnhvLTp09n8+bNrF+/nhMnTuDr60twcLDh96hg9uzZREdHc+zYMWQyGWPHjq1x3IWFhYwePZr4+HgOHz5MixYtCAkJobDQWEgZFBREfHy8SefS3d2dnTt3VqmjMmFhYRw7dozt27eTkJCAKIqEhISgVqtNaiM6Opo1a9awevVqDh48SE5ODlu2bKnzuJKSEhYsWMD69es5dOgQBQUF/Otf/6qx/CeffEJ0dDQffvghew/E0Pn5rkwaOYlzF9Io092aQVn+0SJemzKVTbv2I5XJmDkpnI8Xvsf0uR+wdvNOrly6yLIPFxrceEuL8hkxNJRtP/yP/Rs20LxJEwZMnEhhcTEisP7gHv674isWLHqPPQd38ul/P8WvtR8Af5z8gw/e+oBJMyfxU8JPrNi0go6dG6bnEUSw0Emw00hxVsvwUMloopLgW66jVbkKP00ZPtpSvHQlPCGWYE8pVqiQ3tR1qEQpRViSI9iRIXHiiuwJLincSLXw4JqFG3lSJSrRGkEFErUKQaVDWypQViqhWC2hTAulggSVoECHDAEQENEio1i0Ig8bcrGlCEvKUJAs+nBR9CJLdOSK7gl+lwRwyMKbozm2JKdYkn8abM5noEzL4nqpH/9zG8rkJ2fzarO3mOo6iS+sB7JX2p4MUQlAY+EGvcRkJql/47PCk8RcT+FwaiZfX5TydpojgzKcCchzxFrzWC5kGHi8R/eIERAQwHvvvQdAixYt+Pzzz4mLi6NPnz78/PPPJCcnk5qaanhzXrhwIf369atXG2lpaQwaNIi2bdsC0KxZM8M+JycnAFxdXasYBL6+vixZssRoW8uWLfnqq6+YPn06AGvXrmXIkCF1TmWfO3cOURR58sknTepzWFgYw4YNA/Rj/uyzz0hMTKRv374sX76cDh06sHDhrTe2NWvW4O3tzV9//YWfn/7mGRgYaEi2NmvWLBYtWoSLiwuvvfYaAO+++y7Lly/n9OnTPPPMM1X6sGTJEjp16sSyZcsM2/z9/Q3/HjRokFH51atX4+rqSlJSEm3atDFpnKmpqVUEml5eXkydOtXwffLkycTExPD999/z9NNPG7Y3dHzz58+na9euALz66qvMmjWL8+fPG66LwYMHs2/fPmbMmEFxcTHLly9n3bp1hutu1apV7Nmzh9WrVzNt2jRDvQsWLKB79+4AzJw5k3/84x+UlZVhaWlZZdzPP/+80fcVK1agVCr55ZdfjGbfvLy8DDN8dbFy5UpGjBiBs7MzgYGBdOvWjcGDBxvGevbsWbZv386hQ4fo0qULABs2bMDb25utW7cyZMiQOttYunQps2bNMvz2X375JbGxsXUep1ar+fzzzw2/3/r162nVqhWJiYkEBQVVKf/hhx8yY8YMBg4awIX8s0S9G8Wx+KOsWf4/3lrQ2VBu1L8n0bWHXms1fOy/mTkpnJWbttH+Kf3v/fK/XmH79xsNbrwhz7VBWhqoj7Lq4srn776LZ9euxB87xtOh3bmckY6Lqws9Oj9NqYMC56YetO2gv2+kX0nHytqK7i90x8bWBk9vT1oF1Lx8JhUFFDrJTc+UCv2GDrlJyymCXrvBTe2GRIZGIkUn3FxO0YnINDqkWi0SUYNE0KFFgRqBckAmCMhEAYlEbqgPQESCSpRRRkNEMALZOJCNA9z2vqGkALUg45pFMYJGpDjNAnWaBA+hBCddKjK1Pcfce/CTqw05CilWJcV4FWbRoiSN1qqLtBCvYCOUE8hFArXodSilQC5cFl34S+JKisyCMxZw1qaMK5bFj8W0gtkYeYgICAgw+u7h4UFmZiYAycnJNG7c2GgKv3PnztSXKVOmMGHCBHbv3k3v3r0ZNGhQlXar4/Y3doDw8HBWrlzJ9OnTyczMZMeOHcTFxdVZV8VUtiCYtv5cuX82NjbY2dkZzsvx48fZt29ftQbQ+fPnDcZI5TqkUinOzs4GgwzAzU2/7l5R7+2cPHmy1gfU+fPneeeddzh8+DBZWVmGGZG0tDSTjZHS0tIqD2utVsuiRYv49ttvuXr1KuXl5ZSXl1eZUWro+Cof5+bmhrW1tZGB6ubmRmJiomGMarXa8EAHkMvlBAUFkZycXGO9Hh4ehrary9acmZnJu+++y969e7l+/TparZaSkhLS0tKMyllZWdU4c3U7zz33HBcuXODw4cMcOnSIvXv38sknnzB37lzeeecdkpOTkclkRgads7MzLVu2rDKW6sjPzyc9Pd3ob1Amk9GpU6c6l2oqylXw5JNP4ujoSHJychVjpKCggGvXrtG1a1cy8lINotWOT3Xgjz+Nl5T8nrxlHDs/ofeuafFka6NtOdk34KYbb96lXD6av4hfEo+QmZ2tP+9lZZy/kc6T1gIvvPgCG778ii7P9aPb8914tvez9AjugUwmo0uPLnh4e9C3U1+6Pt+VZ3t2o2+/PjhYWhv0GwpE5GiQixqkdYhFNaLEIBTVGxxStIIUnURAIgrIdKJeu6HRIAhqBAF0ogQNet9mOSBBgiAoEAHdzfkNDTLKxfv7pM7FnlzR/rZh6sgWs8gWHLBWlKHJkaDKBYWowo1rOJUVkGXry/88n+Ka0hKtWo1TYQE+xem0KrtIa00qHkIO3kIW3mIWvdSAGiiCYtGC84IHyVJ7UhQSzlpqOWdTRLH80dKimI2Rhwi5XG70XRAEw0Otuhvc7Q9ziURSpeztU87h4eEEBwezY8cOdu/ezQcffEB0dHSd6v3qllNGjRrFzJkzSUhIICEhAR8fH5NSt7do0QJBEEhOTjbJZbe286LT6QgNDWXx4sVVjqt4CNZUR+VtFeeypmUVK6vahcmhoaF4e3uzatUqPD090el0tGnTBpXKdPdyFxcXgwalgujoaD7++GOWLl1K27ZtsbGxITIyskq9DR3f7WVMuQZvv+5EUayyrT7nNiwsjBs3brB06VKaNGmChYUFnTt3rjLGnJwcnnjiiWrrqA65XM6zzz7Ls88+y8yZM5k/fz7z5s1jxowZNRoM1Y3lXlBdG7W1W1JaQKHgAoBElKLSWVUpL6vmnMtkt7ZJFQI6UdS78ZaV8q8pb5CTlcWS6dNp7OmJhUJBj1deIVeqj53RUunOjl9/4mB8Agm/JDB/+nzWfrGWddvWYWNrw/dx33P00FGOxx1hxeLPWbXkC47u/BpHh9s8wQQQRVDfnN0oF+SoBf3shl4sKtF76mi1SDVaBFGNRNChQx/aXg2oBRE5IAgyRGToRAEdAhqkaEQZpfU5+Q8AEQnXcOWa6Fp5IwpUZKHkkmU+Cq0G1WUJwuUyHCnBWbyAXOXICbfu7GgcQo6FFKviEjyKsvArTqO1+iJ+usvYCOUEkErAbbMoV0QXzkqeIEluyV8KkbPWZVyxKuE+22YmYzZGHhFat25NWloa165dw9PTE4CEhASjMhU36vT0dJRK/XpkdbEKvL29GT9+POPHj2fWrFmsWrWKyZMnGzxkKnQQdeHs7MzLL7/M2rVrSUhIYMyYMSYd5+TkRHBwMF988QVTpkypYujk5eWZ7FrcoUMHNm/ejI+PDzLZvbucAwICiIuLY+7cuVX2ZWdnk5yczIoVKwzG2MGDB+vdRvv27UmqJCAEiI+P56WXXuKVV14B9A/0s2fPmuRRcrfx9fVFoVBw8OBBhg8fDuiN3WPHjhEZGdngeuPj41m2bBkhISEAXL582UiAXMEff/xB+/btG9xO69at0Wg0lJWVGf595MgRwzJNdnY2f/31l0nn1sHBAQ8PDw4fPsxzzz0H6AXcx48fp0OHDrUeq9FoOHbsmGEW5MyZM+Tl5VW7bGlvb4+npyc/x//M2E7jsNKBRmPPyWOJtGlXeztGyCVopXrvGRet3o338NGjLH37bfre7P+VjAyyc3MRBbBQ6wOdyRWW9Ozbk559ezLs1WGEdg7lbNJZWge2RiaT0bNbN8Y+04nSqDE4turOrkMn6BcSgloiRy1I0d5cThEEAalWRHZzdkMi6F1rtaICNSJqAWSIN2c3LBAR0CJBiwQ1MrQP6xP0DlGh4CyNOCs2gkr2sT1FXMYNB0Uxklwd5JUiR4e9mMET5QVk2zTnf56dSFdaotVoUBYW0LQonSfLLtJacxFPIYdGQhaNxCx6Vnj0FEGJaME5wYMUqT0pcil/WWk5b1NE0UMQvM1sjDwi9O7dm5YtWzJq1Ciio6MpKChg9uzZRmV8fX3x9vZmzpw5zJ8/n7NnzxIdHW1UJjIykn79+uHn50dubi579+413HybNGmCIAj89NNPhISEYGVlVaf+Izw8nP79+6PVao08Fepi2bJldOnShaCgIObNm0dAQAAajYY9e/awfPlyk6bKQS/IXbVqFcOGDWPatGm4uLhw7tw5Nm3axKpVq5BKGxB/oRpmzZpF27ZtmThxIuPHj0ehULBv3z6GDBmCk5MTzs7OrFy5Eg8PD9LS0pg5c2a92wgODiY8PBytVmvot6+vL5s3b+bXX39FqVTy0UcfkZGR8UCMERsbGyZMmMC0adNwcnKicePGLFmyhJKSEl599dUG1+vr68tXX31Fp06dKCgoYNq0adXORMXHx/P++++bVGePHj0YNmwYnTp1wtnZmaSkJN566y169uyJvb099vb2vPTSS7z22musWLECOzs7Zs6ciZeXFy+99JJJbbz++ussWrSIFi1a0KpVKz766KNag5lVIJfLmTx5Mp9++ilyuZxJkybxzDPPVKsXAfh3xKv8Z9HHePl44+/fim837OFM0u988NlKk/pZ2Y1Xgghlcuyz82nWuDEbf/yRDv7+FBQVMWNpNJZWlgiApUpk/fZtaLVaAjoGYGllyY/f/YillSWe3p7s372fa6lXeblTe2SO1myOS0Sn0+HZIgC1zhK0N2c3BAGdKKAV9G1rqTy7ccvYUIvmR1FlCrDlD2xvGSii/j8eZHPWIhtbTRniZS0WV3KwEdW46NJQaBz5zfU5djbuR46FDMviYjyKsvG7qUVpqUvDuvIsihYoA3LhqujMWYkrZxQXod2DGbP5CnhEkEgkbNmyhVdffZWgoCB8fHz49NNP6du3r6GMXC5n48aNTJgwgcDAQJ566inmz59vpHXQarVERERw5coV7O3t6du3Lx9//DGgFwjOnTuXmTNnMmbMGEaNGsW6detq7Vfv3r3x8PDA39/fMGNjCk2bNuXEiRMsWLCAN998k/T0dJ544gk6duzI8uXLTa7H09OTQ4cOMWPGDIKDgykvL6dJkyb07dvXsGx1N/Dz82P37t289dZbBAUFYWVlxdNPP82wYcOQSCRs2rSJKVOm0KZNG1q2bMmnn35Kjx496tVGSEgIcrmcn3/+meDgYADeeecdLl68SHBwMNbW1owbN46XX36Z/PyqMSHuB4sWLUKn0zFy5EgKCwvp1KkTsbGxhpm4hrBmzRrGjRtH+/btady4MQsXLjQS7YJ+FjA/P5/BgwebVGdwcDDr16/nrbfeoqSkBE9PT/r378+7775rKLN27Vpef/11+vfvj0ql4rnnnmPnzp1VlqpqouK6DQsLQyKRMHbsWAYMGFDnb2Ntbc2MGTMYPnw4V65coVu3bjW6w6tUZQwOH0xmQQ7/ee9DsrJyaN6iJZ+u/oYmTZub1M+KbLxy1CCKWOfrFzW+nDePSXPn0nnIEBp5ehDxzutcnvMhliqRfBsBOwc7Vn+6mv+8+x+0Wi1+rf34/OvPcXRyxN7enk0/rWf5f76grEyFT7OmfPT5cnx8/SgTRaiY3RAlqJGiEuU3dRxmGo5AOi6ki/rlugpDRYaGJjTHRZ6HRZ4aRX4+1qhx1OXiWl5Ejk0zfvDoyDUnKzRaNU4FBfhUzKJoU/EiGy8hGy8xm6PX6jHbdrdHJ5rqGP8AKSgowMHBgfz8fOztjYVBZWVlXLx4kaZNmxrEf49CBNbHhYob/Zo1axg4cOCD7s4jz7Jly9i2bZtJXhl/J4YMGUL79u156623HnRX7itpN85QKGhQiCIyrYJCTf3CvkssBLQWciRocVffgFI5tnnGxpJWAldcBLQSfQK8UoWApo4JRQ+VAieK0IoC6fInUKsllIly1I/x+62oUZF57Qpz9mVytfDhF4faUUxjruMoFKMQyrCVFGIhanlCex0njQN5ru5kuNmQZSnDqrgE98JspCo570yrqr+7E2p7flemXlfOBx98wA8//EBKSgpWVlZ06dKFxYsX07JlyxqPqQgxfjvJyckmu3bWFy9HK/ZO7fG3yE3zoNDpdGRkZBAdHY2DgwMvvvjig+7SY8G4cePIzc2lsLDwsQ4JXx/Ky8sJDAzkjTfuTVCth5X8omwKBf1aviBK622IIBWMsvFq1XIc8qrO2mQ66A0ShUb//7oMEaVab4gAZMid0ahAi/BYGyKPIoXY8CfN9DMoehcjQMSVXLzk2djmlmBTkIULZVhrC3EvL6f0Pqe/qEy9rp5ffvmFiIgInnrqKTQaDbNnz+aFF14gKSmpWm+Lypw5c8bIKqqPKr4heDla/a2Mg/tNWloaTZs2pVGjRqxbt85IPJqWlkbr1q1rPDYpKalaF08zerfP27VAf3csLCwMMVQqqE3LtGvXLpO8uh5mdDodN0ozQAArnYBaU8+HhCAgWEsM2XjlxVJscguqFMuzgVILAUEE6/K6s/FaaKW46YpBgBsSByQqHTJBR4FY+/3fzMOCQCZOZIr6mFLc1K1K0dDIIocXg6qGcLhf1MsYiYmJMfq+du1aXF1dOX78uEFRXhPVBdIy8+ji4+NTo3ukp6dnrRlH66MtMWOmOmq7vry8vO5fR+4RmblplN8UfeoQKNdZ1+t4mRWoK7LxlpUilIJw299ruRxy7PTGh2Nx3YaIRBTw1qqRCiKFWKHVypAI5dwQ7+2LpZl7jxYZVwU3pPIHlwXxjubVKoRaFZE7a6N9+/YGl7q333672qWbCioCO1VQUFDVojfz8CKTyfD19X3Q3TDzGPM4X1/lqlJyxSJAwFIrpVhdv0R4glxALZMDosGN177UeHlGJ8B1R73xYVMmUmglINahL/VWC1igQYWMQokdokZFDi716psZMzXRYHcDURSJioqiW7dutUaY9PDwYOXKlWzevJkffviBli1b0qtXLw4cOFDjMR988AEODg6Gj7e3d0O7acaMGTOPFBn5l9Chj2IqijJ09blNSwREK/07ppJcgxvv7dxw0GtDKhLG1qUTcVcpsKUMnSiQKXOiXCtQgD2i2UPGzF2iwTMjkyZN4vTp03UGd2rZsqWRwLVz585cvnyZDz/8sMalnVmzZhEVFWX4XlBQYDZIzJgx89iTV5hF0c1cLYIooUhTvyWQCjdeS0qxLtZhkVc1NmmBNRRb6o0I21KRPNvaDQpHtQLnCsGqzAmtWkQrSlFzd2L4mDEDDZwZmTx5Mtu3b2ffvn1GuVJM5Zlnnqk1VbeFhYUhMFHFx4wZM2YeZ3Q6HVll1wG9aFWrdqzX8dKb2XglaHFS5yNqQaY1TgehkkF2hU6kSB9PpDYUWgnuumIAsgR7BLWIFC0lVE14aMbMnVAvY0QURSZNmsQPP/zA3r17adq0aYMa/e2334zyhpgxY8bM353rRqJVKBfr4Q0oFdBUduPVyLHNM9baiTd1IqKg95wptqxdJyIRBRprtUgFkSIs0YgKJIKKHPHBuX+aeXyp1zJNREQE33zzDdu2bcPOzo6MjAxAn6ehInzzrFmzuHr1Kv/9738BfZptHx8f/P39UalUfP3112zevJnNmzff5aGYMWPGzKNJuaqUvJuiVQutlGK1u+kHV3HjlWGTU41OxB7UMpBqQaIDdR2OE43UEiwoRyVKKZDZg1pFNmbPGTP3hnrNjCxfvpz8/Hx69OiBh4eH4fPtt98ayqSnpxul/lapVEydOpWAgACeffZZDh48yI4dO+59tM68y3Dt5P375F2+t+OpAUEQ2Lp16wNp+37woMa3f/9+BEEwKdeIKaSmpiIIQq0uqaCPx+Pu7k5hYeFdafdhZM6cObRr187k8uXl5TRu3Jjjx4/fu05Vw7p164zCEZjS77CwMJMyUd9OZdEqOnm9hKEyK9AJUuSocCwr5fVJr/PPKcZZuAutoMhKX6d9qWj4d024qSywo1QvWJU7o9II5GHPQx+u28wjS71mRkyJHH97LpPp06czffr0enXqjsm7DJ93BE153WXvFjILmHQcHE0T2oaFhZGXl/dQGRIV0XJzc3PvS0yYjIwMFixYwI4dO7h69Squrq60a9eOyMhIevXqdc/br40uXbqQnp6Ow32OSDh79mwiIiIe6+irU6dOZfLkyXUXvImFhQVTp05lxowZ/PzzzyYdU1xczLx58/j++++5du0adnZ2+Pv7M3XqVPr3739f+m0qeYU3DKJVRAlFWtPdZSu78Tprc9Bo5Ui1xhlY1VLIstcbHw7FdetEHDQKnMVCEG4KVlUiGmRozIJVM/eQxzN+b0n2/TVEQN9eSbbJxsijjEqlQqFQ3FEdqampdO3aFUdHR5YsWUJAQABqtZrY2FgiIiJISUm5S71tGAqFAnf3ekyV3wWuXLnC9u3bWbp06X1t935ja2tbZzbo2xkxYgTTpk0jOTnZpIzF48ePJzExkc8//5zWrVuTnZ3Nr7/+SnZ2dkO73aB+14VOp+NGWaYh0qqqPqLV29x4xTI5Dre58YrAdaVeG2KpEilTCOhqsUUUWgke2hIEAbIFOwS1iETQUSI+uGBYZv4e3L20pmbuiB49ejBlyhSmT5+Ok5MT7u7uzJkzx6jM2bNnee6557C0tKR169bs2bPHaH91SwsnT55EEARSU1MBuHTpEqGhoSiVSmxsbPD392fnzp2kpqYaAtEplUoEQSAsLMzQt0mTJhEVFYWLiwt9+vRh7NixVd4wNRoN7u7uNWYgrczEiRMRBIHExEQGDx6Mn58f/v7+REVFcfjwYaOyWVlZDBgwAGtra1q0aMH27duN9iclJRESEoKtrS1ubm6MHDmSrKwso3M7efJkIiMjUSqVuLm5sXLlSoqLixkzZgx2dnY0b96cXbt21XouDx06RPfu3bG2tkapVBIcHExubi6gj07crVs3HB0dcXZ2pn///pw/f77O81CZ7777jsDAQCMPtezsbIYNG0ajRo2wtrambdu2bNy40ei4OxlfbGws7du3x8rKiueff57MzEx27dpFq1atsLe3Z9iwYZSUlBiOKy8vZ8qUKbi6umJpaUm3bt04evRolXrj4uLo1KkT1tbWdOnShTNnzhjK3L7ccfToUfr06YOLiwsODg50796dEydOGI3R2dmZLl26VBl7Tfz444+89dZbhISE4OPjQ8eOHZk8eTKjR482lMnNzWXUqFEolUqsra3p169frV5+t/dbq9USFRVl+M2nT59u0uxx5evIyUlJ2NBxFOblIQJFZRIWvTuDHu1a8JSvO6MH9uWPk7fOhVar5b2pk+nXJZCg5u682LE93y3/GOtiHba5xVXayrbXe9BIdfrcM+W1JCQWRPDWapEKOoqxQC1aIAgqckWzN6OZe4/ZGHmIWL9+PTY2Nhw5coQlS5Ywb948g8Gh0+kYOHAgUqmUw4cP8+WXXzJjxox6txEREUF5eTkHDhzg999/Z/Hixdja2uLt7W0QFZ85c4b09HQ++eQTo77JZDIOHTrEihUrCA8PJyYmhvT0dEOZnTt3UlRUxNChQ2vtQ05ODjExMURERFSb0+j2JaK5c+cydOhQTp8+TUhICCNGjCAnJwfQa5S6d+9Ou3btOHbsGDExMVy/fr1KH9avX4+LiwuJiYlMnjyZCRMmMGTIELp06cKJEycIDg5m5MiRRg/eypw8eZJevXrh7+9PQkICBw8eJDQ0FK1WP71eXFxMVFQUR48eJS4uDolEwoABA9DpTM8cfeDAATp1Ms4NUVZWRseOHfnpp5/4448/GDduHCNHjuTIkSN3ZXxz5szh888/59dff+Xy5csMHTqUpUuX8s0337Bjxw727NnDZ599Zig/ffp0Nm/ezPr16zlx4gS+vr4EBwcbfo8KZs+eTXR0NMeOHUMmkzF27Ngax11YWMjo0aOJj4/n8OHDtGjRgpCQkCq6maCgIOLj4006l+7u7uzcubNW7U1YWBjHjh1j+/btJCQkIIoiISEhqNXqGo+pTHR0NGvWrGH16tUcPHiQnJwctmzZUusxla+j/b/s5b8/radHcA9kKoESlQcfL3yPn3f+yPyPl7Fp534aN2nGhFcGkX/T6NXpdLh5eBK9eh0/HDnO+BnTWTpvAVu3/IRUZ7w8U2wJBdY3dSIlouHfNdFILcMSNWpRSr7UAZ1OYw71bua+8Xgu0zyiBAQE8N577wHQokULPv/8c+Li4ujTpw8///wzycnJpKamGt6cFy5cSL9+/erVRlpaGoMGDaJt27YANGvWzLCvIqx/dXmEfH19WbJkidG2li1b8tVXXxk0QWvXrmXIkCF1TmWfO3cOURRNztocFhbGsGHDAP2YP/vsMxITE+nbty/Lly+nQ4cOLFy40FB+zZo1eHt789dff+Hn5wdAYGCgIdnarFmzWLRoES4uLrz22msAvPvuuyxfvpzTp0/zzDPPVOnDkiVL6NSpE8uWLTNs8/f3N/x70KBBRuVXr16Nq6srSUlJtUYorkxqaiodO3Y02ubl5cXUqVMN3ydPnkxMTAzff/89Tz/9tGF7Q8c3f/58unbtCsCrr77KrFmzOH/+vOG6GDx4MPv27WPGjBkUFxezfPly1q1bZ7juVq1axZ49e1i9ejXTpk0z1LtgwQK6d+8OwMyZM/nHP/5BWVkZlpZV41M8//zzRt9XrFiBUqnkl19+MZp98/LyMszw1cXKlSsZMWIEzs7OBAYG0q1bNwYPHmwY69mzZ9m+fTuHDh2iS5cuAGzYsAFvb2+2bt3KkCFD6mxj6dKlzJo1y/Dbf/nll8TGxtZ6TOXrKPVGCjaCHa1btkCisSCzsITvvlrD+9Ff0K1nHwDeXfIJCZ33s+XbrwgbPwW5XM7E6W8h2sgAgXZNrDlzaAg7tm5lRKUgkqIANxxuGSL5dRgirioL7ClEJ0Km3Am1SqDELFg1cx8xz4w8RAQEBBh99/DwIDMzE4Dk5GQaN25sNIXfuXPnercxZcoUwwPovffe4/Tp0yYdd/sbO0B4eDhr164FIDMzkx07dtT6BlxBxVS2IJjmMVD5vNjY2GBnZ2c4L8ePH2ffvn2G9XxbW1uDkVN5maRyHVKpFGdnZ4NBBuDm5mYYR3VUvNHWxPnz5xk+fDjNmjXD3t7eEIOnsmdZXZSWllZ5WGu1WhYsWEBAQADOzs7Y2tqye/fuKvU2dHyVj3Nzc8Pa2trIQHVzczMcc/78edRqteGBDiCXywkKCiI5ObnGeitiCtV0bjMzMxk/fjx+fn6GFBBFRUVVxmhlZVXjzNXtPPfcc1y4cIG4uDgGDRrEn3/+ybPPPsv7778P6P+eZDKZkUHn7OxMy5Ytq4ylOvLz80lPTzf6G5TJZNX+nVSm4jrKKbhO8U3RqnhTtHrl0kU0ajXtnrrVJ7lcTpt2Hbhw9i/9BkHgf5vWMrz7s/Rs5k0LT382fP0NlyvNUIpAuVyvDbFQ65dpdLXc6e00ClxE/QzSdZkTGhWokZoFq2buK2Zj5CFCLjde0BUEwTDNX91a9O0Pc4lEUqXs7VPO4eHhXLhwgZEjR/L777/TqVMno2n4mqhuOWXUqFFcuHCBhIQEvv76a3x8fExK3d6iRQsEQTDppg+1nxedTkdoaCgnT540+lToa2qro/K2inNZ07JKRRydmggNDSU7O5tVq1Zx5MgRwzKKSqUyaYwALi4uBg1KBdHR0Xz88cdMnz6dvXv3cvLkSYKDg6vU29Dx3V7GlGvw9utOFMUq2+pzbsPCwjh+/DhLly7l119/5eTJkzg7O1cZY05ODk88YfqygVwu59lnn2XmzJns3r2befPm8f7776NSqWrUdlQ3lruJlZWVPtJquV7TZK0T0KqVhrahGiO9Up9+jt3CkrdmMfCV4Wz+9r/Eb9/OyJdfRlXp71wl1xsfEvGWaLUm5DoJnjcFqzmCHahBIugoxSxYNXN/MRsjjwitW7cmLS2Na9euGbYlJCQYlam4UVfWcVQX18Lb25vx48fzww8/8Oabb7Jq1SoAg4dMhQ6iLpydnXn55ZdZu3Yta9euZcyYMSYd5+TkRHBwMF988QXFxVVFd/WJ7dGhQwf+/PNPfHx88PX1NfpUZ0A1lICAAOLi4qrdl52dTXJyMm+//Ta9evWiVatWVYwKU2jfvj1JSUlG2+Lj43nppZd45ZVXCAwMpFmzZrWKLO8lvr6+KBQKo3xUarWaY8eOmeThUhPx8fFMmTKFkJAQ/P39sbCwMBIgV/DHH3/Qvn37BrfTunVrNBqNIXu4RqMx0t5kZ2fz119/mTQWBwcHPDw8jMTWGo2mzlgoAQEBxO7ehVoAqSiiE0El6mfDvH2aIVco+C3xVp1qtZo/T5+kma8fglzg6JEjBAY9zaSxA2ndOoBWbm5cvHwrxlGJAlQy09x4BRG8NTpkgo4SLFCZBatmHiBmY+QRoXfv3rRs2ZJRo0Zx6tQp4uPjmT17tlEZX19fvL29mTNnDn/99Rc7duwgOjraqExkZCSxsbFcvHiREydOsHfvXsPNt0mTJgiCwE8//cSNGzcoKiqqs1/h4eGsX7+e5ORkI0+Fuli2bBlarZagoCA2b97M2bNnSU5O5tNPP63X8lNERAQ5OTkMGzaMxMRELly4wO7duxk7dqzJRpUpzJo1i6NHjzJx4kROnz5NSkoKy5cvJysrC6VSibOzMytXruTcuXPs3bvXKNGjqQQHB5OQkGDUb19fX/bs2cOvv/5KcnIy//73vw2Rj+83NjY2TJgwgWnTphETE0NSUhKvvfYaJSUlvPrqqw2u19fXl6+++ork5GSOHDnCiBEjqp2Jio+P54UXXjCpzh49erBixQqOHz9OamoqO3fu5K233qJnz57Y29vTokULXnrpJV577TUOHjzIqVOneOWVV/Dy8uKll14yqY3XX3+dRYsWsWXLFlJSUpg4cWKdhvTrb0zm5MnTvD/9fS78cY4/kov47r+ryc3JxtrahqEjx/LRgvc4tO9nzv+Vwrzpr1NWWsKA4aMQrWR4N2tG8skT7I35levHTzH3s884/uefAGglcMNRb3zItHULVr3UMqxQoRal5Ekd0Oq0ZsGqmQeG2Rh5RJBIJGzZsoXy8nKCgoIIDw9nwYIFRmXkcjkbN24kJSWFwMBAFi9ezPz5843KaLVaIiIiaNWqFX379qVly5YGUaaXlxdz585l5syZuLm5MWnSpDr71bt3bzw8PAgODsbT09Pk8TRt2pQTJ07Qs2dP3nzzTdq0aUOfPn2Ii4tj+fLlJtfj6enJoUOH0Gq1BAcH06ZNG15//XUcHBwMy1Z3Az8/P3bv3s2pU6cICgqic+fObNu2DZlMhkQiYdOmTRw/fpw2bdrwxhtv8J///KfebYSEhCCXy40Ce73zzjt06NCB4OBgevTogbu7e4MifN4tFi1axKBBgxg5ciQdOnTg3LlzxMbGolQqG1znmjVryM3NpX379owcOdLgOlyZhIQE8vPzGTx4sEl1BgcHs379el544QVatWrF5MmTCQ4O5rvvvjOUWbt2LR07dqR///507twZURTZuXNnlaWqmnjzzTcZNWoUYWFhdO7cGTs7OwYMGFBjeVEUsfewZOV3Kzn7xxkG9PsnI19+gX27dyGV6n0JXp/5Hr1DQpkdOZ5/hfQg7dIFln+9GaWnEhGBkWOH84++fZnw74l0Hz6cnPx8xv3znwBkOuoNEokIOkH/75p4Qm2BAyWINwWrKrVAPnZmwaqZB4YgmuIY/4ApKCjAwcGB/Pz8Khl8y8rKuHjxIk2bNr0l/nsEIrA+LpSUlODp6cmaNWvufYj/vwHLli1j27ZtdXpl/N0YMmQI7du356233nrQXWkwmbmXuaEtQABkOgllKtOShcosBdQKORK0eKhuQIkUmwJjl+U8W8ixFRBEcCgRyatlecZOo8BbW4QgQIbUCZVaQhkKysw6kVoRNSoyr11hzr5MrhbevVnXhwWZRGDS875E9va7q/XW9vw2av+utvqw4OitNwxKGh5tsd5YO/+tDBGdTkdGRgbR0dE4ODjw4osvPuguPRaMGzeO3NxcCgsLH+uQ8PWhvLycwMBA3njjjQfdlQajUpeTo8kHQcBKK6FEbeJyiFRArbiVjVejleNQYBxltUyuN0QAHItFcm1rNkRkOgEPbSmCAHmCLaIaEKDMHGHVzAPm8TRGQG8Y/I2Mg/tNWloaTZs2pVGjRqxbtw6ZTGa0r3Xr1jUem5SUROPGje9HNx85ZDJZFS3Q3x0LCwtDDJUKaotls2vXLpO8uu4nGXmpaAUBuSiCKEFryq23UjZeOwqQFcuwy8kzKqKTQOZNnYhtmUhhLQnwBKCxRkQuaClFQRmWCEI5eaLpuXDMmLlXPL7GiJl7io+PT43ukZ6enrVmp62PtsSMmeqo7fry8vK6fx0xgbzCLAoFfXRUiSilUONm0nEyK1DfzMbrUFqGrEhTpUymA2ikINfq44toagkN4qmSY0UxGlFCrswR1GqyMRsiZh4OzMaImbuOTCbD19f3QXfDzGPMo3J9FRbncr0sQ788oxPQaEzLAi2pJhuvtcrYuy3fGkos9DoRm1KRvFqWZ1zUFjhSiCjCdbkzarVAsTnCqpmHCLMxYsaMGTP3gKz8a9xQ56C7uTwjIlCms677QImAriIbr5iLWC7HIcdYJ1Iugxw70+KJ2GrkPKErBAEypUq0ahGVKENrdqY08xBhNkbMmDFj5i4iiiIZORfJEUsBAUsdIEooVpu2PCm1FtAgYEkJ1iU6rHKMZ0R0AmQqBUQBrMtFii31/64OmU6Cp7YMiQB52KDTSPSCVRR3NkgzZu4yZmPEjBkzZu4SOp2WK9nnDBoRK52AoJNRqHGt40g9MktQS2RI0OKkKgSVBIloHEY/ywHUUpBpQaIDdS2OMN5GglUrs2DVzEOL2RgxY8aMmbuASl3G5bwLlAl6JYa1VoJWa02JzjSdiN6NVx9wzVmXjVYrw6HQeHmm0AqKLPXTIHaltbvxeqnkWJsFq2YeEczGiBkzZszcIcWl+VwtuoJaAAkiCq2Mco2jIe9MnRjceMGOAqQlMuxvc+NVyyDL/lY8kdp0IsaCVSc0aoEis2DVzEOM2RgxY8aMmTsgt+A6Gaob6AQBmSgiiFJK1a7o6iEQlVuBysiN1zjbtijAdUe9NsRKJVKiENDVYIvYaOU8oSsCAW5IHdGqoByzYNXMw81je3WmF6WTlJ103z7pRel1d+oeIAgCW7dufSBt3w8e1Pj279+PIAj1yiBcG6mpqQiCUGt8DIAzZ87g7u5OYaE+3Pe6detwdHSs9ZiwsLB656vx8fFh6dKl9TrmbnAv2h08eDAfffTRXa3T1HOakXOJdFUWOgQsRJCI+jDv9TFEJHIBVYUbryaXr7/5gSadOhqVybYDlQykOpBpQFUpfc4LHV7gqy+/AkCqE/DUlCERRAqwRquRmgWrZh4JHsuZkfSidPpv7Y9Kq7pvbSqkCn56+Sc8bE3LNxEWFkZeXt5DZUjs37+fnj17kpubW+cD8G6QkZHBggUL2LFjB1evXsXV1ZV27doRGRlJr1697nn7tdGlSxfS09NxcDBxvf8uMXv2bCIiIuoVCv6TTz6pMQDd34F3332Xnj17Eh4eXmvuiwoqrvPqSE9Px93dvc46dDodV7PPUSDoZzD0QlUJhZrqj33njYkUFuSzdPUG4x23u/GqZIx89jle/vFHQ5FiSwwZeO1LqupENu3ehJW1PsuxtwYsGgXy7eqlPNtvEIJQZhasmnkkeCyNkdzy3PtqiACotCpyy3NNNkYeZVQqFQrFnb1ppaam0rVrVxwdHVmyZAkBAQGo1WpiY2OJiIggJSXlLvW2YSgUCpMeSneTK1eusH379nrPHNxvg+lhIyAgAB8fHzZs2MCECRNMPu7MmTNVjJfbswVXh0aj4nLuOUoqCVV1OguKtE716zjGbrxWJSLy6zlYWFpidTPpp0YKNxxuGSL51lXXZpxc9O16qhTYoHcDLpLYIGq13DALVs08Ijy2yzSPGj169GDKlClMnz4dJycn3N3dmTNnjlGZs2fP8txzz2FpaUnr1q3Zs2eP0f7qlhZOnjyJIAikpqYCcOnSJUJDQ1EqldjY2ODv78/OnTtJTU01vC0qlUoEQSAsLMzQt0mTJhEVFYWLiwt9+vRh7Nix9O/f36h9jUaDu7s7a9asqXO8EydORBAEEhMTGTx4MH5+fvj7+xMVFcXhw4eNymZlZTFgwACsra1p0aIF27dvN9qflJRESEgItra2uLm5MXLkSLKysozO7eTJk4mMjESpVOLm5sbKlSspLi5mzJgx2NnZ0bx5c3bt2lXruTx06BDdu3fH2toapVJJcHAwubm5AMTExNCtWzccHR1xdnamf//+nD9/vs7zUJnvvvuOwMBAGjVqVGVfbGwsrVq1wtbWlr59+5KefmtZ8PYlhcLCQkaMGIGNjQ0eHh58/PHH9OjRg8jISKM6S0pKGDt2LHZ2djRu3JiVK1fW2LcVK1bg5eWFTmfsZvriiy8yevRoAM6fP89LL72Em5sbtra2PPXUU/z888811lnd0lVeXh6CILB//37Dtrp+34p+bNy4sca2qsPV1RV3d3ejj0RS/S1RFEWWLFlC06ZNsbWzp2/PAezevhsrrRS1xoFirRPnziQzafRQurRqTOcnvQkb2I/LqRdZ/tEitv9vI/t27yTQW0mgt5KjCQe5nplGG6UDe374nrH9+uPt48u3P27nq61b8ejSBRG9TkQnwMGf9hES+k/aNe5At5bdeD3sdUPfXujwApuXbURJET5P/wOAV8e8hpe3D/06B3D1chrtGjvx56nfjMb0zdqV9H2m7d96Vs3Mw4PZGHmIWL9+PTY2Nhw5coQlS5Ywb948g8Gh0+kYOHAgUqmUw4cP8+WXXzJjxox6txEREUF5eTkHDhzg999/Z/Hixdja2uLt7c3mzZsB/Rtjeno6n3zyiVHfZDIZhw4dYsWKFYSHhxMTE2P0UNy5cydFRUUMHTq01j7k5OQQExNDREQENjY2VfbfvkQ0d+5chg4dyunTpwkJCWHEiBHk5OQA+mn17t27065dO44dO0ZMTAzXr1+v0of169fj4uJCYmIikydPZsKECQwZMoQuXbpw4sQJgoODGTlyJCUlJdX2+eTJk/Tq1Qt/f38SEhI4ePAgoaGhaLX6VOLFxcVERUVx9OhR4uLikEgkDBgwoMrDuzYOHDhAp06dqmwvKSnhww8/5KuvvuLAgQOkpaUxderUGuuJiori0KFDbN++nT179hAfH8+JEyeqlIuOjqZTp0789ttvTJw4kQkTJtQ4IzVkyBCysrLYt2+fYVtubi6xsbGMGDECgKKiIkJCQvj555/57bffCA4OJjQ0lLS0NJPPwe2Y+vsGBQWRmJhIeXl5g9uqjbfffpvVq/+P2YtnsjV+K2H/HsnMiTM5cOAMZaI119OvMXbwP1BYWLJq0zY27tzHy/98Ba1Ww+h/T+KF/gPo2qMXccdTiDueQrunn0Yt1ws/Pn3vbca+Opbftm2jd9euhjZz7KBcDvGxvxARHkm3F57j+73f83+b/w//QH9DOUEUsBP14961axsAC6M/Ie54Cht+2ouXd2Oe7taDbd8ZLxFt+24DLw4ZjiDU7JVjxsz94rFcpnlUCQgI4L333gOgRYsWfP7558TFxdGnTx9+/vlnkpOTSU1NNbw5L1y4kH79+tWrjbS0NAYNGkTbtm0BaNasmWGfk5N+utfV1bWKQeDr68uSJUuMtrVs2ZKvvvqK6dOnA7B27VqGDBlSa0ZVgHPnziGKIk8++aRJfQ4LC2PYsGGAfsyfffYZiYmJ9O3bl+XLl9OhQwcWLlxoKL9mzRq8vb3566+/8PPzAyAwMNCQ+XXWrFksWrQIFxcXXnvtNUCvO1i+fDmnT5/mmWeeqdKHJUuW0KlTJ5YtW2bY5u9/64EwaNAgo/KrV6/G1dWVpKQk2rRpY9I4U1NT6dixY5XtarWaL7/8kubNmwMwadIk5s2bV20dhYWFrF+/nm+++cagu1m7dm21yQlDQkKYOHEiADNmzODjjz9m//791f4uTk5O9O3b16je77//HicnJ8P3wMBAAgMDDcfMnz+fLVu2sH37diZNmmTSObgdU39fLy8vysvLycjIoEmTJibVffsMlJeXF2fOnKlSrri4mI8+imb1D6sJfKodChGaNW7C0V//4rsNX9Ghc3e+Xf9/2Nrbs/iL1chvGhk+zW7lz7G0tEStKsfF1U3vxmsnhZshRMaFhzM8qItRmyIYXHf/76OV9B3Ql0kzbp3DJ9vofyOpKCBDRECkECsclXrtiJW9s76tmwwcNpL5s6KY+u4CFBYWnEn6nTN//s5HK78y6VyZMXOvMc+MPEQEBAQYfffw8CAzMxOA5ORkGjdubHQD7dy5c73bmDJlCvPnz6dr16689957nD592qTjqntjDw8PZ+3atQBkZmayY8cOxo4dW2ddFdPCpr6RVT4vNjY22NnZGc7L8ePH2bdvH7a2toZPxcO08jJJ5TqkUinOzs4GgwzAzc3NMI7qqJgZqYnz588zfPhwmjVrhr29PU2bNgWo16xAaWkplpZV41JYW1sbDBEwvi5u58KFC6jVaoKCggzbHBwcaNmyZZWylc+JIAi4u7vXWC/AiBEj2Lx5s2H2YcOGDfzrX/9CKtWnii0uLmb69Om0bt0aR0dHbG1tSUlJuaOZEVN/Xysr/UO4ppmt6oiPj+fkyZOGT2xsbJUyoiiy/9dYysrKCR/8GkFNnqKdz1O0a/oUP27exOVLqQCcSfqdDkGdDYZIbcisQYcEBXpdW5Cv8W+jEzCEd7crEfkz+QzPPFvVQAZopBYAEQ0SigQbENXVlns++B9IZTLiYn4CYOu3G3iqy7N4eTeus79mzNwPzDMjDxG338gEQTBM81e3rnv7w7xivbtyWbXa+OYUHh5OcHAwO3bsYPfu3XzwwQdER0czefLkWvtW3XLKqFGjmDlzJgkJCSQkJODj48Ozzz5baz2gn/URBIHk5GST3CdrOy86nY7Q0FAWL15c5TgPj1ti4urqqLyt4lzWtKxS8bCridDQULy9vVm1ahWenp7odDratGmDSmW6kNrFxcWgQalMdX2vaZ2/JkOvuvK1ndfqCA0NRafTsWPHDp566ini4+ONXGqnTZtGbGwsH374Ib6+vlhZWTF48OAaz4Ep16upv2/Fst0TTzxRY/9vp2nTprV6jYmiyKWsFAp0euNrzddf4urmRYlWaSijsNALuS0sa78+KpBZgFoqR0CHo6YAAHu58W244GYuPYVaL2C1sKw+3ruHSoHtTcFqscQaUasjqwbBqlyhoP/Af7Ltu2/o3S+UXVv/x7Q5C6sta8bMg8A8M/KI0Lp1a9LS0rh27ZphW0JCglGZihtxZR1HdXEtvL29GT9+PD/88ANvvvkmq1atAjB4yFToIOrC2dmZl19+mbVr17J27VrGjBlj0nFOTk4EBwfzxRdfUFxcXGV/fWJ7dOjQgT///BMfHx98fX2NPtUZUA0lICCAuLi4avdlZ2eTnJzM22+/Ta9evWjVqlW1RkVdtG/fnqSkpDvqZ/PmzZHL5SQmJhq2FRQUcPbs2TuqF/QG2cCBA9mwYQMbN27Ez8/PaFkpPj6esLAwBgwYQNu2bXF3dzcIp6vDlOvV1N/3jz/+oFGjRri43B3vEa1WQ4mqiGJBh2/L5igsFFy+nItL4440btrM8HH31M9U+rXy50RiQhVjqgK5QoFW1KK2uBnuXcxBp5FWKZdrC2qZ3pC0UomUWgj4tfbjcLyxqNtJbYnTTUNEixStTiAXvTu4TC5Hp6v6Nzxw2EiOHNzPt/9djUajplff0AaeHTNm7j5mY+QRoXfv3rRs2ZJRo0Zx6tQp4uPjmT17tlEZX19fvL29mTNnDn/99Rc7duwgOjraqExkZCSxsbFcvHiREydOsHfvXlq1agVAkyZNEASBn376iRs3blBUZJwttDrCw8NZv349ycnJBq8KU1i2bBlarZagoCA2b97M2bNnSU5O5tNPP63X8lNERAQ5OTkMGzaMxMRELly4wO7duxk7dqzJRpUpzJo1i6NHjzJx4kROnz5NSkoKy5cvJysrC6VSibOzMytXruTcuXPs3buXqKioercRHBxMQkLCHfXbzs6O0aNHM23aNPbt28eff/7J2LFjkUgkd0WoOGLECHbs2MGaNWt45ZVXjPb5+vryww8/cPLkSU6dOsXw4cNrnWmxsrLimWeeYdGiRSQlJXHgwAGDrqcCU3/f+Ph4XnjhhXqNJTMzk4yMDKOPWq2msDiHInUhOgGkiCit7Bnz74ksnDOP7d9v5HLqRZL/OM2mdavY/r3eg+dfYa9RXFjIjIhX+fPUb1y6eJ4fN28i9bzeCPT0bszZlCRSz55FlX0RMV+LfU6hUX/KFBhiiAjiLc3IhGkT2PXDLj5f/Dnn/zpP2h/nWf/5ZwBkSfRu3RpRaoiw6tmoMUcO/kJW5nUKKhn2zVq0JKBDJ5Z+MIe+Lw7Cso7ZPjNm7iePpTGitFCikN7fiIMKqQKlhbLugg1EIpGwZcsWysvLCQoKIjw8nAULFhiVkcvlbNy4kZSUFAIDA1m8eDHz5883KqPVaomIiKBVq1b07duXli1bGkSZXl5ezJ07l5kzZ+Lm5maS6LB37954eHgQHBxcrUiyJpo2bcqJEyfo2bMnb775Jm3atKFPnz7ExcWxfPlyk+vx9PTk0KFDaLVagoODadOmDa+//joODg41umk2BD8/P3bv3s2pU6cICgqic+fObNu2DZlMhkQiYdOmTRw/fpw2bdrwxhtv8J///KfebYSEhCCXy2t1hzWFjz76iM6dO9O/f3969+5N165dadWqVbV6lPry/PPP4+TkxJkzZxg+fLjRvo8//hilUkmXLl0IDQ0lODiYDh061FrfmjVrUKvVdOrUiddff73K9WrK71tWVsaWLVsMYmRTadmyJR4eHkafvb/EcKX0GiICgigi6KSUqt2YMPVdxkVOZ/UXH/Py808z4ZVB/PJzrEFz4ah0YtW32ygpLmbskP4MC+nJD9/8F5lMPxPyz1dH08S3BcN7PEtQszac3n/QqC9aid6NF8BCLRo0IwBBXYOIXh3N/pj9DO45mFGDwjh68ncKsUKtlSECGm7Nsrz5zvscjt9P8NNt+Ge/54zaefmfI1GrVLz8T2ND0oyZB40gPgJO5gUFBTg4OJCfn18lSFFZWRkXL16kadOmRjfb9KJ0csvrP1XeUJQWyr9FwLPbKSkpwdPTkzVr1jBw4MAH3Z1HnmXLlrFt27ZqxZQNpbi4GC8vL6Kjo3n11VfvWr0PC1988QXbtm1j9+7dDa5DFEUyci6SI5YCYKnTu8wWqU03sGtCbgEqCwUCOtzVWQilEmzzCozKZCihxEJArgG5VqTEovpZrMYqKXaUokJGtqAEbVm9Aput+vRDYrb/wOaff72jMf0dETUqMq9dYc6+TK4W3r1Z14cFmURg0vO+RPb2u6v11vb8Nmr/rrb6EOFh6/G3NA7uFzqdjoyMDKKjo3FwcODFF1980F16LBg3bhy5ubkUFhbWKyR8ZX777TdSUlIICgoiPz/f4Ab80ksv3c2uPjTI5XI+++yzBh+v02m5nH2WIkH/gLHWCaCTUaipOxprrUgEZFYCKqn+Nusk5qLVSHHMyzcqlm+tN0QEEWzKRPJsqzdE3FUW2FGIThTIkitBXbNg9XZKiou4cPYvNq5bRcTUt+5sXGbM3AMeW2PEzL0lLS2Npk2b0qhRI9atW4dMJjPa17p16xqPTUpKonFjs0thdchksipaoIbw4YcfcubMGRQKBR07diQ+Pv6uiTsfNsaNG2f0vV+/fsTHx1db9q233uKtt249jFXqMi7nXaDsZmh3K60UndaKYt2dhdgX5AKilRQ1EgR0OIk5yEokOGTnGZUrl0O2vd74cCwWybOp3hBRqi1wRq8xyZA5oVYLFIqmG6sfvD2dXds30/OFf5iXaMw8lJiNETMNwsfHp0b3Uk9Pz1qz09ZHW2Km/rRv357jx48/6G48MP7v//6P0tLSavdVBPYDKC7N52rRFdQCSBBRaGWoNI6oxDvQ1ggCMitQ39SKWFCGsyYPnUqO7W2CVZ1wSydiUyZSZCkYaUUqsNTKcNMVgQBZgj06NZSiQIfpguT3P17G+x8vq7ugGTMPCLMxYuauI5PJ8PX1rbugGTP3AC8vrzrL5BZcJ0N1A50gIBNFBFFGqdoV3Z1o+mUCgpUUtSABRBzJxbZEi1Yrxz43v0rxGw76OCIyrd57Rl3N3VgiCjTSqpEKIkVYotHJ0SBBRd3B1cyYeZQwGyNmzJj5W3E95xJZuiJAwEIERAklqjvI0CwIyCxBLZcjAnJUOGtzoEyOIq8MmbZq7JECKyi21M9s2JWKBpfe22mklmBBOSpRSqHUDjTlFODc8L6aMfOQYjZGzJgx87dAp9NxNfscBYLeOLDSCUh0Ego0d2CISAUk1hLUghQQsScf+1IVGq0c+5yqsyEAKplpOhG3yoJVmROiRke22RAx85hiNkbMmDHz2KPRqEjLPUfpTaGqtVaCqLOgQOtUx5E1I7MEtUKGFgEpGlx02QglcuSFKqzV1YfA1wlwXanXhliV6114q9OJOKotcRYLQIDrMiVqTf0Eq2bMPGqYjREzZsw81pSWFXKlMA2VAAJgoZWi1thTJlo3rEKJgNRaQC3R3z5tKcShrBSNVoZ9Tl6th2Y5gPqmTkSqg9Jq0s5YaKW464oQBMgW7NCqhXoLVs2YedQwGyNmzJh5bMkvukF62XW0N4WqElFGmdoFbQNvfTIFqC1laBCQoMVZl4OsRIqsWItNee3pEwqtoKgOnYggQiOtBqmgoxhL1DqFWbBq5m/BYxkOHkB97Rqlf/553z7qSgns7ieCILB169YH0vb94EGNb//+/QiCUK+kfbWRmpqKIAi1ujwDnDlzBnd3dwoL9W6g69atqzWzLEBYWJhJ2Y8r4+Pjw9KlS+t1zN3gXrQ7ePBgo+zBFdzIvczVsky0CChEEEQpZSr3Og2Rd96YSOSrI4w3SgRktgJqSwUgYEUxHuXZSMok2OXkYVFevStxBWevX8XNty0pv6fUqBNJPJSIv2sbyvJzUItSCiR2iKKaAmwNZQK9leyN2VFjO1cvpxHorSTlz99r7Y8ZMw8b9Xo9+OCDD/jhhx9ISUnBysqKLl26sHjxYlq2bFnrcb/88gtRUVH8+eefeHp6Mn36dMaPH39HHa8N9bVrnO/bD7Ee6dvvFEGhoHnMLuQmxtAICwsjLy/voTIk9u/fT8+ePcnNza3zAXg3yMjIYMGCBezYsYOrV6/i6upKu3btiIyMpFevXve8/dro0qUL6enpODjcWfCr+jJ79mwiIiLqFX31k08+qTHmy9+Bd999l549exIeHo69vT2iKHIt+zx5lANgpQNBlFCo1kdkPppwkPChocT/kYp9Nb/v9LkfUPl0SuWgvS2AmaJYgrRUxKa0epFqZUQB5E96sP+P/XjYOtSoE3FS6/Np6US40UDBqrunF3HHU3B0MgtdzTxa1Gtm5JdffiEiIoLDhw+zZ88eNBoNL7zwQrVp4Cu4ePEiISEhPPvss/z222+89dZbTJkyhc2bN99x52tCk5t7Xw0RAFGlQtOAtPGPIqq7cG5TU1Pp2LEje/fuZcmSJfz+++/ExMTQs2dPIiIi7kIv7wyFQoG7u/tdyXRrKleuXGH79u2MGTOmXsc5ODjcF+PxYSUgIAAfHx82bNiAVqvmUlaKwRCx1koQtBYGQ8QU7Owd9EaKICC3AY2VAhEJFpTiocpCVipgl5OPZWnN970KtBLIcASdhRS3J1ywlMhQVfMK6KC2wF4sAeCGzBG1FnIbIFiVSqW4uLoZRUQ2Y+ZRoF7GSExMDGFhYfj7+xMYGMjatWtJS0urNdrjl19+SePGjVm6dCmtWrUiPDycsWPH8uGHH95x5x8nevTowZQpU5g+fTpOTk64u7szZ84cozJnz57lueeew9LSktatW7Nnzx6j/dUtLZw8eRJBEEhNTQXg0qVLhIaGolQqsbGxwd/fn507d5KamkrPnj0BUCqVCIJAWFiYoW+TJk0iKioKFxcX+vTpw9ixY+nfv79R+xqNBnd3d9asWVPneCdOnIggCCQmJjJ48GD8/Pzw9/cnKiqKw4cPG5XNyspiwIABWFtb06JFC7Zv3260PykpiZCQEGxtbXFzc2PkyJFkZWUZndvJkycTGRmJUqnEzc2NlStXUlxczJgxY7Czs6N58+bs2rWr1nN56NAhunfvjrW1NUqlkuDgYHJvGqAxMTF069YNR0dHnJ2d6d+/P+fPn6/zPFTmu+++IzAwkEaNGlXZFxsbS6tWrbC1taVv376kp6cb9t2+TFNYWMiIESOwsbHBw8ODjz/+mB49ehAZGWlUZ0lJCWPHjsXOzo7GjRuzcuXKGvu2YsUKvLy80Ol0RttffPFFRo8eDcD58+d56aWXcHNzw9bWlqeeeqrWDMTVLV3l5eUhCAL79+83bKvr963ox4ZvNnAx5y+KBb3U00orRaO1o1BbvzD477wxkcjwEQh2UlRSBaXFRcwbN4qOHo1p0zqIddGfEjwmjGmLFxuOsW7blu1xcUb1uHfpwqdx2yi1ELiadpVWbm04eu6MYf+BPQf4x9P/oKN3R14ZNIxLV/RLvRqNQKnOokbBalZmBhNHDibI14N+XQLZ/dNWw77qlmmOJRxieP9edGruRq+OT7L0gzloNBrD/leH9OeDd6azZM4surXxoWd7P/63YR0lJcW8ExVB5ye9+UfX9hzcd+t+o9VqeW/qZPp1CSTI14MXuz/FhtVfGvXzaMJBhvfvxdN+XnTzb8LoAcFcu5IGwJmk33l1aCidn/SmS6vG/CukB3+e+s3Un8jMY8gdaUby8/VTlJVDLN9OQkICL7zwgtG24OBgjh07hlpdNRgQQHl5OQUFBUafvwPr16/HxsaGI0eOsGTJEubNm2cwOHQ6HQMHDkQqlXL48GG+/PJLZsyYUe82IiIiKC8v58CBA/z+++8sXrwYW1tbvL29DbNVZ86cIT09nU8++cSobzKZjEOHDrFixQrCw8OJiYkxeiju3LmToqIihg4dWmsfcnJyiImJISIiAhsbmyr7b3/Lnzt3LkOHDuX06dOEhIQwYsQIcnJyAEhPT6d79+60a9eOY8eOERMTw/Xr16v0Yf369bi4uJCYmMjkyZOZMGECQ4YMoUuXLpw4cYLg4GBGjhxJSUlJtX0+efIkvXr1wt/fn4SEBA4ePEhoaCharT65WnFxMVFRURw9epS4uDgkEgkDBgyo8vCujQMHDtCpU6cq20tKSvjwww/56quvOHDgAGlpaUydOrXGeqKiojh06BDbt29nz549xMfHc+LEiSrloqOj6dSpE7/99hsTJ05kwoQJpKSkVFvnkCFDyMrKYt++fYZtubm5xMbGMmKEXl9RVFRESEgIP//8M7/99hvBwcGEhoaSlpZm8jm4HVN/3zYBrTh69CiFKhXSm6HdyzVOlOpsa6i5BgQBiQxEmQQdEhSU8+XsN0mI/5VNS5fy05dfcuDoUX5LSqqxCpUMrjrrl2JEwEIN9iXGy2jpV9OJHBPJs72f5Ujs/3ht+MvM+ECf7E8j1i5Y/eLDhfQOeZHvdsfzjwFDmTkpnAtnz1Rb9nr6NSJGD6VNYHu+j41n9oJotm76mlWfGr8M/vi/TTgqndnwYxzDwsax4K03mTY+jHadgti0az9duj/P7NfHU1qq//vQ6XS4eXjyn2Vr+WHvYf4dOY1PF79P7I9b9GPQaHgjfASdnunC/3Yf5L9bdzNoeJhhpnHW5HG4eXjyzU9xbNy5j7ETI5HJzbM5f2ca/OuLokhUVBTdunWjTZs2NZbLyMjAzc3NaJubmxsajYasrCw8PKpOn37wwQfMnTu3oV17ZAkICOC9994DoEWLFnz++efExcXRp08ffv75Z5KTk0lNTTW8OS9cuJB+/frVq420tDQGDRpE27ZtAWjWrMCwyvIAAQAASURBVJlhX4VR6erqWsUg8PX1ZcmSJUbbWrZsyVdffcX06dMBWLt2LUOGDMHWtvYHwLlz5xBFkSeffNKkPoeFhTFs2DBAP+bPPvuMxMRE+vbty/Lly+nQoQMLFy40lF+zZg3e3t789ddf+Pnp02EHBgby9ttvAzBr1iwWLVqEi4sLr732GqDXHSxfvpzTp0/zzDPPVOnDkiVL6NSpE8uW3crv4e/vb/j3oEGDjMqvXr0aV1dXkpKSav37qEzF0tXtqNVqvvzyS5o3bw7ApEmTDJl4b6ewsJD169fzzTffGHQ3a9eurTYfUEhICBMnTgRgxowZfPzxx+zfv7/a38XJyYm+ffsa1fv999/j5ORk+B4YGEhgYKDhmPnz57Nlyxa2b9/OpEmTTDoHt2PK75udfw2JkwxVuYq861lYN/KmTO1ab1dYQQqCtQStRP+O5kAeYmYBGzd8x/8tWEDvzp0BWLVgAS16966mAsixw0ical2uN0IKrI378u3ab2nUpBGfvTsbR6GU1s0bk3DmGl98voxCbKk50Tr0+cdLDBw2CoBJ02ZzOH4/G9euZPbC6Cplv/vvatw9vZg1/z8IgkBTXz9uXE9n6Qdz+XfkdCQ3x+rXyp9xr+sN3FcnvcGaZUtxdHJm0HD9rNe/I6fz3VdrOJv8JwEdnkIulzPxzVmGdho1bsKpY4ns/mkrwaEDKC4spLCggOd69cXbpykAzVrc0hZmXLtK2PgpNPXV/302adq8lhGb+TvQ4JmRSZMmcfr0aTZu3Fhn2dvX3SvEdjWtx8+aNYv8/HzD5/Llyw3t5iNFQECA0XcPDw8yMzMBSE5OpnHjxkZT+J1v3hzrw5QpU5g/fz5du3blvffe4/Tp0yYdV90be3h4OGvXrgUgMzOTHTt2MHbs2Drrquv3v53K58XGxgY7OzvDeTl+/Dj79u3D1tbW8Kl4mFZeJqlch1QqxdnZ2WCQAQaDuaLe26mYGamJ8+fPM3z4cJo1a4a9vT1Nm+pvwPWZFSgtLcXSsmqSNmtra4MhAsbXxe1cuHABtVpNUFCQYZuDg0O1IvPK50QQBNzd3WusF2DEiBFs3ryZ8nK9HmPDhg3861//QiqVAvrZoenTp9O6dWscHR2xtbUlJSXljmZGavt9z507R3r2BTLUuVjcPG/q4nLKVe71NkQsLEV0Ngq0ghQJOix05ViU6Lh+KgmVSsXTlYwsJwcHWvj4VKkjy14wGCLW5SICUGIhUF7NJMeFsxd4un0HHIXSm4JVJR3atzepr4Edg4y/d3iKC+f+qrbshXN/EdDhKaO/tXZPPU1JcRHX068atvm1umVYS6VSHJVKWjx5K/O28xOuAORk3TBs++6rNQwL6UmPQF+eadmIzRv/S/rVKwA4KJW8OGQ4E0YOYvKYf7Fh9ZfcuJ5hOHbkaxOZO30K44a9zOovPuZy6kWTxm7m8aVBxsjkyZPZvn07+/btq3Z9uzLu7u5kZGQYbcvMzEQmk+HsXL3i28LCAnt7e6PP3wG53PiuJQiCYZq/Om+J2x/mFW85lcvevhQWHh7OhQsXGDlyJL///judOnXis88+q7Nv1S2njBo1igsXLpCQkMDXX3+Nj48Pzz77bJ11tWjRAkEQSE5OrrMs1H5edDodoaGhnDx50uhToa+prY7K2yrOZU3LKlZWVrX2MTQ0lOzsbFatWsWRI0c4cuQIUD+xr4uLi0GDUpnq+l6T90xNhl515Ws7r9URGhqKTqdjx44dXL58mfj4eF555VY6+mnTprF582YWLFhAfHw8J0+epG3btjWeA1Ou15p+3zNnUmjW2p0cUe9SW56jX8q1cGhVY/+rQ5CC1E5CmUIffcyWAiw1agStgGNWHoi1L7NpJZDpqD93GkFEpgVlkYhKJqCupMu4HZlWggX683JDqkSjFSgSa7/Gah1HDYa9KIrVXAtVj5FVcy3IZNX9fegPjv1xCx/Onc3L/xzB8g0/8F3MAV4aOhxNpciz73/0Bf/dupt2HYOI/fEHXuz+FKdPHAVgQtRMNscl8OzzL5B4KJ4BvZ4hbtdPDRy9mceBehkjoigyadIkfvjhB/bu3Wt4+6uNzp07VxFa7t69m06dOlW5GZqpmdatW5OWlsa1SvFMEhISjMo88cQTAEY6juriWnh7ezN+/Hh++OEH3nzzTVatWgXoPUgAgw6iLpydnXn55ZdZu3Yta9euNdkLxMnJieDgYL744otqPbHqE9ujQ4cO/Pnnn/j4+ODr62v0qc6AaigBAQHE3SZQrCA7O5vk5GTefvttevXqRatWrao1Kuqiffv2JNWiRTCF5s2bI5fLSUxMNGwrKCjg7Nmzd1Qv6A2ygQMHsmHDBjZu3Iifn5/RslJ8fDxhYWEMGDCAtm3b4u7ubhBOV4cp12t1v2/jJo2QKjVobfUGhJVWSkpSGm4enijr4dJqYaFDZyNHI8iQouEJbRbWxRqk5RpkN42i5o0bI5fJSDx1ynBcbn4+5y5dQiWDyy4CRZYCShclhZdvYKHWBzM7n3qJ0pLqY48odFLat2jMkRO/kyvYotFKKNZZcuq3Yyb1u+KBbvj+2zGaNm9RbdnmLVpy6niikcF36tgRbGztcHU3LQxBdZxITCCwUxD/HB1OqzYBNG7ajCuXUquUa9UmgFcnRfHfrbvxbdmKnVv/Z9jn08yXka9NZMU3P9Crb3+2fbehwf0x8+hTL2MkIiKCr7/+mm+++QY7OzsyMjLIyMigtPTWH92sWbMYNWqU4fv48eO5dOkSUVFRJCcns2bNGlavXl2rAM9MVXr37k3Lli0ZNWoUp06dIj4+ntmzZxuV8fX1xdvbmzlz5vDXX3+xY8cOoqON15EjIyOJjY3l4sWLnDhxgr1799Kqlf5tskmTJgiCwE8//cSNGzcoKqo9oiToZ1rWr19PcnKywavCFJYtW4ZWqyUoKIjNmzdz9uxZkpOT+fTTT+u1/BQREUFOTg7Dhg0jMTGRCxcusHv3bsaOHWuyUWUKs2bN4ujRo0ycOJHTp0+TkpLC8uXLycrKQqlU4uzszMqVKzl37hx79+4lKiqq3m0EBweTkJBwR/22s7Nj9OjRTJs2jX379vHnn38yduxYJBLJXXFTHjFiBDt27GDNmjVGsyKgv/5++OEHTp48yalTpxg+fHitMy1WVlY888wzLFq0iKSkJA4cOGDQ9VRw++/7R9Ipvt7yX6a+/jaiVoOlVoZa48jhwyfp/Nzzpg3i5mn449w5Uk6fJvX0YTKPHiL5aBKO2XlIKs2G2FpbM3rgQN766CP2HT7Mn2fP8to7byNIBEoVoJOAQg3PPvM0a7/ayNEzyfxx8g/mTZtXvSBThEYaLRNHDeL8pSvMfG8xKedS2bZlC9u/r3vJG2DPjm1s2fQ1qRfOsSz6A/44eZx/hb1Wbdmho14l49pVPnhnOhfP/cW+2J0s/2gRI1+baJiZagiNfZqRdPo3Du2PI/XCOT7/zwL+PHVLJH0l7RKfLJrLqeOJXLuSxq+/7OXShXM08/WjrLSUhW9P42jCQa5dSeO3o4f589RvNG3h1+D+mHn0qdfVuHz5cvLz8+nRowceHh6Gz7fffmsok56ebrRG3LRpU3bu3Mn+/ftp164d77//Pp9++mkVwd/dRKZUItx8y79fCAoFMqXyntUvkUjYsmUL5eXlBAUFER4ezoIFC4zKyOVyNm7cSEpKCoGBgSxevJj58+cbldFqtURERNCqVSv69u1Ly5YtDaJMLy8v5s6dy8yZM3FzczNJdNi7d288PDwIDg6uViRZE02bNuXEiRP07NmTN998kzZt2tCnTx/i4uJYvny5yfV4enpy6NAhtFotwcHBtGnThtdffx0HB4c7utnejp+fH7t37+bUqVMEBQXRuXNntm3bhkwmQyKRsGnTJo4fP06bNm144403+M9//lPvNkJCQpDL5bW6w5rCRx99ROfOnenfvz+9e/ema9eutGrVqlo9Sn15/vnncXJy4syZMwwfPtxo38cff4xSqaRLly6EhoYSHBxMhw4daq1vzZo1qNVqOnXqxOuvv17leq38+77wwgs81ekZ5r+9CAd7W+QoKFO7UFAKe2N/YtDwUTW0cguFQgdWeo3L2H4v8K9nu/Dys73o1TuE3sHVi8EXvvkm3Tp2ZMiUKYSMe41Wz3agVaBeT+FYLCKI8PrCabh7ujP6xdHM+PcMwiaGVbu056qRYYUKT08vVv3fSvbs+ZmQ4Bf4/uu1TJ7+Tp39B/0SR8z2HxjyQjd+/N9GFn66kuZ+1YvB3Tw8+WL9d/xx8gRDgp9l/ltRvPyvV3htyp29DA55ZQzP9w1lRsRYXnmxN/m5OQwd9aphv5WVFRfPneXNcaN5sftTvD8zkn+FvcbgV8YglUrJz83h7cjxvNj9KaZNGEvXnr2ZGDWrlhbNPO4I4iMQurGgoAAHBwfy8/Or6EfKysq4ePEiTZs2NbrZqq9du69ByGRKpcnRVx8nSkpK8PT0ZM2aNQwcOPBBd+eRZ9myZWzbto3Y2Ni7VmdxcTFeXl5ER0fz6quv1n3AQ8j1nFSydPolPQsdCEgoVuk98TatW8W+3btY8c0PNVcggMIayqX6lxRLSlGWFaPTCjhk1x1FtUwBN+wF1DcnO14NDcO/9ZO8uWhmtdFUq8NVbckTYgGiCOkyF9CIZIl/Dz3c44CoUZF57Qpz9mVytfDuzbo+LMgkApOe9yWy992doart+W3U/l1t9SFC7un5tzQO7hc6nY6MjAyio6NxcHDgxRdffNBdeiwYN24cubm5FBYW1iskfGV+++03UlJSCAoKIj8/3+AG/NJLL93Nrt4XdDodV3POUYBew2GlE5DoJBRo3A1lZHI5s95fXFMVKOQiais55UgQEHEU81AUg0WRCoWqrPb2Bci2h0IrvcUh1eljhoiCPp6IqYaIg8YCF10BCJApVaLRQr7ZEDFjxsBja4yYubekpaXRtGlTGjVqxLp164zCT6elpdG6desaj01KSqJx48b3o5uPHDKZrIoWqCF8+OGHnDlzBoVCQceOHYmPj8fFpX6RSB80Go2KtNxzlAr6yVtrrRRRq6BAZxxkcfCIMKPvE0cO5kSiPoqvcDPwWAWRr09k8uQpOOTk1dl+kSVk2wtob6722ZXqjZBcWwFdPeQ3Cp0Ud20xggB5gi0ajUAR1jz0U9JmzNxHzMaImQbh4+NTo3upp6dnrdlp66MtMVN/2rdvX2uKhkeBsvIiLhdcQiXo9aYWWhlqjR1lonWdx7635FO0mlJ0llK0SAEROwqxLBFxs7TWu+zWgkYKN+yh1EJvccg1YFMmUmAtoLtpmKzbts6kcTirLXDWlSATdJSgoExnQRkyNEhNOt6Mmb8LZmPEzF1HJpPh6+v7oLth5hGlrLyYtIJLqAWQiSISnZxytTMak25XAj7N3CmR6/VjMtQ4q/LRaZxQ1mGEiEC+jX7mQxRAEPVLMuVyyLOtnyeSvUbBE7pyLCkEAcqRkS/Yo9VpKK41vqoZM39PzMaIGTNmHhrKVSWkFaSiFkAuiiDKKFO7IpoQUVUqFcFaQomgN0TsxAJsijXIy3VYFdee36pcDjccBENGXUuViIVaH8bdVF0IgKVWhptWhy16t3iNKCFb6gA6KWi15HDvPO7MmHmUMRsjZsyYeShQqUpJy79omBFBlFGmcq/7QMDKUkuJwhIQkKLBSZ0PagG7nHyEWtQZupv5ZCpyx0h04FAiUmQpkF+PmHkynQQ3jRQHUa8N0YkCORI71IIFai2ASB6OpldoxszfDLMxYsaMmQeOSl3GpfwLqOppiEgkIlIbCSWCPqaHNUXYF6uQqnXYFBTWemyxhT6fjPamfMO2TB8zJLceSzISEVzVFijFIiSCCALkYUOJzAatRosEFfmik1msasZMHZiNETNmzDxQ1JpyLuWdNzJEVCYYItYWWkosLNEiIEGLUpOPoBKwzclHUkv4JI1E765bbKk3OmRavadMgfUtzxlTcFFb4KQrQS7odSHFWJIns0NQaRHEEvJFl3on7DNj5u+K2RgxY8bMA6OsvJArBWmoBJCKIoIoo1zlVutMgiABubVIsUQ/G2JJCY4lZUg0OmzzateG5FtDrt0t11z7EhG1tH6zIY4aC1x0ZVjcFKeWISdH6oBErUOiKicXRzSi2VvGjJn6cPfiZT9kFOaUcSOt8L59CnNqD550rxAEga1btz6Qtu8HD2p8+/fvRxCEeiXtq43U1FQEQajV5RngzJkzuLu7U1ioX2JYt24djo6OtR4TFhbGyy+/XK/++Pj4sHTp0nodczeoaFcUdWTkXORCYRrlAkgRkYhyylW1i1Wt5BpEWxnlEgsEdCi1uUQNH83ajz6r1RBRyeCqs0C2vd4QsVCDQ7FIoZVgcOGtYPak2UwZNaVKHdZaOT4qAS9dIRao0YgSMqRK8kV7RLVIPlbcwLlat92rl9MI9FaS8ufvNfbxaMJBAr2VFOTXHBE2K/M6/x4+gKf9vOjm36TGcneD2/uz7btv7nmbZv6+PJYzI4U5ZWx49zBaTe3pv+8mUpmEEfOewc7JtPwfYWFh5OXlPVSGxP79++nZsye5ubl1PgDvBhkZGSxYsIAdO3Zw9epVXF1dadeuHZGRkfTq1euet18bXbp0IT09HQcHh/va7uzZs4mIiKhX9NVPPvmkxpgvDyMqdSkXspIpu2kDWOhAiwxVLYaIIICFtY4SqT7OiIIynEpLQCvy3pix9Hv1VcYMHIC9ra3RcfogZZBnc1OgKsIfcYkMHTaWX8/9ir1Q1c125sKZRudTrpPgppHggD4cvU4UyJbYoxUUqNWgQkoxVfPQVMbd04u44yk41iOrcHV89X/LuHE9g+9iD2Brd29dhNt1DCLueAp2tYTwNmPmbvFYGiNlRer7aogAaDU6yorUJhsjjzIqlQrFHSYiTE1NpWvXrjg6OrJkyRICAgJQq9XExsYSERFBSkrKXeptw1AoFLi7m+bJcbe4cuUK27dvr/eMxf02mBqKTqdFq9OQU55PmQASRCy0MqQ6GSXamqPDWsk1lFlZUIoCEHHQFSAvEbHOL0amVdO2ZUsae3qyaccOxv3zn4bjSm4KVDU3JypsykQkOiiq3W7Azl5vCEpEATe1HEexGIkgIoqQJ7GlVGqNViOiQ0e+iTFDpFIpLq5uJpWtjSuXUmkd0I4mTZvfcV11IVco7kqfzZgxhcd2meZRo0ePHkyZMoXp06fj5OSEu7s7c+bMMSpz9uxZnnvuOSwtLWndujV79uwx2l/d0sLJkycRBIHU1FQALl26RGhoKEqlEhsbG/z9/dm5cyepqan07NkTAKVSiSAIhIWFGfo2adIkoqKicHFxoU+fPowdO5b+/fsbta/RaHB3d2fNmjV1jnfixIkIgkBiYiKDBw/Gz88Pf39/oqKiOHz4sFHZrKwsBgwYgLW1NS1atGD79u1G+5OSkggJCcHW1hY3NzdGjhxJVlaW0bmdPHkykZGRKJVK3NzcWLlyJcXFxYwZMwY7OzuaN2/Orl27aj2Xhw4donv37lhbW6NUKgkODib3ZjLGmJgYunXrhqOjI87OzvTv35/z58/XeR4q89133xEYGEijRo2q7IuNjaVVq1bY2trSt29f0tPTDftuX6YpLCxkxIgR2NjY4OHhwccff0yPHj2IjIw0qrOkpISxY8diZ2dH48aNWblyZY19W7FiBV5eXuh0xkb+iy++yOjRowE4f/48L730Em5ubtja2vLUU08ZMhAXleRwITsF3U01iKUO0i9ep7l7K46cvjWWgvx8Ar2VHE04CIC1tZbfL11iwuDBdPZ0pXdzH6aGT0J3/jwyrdpw3D969uT7nTsB0Eog0xEylHpDRKYFZZFIuVyg0LpubcjsSbOZ+kokLVRqnCiitLSE4VPmYOvXjSfbdeXLLz5n4OB/Mfu9DwzHBHor2Ruzw6iebv5N2PbdN0D1yzTxe3cT+lwngnw9eHVoKNcup1Eb/ToH8PPO7fz4v03/z955RkdRtQH4mW3Z9AopEEggJKSQ0DvSCSD40RWQHqT3IijSBBQURVGqUkQFBVRUOqGH0KsSOiGUUNKTTbJt5vuxsLCkEBBp7nPOnpOduXPve+9udt65byPC15UPRgwEIPH6VYb17kLNoJLUDi7FmAG9SL5z23zd2dOn6NOpNbXK+1I7uBRvtWzA3yeOAXDjWgJDer1F3TA/agSWoG3jWuzZvgUomtnIipWnhVUZeYFYvnw59vb2HDhwgFmzZjF16lSzwiGKIu3atUMul7N//34WLFjAu++++9hjDBo0CK1Wy+7duzl16hQzZ87EwcEBX19f1q5dC5j8FhITE/niiy8sZFMoFMTExLBw4UKioqLYtGmTxU1xw4YNZGVl0alTp0JlSElJYdOmTQwaNAh7+7zJHB42EU2ZMoVOnTpx8uRJWrZsSdeuXUlJSQEgMTGR+vXrU7FiRQ4fPsymTZu4detWHhmWL1+Oh4cHBw8eZMiQIQwYMICOHTtSu3Ztjh49SmRkJN26dSM7OztfmY8fP07jxo0JDQ0lNjaWvXv30rp1a4xGU/VOjUbDyJEjOXToENHR0chkMtq2bZvn5l0Yu3fvpmrVqnmOZ2dn8+mnn7JixQp2795NQkICo0cXXAJ+5MiRxMTE8Pvvv7N161b27NnD0aNH87SbPXs2VatW5dixYwwcOJABAwYUuCPVsWNHkpKS2LFjh/lYamoqmzdvpmvXrgBkZWXRsmVLtm3bxrFjx4iMjKR169YcPL6LK9mJaO/qAUpJhsxgi9ZQrMA5KGVG5E4y4pPSiGrZnPAK5dm0YQO/LFpM2o1Euj00/6phYRz+6y+SZDqueghk3Y2UccqWsNFLpDrc3yEpDFe9DY6ihA0GFIJILkoGTlvAzn2H+Hbx18z//ld2xR7j9KkTj+6sEG7euMbId7pTr1FTft68m3adu/HFx1MKveaHP7dTp0FjmrVqS/SRM4yd8hGSJDE86m3S01JZsvpPFvz4C1evXGbswN7m68YPeQdPbx9+/DOalRt20HvgcBRK06b4jAlj0Gl1LF29nrVbYxg+fhJ2do+RYMWKlafEK2mmeVkJDw9n0qRJAJQrV46vvvqK6OhomjZtyrZt24iLiyM+Pt785DxjxgxatGjxWGMkJCTQvn17KlSoAECZMmXM59zcTAXIihcvnkchCAgIYNasWRbHgoKCWLFiBWPHjgVg6dKldOzYEYeH7PYPc+HCBSRJonz58kWSuWfPnnTu3BkwzXnu3LkcPHiQ5s2bM3/+fCpXrsyMGTPM7ZcsWYKvry/nzp0jMNBUDjsiIoIJEyYAMH78eD7++GM8PDzo27cvABMnTmT+/PmcPHmSmjVr5pFh1qxZVK1alXnz5pmPhYaGmv9u3769Rftvv/2W4sWLc/r0acLCwoo0z/j4eKpUqZLnuF6vZ8GCBZQta9qaHzx4sLkS78NkZmayfPlyfvzxR7PfzdKlS/OtB9SyZUsGDjQ9Xb/77rt8/vnn7Ny5M9/Pxc3NjebNm1v0u3r1atzc3MzvIyIiiIiIMF8zdtwwflqzinWbttAlqgu2ooAggc7oQKboBnezlOaHXq3CgII13y4ivEIoE8aMxTUpFdzcmD91KoFNm3I+Pp5yfn4AFPcpjlan44w2GR+ZDyo92Onu1pMpQqCMg0FFMVGPHZnIkRARuCl3Q5OezaqVPzHj868Jea0NANM+m0+z6qGFd/gIfv5uCSVL+TFm0gwEQcCvbDnOnznN0nlfFHiNm7sHKpUNarXabD6J3b2D83F/s2Hfcbx8TL8L0+csoF3jWvx1/ChhFStz88Z1evYfin+A6X/hQRPPzevXaNLyDcoFm+ZTsrTfP5qXFStPinVn5AUiPDzc4r23tze3b5u2W+Pi4ihVqpTFFn6tWrUee4yhQ4cybdo06tSpw6RJkzh58mSRrsvviT0qKoqlS5cCcPv2bdavX0/v3r3ztHuYe86BglC0cMoH18Xe3h5HR0fzuhw5coQdO3bg4OBgft27mT5oJnmwD7lcjru7u1khA/D09DTPIz/u7YwUxMWLF+nSpQtlypTByckJf39/wKT8FZWcnBzU6rw+R3Z2dmZFBCy/Fw9z6dIl9Ho91atXNx9zdnYmKCgoT9sH10QQBLy8vArsF6Br166sXbsWrVYLwA8//MBbb72FXG7actBoNIwdO5aQkGCcnZ3w8izNpfOXuXUtEbVRAQZ7JOSFRss42JhMLxICanI4f/gw+2L2EVimHMWqV6dY9epUeuMN01yvXkXiroOql8kRJDc7BxeNaYQ0+0crIjaiHF+dgtJiFnZoMUoCuYISHUoMBjl/xd9Ep9MRVqXG/fV0daV02X9We+nShXNUqFTV4n8gonL1Qq4ouB9PnxJmRQSgbGB5HJ2duXzhHADd+g5kytihvNO5Dd9+/TlX4y+b23bp3Y/FX35Kj7aRzJv9Eefi/voHs7Ji5cmxKiMvEEql0uK9IAjmbf78oiUevpnLZLI8bfV6vUWbqKgoLl26RLdu3Th16hRVq1Zl7ty5j5QtP3NK9+7duXTpErGxsXz//ff4+flRr169R/ZVrlw5BEEgLi7ukW2h8HURRZHWrVtz/Phxi9c9/5rC+njw2L21LMisYmtbuNdj69atSU5OZvHixRw4cIADBw4AJmffouLh4WH2QXmQ/GQvKHqmIEUvv/aFrWt+tG7dGlEUWb9+PVevXmXPnj28/fbb5vNjxoxh9eqfGTi2P8v+WM7aHWsJCi6HUWcgR1+cLNHS0VYmEyxks7czkCozyWQr5WCn0SHX6mhZvz7716yxeJ1av54qtapwzUMg1UEgPc3k11DK3pU0ewGt5dTyxVunoow+ByeykSRIERy5LS+GUZJhlARSJAe0UtE2j/P7TPR6Q8EXPK3oJ0nKX6mXTNlgAQaMHMfa6FjqNWrGwZg9tG1ck+iNfwLQrnN31scc4/V2b3L+zGk6v96IH5cW7Dtkxcq/hVUZeUkICQkhISGBGzdumI/FxsZatClWzGSDf9CPI7+8Fr6+vvTv359ffvmFUaNGsXjxYgBzhMw9P4hH4e7uTps2bVi6dClLly6lV69eRbrOzc2NyMhIvv76azQaTZ7zj5Pbo3Llyvz999/4+fkREBBg8cpPgXpSwsPDiY6OzvdccnIycXFxTJgwgcaNGxMcHJyvUvEoKlWqxOnTp/+RnGXLlkWpVHLw4EHzsYyMDM6fP/+P+gWTQtauXTt++OEHVq5cSWBgoNmspDdo2b5zG63eak3DVk0ICS6Hj4cn164mohft881E6upmiqBJvn0TtYNIlsKOs3d36pQ6Ix7JyVQMCSbuwgVK+/hQtlQpypYqhb9fKZwqlCKjpD16BchFuHH8PF4+nihKuhU6B0ECN4Ppe+6CBpkAGdiSqChGtqhCZzCik5QY7+YKKeXnj0Kp5OTRw/fXMy2NK5csnZNd3T1Iun3T/P7K5Yvk5uTvfwRQplwQp44dtjh28tihQmUvqJ+b169x88Y187GL586QmZFBmYD7u2F+ZQLo1ncgC3/8hcbNW7Hu5x/M57x8StKpW28+X7yC7u8M4pcflz+2HFas/FOsyshLQpMmTQgKCqJ79+6cOHGCPXv28P7771u0CQgIwNfXl8mTJ3Pu3DnWr1/P7NmzLdoMHz6czZs3c/nyZY4ePcr27dsJDg4GoHTp0giCwJ9//smdO3fIyirYpn+PqKgoli9fTlxcnDmqoijMmzcPo9FI9erVWbt2LefPnycuLo4vv/zyscxPgwYNIiUlhc6dO3Pw4EEuXbrEli1b6N27d5GVqqIwfvx4Dh06xMCBAzl58iRnzpxh/vz5JCUl4erqiru7O4sWLeLChQts376dkSNHPvYYkZGRxMbG/iO5HR0d6dGjB2PGjGHHjh38/fff9O7dG5lMVmSzWGF07dqV9evXs2TJEvOuSHL6DS6mnaeEvy/b/txG/ImzXDx1nmH93kcUC94BUNvaUrFKVZYsmMNf5y5zNGYPCz80+Uw5p5uSvvV76y1SMzLoMXYsh06d4q/bV1n11z6GvfsBRqMRxxwJtU5iz7Gj1GpQu1DZ3fVqAvQizpJJSTh8Jp4tcbfYf+oSfx0/RuxfV/KE6trZO9D2zbf5fPpEDuzdxfkzp/lg5EDzLuQ9qteux6rl3xB36gR/nzjGtPEjUSgL3p7p2K0XV69c5pMp7xN/8Twbfl3N76tXFip/ftSs14BywaGMH/IOcadOcOrYESYMH0DVmnUIjahEbk4OMyaM4VDsXm5cS+DYof38feIY/uVM/iOzJo8nZmc01xKuEHfqBAdj9uAfkNekZ8XKv80rqYyoHZTIFc92anKFDLVDEfaGnxCZTMavv/6KVqulevXqREVFMX36dIs2SqWSlStXcubMGSIiIpg5cybTpk2zaGM0Ghk0aBDBwcE0b96coKAgs1NmiRIlmDJlCuPGjcPT05PBgwc/Uq4mTZrg7e1NZGRkvk6SBeHv78/Ro0dp2LAho0aNIiwsjKZNmxIdHc38+fOL3I+Pjw8xMTEYjUYiIyMJCwtj2LBhODs757lh/BMCAwPZsmULJ06coHr16tSqVYt169ahUCiQyWSsWrWKI0eOEBYWxogRI/jkk08ee4yWLVuiVCrN4bBPymeffUatWrVo1aoVTZo0oU6dOgQHB+frj/K4NGrUCDc3N86ePUuHDu2IvxPHTX0qRgTen/ouLs7OdGjVlT7dhlC7fiOCw8Lz7UchE7F1MDJx/kL0BiNdG9Rj9thRvDdylEU7n+LFif7uO/SSSOsB/XitVTumT/gYFwdH3LIFNDYCKeiI3hBNh24d8h3LyaCijA68pAxUGNDfTdXetF0PIpu0ILL560Q2f4NOzV/L9/qRE6ZSuUZthvbuQr8ubalUvSYhFSIs2oz6YBqe3iXo1eF1xg3pS49+gws17XmX8GX2wuXs3raJjpH1WP39UoaM/aDA9gUhCAJzvvkeJ2cXenV4nX5d2lKytB+z5pnC6+VyOempKUwY3p836ldjzIDe1GnYhIEjxwOm34OPJoyhbaMaDOjWAb+yAbw/49PHlsOKlX+KIL0EqRszMjJwdnYmPT0dp4eyAebm5nL58mX8/f0tfmwzU3LJzdI/3NW/htpB+Z9IePYw2dnZ+Pj4sGTJEtq1a/e8xXnpmTdvHuvWrWPz5s1PrU+NRkOJEiWYPXs2ffr0+cf9SZJEUvo1kgzpiAgIgK1RhkwSSDcUnihOEMDOVk+Wwo57Tg32kgb7bD22mhxscnMsxwLS7U21YyTBZGZxypbQKiFXZbp+5bcr2b5pO4tXL7a4Vm1UUNwo4YipT6MkI1nuhCgqECWRVMnBbI55XPp0bEVQaAXGTv7o0Y2tvBJIBh23b1xj8o7bXM98eruuLwoKmcDgRgEMbxL4VPst7P5tMf5THfUFwtFN/Z9UDp4Voihy8+ZNZs+ejbOzM2/cjXCw8s945513SE1NJTMz87FSwj/IsWPHOHPmDNWrVyc9Pd0cBvy///3vH8uXq80iMSOBbEECBFQSSKICncEZrVT4/5ujWk+WSk0WJp8NG3JxzslBMoJLSl4fG60S7jgL6O7+Sql1EjZ6yLAzKSb3UCgVvPfRe+b3clHAy6DAWdIgCCBKkCpzRCeoMRpBI6nQ8s8yCFuxYuXp8soqI1b+XRISEvD396dkyZIsW7YMhUJhcS4kJKTAa0+fPk2pUqWehZgvHQqFIo8v0JPw6aefcvbsWVQqFVWqVGHPnj14eBSccv1RSJLE7dQrpIhZiMK93RD53d2QwlOG2yv15NqqyMDkUKxAj4tOg6QH55R0BMkygkcUIMXRpHQAyERwzpbIUguk5+OT3LF7R8C0a1LcYMPbXXqw9+Cxu2cFiwrAfQaPJGrIqDx9WLFi5fliVUasPBF+fn4Fhpf6+PgUWp32cXxLrDw+lSpV4siRI0+tv5zcDG5kXr1b2E4wFbaTFGgNruikgncY1HIDop2MLMGkQcgw4mzIQpYr4ZSeaZHO/R5Zakh2EjDedfdxyDF9x1IdCne+9dCrcRM1KIVMvv10Iim5IhlyBySDiChBBqZdJmcX18dfgHz4dvWfT6UfK1asmLAqI1aeOgqFgoCAf5YUysrzRxJFbqbGkyrlIFkUtpOTbSw4lbtCEFHai2TLbDH5hUg4iVnYaIzY5mhR5+YN59bLIckJcmxMSofSYCpsl2l3XzHJDxe9De5SLmoyQAAtCmQlg/HQS7hjJAlTqK/LP1gHK1as/PtYlRErVqzkQZOdSqLmhrmejFoEo6QkV++OoYCfDUEAe1s9WQpb9HcD9ewkDQ7ZeuQGI475FFyTBEizN2VLfdBBVaeAtEJ2Q+yMSooZjThgCgE2SDKS5c5IRhnoRZJxzje3iRUrVl5MrMqIFStWzIiikZupl0mTtA/shiiRiQo0RvcCr3O00ZFlY0tmEZ1TRQEy7O6mbL+782Grk1Dl46D6IEpRhqdBjpPZOVUgReaIQbDBaJRIk+yeOELGihUrzw+rMmLFihUAMjVJ3My+he6uImArChglOTl6jwJv8A5m51RTccSiOKem20O63X0lRGkE+xwJjVogp4CkuTJJoLhBhauYhUwwpTpPw55suR1GUSJbtEbIWLHyMmNVRqxY+Y9jNOpJTL1MOnoQQC5JKEUlgtGGHNEl32ts7zqnZhbROTVfJcQA9lqJHJVQqEmmmF6Nq6hBKWhBAA1q0uWOiAYRrUFAQ+FVoq1YsfLiY1VGrFj5D5OeeZtbuXfQP7AbIkkycvTFEPNJ0KyQiahsRTTy+86pjnedU+3ycU41KyEPVNC1UELsC1ZCXPVq3KUcbO46p+aiJEXuDHoRo2gg1eqWasXKK8Mrq4xkJN0mJyPjmY1n6+SEk0fxZzbePQRB4Ndff6VNmzbPfOxnwfOa386dO2nYsCGpqam4uLj84/7i4+Px9/fn2LFjVKxYscB2Z8+epX79+pw/fx5HR0eWLVvG8OHDCy0e2LNnT9LS0vjtt9+KLI+fnx89orrQqX9XEEAhSShEJZLRFo2YN0uiIEjYqw1kKR90Ts3GIVuHXG/EMcPSOdUog3Q7yHhACVEZoFHVZnR/pxtdBnYrUDYHgwoPUY89pv9fvSQnWe4ERgH0RpIeUkJG9etBRJXqdH9nUJHn/zJjzf5q5VXklVRGMpJus2R4P4z6Z5cOXq5U0nvOwiIrJE9yA/m3edo34Edx8+ZNpk+fzvr167l+/TrFixenYsWKDB8+nMaNG//r4xdG7dq1SUxMxNnZ+dGNnyLvv/8+gwYNeqzsq1988UWBOV/yIyUjEb2oR4vJn8Pubuxslr44Uj4RKE42OrJs1GRiA4CKXJxzcsEo5XFONcrum2OkB5QQO61EtspkoikoVNfGKKe4UcAJU4FGURJIljthFJWIRolkyTFf+foNH0NUpzdo17kbDo4Fp5u+x6HYvUR1ak3ZwPKs3rIXufy+P0zd0NKMmfQR/+vU5ZH9AKz7+Uc+mTKevX9fKVJ7K1as5M8rWSgvJyPjmSoiAEa9/pnuxDxPdDrdP+4jPj6eKlWqsH37dmbNmsWpU6fYtGkTDRs2ZNCg5/+Eq1Kp8PLyeiqVbovKtWvX+P333+nVq9djXefs7Fwk5VGvz+XKnTgSdSnA/UgZo8GJTL13nhu9g1KHwgnSbRwwokCBHnddOg6aXFzupOH6gCJilEGyIyQUE8xhuio9uGhMSlKavYCugDqSclHAR6eijCEHJ7KRJEgRHLgl90ArKkkW7UiSnPJVRAACg8Pw8S3Fhl9XF2G17nPtSjx/rFn1WNf8m+if8W+WFSsvEq+kMvIy0qBBA4YOHcrYsWNxc3PDy8uLyZMnW7Q5f/48r732Gmq1mpCQELZu3WpxfufOnQiCYLGlf/z4cQRBID4+HoArV67QunVrXF1dsbe3JzQ0lA0bNhAfH0/Dhg0BcHV1RRAEevbsaZZt8ODBjBw5Eg8PD5o2bUrv3r1p1aqVxfgGgwEvLy+WLFnyyPkOHDgQQRA4ePAgHTp0IDAwkNDQUEaOHMn+/fst2iYlJdG2bVvs7OwoV64cv//+u8X506dP07JlSxwcHPD09KRbt24kJSVZrO2QIUMYPnw4rq6ueHp6smjRIjQaDb169cLR0ZGyZcuycePGQtcyJiaG+vXrY2dnh6urK5GRkaSmmm7ImzZtom7duri4uODu7k6rVq24ePHiI9fhQX7++WciIiIoWbJknnObN28mODgYBwcHmjdvTmJiovlcz549LcxYmZmZdO3aFXt7e7y9vfnss8+oU7cWfQb3JUsw7YYIEug1OsYMnUpEUHkia4Sx5odlgMk51cZRJNPWAT0qZBhZ/81XNA4qj+OtNDySUxDu7qq0HzKE7pPeJ6GYwKnbVxncfQj1g1+jeulqtGvxJhsP7zfXlnmY2/E3CSsWhub4KVzJQiZAQroeWcnKbIs5SoZBRYroyLlz5xnUvSM1g0rSsFIg7w3rR2pKskVfDZq2YOO6tY+13p179WX+Zx+hzc0tsM13i76mfZPa1AgsQbPqoUx/bxTZGtPOzaHYvUwcNYjMjAwifF2J8HVl/mcfAxDh68r2Test+qobWpp1P/8IwPWrCUT4urL5j1/p07EV1QK8WP/Lz6SlpvDuoD40rRZKjXI+tG9Sm42/rXmseQEs+uJTGlQsR63yvkweM5Q5H02mU2Q98/m/jh+lX5e21A8vS52QUvTu8Dpxp05Y9DH/s4+JrBFG1bKeNKkSzMcT331sOaxYKSpWZeQFYvny5djb23PgwAFmzZrF1KlTzQqHKIq0a9cOuVzO/v37WbBgAe+++/g/DoMGDUKr1bJ7925OnTrFzJkzcXBwwNfXl7VrTT/mZ8+eJTExkS+++MJCNoVCQUxMDAsXLiQqKopNmzZZ3BQ3bNhAVlYWnTp1KlSGlJQUNm3axKBBg7C3zxvL+fBT/pQpU+jUqRMnT56kZcuWdO3alZQU09N9YmIi9evXp2LFihw+fJhNmzZx69atPDIsX74cDw8PDh48yJAhQxgwYAAdO3akdu3aHD16lMjISLp160Z2dna+Mh8/fpzGjRsTGhpKbGwse/fupXXr1hiNpuqdGo2GkSNHcujQIaKjo5HJZLRt2xZRFPPtLz92795N1apV8xzPzs7m008/ZcWKFezevZuEhARGjx5dYD8jR44kJiaG33//nfUbfmdz9EZOnDiFBKgkUBkVgIzFC5YTEl6RnzbuolP3Pkx/bxSJ10+TbW9LrqDmnnOqW2YWb73WhNTkZGJiYwDTTshFKZ1t+2Jo+tbrSAIY0rOJrFeXpT9/w+rta6jdqA6D3x5M4rVEC/lUohxfnQI/g0kJkCORjQ035B5k3S22lynZo0XFnVs3TT4SIRVYuX4781asIfnOHcYMsNw9CqtYmb9OHEWn1RZ5vbv2GYDRYGTVssUFtpHJZLw7dSZrt+3jw8/nc3DfHj6fPgmAilWqM3byRzg4OhJ95AzRR87Qo9/gIo8PMOejyXTu3Y9ftx+gdv1GaHNzCalQkbnLVrF22z7ad+3J+8P7c/LY4SL3uf7Xn/lm7myGj5/Myg078CpRktUrLB8QNJosWnd4i6VrN7Bi3VZK+ZdlUI9OaLJMSeS2rl/H99/M44OPP+eP3Yf5/JvvKVe+4HpTVqz8U15Jn5GXlfDwcCZNMv3QlStXjq+++oro6GiaNm3Ktm3biIuLIz4+3vzkPGPGDFq0aPFYYyQkJNC+fXsqVKgAQJkyZczn3NxMqbOLFy+eRyEICAhg1qxZFseCgoJYsWIFY8eOBWDp0qV07NgRB4fCQy0vXLiAJEmUL1++SDL37NmTzp07A6Y5z507l4MHD9K8eXPmz59P5cqVmTFjhrn9kiVL8PX15dy5cwQGmsphR0REMGHCBADGjx/Pxx9/jIeHB3379gVg4sSJzJ8/n5MnT1KzZs08MsyaNYuqVasyb94887HQ0FDz3+3bt7do/+2331K8eHFOnz5NWFhYkeZ5z3T1MHq9ngULFlC2bFkABg8ebK7E+zCZmZksX76cH374gQqVA0g2ZjJl7oc0qtAIhSSgMipIN3giIVC3UVPe7BGFgMSwUQP5/tv57Nl3mI7BFbGVsnF80DlVraJpnTqs2riBCs1qkmkrsGbFVpxdnKlfqyYOGomgsPKUqXj/Mx363lCiN0SzY9MOukR1wVVvg0ICN0mLE9mk3LW63Ja7UFyyx6iXSJEsfXR+XrGE8mERDB030Xxs6uy5NKseRvylC/iVMZUdKO7ljU6rJenOLXxKFq0Io9rWjn4jxjJ35oe069IdR6e8/kFvRw0w/12yVGkGjX6P6e+N4v0Zs1GqVDg4OiEIAh7FCy8WWBBv9xlAkxatLY716D/E/HeXXu+wb+c2tv65jvBKeRXV/Fi5dDFt3nqbNm92BaD/8LHE7t5OjuZ+pFONOq9ZXPPBx59TL8yfw/tjqN+kOYnXr+FezJMadRugVCrxLuFLhUp5v5v/FZRy8bEeLKw8PtadkReI8PBwi/fe3t7cvn0bgLi4OEqVKmWxhV+rVq3HHmPo0KFMmzaNOnXqMGnSJE6ePFmk6/J7Yo+KimLp0qUA3L59m/Xr19O7d+9H9nXP2bKo/hgProu9vT2Ojo7mdTly5Ag7duzAwcHB/Lqn5DxoJnmwD7lcjru7u1khA/D09DTPIz/u7YwUxMWLF+nSpQtlypTByckJf39/wKT8FZWcnBzUanWe43Z2dmZFBCy/Fw9z6dIl9Ho93gGu3DFmISLg4eiIf1l/jKLaosJuYHAoTjY6BCc5mSpHPDw9SU9KpFhOGg4aLS7JKeYoGYMcWnZ8nd+2bSNJrkcSYMPq9fyvVXMEhZw0e4F0bTazp8zmjTpvUKtsLaqVrsbl85dJT7hDgE7ER8pEQEICUgUHbslMyq/BAEmSM6nkdT6NO3WcQ7F7qBlU0vz6X4MaAFy7ctnczkZtC0BuTk6R1xug7VvdcHFzZ+m8L/I9f3DfHvp1aUuTqiHUKu/LhOEDSEtNITs7b32dJyEkvKLFe6PRyOIvP6VD0zq8VqEMNYNKErt7BzdvXCtyn/GXzlOhoqXiEBZh+T456Q4fjh9B69eqUiekFHVCSpOtyeLmddM4zVr9D21uDq/XqciUscOI3vgnBoPhySb5kqGQiTjY6LC302PjKCI4ydHZq9Hb2SDYCvjUyKF69eu8FnSFIPdkJKxKytPAujPyAqFUWnr4CYJg1sbzi5Z4+GYuk8nytH3YKS4qKorIyEjWr1/Pli1b+Oijj5g9ezZDhgyhMPIzp3Tv3p1x48YRGxtLbGwsfn5+1KtXL5+rLSlXrhyCIBAXF1ekkN3C1kUURVq3bs3MmTPzXOft7V1oHw8eu7eWBT392NraFipj69at8fX1ZfHixfj4+CCKImFhYY/l7Ovh4WH2QXmQ/GTP7/sgSSJ30kw3k1yZKQuIrVGOTJRhFOWID2RRFQAbByXpNqZdLDkGFJKIIleHS1KaOXOqQQ6p9pBpJ1CjdUPEdycTu3EXVUPDOHzgCKOnjUF/91dk9pTZxOyIYfTk0fiXLo23ypGovgNR6LKwwYBBkiEiI1NwIEuyJVs0ZUzNlOzMchkMDyVLE0XqN2nO8PGT866X533FKj3NtG6u7h75LW2BKBQKBo95nw9GDuKtnn0tzt24lsDg7p3o+HYvBo1+DycXV44d3M/kMUMw6Au/Mef3GenzucbWzvL/6rtFX/H9N/MZM3kG5cqHYGtrz6wp49E/rtP4w3r+Q7JMHDmQ1ORkxk6egXcJX1QqG7q3aWb+vfDyKcm6nYfYv2cH+/fuYsaE0Sxf+CXfrl6f5/v4MiOXSagVBgSFhEEuRyco0aMiryuxBEiIyLis9OOaqz+4An5gK2Xjr0vAOyMV/R0lJxI90BpenTV6VliVkZeEkJAQEhISuHHjBj4+PgDExsZatClWzFRJNTExEVdXU6n048eP5+nL19eX/v37079/f8aPH8/ixYsZMmQIKpXp5nDPD+JRuLu706ZNG5YuXUpsbGyRo0Dc3NyIjIzk66+/ZujQoXkUnbS0tCKHFleuXJm1a9fi5+eHQvHvfZ3Dw8OJjo5mypQpec4lJycTFxfHwoULzcrY3r17H3uMSpUqcfr06SeSz2jUcykpDqfSxVAoFZw98he+3r7k6t1Izcwh4fIlqtasg63cgGQnIMoEDMgREM2ZU+UGEbucHARJNCkhDpBpe/+u5iK3oUVkY377bT0Xr17Fr6wfoRH3TVVH9x+lQ6d29GjaAicpm+xsDVeu3cBINW7JXJFEORIC2aKKVNEBezeTcpR0+yZg2rk6+/cpi3kFh0WwbeMf+PiWKvTzvXA2Dk9vH1zdCq6fUxDNWrVh2YK5LJhjqdCePnkco9HAqInTzIr+lj9+s2ijVCoxGvMqsK7uHnfnZeLK5Yvk5uTvj/QgRw/G0qBZS1q1exMwKWMJly9RJiCwyPPxK1OOv44fpXX7t8zH/j557KFx9vPe9E+o16gZADdvXMvjFKy2taVBs5Y0aNaSt3pE8b8G1blw5jTBFSKKLMuLhEyQsFUaEOQSBrkMvUyFAQVZd0PW7yOhRI9K1KM0GhGMpgc8QaslW59N89tHOa+WcV3twTV5SXIEO07blOd0MaAYyIKN+BqvUSrrNupkA6evu5NcUJ0DK2asyshLQpMmTQgKCqJ79+7Mnj2bjIwM3n//fYs2AQEB+Pr6MnnyZKZNm8b58+eZPXu2RZvhw4fTokULAgMDSU1NZfv27QQHBwNQunRpBEHgzz//pGXLltja2j7S/yMqKopWrVphNBrp0aNHkeczb948ateuTfXq1Zk6dSrh4eEYDAa2bt3K/PnziYuLK1I/gwYNYvHixXTu3JkxY8bg4eHBhQsXWLVqFYsXL7bIIfFPGD9+PBUqVGDgwIH0798flUrFjh076NixI25ubri7u7No0SK8vb1JSEhg3Lhxjz1GZGQkUVFRGI3GIsstikaytZlkG3PJFcDRwY52ndoyc8psbBzK4ubuwfzPPkYmE1AqJbLt72VOBRtJi3tmJnY5uXczp0qIAtxxtlRC7hWw06gFmr3VisFvD+bC2Yu06nA/msrJoCKodCl2rt9Mj8a1EASB9z5ZgFGEXFSIBoEkHBERzNV01ba2hFeuxpKv5+BTshRpKcl89cl0i/m92SOKtSu/Y9zgKHr0G4KrmzsJ8ZfY9PsvTJr1hXmdjh2IpdZrjR57ze8xbPwkBr5t6fdTsrQ/BoOBlUsXUb9Jc44d3s/q75datPHxLUW2JosDe3cRGBKG2tYWW1s7qteux6rl3xBeuRqiKDLno8koirCjUKp0GbZt/J3jhw/g5OzCisXzSL5z67GUkc69+jJ17HBCwysRUbU6m3//lfNn/qZEKT9zG18/f/5c+zOh4ZXIysrk82kTUavv7/6t+/lHjKKRChWrYGtrx59rf0KttsW7pG+R5XieCIBaaUCuEDHKZehlSvQo81E8TPWUVJIeldGAYDBtIqmMRmS5OZa7zEYj8lwdJbYfwjUlCRlyFJ4luBnsRYqrPVed3bhkU4oUwZ0ritJccSkNLkBZ8BDv4JdzHbdUDTduOnE+2QXB6iVhwSu5GrZOTsif8VaiXKnE1unRCZeeFJlMxq+//opWq6V69epERUUxfbrlD7dSqWTlypWcOXOGiIgIZs6cybRp0yzaGI1GBg0aRHBwMM2bNycoKMjslFmiRAmmTJnCuHHj8PT0ZPDgR0cGNGnSBG9vbyIjI807NkXB39+fo0eP0rBhQ0aNGkVYWBhNmzYlOjqa+fPnF7kfHx8fYmJiMBqNREZGEhYWxrBhw3B2djY/zT4NAgMD2bJlCydOnKB69erUqlWLdevWoVAokMlkrFq1iiNHjhAWFsaIESP45JNPHnuMli1bolQq2bZtW5HaZ2lSuJh8Bp1k2slSi6AwKhg1YRYVKtdkSM+36NelLTVrVcE/qDwyWwdAwFbKQS6K2OQacEtNRp2rQS83mWTS7e8rIrZaCWeNhF4ukG4vYJBDjXo1cHZx5vKFy7Rs3xJ3vZoyOvAVs5g7eQSuzo7U/l8vWvYaSe36jQgLCyUHG+7gTH5p2aZ8OheDwUCX1xsxc/J4Bo+xVLCLe3mz/NdNGI1GBnRrT/smtZk1eTyOjk7mz1ebm8v2zX/Svkv3x17ze9So8xrVar9m4RdRPrQCoydOZ+m8L2jfpDYbfl3D0HEfWFxXsWoNOr7di7EDe9MgIoBl878EYNQH0/D0LkGvDq8zbkhfevQb/EhTH8A7w8YQHBbBgLc70KdTa9yLFadh5OuPNZfX23ai96ARfDbtA95q0YDrV6/wRscu2Njc90ea8ulXZKan8WaL+rw/rD9devfDzeO+icvRyZlffvyOnu2a06FZXQ7E7ObLpStxcXV7LFmeFWqFAUe1DjsHAwonEJ2UZNvakal0IFtmhx4lICDHgK2UjbMhEzdtBi456bhoNDgnp2OTmokqMxObrEyEnOxHJhIUMaK7lYDbzoME/LqDhsvW0n/pNww4/gtvXd1M/az9+BqvIEhGkmTFOGxfkS0l6/BX1QrIm7lRtkEmdSolUK1kIkr5f8MfpzAE6XFSN2IKP/zkk084cuQIiYmJj0zVfS+r58PExcUVOZoiIyMDZ2dn0tPTcXrohp+bm8vly5fx9/e3cP77r6SDf95kZ2fj4+PDkiVLaNeu3fMW56Vn3rx5rFu3js2bNxfYRpJEbqRcIk0yhbHKkVAZlQhGJZni/ZuFk42WLBtbsjRamgaX491pH9K7Y3sko4Tb3YRleoXJHJOlfmAnRCuhMkCWrZBvtlSZBB4GNc6SBhUmRcgoCaTJHNAKaoyiRK6oIIdH33yfBquWLWbHlo0s/PGXZzLey0i/Lm1xL1acGV8sfN6i/GNUciMqpRFJLqCTKdALqnwT4skwopJ0qEQDCoOIKArIJBGbHC2i+Pg3f73RyI2btzi6cinZKUmPvgCQo0QfEsjtEs7ccXMg3qE4lxV+aAVLR3W5ZDCbdlRJRv5O9CA1266AXv8dFDKBwY0CGN6k6LtwRaGw+7fF+I/bsUajISIigl69euUJZyyMs2fPWghyz7/h38LJo/h/Ujl4VoiiyM2bN5k9ezbOzs688cYbz1ukV4J33nmH1NRUMjMz800JbzDouJp6gWzB9AxhKwqIkozsBwrbJZw5wpmEy5SvXJOsjHQWzfoImSTRukFDs3OqTgFpDykhdloJ5V0lJCfvbjZKUYaHQYGzpEEumBwq9ZKcVLkjRkmJUYIMoy0Gno5prKgolErGf5jXgfm/Sk5ONqtXLKV2/UbI5XI2rlvL/j07Wfjjr89btMdGIRNRKw1ICgG9TI5OUKFFxcPZZAREbCQdStGAwihi0pEl1DlaxIcrSD8r4QEjemSn/8brNHgBFRBQeflyM8ibZHc7rjq5cdGmNGmCG/EKP+Jd/EymnQAoLt7CLzsRl1QN1246czHF+ZU27Ty2MtKiRYvHzm0B+eeusPLykpCQgL+/PyVLlmTZsmUWzoUJCQmEhBScIOn06dOUKlW0XBD/NRQKRR5foHvk5GZwNfMqeuGuTdyoAKOabNGUH8NWrkeyk6GxsWXJl18Tf2E4KqWSChUqsPm7FQQCOrlIqoPJ/+MeDyoh2fkoIfYGJa6ihJOUjSBgrqCbJnMEo4BohGTJvsB07f82Hbr2tHg/sFsHjh7cn2/bqMEjiBoy6hlI9fwQENi7YyuLv/wUnU6HX9kAZi/6jpr1Gjxv0QrlwcgWvdykeOQX2SIgokKPUtSjNIpgMIWL22r1SHrd3eBxEy9e0K2E7mYCbjcTcAPKAc3VLqRWKkuKux3XXZy5bFeC60IJbss8ue3gCQ6AL9hLmfhrr+KVkU72TRUnbntgNL46bp/PbCaVKlUiNzeXkJAQJkyYkK/pxsrLg5+fX4E2VR8fn3yjeB48b+XxSM+8xQ3tHURBQCFJyEQVWr0repQoBRGVnZEsuR0gUD4igj92bkGtMZidU3UKuPWQEmKfK6EwFqyEuOrVOEta7LmbU0OATGzJlNuDQUQyQHI+uUGeN5NmfVlgindnF9dnLM2zR21ry6KVvz1vMQrFHNnyQEhtQZEtKnR3I1tEBKOEKIFabwCt9gVXPIqGLjcN+9gj2AO+QF3BBm1YIHe8Hbnt5mgy7cj90AiO/KUO4S81UBwUkp5ShmuUzLqDIknkrxvFyMjNm6foZeFfV0a8vb1ZtGgRVapUQavVsmLFCho3bszOnTt57bXX8r1Gq9WifSCtc8Z/pADdq4JCoSAgIOB5i/FKIEkSt1PjSRKzAQEbESRJgVZfDAlwstWSqbRHd3f7Vi3lmDOnOmWkoVXCTVfItnlICREhU22qovsggtkfJAcbTP93ogTpMgdyZLaIRhGdXkYWRa8q/Kzx9LYquy8SgmByML0X2aKTKTGgKjikVjKF1MoMEqIkYGM0IuTmIkniAy1fXQySFvmpU3idMpl2IpChLOlHYrliJLvZk+DkziVVadIFFy4p/bl0L+dJOfA03qR0TiIuKTnE33DhSrrzc9qvfHz+dWUkKCiIoKAg8/tatWpx9epVPv300wKVkY8++ijffA5WrPzXuJlyiRTJ9JRva5QhlwTSDV44q7RkqdWk31UKlOhwzskBo4RrSkqBSohcNPmJPKyEyEWBYkYVzqIGhWBSQgySjDSZAzqZDUZRQqO3QYc1mZOVwlErDCiUIqJcZnIwRUk2qjztFGbFw4DcKCGKoBRFFDm5iJLlPserrHw8CgkR3bVLuF+7hDsQCNjYuZFc0Y8UdweuuzhzybYkN2QluCX34paDl8m0UwocpAz8tdfwTE8n45aaUzfdkaRn69NVVJ6LwalmzZp8//33BZ4fP348I0eONL/PyMjA1/fliG+3YuVpoclOJfWuImJnVCAzKskUXbFz0Jv8NTBlTnXWZSPpRFxT09ApRBJdIecBJcQhV0JWgBKiNipwN8pwkjTIBC0IoJMUpModkUQ5RhFSJTuzc6wVKw+jkhlR2oro5Ep0KMnJR/GQYzDl8hANyA0ikggySUKVnYsoWSZZfFnNLc8SbXYKDvtS7ukc1BPU5IaX446XI7fcHIm39yJeXposwYlT6hBOqQFPUFbQmUw7mUkISRJ/JXqQ9YKYdp6LMnLs2DGLVN0PY2Njg41NPkZsK1b+I4iikRuaG0iCKWIGowqDzAGZgwwNpmyOjsYslDlGXNIzMMj03HSFHNUDSkiOhEwy+YSID+3VOhlscBENOHI3K6gA2diQLncwOQTeTVJmxUph2Cv1ZNuq0T4QQWURUmsUkYwgSBI2ubrnGtnyKmOQclGcOIX3CfAGKiNHVtqfm2XcSXZzIMHJnYsqPzIFJy4qy3DRrQy4AYHgbUykdHYijilacnLsTQefA4+tjGRlZXHhwgXz+8uXL3P8+HHc3NwoVaoU48eP5/r163z33XcAzJkzBz8/P0JDQ9HpdHz//fesXbvWXK7eihUrebmZehmdYMohIkpyFDZ2aJR2SHcTN7nmaFDojKhy0rjjXHQlxF2vxlnKxRZTqXhJgkzBjiy5HZJBxKgXSHsBnVKtvHg42urIUNoDAkp0OOhyTCG1Eqi1eiTDix7Z8uoiYkS8cgGPKxfwAIKANxyKczPclzQPe665uHBJXZKbMh8S5d4kOnqDIzjf3AHUfy4yP7YycvjwYYtImHvmlB49erBs2TISExMtKpXqdDpGjx7N9evXsbW1JTQ0lPXr19OyZcunIL4VK68eWdkppN5NaKYyqDDYupMumBKIqaUcHLJ0qHLSybAzkut2X9twzJEQJFMGVekBJeR+krJsVGanVFOSslyZKUlZtl6Jlhdju9bKi40ggK29gQyZqVSEnZSNTCuiyswyt7EqHi8eOVm3cd53G2egNNBQZo8mIoAkTwduuTpy2d4Lp7RH10/6t3hsQ3CDBg2QJCnPa9myZQAsW7aMnTt3mtuPHTuWCxcukJOTQ0pKCnv27HkmioghLRfd9axn9jKk5R9K+G8jCAK//fbbcxn7WfC85rdz504EQSAtLe2p9BcfH48gCIWGPAPExZ3G3y8QTZYGW1Hgp1+2UKV0WUDCRZ+JrUZDjiyF2y5GclWm6JfJA95jZNchZKkFMuzuKyJKUYa33oZAnYFiUgYqDOglOXdkzpSu2ZovF31PqsGWVNHxmSkiLWqF8/03RU/3XxRG9evBd4u+fqp9PorrVxOI8HXlzN3Cfodi9xLh60pGenqB16z7+UfqhpYucp/5UZRx/k1UMiMKRwmNzA6QcDZkoMo1YJ/5fOSx8uToRA3KYyfw3hRDxZWbaL/ke153K/j7+W/z6mRMeQBDWi43Pz0Mhmfog60Q8BpdFYVL0X7Ue/bsSVpa2gulSNxL3Z+amvpMEtTdvHmT6dOns379eq5fv07x4sWpWLEiw4cPp3Hjxv/6+IVRu3ZtEhMTcXZ2fqbjjh47krf6dMbJ3g4ZzugFJQJQXJNOlpCBTmVy9hMkk2MqwOiPxyMimZUQe6MSV6OEo5SNTMjNJ0mZqVhdtmSD8RlnS/036Dd8DFGd3qBd5244OBbNxLT6+6X8/N23JMRfRqlU4ONbmuZvtKP3wOFPJEPFKtWJPnIGx3+xPtWzHCc/7vmHiMiRYcRFm4VCZ0AoIKeLlZcMQUJ4ivW8HpdXUhkRNYZnq4gAGCTTuC7PdtjngU6nQ6XK6zH/OMTHx1OnTh1cXFyYNWsW4eHh6PV6Nm/ezKBBgzhz5sxTkvbJUKlUeHl5PdMxz5w7xZbN0WyaPgYbo5oMu7uKkCSRojTVkhEkkzlGEkzRMZIADrYmR1NTkjKdRZKyLNRkyh2QDCKSQXghk5T9UwKDw/DxLcWGX1fTqXufR7b/ZdUKPp06gXenfkzVGnXQ6bScj/ubi+fPPrEMSpUKj+KeT3z9izbOwzzsH2Kbo0OVnY0kWg0yVp4O1ni9F4QGDRowdOhQxo4di5ubG15eXkyePNmizfnz53nttddQq9WEhISwdetWi/P5mRaOHz+OIAjEx8cDcOXKFVq3bo2rqyv29vaEhoayYcMG4uPjzb5Arq6uCIJAz549zbINHjyYkSNH4uHhQdOmTenduzetWrWyGN9gMODl5cWSJUseOd+BAwciCAIHDx6kQ4cOBAYGEhoaysiRI9m/3zKVd1JSEm3btsXOzo5y5crx+++/W5w/ffo0LVu2xMHBAU9PT7p160ZS0v1CVg0aNGDIkCEMHz4cV1dXPD09WbRoERqNhl69euHo6EjZsmXZuHFjoWsZExND/fr1sbOzw9XVlcjISFJTTUrCpk2bqFu3Li4uLri7u9OqVSsuXrz4yHW4h2g0sHzVCoJCg/D38ibX1h0JGUpJD0jsi46hTc3WVPOrRuee/bmUnoR0Ny38h4MmMu7tIfhIGdiTS0amho6DJ2IXUIeylerz1bxv+V+Hrrw7+SOLMXNzspk4ajC1yvsSWSOMNT8sK1C+1d8vpUnVEMSHbj5De3VmwogBAFyNv8yw3l1oWCmQmkEl6fJ6I/bv2Vlgn/mZJTLS04nwdeVQ7F7zsYvnzjCoe0dqBpWkYaVA3hvWj9SUZIu+GjRtwcZ1RXOK3711E81ataHdW90o5V+GgKBgWrTpYFExWBRFFsyZRdNqoVQt60mnyHrE7Ci4mnJ+5pN1P/9IZI0wapTzYXjU26SlphRJvssXztG9TTOqBXjRtnEti7XIb5xtG36nbeNaVC3rSYta4Sxf+JVFfy1qhbPoi095f3h/agaVpHnNCuzYvIGU5CSG9e5CzaCStG9Sm79PHDNfk5aawruD+tC0Wgg1An1o9lpDNq5ZjZ2UjU2uDtusdP5Yv4GGLVvhH1qBkKrV6dS9B9nZJp+DffsP0KJde8pUiCCoUhXe6PQWV69fL9L8rfw3sSojLxDLly/H3t6eAwcOMGvWLKZOnWpWOERRpF27dsjlcvbv38+CBQt49913H3uMQYMGodVq2b17N6dOnWLmzJk4ODjg6+trjnA6e/YsiYmJfPHFFxayKRQKYmJiWLhwIVFRUWzatInExERzmw0bNpCVlUWnTp0KlSElJYVNmzYxaNAg7O3t85x/2EQ0ZcoUOnXqxMmTJ2nZsiVdu3YlJcX0w56YmEj9+vWpWLEihw8fZtOmTdy6dSuPDMuXL8fDw4ODBw8yZMgQBgwYQMeOHalduzZHjx4lMjKSbt26mX9MH+b48eM0btyY0NBQYmNj2bt3L61bt8ZoNJlNNBoNI0eO5NChQ0RHRyOTyWjbtm2em3dB3Ei9zMH9R6gQEQoyV3SCDTKMqLW55Obk8N1XS5m24COW/b6cxOuJzJ70KV56NeW0RtSSHjkSRklGkuDEgKnz2H/oOF8t+Z55P/zG/oNHiPvrZJ4xv1v0NaHhFflp4y46de/D9PdGcfnCuXzla/Z6G9JSkzm0b4/5WEZaGvt2b6dlm44AZGdnUbdRUxb9+Cs/bdpF7fqNGNqrM4nXrxZpDfLjzq2b9OnYiqCQCqxcv515K9aQfOcOYwb0smgXVrEyf504ik77cAm1vLgXL86pY4e5cS2hwDY/fLuAFYu+YuSEqazZspda9RsxtE8XrlwumoJ58thhJo0eTKfuffhp826q1a7H4rmfFunaz6dPpPs7g/lp4y4qVqnOsN5dClRkTp88zpgBvWjeuh1rtsbQf8Q45n06g3U//2jR7vtv5lGxag1+2rSLeo2a8f7w/kwY3p/X23Vi1cad+PqVYcKIAeYSD9rcXCpEhDN/9U+siT1E+569mPBOFH/vO4B9Zjq3bt9mwIiRvNWhPbs3b2TtDyto2awZkiRhMBjoNWAgtapXZ/uff/DH6p94+61OCMLLkgvUyvPglTTTvKyEh4czadIkAMqVK8dXX31FdHQ0TZs2Zdu2bcTFxREfH0/JkiUBmDFjxmMXLUxISKB9+/ZUqFABgDJlypjPubmZys/nV9QwICCAWbNmWRwLCgpixYoVjB07FoClS5fSsWNHHBwcCpXhwoULSJJE+fLliyRzz5496dy5M2Ca89y5czl48CDNmzdn/vz5VK5cmRkzZpjbL1myBF9fX86dO0dgoClmPiIiggkTJgCmpHoff/wxHh4e9O3bF4CJEycyf/58Tp48Sc2aNfPIMGvWLKpWrcq8efPMx0JDQ81/P1zB+ttvv6V48eKcPn2asLCwQueXkZVEOjquJ1wnIiycTJXJlOKqzSJboUWvN/DeZxMp5V8KtVHBgB7d+HTOV7hLGSCAiIAWJXcEN9Izsvh59Ro+nruYqnUbATB19lc0qZq3cGHdRk15s0cUAL0HDuf7b+ZzKHYv/gF58ww4u7pSp35jNvy2hhp1TaF/W9b/hrOLq/l9UEgFgkIqmK8ZPHYC0ZvXs3PrRjr3fKfQNSiIn1csoXxYBEPHTTQfmzp7Ls2qhxF/6QJ+ZUxlB4p7eaPTakm6cwufkoUXYew//F1GvtOdFrUiKF0mgIjK1ajbqClNX/8fsrs28+ULv6LXgGG0+J/pcx3x3hQO7dvLD9/M573pj1Yqfvx2AbXrN6LPoBEA+JUJ4MThA+zbFf3Ia9/q2ZcmLU1VsN+fMZuYndv4ddUKeg0YlqftisVfU71OffoNH2Me59L5MyxbOJf/depible3UVM6vm1S4PoNH8vPK5YQGlGZZq3aANB74DC6/a8ZyXdu41HckzKlitFt9Eizf8ignl05vGkjm9f+Qs3x47h1+w4Gg4GWkc3wLVECgOC7mbZT09LIyMykScOG+JU2fRaB1vIQVh6BdWfkBSI8PNzivbe3N7dv3wYgLi6OUqVKmRURMKXWf1yGDh3KtGnTqFOnDpMmTeLkybxPzPlRtWrVPMeioqJYunQpALdv32b9+vX07t37kX3de/oq6pPSg+tib2+Po6OjeV2OHDnCjh07cHBwML/uKTkPmkke7EMul+Pu7m5WyAA8PT3N88iPezsjBXHx4kW6dOlCmTJlcHJywt/fH8AizD0/jEYDN3NuAaDL1SI4ugECdmI2WWIqtjoJW1tbKviWo5ROTlljNmU9HbmdlEI2KhJl7mhRIkkCt0VHTl5JwqDXE1axsnkMRydn/MrmvRkEBt9XpgRBwKNYcVKSk/K0u0fLth2J3vi7efdhw6+rad7atFsHkJ2t4fPpE2nbqCZ1Q0tTM6gk8RfOcfP6tULXoDDiTh3nUOweagaVNL/+16AGANeuXDa3s1GbQp9zc3Ie2WcxTy9WrNvCmq0xdOn1DgaDng9GDGTA2x0QRZGszAzu3EqkYlVLpbRS1RpcKmDn6GEuXThHeJXqFsciHnpfEBGVq5n/VigUhIRX4tL5/Me9dOEclarVsDhWsWpNEi5fNO/ageVn7V6sOADlyt9XUN08TMdSku/gaKsjXWXDwk9m06l2NV7zK015vwB27d7N9RumndDQ4PLUq12LRi1b0XfwUL5f9RNpd01Hri4uvNm+HV169aZ7334sXracWwX8X1mxcg+rMvICoVRa1v0QBMG8zZ9fhdyHb+b3nuoebKvXW2Y8jIqK4tKlS3Tr1o1Tp05RtWpV5s6d+0jZ8jOndO/enUuXLhEbG8v333+Pn58f9erVe2Rf5cqVQxAE4uLiHtkWCl8XURRp3bo1x48ft3jd868prI8Hj91by4LMKra2toXK2Lp1a5KTk1m8eDEHDhzgwIEDgMnZtzASUy+hF0AhSbi6FyMtLQM5Bmw16ShECUGmRKVUUFLMxJEcJAlyBDWSJJEqOaDTy8iVVOjubnLe++gf/m7k9/1RKPKuSWEOifWbNEcUJXZv38LNG9c4ejCW19vdN4d9Pm0i2zb8weAxE1i6ZgM/b9pNufIheb6D95DJhDyyGQwPZegUReo3ac7Pm3ZbvP7YfYTKNWqb26WnmXx3XN09CpT/YcqVD+Gtnn35aO5iFvz4C/v37ODw/pgH1sOyvYRUdFNDARWtn5SCxpUkKY+gj/qs7/WV3zGlWk+G0oHv5n7JD/Pm8s7Agaz5bhnbfl9Hg3p10elN32e5XM5Py5fxw5JvCAwoy5IV31O3aSQJV00muTkzP+aP1T9TtXIlfl+/gTpNIzly7PiTL4CVVx6rMvKSEBISQkJCAjdu3DAfi42NtWhTrFgxAAs/jvzyWvj6+tK/f39++eUXRo0axeLFiwHMETIPPlEVhru7O23atGHp0qUsXbqUXr16PfoiTOagyMhIvv76azQaTZ7zj5Pbo3Llyvz999/4+fkREBBg8cpPgXpSwsPDiY7Of4s9OTmZuLg4JkyYQOPGjQkODjY7thZGRtZt0jHdfG1EO8pFVObS2TO45WSRocpFrRdwxOTAapQEkgVHEuXFyL5b7TRZciZdsDSJ+Zb2Q6FU8tfxo+ZjWZkZJFy+9IQzv4/a1pbGzVux4dfVbFy3ltJlAggJr2g+f/RgLG907ELjFq0oFxyKR/HihfpluLqZFIek2zfNx84+lGMjOCyCi+fO4ONbilL+ZSxednb3P98LZ+Pw9PbB1c39ieZWtpxpNy0nW4ODoxPFPL05dsjSkfr44YP5mrDyo0y5IE4dPWRx7ORD7wvi5LHD5r8NBgNxp47jH1CuALmDOHbQUs4TRw5Q2r+seceqKKhkpv/5XEENSPy1bzfNIpvRNbIZocHBlC7ly+X4KxbXCIJA9SpVGDN8GFt//w2VUsmGLfed6iuEhjB0QH/+WP0T5cuV49c//iiyPFb+e1iVkZeEJk2aEBQURPfu3Tlx4gR79uzh/ffft2gTEBCAr68vkydP5ty5c6xfv57Zs2dbtBk+fDibN2/m8uXLHD16lO3btxMcHAxA6dKlEQSBP//8kzt37pCVlcWjiIqKYvny5cTFxdGjR48iz2fevHkYjUaqV6/O2rVrOX/+PHFxcXz55ZePZX4aNGgQKSkpdO7cmYMHD3Lp0iW2bNlC7969i6xUFYXx48dz6NAhBg4cyMmTJzlz5gzz588nKSkJV1dX3N3dWbRoERcuXGD79u0WhR7zw2jUczPnDgB2RhmZtsWo3bgJpw7uJ1lKwkUj4aSQo8AICNwW3MkV1aQY7MkSC96lsXdw5I0Onfls+kQO7tvDhbNxTBo9BJlMhvAUiom3bNuRPdu38NtPP/B6W0snYV+/MkRv+oMzf5/i7OlTjBvcF1EseIdAbWtLeOVqLPl6DhfPneHI/hi++mS6RZs3e0SRnpbKuMFRnDp2hGtX4tm3azsTRw22+HyPHYil1muNijSHaeNHsnDOJxw7tJ8b1xI4efQQ74/oj6u7h9mU0rP/EJbO/4JNv/9C/MXzzPloMmdPn6Jrn/5FGqNL737E7Ixm6fwviL90gZXLFhFTBH8RgJ+Wf0P0xj+5fOEcMyaMJiM9nTZvvp1v2+7vDOZgzC4WzvmE+EsX+H31SlYt+4Ye/YYUaSwAB5UOvZ1pl0SGiJs2kzIlS7F35y4OHT3KuQsXGDPhA27fuWO+5ujxE3wxbz7HT53i2o0bbNi8heSUFMoFlCXh6lWmf/Iph48e4+r16+zcs5dL8fGUK1u2yDJZ+e9hVUZeEmQyGb/++itarZbq1asTFRXF9OmWP9xKpZKVK1dy5swZIiIimDlzJtOmTbNoYzQaGTRoEMHBwTRv3pygoCCzU2aJEiWYMmUK48aNw9PTk8GDBz9SriZNmuDt7U1kZCQ+Pj5Fno+/vz9Hjx6lYcOGjBo1irCwMJo2bUp0dDTz5xc9Q6ePjw8xMTEYjUYiIyMJCwtj2LBhODs7m81WT4PAwEC2bNnCiRMnqF69OrVq1WLdunUoFApkMhmrVq3iyJEjhIWFMWLECD755JNC+7vxgHlGr/RARE7DZg1RyuUc3RaL0sYOJ7IRAQmBTKOKZMkBsQgKxeiJ04ioXI0hPd+iX5e2VKxaA/+AQFTqf158snqd13B2diX+4nlatulgcW7MpBk4ObvQo00kQ3t1pnb9RgSHhRfQk4kpn87FYDDQ5fVGzJw83iK8FkyOqct/3YTRaGRAt/a0b1KbWZPH4+joZP58tbm5bN/8J+27dC/SHGrWa8CpY4cY078Xb9Svxsh3emBjo2bxyt9wcTU5cXfp3Y9u7wxm9ocf0L5pHfbtjObLb3+ktH/RbqjhlasxadaXrFy6iDcjXyN21w76DhldpGuHjZvE0vlf0DGyHscO7mfOtz8UuOMTXCGCT+YvZdMfv9C+SW3mzZ7BwFHjLZxXC8PRVkem2h7xbvI7O60WVaaGEQP6USE0hM69+tC+azeKFytG86ZNzNc5ONiz/9Bh3u7Tl7pNmjHz8zlMGj+OxvXrY2try4VLl4gaPIS6TZoxZsIH9Hq7K906v1Ukmaz8NxGk/AyMLxgZGRk4OzuTnp6O00OZB3Nzc7l8+TL+/v6o1abspy9DBtZXhezsbHx8fFiyZAnt2rV73uK8FKRn3uKa1uQoam+0I93WEwGJYlmpzP9uIbs37WT7D3ORCRK3Za7oRTnJ4pNX0M3O1tCsWggjP5hGu7e6Pa1pvDCsWraYHVs2svDHX563KC8NMiRsHIxky+wAsJc0CFrJmta9EPRGIzdu3uLoyqVkpxTs6P2yIpPLqdH2TWp3LJoiW1QKu38/yCsZ2qtwUeM1uqopI+ozQmav+E8pIqIocvPmTWbPno2zszNvvPHG8xbppcBo1HEzNwkEk3kmw9bk5+OizyJFmU6fDh2Qp6aj0WQhOXigEyHlMRWRuL9OEn/hHGEVq5CVmcHCOaaQ7IbNXs3ilAqlkvEfznzeYrw02MiNGO3lZGOqL+NiyAS9hE0RzLJWrPxbvJLKCJgUkv9CavbnRUJCAv7+/pQsWZJly5ahUCgszoWE5M1rcY/Tp09TqlThuSBeVW6kXsZw1zyjVRVHQoZaykWnS8FJL+FoZ8ukYb3QS3KSsSVVfLLaOMsXfUX8xQsolUpCwiuydM2GJ3bufNHp0LWnxfuB3Tpw9CGnzntEDR5B1JBRz0CqFxMHlQ6N2vZ+fZlcDQqdDqEIyeKsWPk3eWWVESv/Ln5+fvmGEILJj6Ow6rSP41vyKpGWeYsMTLt1KsmRDLktMow4ZWWSJRNRKe1wkdKRJEiSu5JjkPMkhsbgsHBWbdj5VGV/mZg060u0BRRvc3ZxfcbSvDg42OrIvFtfRoUOmxwdKo0GSbLWl7Hy/LEqI1aeOgqFggBrxkULDAYtt3LvgCBgZ5STYWsKa3XVZpGqysJZq8RDMGVUTZI7YxQlsrB7zlK/nHh6/zeV3YK45x+SKTOFgd/zD7HLSn8iZdeKlX8DqzJixcozwGSeEVBKEjk2xQEBezEbjZiKc46Em8pUXyYLNTpRIEV89arrWnn22MgNGO0VFv4hgl5CZfUPsfKCYVVGrFj5l0nNSCRTMOXEUEhO5MjUyDGgzspAL0jY2thgK2VhkGRkyuxJNRZe28eKlaLwsH+Ic64GpVaHoLP6h1h58bAqI1as/IsYDFpua5NBELA3ykm39QAk3LOzSFfl4GK0xU0yhVPekbuiM8gRrel/rPxDLP1DtNjk6FFpNGD1D7HygmJVRqxY+Re5bjbPQJaNFwBORg1pslSctHI8ZJkgQLLghFGSSOfppbC38t9DJkjY2D/gHyJqEHQidlkZz1kyK1YKx6qMWLHyL5GScYOsu+YZOU4YZSqU6JBlp+NglHBRiCgQyUaFVpSRIj1ZGK8VK5CPf4g+E8Fg9Q+x8nLwyu4Hp6WlcePGjWf2epzibk8TQRD47bffnsvYz4LnNb+dO3ciCMITf656fS63dSkA2BvlnL2ZRUVne27sP4BOrsNWqcYeLUZJRrrgROpdh9X4i+dpVDkITVYmAOt+/pG6oaULHeuDEQMZ3qfrY8nXolY4339T9LT7T4t/Y9xR/Xrw3aKvn2qfj+L61QQifF05c7ew36HYvUT4upKRXnAG06J8lk+Kg0qHzt4GPSpkGHHNzUSVrcujiPy09heCKlX5V2SwYuWf8ErujKSlpfHVV19hMDy7DKwKhYLBgwfj4uJSpPY9e/YkLS3thVIkdu7cScOGDUlNTS3yPP4JN2/eZPr06axfv57r169TvHhxKlasyPDhw2ncuPG/Pn5h1K5dm8TERJydn2y34kbaZYyCgEqCTBsf4DoA6Yos7EU17pIpjPeO3BWjAYyCqTbI3FnTeLN7FPYORc+6OnbKR0+7Yv1LRb/hY4jq9AbtOnfDwbFoUUirv1/Kz999S0L8ZZRKBT6+pWn+Rjt6Dxz+RDJUrFKd6CNncCwk3fW/hYOdjkzFw/4hWfynvxRWXjpeSWUkOzv7mSoiYCr1nZ2d/Uxu4s8bnU6HSqX6R33Ex8dTp04dXFxcmDVrFuHh4ej1ejZv3sygQYM4c+bMU5L2yVCpVHh5eT3Rtcnp18kSTI6CAi6IMgU2kimCwUEHxdAgCJAqOKCXJFIx3cBuJV5n59aNjJ0847HGc3T6b5t3AoPD8PEtxYZfV9Ope59Htv9l1Qo+nTqBd6d+TNUaddDptJyP+5uL588+sQxKlQqP4p5PfP2TkK9/iN7qH2Ll5eSVNdO8bDRo0IChQ4cyduxY3Nzc8PLyYvLkyRZtzp8/z2uvvYZarSYkJIStW7danM/PtHD8+HEEQSA+Ph6AK1eu0Lp1a1xdXbG3tyc0NJQNGzYQHx9Pw4YNAXB1dUUQBHr27GmWbfDgwYwcORIPDw+aNm1K7969adWqlcX4BoMBLy8vlixZ8sj5Dhw4EEEQOHjwIB06dCAwMJDQ0FBGjhzJ/v2WqbyTkpJo27YtdnZ2lCtXjt9//93i/OnTp2nZsiUODg54enrSrVs3kpLuF7Jq0KABQ4YMYfjw4bi6uuLp6cmiRYvQaDT06tULR0dHypYty8aNGwtdy5iYGOrXr4+dnR2urq5ERkaSmpoKwKZNm6hbty4uLi6U9Q9lYJeBJF28gcbGFRlGHDUaABxkAkqM5KIkV1SSaryvSGz+4zeCgsPw9C6RZ71idkbTpmENagaVZMDbHbhz66b53MNmGk1WJuOH9KVGYAkaVynPisXz6NOxFbMmj7foMzcnm4mjBlOrvC+RNcJY88OyAj+v1d8vpUnVEETRMhpjaK/OTBgxAICr8ZcZ1rsLDSsFUjOoJF1eb8T+PTsL7PNhUwdARno6Eb6uHIrdaz528dwZBnXvSM2gkjSsFMh7w/qRmpJs0VeDpi3YuG5tgWM9yO6tm2jWqg3t3upGKf8yBAQF06JNB4uKwaIosmDOLJpWC6VqWU86RdYjZse2AvvMz0yz7ucfiawRRo1yPgyPepu01JRHynYr8TpjB/amXpg/NQJL0LllQ04eO2w+//N33/J6nUpULVOc1g2q8/PPv2HyD8lAlatnxedzaNiyFWUqRFCl7muMmzgZzd3vnhUrLzJWZeQFYvny5djb23PgwAFmzZrF1KlTzQqHKIq0a9cOuVzO/v37WbBgAe++++5jjzFo0CC0Wi27d+/m1KlTzJw5EwcHB3x9fVm71vRjfvbsWRITE/niiy8sZFMoFMTExLBw4UKioqLYtGkTiYmJ5jYbNmwgKyuLTp06FSpDSkoKmzZtYtCgQdjb540eeXh3acqUKXTq1ImTJ0/SsmVLunbtSkqK6Yc9MTGR+vXrU7FiRQ4fPsymTZu4detWHhmWL1+Oh4cHBw8eZMiQIQwYMICOHTtSu3Ztjh49SmRkJN26dSM7OztfmY8fP07jxo0JDQ0lNjaWvXv30rp1a4xGk4OqRqNhxIgR/Lp5Jd+u/RaFTEbf3iMQRRE3bRaZStMNwR4doiSQKjiTLlpmWD16YB8h4RXzjJ2Tk8N3i75i+pwFLF2znps3rvHZtA8KXN9Pp07g+OEDfLnkRxb88AtHD8YS99fJPO2+W/Q1oeEV+WnjLjp178P090Zx+cK5fPts9nob0lKTObRvj/lYRloa+3Zvp2WbjgBkZ2dRt1FTFv34Kz9t2kXt+o0Y2qszidevFijro7hz6yZ9OrYiKKQCK9dvZ96KNSTfucOYAb0s2oVVrMxfJ46iK0KNFffixTl17DA3riUU2OaHbxewYtFXjJwwlTVb9lKrfiOG9unClcsXiyT3yWOHmTR6MJ269+GnzbupVrsei+d+Wug12ZosendoxZ1bN/liyY+s3ryHngOGIt1VAKM3/snMyePpO7A/a/fvp32vPkwa2J+4bZtM/iEaDTKZjGkfTGDnhj/54pOZ7N0fy4czPymSzFasPE9eSTPNy0p4eDiTJk0CoFy5cnz11VdER0fTtGlTtm3bRlxcHPHx8ZQsWRKAGTNm0KJFi8caIyEhgfbt21OhQgUAypQpYz7n5uYGQPHixfMoBAEBAcyaNcviWFBQECtWrGDs2LEALF26lI4dO+LgUHjSrgsXLiBJEuXLly+SzD179qRz586Aac5z587l4MGDNG/enPnz51O5cmVmzLhv2liyZAm+vr6cO3eOwMBAACIiIpgwYQIA48eP5+OPP8bDw4O+ffsCMHHiRObPn8/JkyepWbNmHhlmzZpF1apVmTdvnvlYaGio+e/27duTlHaNW4Z0PIEZc76kZnA4iaePYVfWHTuj0tz2jtwFUQSdYGnqunEtgeAKFfOMbdDrmTDjM3z9/AF4q0cUC7/I/wajycrk9zUr+XjuYmrUrQ/A1Nlf0aRq3sKFdRs15c0eUQD0Hjic77+Zz6HYvfgHBOZp6+zqSp36jdnw2xpzv1vW/4azi6v5fVBIBYJCKpivGTx2AtGb17Nz60Y693wnX3kfxc8rllA+LIKh4yaaj02dPZdm1cOIv3QBvzKmsgPFvbzRabUk3bmFT8nCizD2H/4uI9/pTotaEZQuE0BE5WrUbdSUpq//D5nM9Hy2fOFX9BowjBb/aw/AiPemcGjfXn74Zj7vTS9cqQD48dsF1K7fiD6DRgDgVyaAE4cPsG9XdIHXbPhtDakpyfz453acXU01dEr53////G7RXNp3fpP/DRgMCPQZ7E/c/li+mTuXBt8sBuCdXj3N7Uv5+vLu8OG8O2kSH0+d/EiZrVh5nlh3Rl4gwsPDLd57e3tz+/ZtAOLi4ihVqpRZEQGoVavWY48xdOhQpk2bRp06dZg0aRInT+Z9Ys6PqlWr5jkWFRXF0qVLAbh9+zbr16+nd+/ej+zrXoE9QRCKNPaD62Jvb4+jo6N5XY4cOcKOHTtwcHAwv+4pORcvXsy3D7lcjru7u1khA/D09DTPIz/u7YwURFzc3/Ts8w7Nqzanhn8NGlY1fTZJF86h1km4YXpiz8QWvQjJYl4H1dzcXGzUNnmOq23tzIoIgEdxL1KS7uQrx7WEeAx6PWEVK5uPOTo541c2b62gwOD7ypQgCHgUK05KclKedvdo2bYj0Rt/N+8+bPh1Nc1bm3brALKzNXw+fSJtG9WkbmhpagaVJP7COW5ev1Zgn48i7tRxDsXuoWZQSfPrfw1qmOZ65bK5nY3aFoDcnJxH9lnM04sV67awZmsMXXq9g8Gg54MRAxnwdgdEUSQrM4M7txKpWNVSKa1UtQaXCtg5ephLF84RXqW6xbGIh94/zNm/T1E+tIJZEXkQuSBx+cI5QmvVw1RKQINKq6dmRAXOP/A9j4ndz5s9elKpTl0CIioxdMxYUlPTCtzxs2LlRcG6M/ICoVQqLd4LgmC20edXIffhm/m9p7oH2+r1eos2UVFRREZGsn79erZs2cJHH33E7NmzGTJkSKGy5WdO6d69O+PGjSM2NpbY2Fj8/PyoV69eof2AaddHEATi4uJo06bNI9sXti6iKNK6dWtmzpyZ5zpvb+9C+3jw2L21fNgn4h62trYFyidJEm+0eYPiPl5Mmz0ZJ98IREmiQ83qZBmzcZErSMVkzslFSYrokm8/rm5uZOQTSqxUWv6bCoJQYMXke4cf/m7k116hyLsmUgHzB6jfpDlTRInd27cQFlGJowdjGT1xuvn859Mmsm/XdkZO+JBSfv7YqG0Z3b9Hnu/gPWQyIY9sBoNlW1EUqd+kOcPHT85zvYfnfYfR9DST746ru0eB8j9MufIhlCsfwls9+3L0YCy92rfk8P4YQipEAPCwriwhFVmBfpJIlnsK1cOo5QYM9gokBARBwEWfgUwvotRokCQJAZNMV69f5+2ovnTr3Jmxw4fj4uLMwcNHGDn+PfTP2KHfipXHxboz8pIQEhJCQkICN27cMB+LjY21aFOsWDEACz+O48eP5+nL19eX/v3788svvzBq1CgWLzZt8d6LkLnnB/Eo3N3dadOmDUuXLmXp0qX06tXr0RdhMgdFRkby9ddf5+tc9zi5PSpXrszff/+Nn58fAQEBFq/8FKgnJTw8nOjo/LfYz18+xYVzl+g/sh8167ekTPkQjCkmB1M1SpzJRrx7b8oRC45CCgoN59I/iOgA8C3th0Kp5K/jR83HsjIzSLh86R/1C6C2taVx81Zs+HU1G9etpXSZAAsfl6MHY3mjYxcat2hFueBQPIoXL9Qvw9XNpDgk3b7vjHv2AWdWgOCwCC6eO4OPbylK+ZexeNnZ3f98L5yNw9PbB1c39yeaW9lypt20nGwNDo5OFPP05tghS0fq44cP5mvCyo8y5YI4dfSQxbGTD71/mMDgUM6ePkX6XadoAEeVDq29Gj0qygQFcnrvLmyytSjv/t8cPnqMcgFlAThx6i8MRiOT3xtHlUoVKevvz80CdvqsWHnRsCojLwlNmjQhKCiI7t27c+LECfbs2cP7779v0SYgIABfX18mT57MuXPnWL9+PbNnz7ZoM3z4cDZv3szly5c5evQo27dvJzg4GIDSpUsjCAJ//vknd+7cIasImRujoqJYvnw5cXFx9OjRo8jzmTdvHkajkerVq7N27VrOnz9PXFwcX3755WOZnwYNGkRKSgqdO3fm4MGDXLp0iS1bttC7d+8iK1VFYfz48Rw6dIiBAwdy8uRJzpw5w/z587l+IwG9A7i4ufDLd2s5dzWJo7u2MWO86bNxEU1mgxS5KXw3V8hrhrlH7fqNOHH00D+S297BkTc6dOaz6RM5uG8PF87GMWn0EGQymfkJ+p/Qsm1H9mzfwm8//cDrbS2dhH39yhC96Q/O/H2Ks6dPMW5wX0Sx4B0Cta0t4ZWrseTrOVw8d4Yj+2P46pPpFm3e7BFFeloq4wZHcerYEa5diWffru1MHDXYYp2OHYil1muNijSHaeNHsnDOJxw7tJ8b1xI4efQQ74/oj6u7h9mU0rP/EJbO/4JNv/9C/MXzzPloMmdPn6Jrn/5FGqNL737E7Ixm6fwviL90gZXLFhFTiL8IQIv/tce9mCfDo7py7NB+Um6f45fNWzl28BA2aOnXfwBrfvqZ5cuWcyk+ngXfLmHDli0M6GMKZ/Yr5YvBYODb71ZwJSGB1b/+xoofVxZJXitWnjdWZeQlQSaT8euvv6LVaqlevTpRUVFMn275w61UKlm5ciVnzpwhIiKCmTNnMm3aNIs2RqORQYMGERwcTPPmzQkKCjI7ZZYoUYIpU6Ywbtw4PD09GTx48CPlatKkCd7e3kRGRuLj41Pk+fj7+3P06FEaNmzIqFGjCAsLo2nTpkRHRzN/ftEzdPr4+BATE4PRaCQyMpKwsDCGDRuGs7Oz2Wz1NAgMDGTLli2cOHGC6tWrU6tWLdatW0dS9g2QyZmz8BNOnjpLh1rV+PTdcbz7wUjAlAsiE1sM4qMVgXqNmqFQKAsNhy0KoydOI6JyNYb0fIt+XdpSsWoN/AMCUeXjj/K4VK/zGs7OrsRfPE/LNh0szo2ZNAMnZxd6tIlkaK/O1K7fiOCw8AJ6MjHl07kYDAa6vN6ImZPHW4TXgskxdfmvmzAajQzo1p72TWoza/J4HB2dzJ+vNjeX7Zv/pH2X7kWaQ816DTh17BBj+vfijfrVGPlOD2xs1Cxe+RsuriYn7i69+9HtncHM/vAD2jetw76d0Xz57Y+U9i9bpDHCK1dj0qwvWbl0EW9Gvkbsrh30HTK60GuUKhULfliLu4cHg3t2okW9hiz5/DMcBB1KrY429Wrz4YT3mb/4Gxq0eJ3vV/3E5x9/RO2aJh+asJAQJr83nq8XLaZBy1b88vsfjB89qkjyWrHyvBGkgozPLxAZGRk4OzuTnp6O00MZDnNzc7l8+TL+/v6o1Wrg5cjA+qqQnZ2Nj48PS5YsoV27ds9bnGfKndQEbhszEQAZHmhVjrjqM8k2JlPMqMBd0qCX5CQLLtwRHZGKsDPx0/Jv2LFlIwt+KFrOjKKQna2hWbUQRn4wjXZvdXtq/b4orFq2mB1bNrLwx1+etyj/GJN/iBI9Su7Vl7nnH2Ll+aI3Grlx8xZHVy4lO6VgR++XFZlcTo22b1K7Y5en2m9h9+8HeSUdWF1cXBg8ePAz9SC3s7P7Tykioihy8+ZNZs+ejbOzM2+88cbzFumZotVqSDJmAAK2oooMtSNqKQe9NhUHmQp3KRNJgiS5K7kGWZEUEYD2XXuSkZ6GJivzsVLCP0jcXyeJv3COsIpVyMrMYOEcU0h2w2Ytn6i/Fx2FUsn4D/M6ML9sOKp0ZKrtkJAhx4BTbjaqXC3odc9bNCtW/nVeSWUETArJf0k5eNYkJCTg7+9PyZIlWbZsGQqFwuJcSEjevBb3OH36NKVKFZ4L4kVGkiSuZ1xBFARsJMiw8UaGEedMDbkyCW+jBgRIkjljFCUyKbojrUKhoO/Qwrfzi8LyRV8Rf/ECSqWSkPCKLF2z4YmdO190OnTtafF+YLcOHD24P9+2UYNHEDXkxTNdONjpyLhbX8YGLcocw90idy/8xrUVK0+FV1YZsfLv4ufnV2B4qY+PT75RPA+ef5m5k5ZAjmDa69DLioEgw02bQboyi5JGCbkgokGNXhRIkZ594bTgsHBWbdj5zMd9UZg060u0ubn5nnN2yZvD43kiF0SUDhKZgilRoIOoAZ2EfVbB1X+tWHkVsSojVp46CoWCgIC8SbZeBXK1WSQbMzGZZ2zIUDtgL2rQGFNxRYE9GgySjAyZPSlGB55CAIuVx8TT++VQdm3lBvT2SnKs/iFWrFiVEStWiookSdzISDCZZ0TIsPFCgR7brCwMCjnFRdNN5I7cFYNBhihYg9Ws5I+jjY5Mm/v+IY53/UMEq3+Ilf8oVmXEipUicjv1yn3zjLw4CAJu2Ro0ilz8jDoQIFlwxChJpFJ4fR4r/11M/iGm74cNuShzjdhkZj5nqaxYeb5YlRErVopATm4myXd3PtSimky1PU7GLDKENLyNoBBEclChExWkSM7PWVorLyIKmYjcngf8Q7JM/iGZGc9ZMitWnj9WZcSKlUcgSRI3Mq8iCaAWIdPGCxU65JoMHBUKnNBglATSZE6kGG2tfiJW8mCv0JNjZ4MeBQIiLrosZHoRRbbVP8SKFbAqI1asPJJbqfHkChIyJLRyLwQBXLM0ZCuM+BqzQTD5iYhGMArWfykr97FV6JGrJLIU9kgIKNBjn5uLKicHrMXrrFgx88p62OXm3iAj869n9srNvfFooaw8V3bu3IkgCI9ViO/9CeNp8FoLAGxEW/RKO1z0WaTLMyghahEESMUBvQjJ0qOTlMVfPE+jykFosp6uj8D1qwlE+Lpy5qFCc/+UPh1bMWvy+ELbRPi6sn3T+qc67rqff6RuaOmn2idAl9cbsW3jH0+1zwfXSBAkHFQ67Bz0yJxkZNvZk6lwQELAVsrBJleHOjPjqSkin37xJU1aFz3hoHdAIBu3bn0qY1ux8jR57Me43bt388knn3DkyBESExP59ddfH1kGfteuXYwcOZK///4bHx8fxo4dS//+RSs49STk5t4gdn8TRFH7r43xMDKZDbVqbkOtfnRY4aPKkPfo0YNly5Y9JcleDBo0aEDFihWZM2dOkdrHx8fj7++f53jXrl35/vvvn0iG2rVrk5iYiLNz0Xw6JEkkU2vK93DPPKOWcjBoU/EQwAYjuSh5vX03yoRWYuzkjx7Z59xZ03ize5Q5u+qh2L1EdWrNnr/icSqiXB+MGEhmRjpzvv2hSO0Lwmg0smz+F/y+ZhWJ165io1ZTukwAHbr2pM2bXYvcT/SRMzg5u/wjWR4msnVb6jZq+lT7BHhn2GhmT5tIo8jXi1S7aN3PPzJx1KA8x1U2Nhy6YKo2LAiglBtROxrJFWzI5H4NIAERtaRFbdAjGkFdBEfVdl3eJjQkmA8nvP/ItgOi+tC7e9FT/J+IjcHZyfQ9u3rtGtUbNGLr778RVkiSQitWngWPrYxoNBoiIiLo1asX7du3f2T7y5cv07JlS/r27cv3339PTEwMAwcOpFixYkW6/knQ6VOeqSICIIpadPqUIikjiYmJ5r9/+uknJk6cyNmz90vH29raWrTX6/UolcqnJ+wz5J/Kvm3bNkJDQ83vH14bMPl0GI1Giyyw+aFSqfDy8iry2LdS4jHc1Ru1Ck9kgohzhgadUoa7UYMoCaTKnTEUcYPxVuJ1dm7dyNjJM4osw7/J/M8+Zu2Pyxn/4SxCwiuhycrg75PHyUhPe6x+PIp7PnXZ1La2qPP5rP8p9RpHMuXd4ezbFU3dhkVTdhwcHVm385DFMVulAQc7HVqFElEuQydXkiOY5JVjwFbUotQbMUgC9rm5SE85ZPfed97e3h57+6Jn+C1erNhTlcOKlafFY5tpWrRowbRp04pcFG3BggWUKlWKOXPmEBwcTFRUFL179+bTTz99bGFfFby8vMwvZ2dnBEEwv8/NzcXFxYWff/6ZBg0aoFar+f7770lOTqZz586ULFkSOzs7KlSowMqVluXBGzRowNChQxk7dixubm54eXkxefJkizaTJ0+mVKlS2NjY4OPjw9ChQ83n/Pz8+PDDD+nSpQsODg74+Pgwd+5ci+sTEhL43//+h4ODA05OTnTq1Ilbt25Z9F+xYkWWLFlCmTJlsLGxoUePHuzatYsvvvgCQRAQBIH4+PgirZW7u3ue9bpnbtm8eTNVq1bFxsaGPXv2IEkSs2bNokyZMtja2hIREcGaNWvMfeVnplm8eDG+vr7Y2dnRtm1bPvvsM1xcXMjOSSdFygFAhoxf1/xGy7AQyoWEMuadIWRmabgjd2HY0JEc2h/LD98uIMLXlQhfV65fTch3Lpv/+I2g4DA8vUsUON975omYndG0aViDmkElGfB2B+7cMj2Fz//sY35fs5IdWzaYxzsUu7dIa/kwu7dt4s3ufWjWqg0lS5UmKKQC7d7qRvd3LHcCRFHk8+kTqRfmT6PKQcz/7GOL8w+aae6ZizauW0v3Ns2oFuBF28a1LGQ8FLuXCF9XdkdvpmOzulQL8KJr6yacj/s7zzrcY/5nH9Mpsh5/rF1Fi1rh1AkpxdiBvS3MXZqsTMYP6UuNwBI0rlKeFYvn5TEzyeVy6jZsysZ1RS9EKAgCxTyL41fSlVJl3Cge4I1daX8yFQ7o7u6CyDHibMzEJTcTm/Q0Phv7HjUqRBDm50+LN95g3/4DFn0ePHKEtp274h8WTvnKVXmrZ2/S0tMZNvZdYg8e5Jtly/EOCMQ7IJCr166xb/8BvAMC2bF7D5Ft2lE6JIwDhw7na6ZZuXoN9Zu3pHRwKBG16vDe5Cnmcw+aaao3aARA0zfa4B0QSLsubxN78BC+5UO4feeORZ+TZ3xEm85Pt4CaFSsP8q/7jMTGxtKsWTOLY5GRkRw+fBi9Xp/vNVqtloyMDIvXf413332XoUOHEhcXR2RkJLm5uVSpUoU///yTv/76i3feeYdu3bpx4IDlj9zy5cuxt7fnwIEDzJo1i6lTp7L17o/PmjVr+Pzzz1m4cCHnz5/nt99+o0KFChbXf/LJJ4SHh3P06FHGjx/PiBEjzNdLkkSbNm1ISUlh165dbN26lYsXL/Lmm29a9HHhwgV+/vln1q5dy/Hjx/nyyy+pVasWffv2JTExkcTERHx9ff/xGo0dO5aPPvqIuLg4wsPDmTBhAkuXLmX+/Pn8/fffjBgxgrfffptdu3ble31MTAz9+/dn2LBhHD9+nKZNmzJ9+nQAbmRdQwIUksCVK1fZ/edvLPjua35ZPpfd+48y5avv0YsSwyZ/SkSVarTv0oPoI2eIPnIGL5/8lY2jB/YREl7xkfPKycnhu0VfMX3OApauWc/NG9f4bNoHAPToN5hmrdpSp0Fj83gVq1R/ovVzL+bJwZjdpCQXXoH0jzUrsbWz5/s/tjHivSksnDOL2N07Cr3m8+kT6f7OYH7auIuKVaozrHcX0lJTHmoziZETPuTHP6Jx8/BgaJ8uBf4mAFy9Es+OzRv4cukq5i5dxZED+1jy9Rzz+U+nTuD44QN8ueRHFvzwC0cPxhL318k8/VSoWJmjB2MLlR9AKRNRK02+HZKjkky1AxqZPca7ETG2Ug4u+gwURgMqvQF1SgY2mRm8O3gwh44cZf6cz9n+5x+0btGCLr37cOmuAv7X6dN06taDoHLl+HP1T6xbtZJmjRpiNBr58IMJVK1Uia5vduJEbAwnYmPw8fY2yzRt1izeGz2K3Zs2Elw+KI/My3/4kfcmT+Htt95k+4Y/Wb5wPn6l8/e92fiLSVH/+btlnIiN4dt5X1GrejVK+/qy5rd15nYGg4G1637nrX9pJ9uKFXgG0TQ3b97E09NyG9fT0xODwUBSUhLeD/yj3eOjjz5iypQpeY7/lxg+fHie3afRo+8XUBsyZAibNm1i9erV1KhRw3w8PDycSZMmAVCuXDm++uoroqOjadq0KQkJCXh5edGkSROUSiWlSpWienXLG1mdOnUYN24cAIGBgcTExPD555/TtGlTtm3bxsmTJ7l8+bJZmVixYgWhoaEcOnSIatWqAaDT6VixYgXFHtgSVqlU2NnZPZaZBEx+Hg/a9vfs2WP+e+rUqTRtatpq12g0fPbZZ2zfvp1atWoBUKZMGfbu3cvChQupX79+nr7nzp1LixYtzOsaGBjIvn37+OOP39EKIEPCKLNHEkXmzvwIJ1clXmIOXdq1YsfeA/QQXXF0AqVShdrW9pHmihvXEgiuUPGRczbo9UyY8Rm+fiafmbd6RLHwi08AsLN3QK1Wo9dp/7F5ZPTEaYzu35PGlYMoG1ieiKrVadisZR7zRbnyofQf8S4Apf3LsnLZYg7E7KLWaw0L7Putnn1p0tL0xP7+jNnE7NzGr6tW0GvAMHObfsPHmvuY9tl8mlUPZfumP4ls3TbfPkVR5MPPvjb727Rq14kDMbsZgmlX5Pc1K/l47mJq1DV91lNnf0WTqnl9IYp7eXPz+jVEUczjN2KrMCBXiWgVKnSoyVHYkJmRQU0f0/dWQAIJKlerxprvliPpdciMRoS7DqnxVxL47Y8/Obp3N153f/cGRPVhx+7drFqzlvdGj2Le4m8IrxDGx1Mnm8cNCixn/lupVGJra5uvSWXMsGHUr1unwHWfM28e/fr0pm/PHuZjFcPD823r7uYGgKuLi8VYnTt2YNWatQzsGwXAth07ycnN5Y2WLQoc14qVf8oziUN82GHzXoG1ghw5x48fz8iRI83vMzIynsqT9MtE1apVLd4bjUY+/vhjfvrpJ65fv45Wq0Wr1eaxF4c/9MPj7e3N7du3AejYsSNz5syhTJkyNG/enJYtW9K6dWsLX4t7N/IH399zOo2Li8PX19fiswgJCcHFxYW4uDizMlK6dGkLReSf8NNPPxEcHGx+7+vrS2ys6an2wTU6ffo0ubm5ZuXkHjqdjkqVKuXb99mzZ2nb1vLGF1GpAr//8TsAKtEeo0yBb8mSKNyVeBlykCRw8irFneTtj11PNTc3Fxu1zSPbqW3tzIoIgEdxL1KS7hRyxZNRNrA8a7ft4/TJ4xw7tJ8jB/YxtFdn3ujYhcmffGluFxgcanFdseKepCQVvpsSUbma+W+FQkFIeCUunT9n2abK/TbOrq6ULhvA5QuWbR7Ex7eUWRGBu+uSbFqXawnxGPR6wipWNp93dHLGr2zeGkk2altEUUSn1WJrp8ZepUdUCuTKbMjGzqKtAgMODg78uW0rSCI22TlIkoRabZOvH8ipv/9GkiTqNI20OK7T6XC9W0X8r9NxtG7RvMB5FkZEhbACzyUlJ3Pz1m3qPfQ//Li82b4dMz+fw5Fjx6lSqSKr1qzljRYtsLOze/TFVqw8If+6MuLl5cXNmzctjt2+fRuFQoG7e/4lzW1sbLCxefSP9qvMw0rG7Nmz+fzzz5kzZw4VKlTA3t6e4cOHo9NZ/iA+7CwqCAKiKAKmG/nZs2fZunUr27ZtY+DAgXzyySfs2rWrUCfTe0qjJEn5KpAPH38ch7pH4evrW2DRvQfHuTfH9evXU6KEpZmkoO/Sw3KLopH03FQA1KJAlro4NqIemVKglMFUBfaO3AUAo/j4pd1d3dzIKEJYsVJp+W8pCEKBFZL/KTKZjLCKlQmrWJlufQfy5y8/8f6w/kQNGUXJUqbtfUU+3ynp7no/Do+KIrvbqMBTSkU+63JXjnvLU9CDz4No0lOwtbPFpbiKXEGZT/RLLjYGA5JBwDZXh0wQCPLI/7fqYURJRC6Xs/m3X5DL5Bbn7O1NN3O1Wl2kvvKjMIVA/ZR+Mz3c3WnaqCGr1q6ldClfonftYu0PK55K31asFMS/7jNSq1Yts8/BPbZs2ULVqlVf2giR58GePXv43//+x9tvv01ERARlypTh/Pnzj92Pra0tb7zxBl9++SU7d+4kNjaWU6fu56bYv3+/Rfv9+/dTvnx5wLQLkpCQwNWrV83nT58+TXp6usXuRX6oVCqMRuNjy1tUQkJCsLGxISEhgYCAAItXQbtq5cuX5+DBg+b3N1PjOXHC5ESZqzBlWZXptSgkUCCRiS16UUAjWd5MFMqizS0oNJxL588+st2jUKpUGMV/Zy3LljN91jn/MDPoyWOHzX8bDAbiTh3HP6CcZZuj99tkpKVx5dJF/MtatikqvqX9UCiV/HX8qPlYVmYGCZcvAabkYw52OpROcObyecpHVCJHsDUXqnMQs3DVZuCQq8E5XYNNWibqrAxkjxkFExYSgtFoJCk5GX+/0have6aQkPJB7Ikt2GdFqVQiPsH/ioODA74lSxba98PjABjzUSy7dOrIuj/X893KVZQu5Uv1KlUeWx4rVh6Hx94ZycrK4sKFC+b3ly9f5vjx47i5uVGqVCnGjx/P9evX+e677wDo378/X331FSNHjqRv377Exsby7bff5okEsVI4AQEBrF27ln379uHq6spnn33GzZs3H6kEPMiyZcswGo3UqFEDOzs7VqxYga2tLaUfcHCLiYlh1qxZtGnThq1bt7J69WrWrzdFSjRp0oTw8HC6du3KnDlzMBgMDBw4kPr16+cxKz2Mn58fBw4cID4+HgcHB9zc3IqU56GoODo6Mnr0aEaMGIEoitStW5eMjAz27duHg4MDPXr0yHPNkCFDeO211/jss89o1OQ1ftv6B3uj9yIIAkaFCo+sdJCJyJHQS3I0gh0pYt7EZiV8S3Hq2BGuX03Azt4eZxfXfOdWu34jpowdhtFoRC6X5zlfVHxK+rJvVzTxF8/j7OqGg6NTvu3+16A6Q9+dSOMWrfI9P6pfDypWrUFE1ep4FCvO9asJfPnxVEqXCcA/IPCJ5QP4afk3lPIrS5lygaz4Zh4Z6em0efNtizYL58zCxdUNN49ifDVrGq5ubjSKfP2JxrN3cOSNDp35bPpEnFxccfdwZ9HnHyGTCwg2puRj9zgaG0PdRvVxNmQiM0hIEqg1WUiShArymN8kScoTXQKmHYSHP+ey/v60e+MNho55l0nj36VCSAgpqansjd1PcFAgjRs0YEj/fjRq2YpxEyfTvctbKJVK9u0/QKsWzXF3c8O3ZAmOnjjB1WvXsLOzM5t3isLooYN594NJeLi706j+a2RlaTh09Ah9unfPV361Ws2O3Xvw8fLCxsYGJ0fT97thvXo4OjryxdfzGDN8WJ5rrVh52jz23eDw4cNUqlTJbIcfOXIklSpVYuLEiYAph0ZCwv3QRn9/fzZs2MDOnTupWLEiH374IV9++eW/lmPkVeWDDz6gcuXKREZG0qBBA7y8vB6ZbO5hXFxcWLx4MXXq1CE8PJzo6Gj++OMPC3PZqFGjOHLkCJUqVeLDDz9k9uzZREaa7N+CIPDbb7/h6urKa6+9RpMmTShTpgw//fTTI8cePXo0crmckJAQihUrZvEdeVp8+OGHTJw4kY8++ojg4GAiIyP5448/8k2eBiZn3QULFvDZZ59Rq2Y99mzfS+93uqNS2+Kq15Ahz8RJMkV3JMld0YpypHwKz3TvNxi5XE67RjVpEBFA4vVr+Y5Xr1EzFAol+/fs/EfzbNelB6XLlKPz641oEBHA8cMH8m0Xf/E8WYUUYatdvxG7tm0y+YnUr8YHIwbgV7YcC35Y+8icLY9i2LhJLJ3/BR0j63Hs4H7mfPsDrm6Wpo5h4ycxc9I4Or/ekDu3b/HFkh9RqlRPPOb4yVOpUq0KQ3u9xTtd2hFauy7+geVR2djejX7JRptwlpMHDtC9TVvUqRmoMjOxycos1AyWmZVFRK06eV5Jycn5tp8z8yM6tvkfUz6aSd1mzenRbwBHT5wwR8WU9fdn5bKlnD5zhpbtOtC645ts2hZtXvMBUX2Qy+S81rwlYdVrcv1G0bM7d2rXjikT3mfZDz/QoMXrdH+nH5fjr+TbVqFQMO2DCaxYuYqKtevSs98A8zmZTMab7dthFEU6tm1T5PGtWHlSBOnfMkY/RTIyMnB2diY9PR0nJ8unwNzcXC5fvoy/v7/ZFvuiZ2B9UfHz82P48OEMHz78eYvyTLmRfIFUSYsciQkjZxF/4TyrVy/DW8hFjUiS4ESupCRFzH8H4nH4afk37NiykQU/FD3PxcvE9asJtKwdwU+bdlM+tEK+bZ4k62xB3Kv9Yop+sVRktJp0mpQvz4Qpk+jYpSt2ublM+fBDMjIz+XT6tH807n+BUe+9T1JSMssXLXjeorwQ6I1Gbty8xdGVS8lOKdyB+2VEJpdTo+2b1O74dPPJFHb/fpBXsqqXWu1DrZrb0OlTHt34KaFSur3Uish/lekzplK+dih2dnbs33aQdatWMXP6NBzkBtSiiAYbdKKMFOmfKyIA7bv2JCM9DU1WpkVkiJWiIQjSQ9Ev980vZ04c5+r501SLqEBWajpfzP4MQZJ4vU4dbDMzkDCZJgZE9Xl+E3gJyMjM5PjJk/zy+x8sWzD/eYtj5T/CK6mMgEkhsSoHLy79+/cvsMbM22+/zYIF//7TmCgaiTmwj88+/wJNloYSfmX4cPqHtO3RmmKGXAySjAyZI6lGO/KxzjwRCoWCvkNHP7qhFTNKmRG1jRGdQo5WUOcb/aI2GHDQZvPdnC+ZdPEiKqWS8LBQflv1ozmfBmDOnXGP+s1bcq0AM8isD6fS/n9FL0L3qtCz3wCOnTxJt7feKjSniRUrT5NX0kxj5cXn9u3bBWbWdXJyonjx4v+6DNeTzpOGDrkkYVCUQC0YEHKS8ZNykAOJMneMBoEUrDsYzxpbpR65UiJXoUL/kPnFVPslF6VexCgJ2OXmIBWSubUwrl6/jkGffwXdYh7uODg4PFG/Vl49rGaaJ+M/baax8uJTvHjxZ6JwFESmJpk0TGGbCskRo1yGfboGR4UOOZAiOGKUJFJ4OuYZK4UjEyTsVHqMStld88uDCoiECh22Bt3d6BcJtUZjdjr9J09TviUKrhNkxYqVZ4dVGbHyn0MUDdzMvgkC2IoyMtUeeGZnYFRl42A0koOKXFFBivTPnCutFIxSZsRGaURSgF6mQCvYFGh+EQ0CKqMBWU62+fwLv51rxYqVx8KqjFj5z3Ej5TI6AeSSRLbSG2ejBg1plDFqMUoCaTIn0o3qp+Yn8l9HLpNQK/QICtDL5egEU+TLw+nEFOixFbUo9SIGScAuJwfJ8GTmFytWrLxcWJURK/8pMrKSSL9nnsEJSS6hSM/AR65FAO7IXRGNoBes2YGfBEGQsFUakCkkDHI5ekGJAQVZPJyqXEKFHpWoR2k0gsFUhE6VpUFCQol198OKlf8SVmXEyn8Go9HAzZxbZvNMltoNz6x0lMocVKJEGvboRYlUyeqwWlRslQbkChGjXIZepkSPEk0exQOU6FFJOpRGIzIDiBLYGAwIublID6gdVgXEipX/JlZlxMp/hsTUS+gFUEgS2UofXPUacmXpeIoGtCjJkVSkSi7PW8wXFhuFEaXCiKgQ0MuU6FA+5GhqQo4Bm7uKh9woIYqgEEUUOTlIkmUdFKvyYcWKFXgGhfKeF9dydZzMzH5mr2u5j1dQy8qzJT3rDltjYggrFkZWOqhkBqTcdEqKWkRJIFnmTKaUNzR8/mcf0ymy3lOTI/7ieRpVDkKTlfnU+gRT5tMIX1fO/H3q0Y2LgFJuxMFGR9+3XufT6ePASUGunS2ZKgc0Mvu72U4FZBip6GzP/t9/xk2bgWtOBi7ZWTinZKJOzUCZYUq3Ls/W5FFECuOntb8QVOnpF2dr3rYd6zdvfur9PinV6jdk0dJlz1sMK1aeO6/kzsi1XB11DsShfYIy70+KjUwgpkYwJdWPrq3xqFLqPXr0YNmyZU9JsheDBg0aULFiRebMmVOk9vHx8fnWlOnatWuBydIKwmjUcyvnNpWqVWL/qd0oi5XCOTMdB3kO/2/vzONjur4A/n1vZpLMZI+EWEIQ1JZE7PsuVWotaqu2ai2KKvWrfSml1lJUayldbKVV3VDUvitK1R5LrCH7ZJZ3f39MMkw2SUSJvu/nM8y8d96597z3Mu/MveeeoxFwU+OFUMBIzvLU9OzQkjLlKzJ83JRHyn4ybRKdXnvLnn01J6nRRw/pT2xMNLO/+CpH/U3BarWybMEcNq79huvXruLi4kJgUEnav9GTVt16YAKskgarpEEgI6HghAknxYLWooAVQHDiwAHcXQ3oYh44WFl3O9KnVYuXaNyg/mNqScuQt99mwtSPaN60aZYKNa5a9x1jJk3mzNHDafYVDCrNkgXzad60aa73U0Xlv8Zz6YxEmS3/qiMCkKQIosyWLDkjkZGR9verVq1izJgxnDnzoLS8Xq93kDebzfZy33mNx+37li1bKF++vP1z6nMDtqqqVqs1w+Ju15OnZ/Q6LZoiweRLSkDRRuOqKMRgwKyIdKvx5jY3I6+xffPPDB/34RNvKyNkSeCSHGD68ZRprFr+Je9Pn0n5SmHExcZw6uhRou9Hk5LbQyOsuCgmfIwxKELgYrKAyegwveLr45Xr/dS7uKB/AkkMmzRswLAPRrFt504a1899Zye3yct/+yoq2eG5naZ5lvH397e/PD09kSTJ/tloNOLl5cXq1atp0KABLi4urFy5krt379K5c2eKFCmCwWCgYsWKfPPNNw56GzRowKBBgxg+fDg+Pj74+/szbtw4B5lx48ZRtGhRnJ2dKVSoEIMGDbLvCwwMZOLEiXTp0gU3NzcKFSrEJ5984nB8REQErVu3xs3NDQ8PDzp27MjNmzcd9IeGhrJkyRJKlCiBs7MzPXr0YMeOHcyZMwdJkpAkiUuXLmXpXOXLly/N+dq+fTuSJPHrr79SpUoVnJ2d2blzJ0IIpk2bRokSJdDr9YSEhLB8xRfEYMuweXD3aYK9vbhzNwJ/xYxJaPjsqw1UqVKH6qUKMfitbnz52XzqlC+Wph8b131L85rB1C5XlOH937RPs4we0p9D+3bz1RcLCQnwJiTAm2tX0q9I/OvGDZQpW4ECBTNOtPX96q+pU74Yu7dvpU3D6tQoU4R+3V7h9s0bgG3a6Ie137Dtt5/s7R3cuytdXZJky2Tqpjehd7Og8ZCwujsT7+JKrNaNrb/+Rse3etOsbVsCAwsRVr4kb3RuyztvvY5XYizesfFozBakxCSmjhpNaJmyVAwLY/qcuQ7tFAwqzc+bNwNw5epVCgaVZsOPP/Jyh04ElqtA/RdfYs++B5WF9+zbT8Gg0mzZto3GLV8msFwFXmr/CqcfcshTT9N8PGcuTV5uxZr1G6havyGlQ8Po+85g4uLi7DJxcXH0H/ouJSqGEFKzNouWLKVdl26MnjTZLqPRaGjcoD4bNv6Y4TXICa90e43/jRvvsC3q3j2KlS3Prr17Abhz9y6v9epD8fIVqdagEeu+/yGNnoJBpVn+9Te83qcfJSqGMHv+pwAs/+prajRsTNGy5anTNJw16zc4HHf2/HladXqVwHIVqBfenD9273a4LgCRN27QZ9A7vBBWhXJVqvF6n35cufqgwvQ7w0fwet9+LPj8C0Jq1qZclWqMHDsOcw6z26qoZAfVGXlGGTFiBIMGDeL06dOEh4djNBqpXLkyP/74IydPnqR37950796d/fsdy8cvX74cV1dX9u/fz7Rp05gwYQKbk7+Q1q5dy6xZs1i0aBFnz55lw4YNVKzoWFl1+vTpBAcHc+TIEUaOHMmQIUPsxwshaNOmDVFRUezYsYPNmzdz/vx5OnXq5KDj3LlzrF69mnXr1nHs2DHmzp1LzZo16dWrF5GRkURGRhIQEPDY52j48OFMmTKF06dPExwczKhRo1i6dCkLFizgr7/+YtCggfTu1Z+Duw+iVzSYdbZRFX+MIODnw+cY8f7/6PpmX1b9+gc16zbg809mpGnnyuVLbPv1J+Yu/ZZPln7L4f17WDJ/tq0P46cQUrkq7bv0YOvhv9l6+G/8C6XvbBzZv4dywaGPtCsxMZEvP5vH5NkLWbp2EzeuX2XmpNEA9OgzgGYt21K7QWN7e6GVq9mPNTiZMbiZ0XqA4q4jQe9KrM6NBNmABdsvbC1mDCIBfz9fjm7fivXKRbziE3CPisH5fiy6WFucB8ZEAFZ/tx6DXs+mdWsYNeI9Zs6bz45duzO1YeLUafTp+Sa//bCBKmGV6NGnL1H37jnITJg6jTHvv8/P69fh65OPHn36ZfrguxRxhV+2bGHF4kV8uXgRew8c5JNFn9n3j/1wCgcPH2H5ogWsWr6U/YcOceKvv9LoqRQczP5DaaddHocuHTuwfuOPJCU9iB377oeNFChQgNo1agC2h/2Va9dYs+JLFs+by/KvvubO3btpdH08Zy7hTRqzbdNGXu3wCj/99hujJ02mb8832fbTj3R7tRND3h/J7r37AFAUhTf69UfvYrtG0ydPZOrMWQ46ExITeaXba7gaXFn/zVds+PZrDK4GOr/ZE5PpQZ/37NvPpYgI1q78kjnTPmLVd+tZte67XD1XTwYJkn/oSJKELMvIsib5pUWWdciyE7LsjEZ2SX7p0cgGNLIrGtkNjeyORvZAI3uikb3QyN5oZB80Gl9kjR8ajReSpMfNuRLu+vIYDAG46D3RaDTZiodSSZ/ncprmeWDw4MG0a9fOYduwYQ8KrA0cOJBffvmFNWvWUL16dfv24OBgxo4dC0CpUqWYN28eW7dupWnTpkRERODv70+TJk3Q6XQULVqUatWqObRRu3Zt3n//fQBKly7N7t27mTVrFk2bNmXLli0cP36cixcv2p2JFStWUL58eQ4ePEjVqlUBMJlMrFixAj8/P7teJycnDAYD/v7+2ToPtWrVcpjb37lzp/39hAkTaJo8Xx8fH8/MmTP5/fffqVmzJgBadzMtt7Vk7ZerqVy/LZ5JtgeTE3BH9mTJF8uo3bAJPfoOBCCwRBDHDh9g51bHAEdFUZg4c749zqNlu47s3/0HAwF3D090Oidc9Hp88xfI1JbrVyMoWzH0kTZbzGZGfTiTgEBbzMyrPd5i0ZzpABhc3XBxccFiNhIY4I3QSphlLcRrbOdBpydeflDJVsZqW9miWNBaBEIBWSg4JSYx4b336DVgIFWDQyhTqhRVwioR3qRxmumLsi+U4d1BtnNUIjCQpStWsmvPnkyLqL3RvRstXwwH4KMJ49n+x06+WbOWt3v3ssu8O2iAXcec6R8RVqceP/+2mVYtXkpXp6IozPloqr1ezCttWrNrz1541zYqsmb9Bj6dOYO6tWoBMPujqYTWqpNGj3+BAly7fh1FUbIUNxITG0vJRziRLcLDGTVhIr9u2WLv/6q16+jUri2SJHH+4kV+3/EHm9auISw0BIAZUyZTL7x5Gl1tX36Zzh1esX9+e8i7dGzXlte7dQWgZM/iHDn2Jwu++ILaNWuwfecuLkdc4buvVpI/+W/u/aFD6NTjDbuO73/chCRLzJgy2R6zNnvqFMqEVWHP/gM0qGs7T56ennw4dgwajYZSJUvSpEEDdu3dS7dXHX9wZA1bO7bmJPv/D/Y9eEmpPj/yJUmIh95nh5xO4Au0IOkwOYdgdnnwI07nAk5WEzrzbSRxByHdwSrdwyruYzLFoVhVRyUrqM7IM0qVKlUcPlutVqZOncqqVau4du0aSUlJJCUl4erq6iAXHBzs8LlgwYLcunULgA4dOjB79mxKlCjBiy++yEsvvcTLL7/sEGuR8iB/+HNK0Onp06cJCAhwGNUoV64cXl5enD592u6MFCtWzMEReRxWrVpF2bJl7Z8DAgLYmzzs/fA5OnXqFEaj0e6cgEARArPZTLmKFXBXkrAK29RKHM5IisSZ85do9GJLh/YqhFZO44wUCihqd0QAfPP7E3X3drZtMRqNOLukzcGRGhe9we6IABTwz0/Undu4upoxyxpwklC0GmKdHxRxE8mDnE7ChLs1Dp3VFmAqEOgTk7BaHUccFKBMqSC2/7yJ4ydPsv/QYfYdPEiP3n3p1K4tM6Y8iGspV6aMw7EF/PJzJyoqUxsqV6pkf6/VagmuWIGz589nKOPt5UVQ8eJpZB4moHBhh8J1+f38uBNlG1m4fOUKZrOZ0JAH97+Huzsl0wmCdnFxQVEUkkymLMWluLm68tv3G9Jsr9XkQeCqs7MT7Vq34pu162jV4iVOnjrFX3//zZKFtmmWs+fOo9VqCalYwX5MqZIl8UyncNjDMmCbgun2akeHbVUrh/H58uUAnL94kUIF/e2OCECl4BAH+eMnT3LpcgRBIZUcticlJXE54sG0YplSQWg0Gvvn/Pn9+PvMP2n6mIIky8i4AC4ISUNOnAPIxSXeQiAhbBpF8v8IJBSHz0JKec+DbYhkX8mx5tGD/y1AAlrTH7gkSIAPiuyD2ckXoXHCpCkMOI6KOrmAbDWiM98G5TaKdBerHIVVRGNOSkBRVEclBdUZeUZJ7WTMmDGDWbNmMXv2bCpWrIirqyuDBw92GGIF0gS7SZJkv+EDAgI4c+YMmzdvZsuWLfTv35/p06ezY8eOTIPkUn5JCSHSXQmUenvqvj8OAQEBBAUFpbvv4XZSbNy0aRMFCvgREX0JqyThLGRwK4RTfCw+wvZAjsOARXgmf3GlsiedIta6VIGxkiQhcvAl4u3jQ8z9+4+U0+ls7WllBa2rwKp3RghBnMZmb0qvnUhKzmCqEG+0xU54xiXiGhXjkEjMmklbsiwTGhxMaHAwfd58g7UbvmfgsPd4p38/iiY7ndrU94ZEjr5EH7WK7FEyKeflYVklOVA9pWheVq7n/ej76PX6LAfIyrJM8cC0cUSp6dqxA01ebs31yBt8u3YddWvVtBfiS7keWTkHBkPaIO3UD3jx0L0r0ruPU6EIQXCF8syfkXYaMl8+H/v71EHgD39/PLxNlpwBA0LWPdqRSHEQhELKgx8E0kPOgaOD8MBReNhpeLidtO9T/pUQEiiShCJJmCUNVrQoaFCQUJAfY2TERLQczWe+1bjmbEVCwU+5Q92E7yloMuKk6HC2uqC1egJ+KBo/TE4+KBoXkjQBwIMfcRI2R0VjSUBrvg0kOyrSPazKfUymRMS/vAjjaaM6I3mEnTt30rp1a7p16wbYHgZnz551GDXICnq9nlatWtGqVSvefvttXnjhBU6cOEFYWBgA+/btc5Dft28fL7zwAmAbBYmIiODKlSv20ZFTp04RHR39yH44OTlhtWb2WHw8ypUrh7OzMxERERQvV4DCvsXQCTDpiuAXH4+7fIuU33tmRUYgE1iyFCf/dIwd+Ov40Wy3rdVlzbYy5YO5cPbMI+UA3FxMxDkZMCOT8kXrpsSjs1pxkyHBlIRPTDwk2TKY6hJszohiSXJwRLJL6WTHLyExMcc6AI4cO0bNaraRMovFwvGTf/Fm926OMkePUaRQIQDuR0dz/tIlgkqUyFF7gUWLotPpOHr8OIULFQQgNjaOC5cvU6O641Tk3/+cpWL5cjlqJzPKlilDSMUKfLVqFd9t3MjkMWPs+0qVLInFYuHPEyeoFGIbtTh34QLRMTGP1FuqZEkOHDpMx7Zt7dsOHTlKqaCSAASVKMG1yEhu37mDn68vAMdOHHfQUbFcOX7Y9BO++fLh7u5GTpBlJyT0CNnlwR0mBLKSiCInPbSc+8EdKJBAst3BimxzECySBgtaFORk50BCyYOFoAQyt+T8rHNLO9UmoVBQuUG9hN/xNVlxsWrRWfVoFW/AF6vGD7OzD1atAau2GFDsoWPBWQ9acywaywNHxSLdx6rcJ8mYlDz683yhOiN5hKCgINatW8eePXvw9vZm5syZ3LhxI1vOyLJly7BarVSvXh2DwcCKFSvQ6/UUK/bgD2H37t1MmzaNNm3asHnzZtasWcOmTZsAaNKkCcHBwXTt2pXZs2djsVjo378/9evXTzOtlJrAwED279/PpUuXcHNzw8fHJ0vz9VnF3d2dYcOGMXjwO7w7fhiVqlciKVbm5KEf8HC2MqhDC6IlAwDRuOEBdH6jN2++0oIvP5tP/aYvcmD3H+zetiXbw8yFA4py4uhhrl2JwODqiqeXd7q21arfiPHD38FqtToMhT+MVrY5NbFOtgeGE0m4m2yOgVtUDEIoFMufnz9+38bZ03/h7eWFh3v6y5LrNAvnf8Pe5aVmzdLd/9bbA6laOYyqYWH4+fly5cpVPvx4BiWLF8+xU5DC0pVfUTywGKVKluSzpcuIjonh1VfaO8jMnDcfb28v/Hx9mTpjFj7e3rzYtEmO2nNzc6ND2zZM/OgjvD098c2Xj+lz5iJLUppRg/0HD1G/TtpYktygS4cOfDB+Anq9nubNHkzjBJUoQcN6dRn2wSimT5qERqthzKTJuGRhdKZfr570GTSYiuXLU7dWTX7b+js//fYbq5cvA6B+ndoUKxrAoPdGMHrEe8TFxzN1hi2ANcX2dq1bseDzL3i9bz/eGzyIQv7+XL0eyU+//Ub/t96iUMH0Y7kkJCRJg6zJnxynYUO2JqFIiVglSNTJREtqheuHEchclwvxrVuhNPtkFIopl6kd+ys+FoGz4oTOakCT4qho82N28sSic8eicwdKPHQs6PWgNd1HY70N3MEq3cUq3cdqicGYlIQs5U1HRXVG8gijR4/m4sWLhIeHYzAY6N27N23atCE6OjrLOry8vJg6dSpDhw7FarVSsWJFNm7cSL58+ewy7777LocPH2b8+PG4u7szY8YMwsNtgYiSJLFhwwYGDhxIvXr1kGWZF198Mc3y3/QYNmwYPXr0oFy5ciQmJnLx4kUCAwOzfR4yY+zYUQiDlc/nfM7Vy1dx9/SkYvkXGD+oBwk4Y1YcHYBKVWswaspMFs6axvzpk6lZvxHd3urHt8s/z1a7r/UZwOgh/WnXqAZGYyI/7fmTwgFF08jVbdQMrVbHvp3bqd2gcZr9bgYTFmcnhCQhoeBpiUOxSGiSV7WkROx37dSJPfsP8GLb9sTHx7Nu5QoCiqRdwXP+wkViY+PSbE+hQd06bPhxE58sXERsbCx+fn7UqVmDdwcNzDBnS1b54L1hzF+0mJOnTlGsaFGWLfyUfD4+aWRGT5zMxUuXKFf2BZYvWoCT06Pz9GTE+P+NZPiYsXTv3Qd3Nzf693qL6zcicXZ+oDPyxg0OHT3KvBkf57idzGj7ckvGTP6Qti+3xMXZMT5o9kdTefd/H9CuS1d8fX0ZMWQw0yLnPFJn86ZNmTjqAxYs/pzREydRtEgRZk2dQq0atsB1jUbD0gWf8u7/PqB52/YULRrAmBEjeK13H5yT+2DQ61n/zVdMmjadnv0HEB8fj3+BAtSpVRN3N8eREnsciGQASQ9obCtVFDOQgFUSWDQKdzVez+Hv8yePgsxFuTgXPdPGM2mxUEo5T82Yv3BTZJytTjhZDciKD+CHRednc1KcvLDgBZSyHys7g8EVdKYoZOttBHdQpCis0j0slhiSkpKQcxDP828hCZHOpOozRkxMDJ6enkRHR+ORKuDLaDRy8eJFihcvbv+V8axnYH1WCQwMZPDgwQwePPhpdyVHRNz+m1jJik6AWVcYv9hYvDR30AiZW7IPURYDVin9EYkUxg9/h4vn/mHZdz8/kT6uWv452377mYVfrbNv02vNmA06zMl1XlxEIs5GK/qkRIQ5b5UZuHL1KtUaNGLzDxuoUC79qZA9+/bTvlt3/j5yKN0AztwiISGBSrXrMnbk+3Tp2AGACVM/IiY2lo8nT3oibV67Hkm1Bg35+bt1BFco/+gDnhAHDh+mdafO7N26hcBiaR3j1KSOA7FvFwooCVhlMyC4q/XA+h/NCCEsJm5dv8q4bbe4FvvkppwzQoeZ8ua/qBp/CVerjJNVh05xszkqkh9mnR9WrSFjBUKxOSqKzVGxyneximislmhMJhMarY7qbTtRq0OXXO13Zs/vh3kuR0aKuDixu3pZosyWf61NH502TzsieZ17MTeIlVK+ILzxMRlx0kbhJCBS443VQrqOyPKFn1CjXgP0eld2bd/CD2u/4YPJT+ZXM0D7rq8TE32f+LhY3N3d0BssxGkMpNR58TTFgxWc4mLVX53Z5MRfpzh34QKVgoOJiY1l5rx5AIQ3eTAK5ZsvH/3e6pnrbZvNZm7evs2H0z+mcmjov+6I/PTbb7gaXCkRWIyLly8zeuJkqlYOe6Qj8qg4EKuQiNY5kyRl8pBT+Vcwo+OYLpRjXqFp9rlgJMx0gIoJ1zBYNeiszuisbmiUfAjZF5NTARSNM2ZnX8DX4VgNYFCs6Mx3OLP7UK47I1nluXRGwOaQqM7Bs0vfvn0zrDHTrVs3Fi5cmGVdFksSt5LugCShV7Sg00HCbbwkhSjJHasQRJG+R37yzyMsXTiXhLg4ChcLZMT4qbTr/FqObMoKWq2WXoOG4epkItFFQxy2YXRXEY9sFDgnJCCUf/9X1/PCgs+/4PzFizjpdARXKM+Gb792mB7q3+stB/n6L77E1evX09U1beIE2rdulaV2Dx4+Qvtu3SlZvDiL58199AG5TFx8PJM+ms71yEh8vL2pW7sWY0e+n66sLGuRcEFIBsc4ECUJBVscSIJOJkaNA8kzGHFhj1N19qTzyHMjnqrGHZRJvI1e0eJkdUZndUdSfBGyL2YnPxSNEybnAphjc7eAZ3Z4LqdpVJ59bt26RUwGKwk8PDzInz9/lnU9PD1j1RXEJyYGX+09zOi4J9y4LbxyqdePj1ZW0BkUEmTbL00NFjyT4pEtAk1C/FPu3X+PK9euYclgBNXPN59DXpO8zMNxIOKhEcKH40AUSY0DyYynPU3zJPAkmloJBymeFIuLVYKiAQx6aBVYbvCfnqZRefbJnz9/thyOjLgXE+k4PZOQhLvuPpIicU/2JNrqzLOyatDNxUS8kx4zGkDgrsSDCZxi4x9rOa5KzknJA/JcIklo0skHkhIHosgmFAnuaD1Q/qNxIP91ovHkZ0MTMIBWlhhQK/2cTv8GqjOikmcxGmO5aboL2KZntBoNGm5hEIIbGh8UK5ikpz9V56yxgkEiVrL9ytZhwt1oRGu2IBkTVTdEJVfJehyI11PspYqKI6ozopInMZsTiYiNwCpJOAkw63wwxN4nn9bCfdywKIIokX7+jX8TN72JOJ0BgYyEwMMSh7CA7inOzao8f8iyxuaAZBAHoqhxICrPOKozopLnsFrNXL5/AbMEWiGwyP74xiXhpY0jSehIxIko8XS/dPVaMxaDjlhsoyHOwojeaMYlyZjnluuqPJukjgOxT8MothoqVknBIqtxICp5A9UZUclTKIqViKizJEmgQSCk/OQzWXDW3EEjJG5rvIg3a59anIiMQO+aarmuOR5hBWd1ua7KYyJJEpLknDwN4+QYByISUCQziiTUOBCVPIfqjKjkGYQQXI06S4JkKx4uCx88FAVJ3MYDhRsaH1AEidLTWVXl6mTC6OJMHLaCdgaRgNao4JyYgHiCdXlUnn8ejgOB5GpFaeJAXEhCzQeikjd5bl3na/cTOXkt+l97Xbv/eIXFVB7N9ahzxCbXoHVSPHBDA5a7+GLhPq5YrAp3lIzjRA7u3UVIgDcx2Uihv2DmVDqG181URiMp6N0sxLm4YUGHBgs+STHoE03o46IdHJFzFy4QXKMWcXEZp2nPCVeuXqVgUGlOnjqVq3rbdenG6EmTM5UpGFSanzdvztV2V637jjKVKueqToAX27Zj06+/5pq+rJyf7LJn334KBpUmNi4ejexmqwsje9sdEUlJYtXqxZQKLkqczsINrSe3dB4k8SBY+9qVCEICvPn7rxMZtpOTvwcVlSfFczkycu1+Io0+3k6SJftlznOKs1bm92ENKOyVTvnvVDyqjHiPHj1YtmxZLvXs2aBBgwaEhoYye/bsLMlfunSJ4sXT1m5o8UoL5sz7BCeNE5IxigKyyRYnIjlzT2SeWjy0cjW2Hv4b91xMQe7mbKJTu/aUrhjM8KnTcFPikUzgFBdHeil8ps6YxevdutrzV+QkNfo7w0cQHRPDsoULHqvvVquV+Z8tZvX69Vy7dh0XFxdKBAbSvfOraYraZcafe3fj6ZG7MTqtWrxE4wb1c1UnwJC332bC1I9o3rRplgo1rlr3HWMmTebM0cPp7v/i03noHrOOz8NIskz1KrU5ceA0Hp4FEcnfFQ/iQKwosiBao0dIECPlPA/Kk/h7UFHJKc+lM3Iv3vSvOiIASRaFe/GmLDkjkZGR9verVq1izJgxnDnzoLS8Xu+ow2w2o9PpyIs8bt+3bNlCwQAfbpttCdK8nNzR6FzRxt+jgMaISei4K3kQlwRCl7mTp3Nywjd/gRz35WGcZCuSK8RKbggkZBR8jLFoLFbkxIR0Y0OuR97gt99/Z8KoD3KlD4/Lx3M/YeW3q/hw7BhCKlYgNi6OP0+c5H42fynn9/PL9b7pXVzQP4Ekhk0aNmDYB6PYtnMnjes/vrPj7eX12DokCSTJxR4HonOB/C6AUJCVeKySGQXBHd2DOJDciD3Kzb8HFZXH5bmdpnmW8ff3t788PT2RJMn+2Wg04uXlxerVq2nQoAEuLi6sXLmSu3fv0rlzZ4oUKYLBYKBixYp88803DnobNGjAoEGDGD58OD4+Pvj7+zNu3DgHmXHjxlG0aFGcnZ0pVKgQgwYNsu8LDAxk4sSJdOnSBTc3NwoVKpSmIm9ERAStW7fGzc0NDw8POnbsyM2bNx30h4aGsmTJEkqUKIGzszM9evRgx44dzJkzJzkAT+LSpUtZOlfOegl8nPAt4EuAXwHc8hXh8ObfKFT0BX7atp9qL3WheGAQOw/+iRCCpQvm8FLtUKoFFaRDszps3vS9XVd6w9Lrvl5Os2rlqV6qEIPf6saXn82nTvliafqxcd23NK8ZTO1yRfnfwNe5J0wYJT2j+/Xm8K6drFywkKIFClK4cBGuXL2ari0//PQT5V4ok2G5dngwPbHtj53UDX+RksGhdH6jJzdv3QLg4zlzWf3den7dspWCQaUpGFSaPfv2Z+lcpmbz77/zetcuvPxSc4oGBFC+bFm6dOxA355vOsgJRWHiR9MoW7kqwTVq8fEcx3TnD0/TpEwXbfjxR17u0InAchWo/+JLDn1MmYbYsm0bjVu+TGC5CrzU/hVOP+SQp56m+XjOXJq83Io16zdQtX5DSoeG0fedwQ7TXXFxcfQf+i4lKoYQUrM2i5YsTTONotFoaNygPhs2/pijc5aa1Prv3L3La736ULx8Rao1aMS673+gav2GfLZ0mcP5OXnqFLJGh0b2JCbOmQIlirJr/34Qgr27t1Ag0JN70Ve4q9VyU+vJ4vU/0bR6sP0+vX8vKkv9u3juH15r04yqQf60bVyTg3t32fel9/ew5acfaNu4JlVKFqB5zWCWL5rnoK95zWA+m/MxHwzuS40yRXixRkW2/foTUXfv8M6bXahRpgjtm9Tirz+P2o+5fy+KEW/3pGlV299Z+ya1+HnDWge9mzd9T/smtagWVJB6FUvQu3MbEpIzEh/cu4suLRtTvXRh6pQvRo+24Vy/GpG1C6SSZ1CdkWeUESNGMGjQIE6fPk14eDhGo5HKlSvz448/cvLkSXr37k337t3Zv9/xQbR8+XJcXV3Zv38/06ZNY8KECWxOflCsXbuWWbNmsWjRIs6ePcuGDRuoWLGiw/HTp08nODiYI0eOMHLkSIYMGWI/XghBmzZtiIqKYseOHWzevJnz58/TqVMnBx3nzp1j9erVrFu3jmPHjjF37lxq1qxJr169iIyMJDIykoCAgCydh1tJUQhAr0hYdb64xcbipbHF5wz/cC7DR7zP+t/3U7pseeZNm8T3q7/mg8kz+G7rXrq91Z//vdOHQ3t3p6v76MF9TBo5lK5v9mXVr39Qs24DPv9kRhq5K5cvse3Xn1i04is+Xf0t+/fu44tZs3DGyORxY6lSOYyunTry597d/Ll3N4UKFky3vX0HDxKS6nynR6LRyMIvvuCTj6ez/uuvuHb9OuOnfgRAv7d60uql5jSsV9feXpWwSlk6l6nx8/Vj19593Lmb+YNt9XfrMej1bFq3hlEj3mPmvPns2JX+OU1h4tRp9On5Jr/9sIEqYZXo0acvUffuOchMmDqNMe+/z8/r1+Hrk48effphNpsz1Hkp4gq/bNnCisWL+HLxIvYeOMgniz6z7x/74RQOHj7C8kULWLV8KfsPHeLEX3+l0VMpOJj9h9Kfdnlc3hk+givXrrFmxZcsnjeX5V99zZ27d5P3CpBtqdhljQ9IPvY4EABJxKEQQ6LGFmN0W+tBkuTE8aOHGDtsAB1f68mqX/+gaq26LP4ka8UcZ00ew2u9B7Dq5x2EVq7GO292ydCROXX8GO/1e4MXX27H2s276TvkfT79+EO+X/21g9zKzz8ltEp1Vv2yg7qNmvHB4L6MGtyXFu068u3P2wkILMGoIf3s05RJRiPlKobyybJvWbdlD+27vs4Hg/ty/Oghm503b/D+gLdo06kb67ft54vVG2n8YksQAovFwpC3ulKlRi3W/raLLzf8Rvsurz9yqlsl7/FcTtM8DwwePJh27do5bBs2bJj9/cCBA/nll19Ys2YN1atXt28PDg5m7NixAJQqVYp58+axdetWmjZtSkREBP7+/jRp0gSdTkfRokWpVq2aQxu1a9fm/fdtBbZKly7N7t27mTVrFk2bNmXLli0cP36cixcv2p2JFStWUL58eQ4ePEjVqlUBMJlMrFixAr+Hhu+dnJwwGAz4+2c8KvAwSUkJAHRt0R3ZNo4NArat/xyE7Yvo3aHvUrHeSwAkJMSzYvGnLF71PSGVbTYVKRbI0YP7WPvVUqrUrJ2mjW+Wfkbthk3o0XcgAIElgjh2+AA7tzoGOCqKwowFs8G7AAFItOz0Koe3b8Vl+FC8ZNBptOj1+kdOV1y9do3gChUeabvZbOajCRPsFVff7N6NmfPmA+Dq6oqLiwtJJtNjT4+M+99Ieg0YSEjNWpQpVYoqYZUIb9I4zfRF2RfK8O4g2zkqERjI0hUr2bVnD/XrpD2nKbzRvRstXwwH4KMJ49n+x06+WbOWt3v3ssu8O2iAXcec6R8RVqceP/+2mVYtXkpXp6IozPloqj3e5pU2rdm1Zy+8axsVWbN+A5/OnEHdWrUAmP3RVEJr1Umjx79AAa5dv46iKFmKG8kq5y9e5Pcdf7Bp7RrCQkMAmDH1Q+o1exFZckKj8UOSkpKlJXsciIJtZOKu1pVbWnfiZcdp2q+/WEit+o3o+fYQwHaf/nloP3t2bH1kn159vRdNXrIV+/vgwxns3r6F9d+u4I1+76SRXbF4PtVq16fP4Pfs7Vw4+zfLFn1C644PKrnWadSUDt3eAKDP4OGsXrGE8iFhNGvZBoA3+79D99bNuHv7Fr75C1CgYCH73xhAlzd6s2f7Fjb/+D3Blapw59ZNLBYLjZu3pFAR2z1fqqyt6nH0vXvExsRQr/GLBATaYshKlCrzSLtV8h7qyMgzSpUqVRw+W61WJk+eTHBwMPny2Qp4/fbbb0REOA5XBgcHO3wuWLAgt5KH+Dt06EBiYiIlSpSgV69erF+/HovFsUhYzZo103w+ffo0AKdPnyYgIMBhVKNcuXJ4eXnZZQCKFSvm4IhkF4slietxtqmO2Z99zHc7tvH7pl84+NvXlA8K4p7GFixZNPhBXy/8c4akJCN9urSjRpki9tfGdd9y5fKldNu5dOEcFUIdV2yk/qyTrRQuVhS8/QEJvUigSD4fom7dxiWbWVSNxiRcnJ0fKafX6x1Kv+fP7/fQr+vco0ypILb/vIlNa1fTqX07bt+5Q4/efXl35P8c5MqVcfzyL+CXnztRmY+mVK70YLRGq9USXLECZ8+fz1DG28uLoOLF08g8TEDhwg6F6/L7+XEnynZeLl+5gtlsJjTkwf3v4e5OyXSCoF1cXFAUhSRT7iWfk2SZcxcuodVqCQupiUb2Rtbkp0zpmnh6eCIk5+QCdbbRAkEMVmK4qTNwW5N5AOmFc/8QXNnxR0NIqs8ZERJW1f5eq9VSLrgSF87+k2E7lapWd9gWWqUGERfPY31oRVjpZEcBIJ+frb5UqRfK2bf5+Nq2Rd29Ddi+uxbP/ZhXmtamXsUS1ChThL1/bOPGddvfeOlyFahepz6vNK3DsL6vs+7r5cTcvw+Ap7c3rTp0oV/39gx841W++mIht2/eyJLtKnkLdWTkGcXV1dXh84wZM5g1axazZ8+mYsWKuLq6MnjwYEypvlBTB4tKkoSi2IJ5AwICOHPmDJs3b2bLli3079+f6dOns2PHjkyDTFOGRIUQ6Q6Ppt6euu/ZwWq1cPneOczJ6goUKUtYgSK4a26jE+7c1PiC9SIAesODdhRhs3HeslXk93ecJnFyzqA+jRBIqbOjJQ8tayQFZ1crJp0TGp1tua6nKR6soDMl2c9pdvDx9s5ScGjq1RmSJKW7Mic3kGWZ0OBgQoOD6fPmG6zd8D0Dh73HO/37UTTZ6dSmvjckcmR/VobWM5PR6dKeF0VJfrgnn5+MrufD3I++j16vz3aArC3eSQNokUj+X9IhSQYk2Q+RnG0XjSsiZcQluXlJmEDcA2xxEHdkN27pvACwWDKemsrIhscho3MshLCNQKbelgqt9sH9kKIrvW0p1+bLz+ax8vMFvDfuQ0q9UA693pVp40diTv7u0mg0LPp6PccO7WfvH9v4ZulnfDJtEit/2EKRosWYOHM+Xd7sw57tW/h143fMmz6ZRV9/R/BDjpZK3kcdGckj7Ny5k9atW9OtWzdCQkIoUaIEZ8+ezbYevV5Pq1atmDt3Ltu3b2fv3r2cOPEgF8G+ffsc5Pft28cLL7wA2EZBIiIiuHLlin3/qVOniI6OpmzZspm26+Tk5PDrKj2EonAl6ixGyZbJFMAjyYKr5jZOgmRHRBCdTmKnkqXK4OTsTOT1KxQtXsLh5V+oSLrtBZYsxck/HWMH/jpuC7wT7lriZZuzoxEKhkQjTjEJ6NLJD6LT6VCykNSsQrmy/HPu3CPlHoWtvSezWqx0kK1qZ0Li4+XNOXLsmP29xWLh+Mm/CCpRwlHm6AOZ+9HRnL90KY1MVgksWhSdTsfR48ft22Jj47hw+XIa2b//OUvF8uXSbE9BkjXIshMa2YAsuQASsiY/kiY/yPlA9kTIbsnxHslLb4WVMiWLY7FY+PPPnSDuoYh7nDl/iOiYaOI0Gm5oPVEKBAJw59aDX/dnMskFArZpiRNHDjpsO57qc0akxGWA7TqcPnGM4kGl0pUtWaoMRw84/v3/eXg/xYqXRKPRZKm99DhyYC8Nmr1Ey3adKFOuIkWKBRJx8YKDjCRJVKpag/7vjmTVL3+g0znx+y8PgozLVgim54ChfLnhN4LKlOWnVAGwKnkfdWQkjxAUFMS6devYs2cP3t7ezJw5kxs3bjzSCXiYZcuWYbVaqV69OgaDgRUrVqDX6ylW7MHqkd27dzNt2jTatGnD5s2bWbNmDZs2bQKgSZMmBAcH07VrV2bPno3FYqF///7Ur18/zbRSagIDA9m/fz+XLl3Czc0NHx8fh/n6lOyq8ZKCBGiSa8u4SPdwEX7c0PgiFIW7GeQScXVzp0fvAXw8/gOEIqhUtQZxcbH8eWg/Blc3WnXonOaYzm/05s1XWvDlZ/Op3/RFDu/Zzu7tW0CSsaJFixm9JQlJERjiojNcThlQpDBH/vyTK1evYjAY8PbySjcWoUHdurz7vw+wWq2P9eUeULgw23fu4tyFC3h7eeHhnn6itzrNwvnfsHd5qVmzdPe/9fZAqlYOo2pYGH5+vly5cpUPP55ByeLFc+wUpLB05VcUDyxGqZIl+WzpMqJjYtLkLpk5bz7e3l74+foydcYsfLy9ebFpkxy15+bmRoe2bZj40Ud4e3rimy8f0+fMRZakNKMl+w8eokGdOsiyzj7CAVqEpAPpoXsSEJITVkXh5KkTti3CgiSs6JxkSpcuicCMwIiFaPxKB1K7QWMG/W8koz+ajVajZdq4D3Bx0duX5Lro9QSHVWXJ/NkUKlKU+1F3mTc986RpXd7sw2ttwlm6YA4Nw1uw94/f2Z2FeBGAVcs/p2hgSUqUKs2Kzz8lJjqaNp26pSv7Wu8BdGnZiEWzpxPeqi3HDx/k22Wf87/JWQuWzYiixUqw5ecfOHZoPx6eXqxY/Cl3b9+kRFBpwOYwHdi1g5r1GuHj68uJo4e5F3WHEqVKczXiMuu+XkaDps3xK+DPpfPnuHzhHC+37/SIVlXyGurISB5h9OjRhIWFER4eToMGDfD396dNmzbZ0uHl5cXixYupXbs2wcHBbN26lY0bN5IvXz67zLvvvsvhw4epVKkSEydOZMaMGYSH2wIRJUliw4YNeHt7U69ePZo0aUKJEiVYtWrVI9seNmwYGo2GcuXK4efnlybWJTLqAjHY4lecFDfcFNvDWo/ghiYfQoG7SuZz62+/9wG9Bw/ni/mzaNOoOv26tWfHll8pHFA0XflKVWswaspMViz+lI7hdflj13a69h+Is4szHtZY9EYjmqQkW92PTOj3Vk80soZ6L75EhWo1uHb9erpyjRvUR6fV8sfuPZnqexRdO3WiZPHivNi2PRWq1eDg4SPpyp2/cJHY2IwzvTaoW4fNv2/jtd59qNOkGYOGjyCoZAm+WbYE7WMm8vrgvWHMX7SYJi1bsf/gIZYt/JR8Pj5pZEZPnEx467bcvH2L5YsW4OSUwZRaFhj/v5FUrlSJ7r370LHH61StUplSQUG4uBjQyAY0sge3biVx6OhROnfqA7IPQvZEyK4I2dnuiEiKBdlqRLLGIYkE4uPjaNyiLo1b1KNxy0Y0erkpnXq+zg2tJ2ZJS6LszG2tFwmSngkz5lOgUGF6dmjJ0N7dad+1Bz6+vo79/PgTLBYLXVo04qNxIxnwXuZ5Z4LDqjJ22ly+WfoZncLrsXfHNnoNHJbpMSm88/5Yli6YQ4fwuhw9sI/ZX3yFt0++dGXLVgxh+oKl/LLxO9o3qcWnMz6k/7sjHYJXc0Lvd96jbIUQ+nV7hZ4dXyafX34ahrew73dzc+fw/r283aMjrepXZd70ybw7eiJ1GjZFr9dz8dxZ3u3dg1b1qzLx/cG8+novXkkOoFV5fpDEk5qMzkViYmLw9PQkOjoaj1TZAo1GIxcvXqR48eK4JM8BP+sZWJ9VAgMDGTx4MIMHD/5X27197zK3rLaHpt7qgovkhov5Jt5YuaHJh5IFRySnuGgsKAaZpOR6NpMG9uXymTP8sHYNJCU94ujss2zlV/yyZSvfLluS67qfBa5cvUq1Bo3Y/MMGKpRLfyokJ1lnM0OSZCRJg5Q8wpEyyhGfmEBo9bKMGzWJrp1eA2D8h6OIiY1hxoezkYQFSZgRkgUhKbaREECRBHEaPUYeHWycFZrXDKZrz350e6tfruhTeToIi4lb168ybtstrsU+f7WmtLLEgEZBDG5SOlf1Zvb8dmg/J8o//fRTpk+fTmRkJOXLl2f27NnUrZt+/Y7t27fTsGHDNNtPnz5tj0XIbQp76fl9WAPuxf97pdq9XZ3ytCPytLgXE/mQI6LDSeOGs/E2PrKVG7IPVgWinoAjIgGuBhPzPv2cGg0bYTDoOfzrj3z/zbdMGTf2iTgiAN1e7cT9mBji4uIcVoaoPILk4FGJh5wOSZe8QsXG8ZN/cvb8WcJCw2wOx5xpgOClRo2QlFjASj4fN/q+9RpWojFpZWIlVxTUv1sVladNtp2RVatWMXjwYD799FNq167NokWLaN68OadOnaJo0fSHwwHOnDnj4BU9ztLPrFDYS686B88wffv2ZeXKFSgPr4KQACHo1u4lJkz/GMsTckQMOjMmvY5Y3Dh5+DDL58wiPi6OYgEBTBw9iq6dOuZ6mylotVoG91d/IaeLJNlGOewOhwbQISStwyqP1EO5klCQhBlJSWTB4lmcu3ABJ52O4AoVWbdmFcLfj0hsqz1eeXs4AridfGzbxjWJvHqF9Bg9dSYt2j65e0FFReUB2Z6mqV69OmFhYSxY8KBIV9myZWnTpg1TpkxJI58yMnLv3j28cljHIbvTNCrPPpcun+PMzX9QkHASIGl8cE2MxkdOxORRCM98fkQpXrnapiwJXAwW4jUGQELGmrxcV+CUy1V0/9vYktRJpCzzlG3bkJODSR98TnkJSeMQPJoGIVJNq1gRCAQSAkGiRke8ZECkXtr7CK5fjcBitqS7L5+fH65uGVeBVvlvoU7T5IwnMk1jMpk4fPiwPUNnCs2aNWPPnsyD8ipVqoTRaKRcuXKMGjUq3ambFJKSkkh6aJg8JiYmO91UecYxmRJIMhgpUqIYzgKExg/PuGj8tE7ckTxJEnKuOyJuziYSnF2IT44DcBXxyEaBc3w84hEBqv89JHuuCEl62HGQkHD8bHcoJBmBnCZPRWoe9ctHUixIwgJYkp0OQcrVsWggRnbFQu796EjJ+KmiovJ0yZYzcufOHaxWKwUKOFZ6LFCgADdupJ8Vr2DBgnz22WdUrlyZpKQkVqxYQePGjdm+fTv16tVL95gpU6Ywfvz47HRNJY9gsSRxOfoiFklCJ0DIvnjFxpFPF0eU5IFJSLnqiOhkK1qDIFa2xWdoMeORlIhsUdAkxOdK9dNnixQnImV0QiKtM5F6ZELKNWfigaBIXoWkIKFA8nsQCElJ1iQQUvL/gEBCkQXxGmeMGJ7Da6OiopIROQpgTZ3BL6PMnABlypShzEPppGvWrMmVK1f4+OOPM3RGRo4cydChQ+2fY2JislxYTeXZRVGsXL53DpMEGiFA9sUr3oiPLpr7uGEUMncV71xrz83FRLyTHhO2NNzu1ngwgy42jtwpwv4vIEnIko70pziS/7c7Eo9eqZ9VqyXxwIGwORUCmzOhJDsQCkgpTkRKivOH2pBAkcEiyZglHWZ0WHFCyeY0ioqKyn+DbDkjvr6+aDSaNKMgt27dSjNakhk1atRg5cqVGe53dnbGOQs1PFTyDkIIIu7+Y8+uqpF88Iq34KWNIhZXjELLXZE7joizxoIwyMRKttEQJ0y4Go3oTGakJGOutPGkkWUnJPQOVV2zNSqBAGFN/j9lVMJxZOLhUQm7fikl2ZfNmbDKMiacsKBVnQkVFZUnRracEScnJypXrszmzZtp27atffvmzZtp3bp1lvUcPXqUghmUWVd5/hBCcPXug+yqOsUTT5PAU3ubBAwkCl2uOCKSBK56E7FaV2xTEgoelngUCzhls6jd00CSNcjoEZIBJMnuJMjWJMDCg1GJtFMcYHMgHnYoFA1YJA0mnLCiw4qsOhMqKirPJNmephk6dCjdu3enSpUq1KxZk88++4yIiAj69u0L2KZYrl27xpdffgnA7NmzCQwMpHz58phMJlauXMm6detYt25d7lqi8sxyI+oiMdiKgTkrrrhbtLjLN0lCT4Jw5o7wfOxJE1cnE0YXZ2KTi5W5iEScjRZcjInwqEJkTxFJkm31TyQDQtLYz4OkmIEErLKCVWvlvuyBFY3qTKioqDyXZDsdfKdOnZg9ezYTJkwgNDSUP/74g59++sle3yQyMtIh1bfJZGLYsGEEBwdTt25ddu3axaZNm2jXrl3uWZEe96/A9WP/3ut++rkK/uvcvn+FKGEruqa3OuOmuODGTSw4EydcuCs8sr0c82G0soLezUKcixsWbNV1fUwx6I0mXOJiHByRPfv2UzCoNNHZWJ318Zy5NHm5VY77l5pzFy4QXKMWCQlmNLI3ksYPIbsjJA2SUJCtcQgRhUWK5a7OhVsaT27LPpjRZuqIXLsSQUiAN38/ouhadunZoSXTxo3MVCYkwJvff9mUq+1+v/pr6pQv9mjBbNKlRSO2/Lwx1/Rl5fxkl4N7dxES4E1MJhWes3J+Lp77h26tmlI1yJ+O4eknpcwtUvdnwcypT7xNleeLHAWw9u/fn/79+6e7b9myZQ6fhw8fzvDhw3PSTM65fwXmVQbLk8mimS5aZxhwGLweHWj7qFLqPXr0SHMe8yL3Y25w22J78Pds/QYVyocwe+wAkJyIxcBdxQ0lg6DLa1cieKlWSJrtL7XtwJS5nwG25brxznrMyQGqbko8kgmc4uLSLX1eJawSf+7dnWFhuZzSrks3ypcry8RRmdcYkWUdH838hDe798HNowgC2L13J+06t+SfP//EzcMLo5NMLF6Z6hk9pD+xMdHM/uKrx+q31Wpl2YI5/LD2WyKvXsHZxYViJYJ4pevrtOnUNct6th7+Gw/PzPucXcJfbkudRk1zVSdA73eGMWPSGBqFt0i3mGFqvl/9NdPHj2TXX2mr/wLM/GwFWl3u1hsNrVyNrYf/xv0xU+V/OmMqeoOB77cfwOD6ZLP9PqnrpfLf4fms2ptw9991RMDWXsLdLDkjkZGR9verVq1izJgxnDlzxr5Nr3fMHGs2m9HpdLnX13+BuPgoIk13MJkteGickdDipCSikbTcx5UoxRVFenTl2s++2UDJ0g/KBji7uNiSl7la7ct1dSIJfXw8LgIkY2KGUz5OTk7kf8KZf1MjSRpkyQUhGbh+I5Jft/7GxLHTkRQTkICCLdnaLY0nidonU38nIxbMnMq6r5czcuI0ygVXIj4uhr+OHyMm+n629Pjmz3rwelZx0etx0ed+BuW6jcMZP2Iwe3ZspU7Dx394enrn3uqvFHROTrlyTq9evkjdxs3+lVwqT+p6qfx3UKv2PgX8/f3tL09PTyRJsn82Go14eXmxevVqGjRogIuLCytXruTu3bt07tyZIkWKYDAYqFixIt98842D3gYNGjBo0CCGDx+Oj48P/v7+jBs3zkFm3LhxFC1aFGdnZwoVKsSgQYPs+wIDA5k4cSJdunTBzc2NQoUK8cknnzgcHxERQevWrXFzc8PDw4OOHTty8+ZNB/3BIcHM+Xw+zao0J6xwGO8NHMu+PXtZ8MVXGApXoFDhQCKupF/ZNjWe3j745i9gfxXwMXDw2G5KefuxZ8tmutWvRahfAY78vg0SE5j/2WKqN2xE8fIVadzyZX78+Re7rvSmaVZ+u4rKdepRvEIwb/Trz8IvllCmUuU0/VizfgNV6zekdGgYfd8ZTFxyxtZ3ho9g74EDfL5sOQWDSlMwqDRXrl1Dll3QyD5IGl+E7AaSzA8b11H+hbL4F9RjkWK5pXPlvsYVeLBSJmW4e/f2rbRpWJ0aZYrQr9sr3L5pW8G2YOZUflj7Ddt++4mQAG9CArw5uHdXls5lav7Y8gudXutJs5ZtKFK0GGXKVaTdq915rffbDnKKojBr8hjqVihOo7AyLJg51WH/w9M0KdNFP3+/jtfaNKNqkD9tG9d06GPKNMQfW3+lQ7M6VA3yp+vLTTh7+i+7TEbD/hvXfUvzmsHULleU4f3fJD7uQWByfFwsIwf2onrpwjSu/AIrFn+aZhpFo9FQp2FTfv4+d2LWUuu/e+c2A994lWpBBWleK4RN61fTvGYwKz9f4HB+Hp5Oi4mOdriO6U3TfL/6a8KrV6B6qUIMfqsb9+9FZdqvkABvTp04xqLZ0wgJ8LZfs7On/+KtTq2oFlSQehVLMGHEYBLiH2QfPrh3F11aNqZ66cLUKV+MHm3DuX7VNu1+5tQJenZ8mZovBFCrbFFefakBf/151N6/JzGtpvLfQXVGnlFGjBjBoEGDOH36NOHh4RiNRipXrsyPP/7IyZMn6d27N927d2f//v0Oxy1fvhxXV1f279/PtGnTmDBhAps3bwZg7dq1zJo1i0WLFnH27Fk2bNhAxYoVHY6fPn06wcHBHDlyhJEjRzJkyBD78UII2rRpQ1RUFDt27GDz5s2cP3+eTp062Y+3Ws2cP3eOn7//lXlLZvHj9i3MGDOMGpVD6Nq1MzsPnWDr4b/xL1Q42+fEzWAi3mDAmjyg98no//HB8OH88cvPlH2hDFNnzuLbdeuYOn4823/eRO833mDAu8PYs/9AuvoOHD7MiDFjeev1HmzZ+D31a9dm7oKFaeQuRVzhly1bWLF4EV8uXsTeAwf5ZJFtqmji6FFUqVSJrp06cWL/AU7sP0GRIiEgeyJkHQiBbI0HEcWeg3/wQkgotzRe3NZ6YyX9kaHExES+/Gwek2cvZOnaTdy4fpWZk0YD0KPPAJq1bEvtBo3Zevhvth7+m9DK1bJ9LgHy+RXgwO4/iLp7J1O5jWu/QW9wZeXGLQz533gWzZ7G3j+2ZXrMrMljeK33AFb9vIPQytV4580uaR6gsyaPZeioiXy9cSs+vr4M6tkFsznjYOMrly+x7defmLv0Wz5Z+i2H9+9hyfzZ9v0fTxjFsUP7mbvkaxZ+9R1HDuzl9MnjafRUDA3jyIG9mfY/p4wZ2p/rVyJYvOp7ZixczuovvyDqTubn91EcP3qIscMG0PG1nqz69Q+q1qrL4k8+zvSYrYf/pmTpF3it9wC2Hv6bHn0GkJiYQL/uHfDw9OKrH7cyfeEy9u3azpRRtml0i8XCkLe6UqVGLdb+tosvN/xG+y6v26eVRw7sTYGChfj6x61889M23uw/ONenqFT+u6h30jPK4MGD0wT5Dhs2zP5+4MCB/PLLL6xZs4bq1avbtwcHBzN27FgASpUqxbx589i6dStNmzYlIiICf39/mjRpgk6no2jRolSr5vggq127tj3df+nSpdm9ezezZs2iadOmbNmyhePHj3Px4kV7EroVK1ZQvnx5Dh48SFhYKNHGe5jMZqbP/5D8+UvhGR+Dh8aE5KRH6+KKR4Ei2ToPPdqE2+b2k5erLv35N1yEbQpu+MCBNKhWFYCEhAQ+W7KUNSu+pEpYJQCKFS3KgUOHWPntt9SqnvaBveTLFTSqX49+b/UEoGTx4hw8cpQt2xwftIqiMOejqfYqu6+0ac2uPXvhXfD09MbJyQWDwZv8BR4k95OtRoSciAUJow7uS15cuhZJyeCqj7TZYjYz6sOZBAQWB+DVHm+xaM50AAyubri4uGA2JT32UP6wMZMY1vd1GoeVoWTpFwipUo2GzV5KM31R6oXy9B0yAoBixUvyzbLF7N+9g5r1Mi7p8OrrvWjyki3w94MPZ7B7+xbWf7uCN/q9Y5fpM3i4XcekmQtoVq08v//yI+Evt01Xp6IoTJw5314vpmW7juzf/QcDsY2K/LD2G6Z+spjqdeoDMGHGPJpUKZdGT37/gty4dhVFUbIUN5JVLl04x65tW1jxw2aCK1UBYNz0T2jTsPojjsycr79YSK36jej59hAAAksE8eeh/ezZsTXDY3zzF0Cr1WJwdbXfJ+u+Xk6SMZFJsxdgMNhG5EZOnMagNzoz+H/j0Gp1xMbEUK/xi/Z7r0SpB/f0jevXeL3vIIoH2WqXFCte8rHsUlF5GHVk5BmlSpUqDp+tViuTJ08mODiYfPny4ebmxm+//eawcglszsjDFCxYkFu3bgHQoUMHEhMTKVGiBL169WL9+vVYLI5FwmrWrJnm8+nTpwE4ffo0AQEBDtlwy5Urh5eXF3/99ReXo85ikaBQkUL4+QXhGR+PpyaJO7IXipCw5MD3nbt4Eat27ebbnXtZvXM3YSULozPZ+hxSsbxd7p9z5zAmJdHp9TcoGRxqf63Z8D2XUp2jFM5fuEilVOerUkhwGrmAwoXtjghAgfz5uRN1D43GF0nOh626rISkmJGUaBTuYdbGcVPrwW2tB/clWyyI0WjE2eXRyfxc9Ab7wwDAN78/UXduZ3JEzihZ+gXWbdnDiu8307pjV+7evs2gNzoz7r1BDnKly5Z3+OyXv8Ajf+2HhD1wurRaLeWCK3Hh7D+OMpUfyHh6e1OsZBAXzznKPEyhgKIOhet88/sTddd2Xq5GXMJiNlMhNMy+393Dk8CSQWn0OLvoURQFU1LuxpVdPPsPWq2W8sGV7NuKB5XG3dPzsfReOPcPwalGv0JyMBp24ew/lC5Xwe6IAIRWqY6iKFw6fxZPb29adehCv+7tGfjGq3z1xUL79CBA9179GT98EL07t+GL+bO4culizo1SUUmF6ow8o7i6ujp8njFjBrNmzWL48OH8/vvvHDt2jPDwcEwmk4Nc6kBXSZJQFFupsYCAAM6cOcP8+fPR6/X079+fevXqZTo0nqIDMk77L4TgXvxNEiXbIl2DwQ3PBBOemnhuy96YrDLWbN5qsmTrs0dgEAElSxFUsggVChXEw6SgS7QtFTYYDHZ5RbFFXaxY/Blbfvje/trx808sThX3Yu83Ik0tlvRW4eh0thL2suxsW44ruyMU7MtxwQoYsUqx3HloOW7qpbjePj7E3L//SNt1qYa+JUlKt1+5gSzLVAgNo3uv/sz+fCUTZs5n/bcruBrxYPWINp17SijZLy74qFVkyUIZ7tJp0zkvyf1IOT3plapITfT9e7joDbkecJnSVmZ2yrLkIAtgeVQenNy69pmU7UjZPnHmfL7c8Buhlavx68bvaFW/KsePHASg39D3Wbd1L3UbNePA7p20bVyDrT//mDt9U/nPozojeYSdO3fSunVrunXrRkhICCVKlODs2bPZ1qPX62nVqhVz585l+/bt7N27lxMnHgTT7du3z0F+3759vPCCbTVLuXLliIiI4MqVBzlVTp06RXR0NIXKBAKgEU5oBHhpormt8cFilYjBFa3OCas1a2W3XXVmJNcH8RQe1lhcjCZc4qIR1vTLvZcOKomzkxPXrl+neGAxh1fhQuln+w0qUYJjfzrGFPx5wjFPhyRpAA2yJj/IXgjZCXudFhGFhRhkJx2xQsstrRdmMl71VKZ8MBfOnslwf1bROTlhVZ5MCfOSpWzXOjEh/rH0HD96yP7eYrFw+sQxigeVcpQ58kAm5v59Ll84T/GSjjJZJaBYIFqdjpPHjti3xcXGEHHxQhrZc2dOU7ZC2hGwx6VEqdJYLBZ7UCfApfNniX0oENXbxxeAO7cejDiceURumBKlynAi2SFI4Xiqz1nqX+kynPnrBAkPXdtjh/YjyzLFSjwYQSpbIZieA4by5YbfCCpTlp82rLXvCywRRPde/Vn09Xc0frEl369+vOXlKiopqDEjeYSgoCDWrVvHnj178Pb2ZubMmdy4cYOyZctmWceyZcuwWq1Ur14dg8HAihUr0Ov19oR1ALt372batGm0adOGzZs3s2bNGjZtsq2UaNKkCcHBwXTt2pXZs2djsVjo1bsnVWpVoUJoBfSKHmerjAYLtzU+KBa4n5wRtXBAUU4cPcy1KxEYXF3x9PJOd77ezWBL554ypeNpiscl3vTImjJubm70fasnYz/8ECEUqlWuQmxcHIeOHMHV1UDHdJLsvflad9p27srCL5bQrHEjdu3dx+9//IEkSWhk1+S07HpSfHbZakJICQgSEZLgptYLARQIKJ4l22rVb8T44e9gtVrRaB69rDkjChUJYM+OrclD6z64uae/JLh1g2oMGjGGxs1bprv/3T49CK1SnZAq1fD1y8+1KxHMnTqBYiWC7HEBOWXV8s8pGliSEqVKs+LzT4mJjqZNp24OMotmT8PL2wcfXz/mTZuEt48PjcJb5Kg9Vzd3Wr3SmZmTx+Dh5Y1PPl8WzJyKLKcUGHzA0QN7qVmvUZZ1W61KmmRyOp3OYck5QGDJUtRu0JgJI95h9Eez0Wq0TBs3EheXByMwLno9wWFVWTJ/NoWKFOV+1F3mTZ+caftd3uzDa23CWbpgDg3DW7D3j9/ZnUm8SEa81LYDC2ZMZfSQ/vQdMoJ7UXeZOnoELdt1Ip9ffq5GXGbd18to0LQ5fgX8uXT+HJcvnOPl9p0wJiYyc/IYmrZoTeGAotyMvM5ffx6l8UsvZ7sfKirpoY6M5BFGjx5NWFgY4eHhNGjQAH9/f9q0aZMtHV5eXixevJjatWsTHBzM1q1b2bhxI/ny5bPLvPvuuxw+fJhKlSoxceJEZsyYQXh4OGAbyt2wYQPe3t7Uq1ePxk0aU7BYYT5e/DEGxQk3swsuUgIWSYuwQhQP5vdf6zMAjUZDu0Y1aBASROS1qw59c9ZY0LkLYrVugIRBJACgjU/IcnG7EUMGM3TAAOYuXES9F5vT+Y03+e33bQQUST/3S7XKlflowng+W7KUxi1bsX3nbvq+2R9nZ719OS7J0zAKUVg0sdzSuREn61GQ7ctxH2VbCnUbNUOr1bFv5/Ys2ZMR7br0oFiJUnRu0YgGIUEcO7Q/XblL588SF5txttla9RuxY8svDHqjM63qV2X0kH4ElizFwq/WodU+3u+Ud94fy9IFc+gQXpejB/Yx+4uv8PbJ5ygzciwfjX2fzi0acvvWTeYs+Rqdk1OO2xw2ZhIhYVUZ+Pqr9OnSltAq1SkeVBqnh+J0bkZe59jhA7Tp1CXLehPi4+j0Yj2H14AeHdOVnTBjPgUKFaZnh5YM7d2d9l174OPr6yAz/uNPsFgsdGnRiI/GjWTAe5knywsOq8rYaXP5ZulndAqvx94d2+g1cFimx6SHXm9gwcq1RN+/R9eWjRnWpwfV69Rn5KRpyfv1XDx3lnd796BV/apMfH8wr77ei1e6vYFGoyH6XhSjBvelVf2qvNfvTWo3bEL/obmbfVblv4skntRkdC4SExODp6cn0dHReKTKSmg0Grl48SLFixfHxSW5wukznoH1WSUwMJDBgwczePDgR8pGx97iWtJtBKBXNBisnngrN4nS5ENRBHeVrCfwcncxEetkQCAjo+BpikOyKOjiH2+qICvYquMaELLtgTX0/YGcO3eWH1etQ5GTsCIRq3XGiMsjNGWNVcs/Z9tvP7Pwq+ezNlNK5txVv/zBC+UrpitzcO8u3ur4MjtPXsLjMYM7MyMhIZ5mVcsxdPQk2r3aHYCZk0YTFxvLmI9mP7F2U9O8ZjBde/aj21v9/rU2VXIfYTFx6/pVxm27xbXYJzNN+jTRyhIDGgUxuMnjjYqmJrPnt0P7udrqs4JXgM0xSLj777VpyJenHZHsEJ9wj+tJtxBI6BUJF+GFl3KDKI1PthwRraSgc1WISc6k6owR50QLzokJiCzGl+QESdYmV8fV8+niT6hfpyEGg4Hff/+Z1eu+4cMJE4nXmYmWvHK97fZdXycm+j7xcbEOK0NUHp/TJ49z6dw/VAitTFxsDItm237xN2z2kl3Gx9ePHn0GPq0uqqioZMDz6YyAzTH4jzgH/ybGpHiuxl9DkSScBTjhjZflJvc13smOSNZ+6U794B02PFS5WULY05C2b92KaRMn5Gq/M6qOe/TYIeYvmk1cXBxFixbl/fFTadbtTTIuUfZ4aLVaeg3K/hC7StZY/tk8Lp0/h06no1xwKEvX/uQwPfR6X8dly20b1yTyavpFLkdPnUmLtulPx6ioqOQuz+c0jcoTwWxJ4tK9c5gkcBLghA/5ku4Qp3XHqkhZckQkwOBqIiIqnriYOLRYcDUZ0ZrMSMnLlN3d3fDNly9zRVlBkpAlZyT0yatgkjcLBUmJx6oxIwTc07phfo79cpWMuX41Aos5/RVa+fz81NErFTvqNE3O+G9P06jkOlarhcvJjohWCLSSD97GKBI0blgUiagsOCIuGgtWVy1xuOHj50ZAPjckk8A1NnfHIWRZl+yA2FYxCLClZVcSUWQjFmQSnLTEP6I6rsrzz79RRE5FReXRqM6IyiNRFIXLd/8hSQYZgQ4vvBNjSNLqMYmsOSLuLknEOrkmB6la8TTFI1sUtLkUpCrLWpsDIulBkuzTMLI1CSElYpHApFO4J3llWNVXRUVFReXpoDojKpkihODK3X9IlG3ZVZ2FB16JiVh0OpKERJTilenxWtmK1hViJNtwt4swojNacE6Iz1EWTwckCY2kR0iuID1YaispFiABq2zBqlGI0nhlOwOsioqKisq/h+qMqGTKtTvniJNs86MuigFPowWhkzAKmSjFO9Nj3ZxMJLi4kIgWEHha4sAicImLfazRCVswqitCNjxwQIQVSUnAqjFjlSRitHqScMtUj4qKiorKs4HqjKhkyI27F4mWbEGlBsUZ9yQZWWsiQWgydUQkBAZXC7EamzOgw4RrYhLOJiOkqqWTHWxTMW4I2fmhaRgjipyAGRmjk4Y4NQ5ERUVFJc+hOiMq6XLn/jXuJmdBNSg63EwuaDXxJKDjruKT4XF6rRmzQUcctkJ/bkocmMA5LuNMoI/ClpjMDSHrkoNRQVbisWiSsGoU7mq8UNRpGBUVFZU8y3PrjETGRXIv6d6/1p63szcF3dIvyJbXuB97i1uW+wDoFRlXsytOcizxwok7ImNHxF2fRKzODYFkC1JNikdjsaJJSMhBLyQ0sjNIbg/ygggFWYnHrLFg1ipEyd7Zmu7JSebPBTOnsu3XTaz+dWcObEjLpfNnebNDSzb+cShXl41mJfNpTujZoSVlyldk+LgpGcqEBHgza/FKGr2Ys7oy6fH96q+ZPn4ku/66/GjhbNClRSPeHDCEJs3/GzVV1OyvKnmF59IZiYyLpOWGlpisOZ8SyC5OGid+bPNjlhySR5VS79GjB8uWLculnmWP+MT73EjOruqiSBisnrhI0cQL5wwdEZ1sRXYIUk1Em6TgFBdnL3/erks3ypcry8RRmdfhsAWlGrh87Q5V66at4Nq6bVsmzF2SI9tCK1dj6+G/cc9krXtOyMoDO4VPpk2i02tv2R2RnDhIo4f0JzYmmtlfPF7FVKvVyrIFc/hh7bdEXr2Cs4sLxUoE8UrX12nTqWuW9Ww9/Dcenl6P1ZfUhL/cljqNmuaqToDe7wxjxqQxNApvkW4xw9R8v/prxrz7NrXqN2bBygfVa2Oio6lbIZDPV2+kas06WWo7tx1bFZXniefSGbmXdO9fdUQATFYT95LuZckZiYyMtL9ftWoVY8aM4cyZB6Xl9Xq9g7zZbEany7g0fW5hTIrnatxVrMnZVfWKFwblPvHouS3SjxFxd0oizsWAggYJgac5FizgHBebrb5LsozMw0GptlT+a1Z+RanSpYnTOJOEE87pJLYTQmC1Wh9Z3E3n5IRv/gKP7MuT4mbkNbZv/pnh4z58an14mAUzp7Lu6+WMnDiNcsGViI+L4a/jx4iJvp8tPU/inLro9bik+jvIDeo2Dmf8iMHs2bGVOg2z5uxotVoO7N7BgT07qVarbq73Kbtk9X5XUclLqBPtTwF/f3/7y9PTE0mS7J+NRiNeXl6sXr2aBg0a4OLiwsqVK7l79y6dO3emSJEiGAwGKlasyDfffOOgt0GDBgwaNIjhw4fj4+ODv78/48aNc5AZN24cRYsWxdnZmUKFCjFokC09tsViIqhUaebNXMT7fYYTEliNyqGhzF26mjsPOSKR167wzptdqFGmCLXKBdCnT39u37qDDhMeiXF8MnEqLRo25Js1a6nesBHFylVg0HvD2XvgAJ8vW07BoNIUDCrNlau2yrayrEUjeyHJfgjZYNtmNSKSE7JLvoWQCgbhnj8A3/wFcPfw5ODeXYQEeLN7+1Y6v9SQKiULcOTAXoQQLF0wh5dqh1ItqCAdmtVh86bv7X1POS4m+kGStXVfL6dZtfJUL1WIwW9148vP5lOnfLE012zjum9pXjOY2uWKMrz/m8QnO1ujh/Tn0L7dfPXFQkICvAkJ8ObalYh0r/uvGzdQpmwFChQsnOG98f3qr6lTvhi7t2+lTcPq1ChThH7dXuH2zRuAzYH4Ye03bPvtJ3t7B/fuylBfZvyx5Rc6vdaTZi3bUKRoMcqUq0i7V7vzWu+3HeQURWHW5DHUrVCcRmFlWDBzqsP+kABvfv9lE2CbLgoJ8Obn79fxWptmVA3yp23jmg59TLkOf2z9lQ7N6lA1yJ+uLzfh7Om/0pyHFBbMnErH8LoZXgeA+LhYRg7sRfXShWlc+QVWLP6Unh1aMm3cg8qyGo2GOg2b8vP3WS9UqDcYaN2xK3OmjM9UbtaHY3m5XhWqlyrES7VDmTd9Mmaz2W7PwlkfcebUSft1+3711/bz9fdfJ+x6YqKjHa5rRvf7lUsXeefNLjSsVJoaZYrQpUWjbFeEtlgsTB0zgjrli1GvYglmfTiWUUP6Mbjng5Gx3du20KPdi3aZAa934sqli/b9ZpOJD0e9R+PKL1A1yJ/mNYP5Yt7MbPVDRUV1Rp5RRowYwaBBgzh9+jTh4eEYjUYqV67Mjz/+yMmTJ+nduzfdu3dn/37H8vHLly/H1dWV/fv3M23aNCZMmMDmzZsBWLt2LbNmzWLRokWcPXuWDRs2ULFiRRTFyuV7ZxHA0nlLKV82mJ0/r+HtAf0ZN24Se/7YBth+kQ1+qxtx0VEs/2kTCzf8yNWLF/jf691wTjLhEhcDipWLlyP44aef+XzePLZs/J5JY0ZTpVIlunbqyJ97d/Pn3t0UKVwMjewDcj5bxVwhkK3xKERh1sRzV2ObxrCiyfAczf5wLIPeH8OG3/dTumx55k2bxPerv+aDyTP4buteur3Vn/+904dDe3ene/zRg/uYNHIoXd/sy6pf/6Bm3QZ8/smMNHJXLl9i268/MXfpt3yy9FsO79/DkvmzARg+fgohlavSvksPth7+m62H/8a/UPrOxpH9eygXHJrZZQcgMTGRLz+bx+TZC1m6dhM3rl9l5qTRAPToM4BmLdtSu0Fje3uhlas9Umd65PMrwIHdfxB1906mchvXfoPe4MrKjVsY8r/xLJo9jb3J90RGzJo8htd6D2DVzzsIrVyNd97swv17UalkxjJ01ES+3rgVH19fBvXsYn94p0dm1wHg4wmjOHZoP3OXfM3Cr77jyIG9nD55PI2eiqFhHDmwN9P+p6bvkBGc+/uUg3ObGldXdybOnM93v+9j+LgpfPfNl6z8/FPANu30Wu8BlCz9gv26hb/cNlt9SH2/JyTEUadRUz77ej2rftlBrfqNGPRGZyKvpV9rJz2Wfjqbn9avYfzH81m+/hfiY2PZ9usmB5nExAS693qbr378nc++/R5ZkhnSqxtKcp6gr5csYsfmn5n+6RK+336AyXMWqZltVbKNOs73jDJ48GDatWvnsG3YsAcF1gYOHMgvv/zCmjVrqF69un17cHAwY8eOBaBUqVLMmzePrVu30rRpUyIiIvD396dJkybodDqKFi1K1apVuXT7NMZkt7RKtaqM7PsaCbKBNsWrs+vAcVZ+/ik16zVk387tnD39F5uO/4V/kQA0WJg7bzZN6zbg7K6dhAYHA7apmU8+no5vvgcxJjqdDr1eT8ECAWmCUiUlHovGgkkLUbIXAALbL94ebcKRHprbX7ruJ/v7/u/+j5r1GgK2cvErFn/K4lXfE5L8cC5SLJCjB/ex9qulVKlZO805/mbpZ9Ru2IQefW1VXANLBHHs8AF2bv3VQU5RFCbOnG+P82jZriP7d//BQMDdwxOdzgkXvf6R0xXXr0ZQtmJopjIAFrOZUR/OJCCwOACv9niLRXOmA2BwdcPFxQWzKemxp0eGjZnEsL6v0zisDCVLv0BIlWo0bPZSmumLUi+Up++QEQAUK16Sb5YtZv/uHfZznx6vvt6LJi+1AuCDD2ewe/sW1n+7gjf6vWOX6TN4uF3HpJkLaFatPL//8mOGD+nMrkN8XCw/rP2GqZ8spnqd+gBMmDGPJlXKpdGT378gN65dRVGULMWNpBzTpWcfPpk2iYbh6Qfq9n7nwd9n4YCiXDp/ll9/WM8b/d7BRa/H4OqKVqvN8XV7+H4H8PL2oUy5B8HKA4aPYuuvm9i++Wc6v947Szq/WbaYnm8PoXHzlgCMnDSdXds2O8ikXMcUxn38CQ1DS3H+n78p9UI5Iq9fpWjxklSqVhNJklRHRCVHqM7IM0qVKlUcPlutVqZOncqqVau4du0aSUlJJCUl4erq6iAXnOwQpFCwYEFu3boFQIcOHZg9ezYlSpTgxRdfpHnz5oTUKI3RSUICJCRqhVYgQTYQZXVFkTSEVK7Gyi8W4CxbibjyNwUKF8G/SAB6kYgmSaFCwcJ4enjwz/nzdmekSKFCDo6IJElIkgZJ0iNkW5CmLUtqPBYJEnUycVL6wZsfffoFJYLK2D/7FyrMn0cOAjiMMlz45wxJSUb6dHF04MxmEy+UdzwnKVy6cI5GL7Z02FYhtHIaZ6RQQFGHlS+++f2Juns7XZ2ZYTQacXZxfqSci95gd0Ts7d3JfnuPomTpF1i3ZQ+njh/j6MF9HN6/h0FvdKZVhy6Mmz7XLle6bHmH4/zyFyDqTuajKSFhVe3vtVot5YIrceHsP44ylR/IeHp7U6xkEBfPOco8TGbX4WrEJSxmMxVCw+z73T08CSwZlEaPs4seRVEwJSVlKy7ljX6DWbtyGRtWraRZy7QO0+ZN37PyiwVcuXSRhPh4rFZLrq6YSj2qlpAQz6JZH/HH1t+4fTMSi8VKkjGRG9euZklfbEw0d2/fcjhnGo2GshVDHbIjX7l0kfkfT+b40UPcj4qyj4jcuH6VUi+Uo3WHLvTp0pZW9atSu0Fj6jUOp1b9Ro9vsMp/CtUZeUZJ7WTMmDGDWbNmMXv2bCpWrIirqyuDBw/GlCqJWOpgUUmS7F8eAQEBnDlzhs2bN7Nlyxb69etLwWKFWPb9Mjw1HsgCzLIT960GrNKDW0MjgcnNCTNaJEnCyxwDFoFzXBxgm76xuTM2DAbbF/zDQamgASQkxYSQ4rFIEtFaPSYyD271L1SEosVLpLtPb3hwjhRhs3HeslXk93cMInZydiJdUvU7ZVtqdKkCBSVJylEqe28fH2Lu33+knE6XTntPqLi2LMtUCA2jQmgY3Xv158fvVvHBO315a+C7FClqi9nQpnNP5cT+R60iSxbKcFdm1yHl9KRuI73zFn3/Hi56Q7YDZD08Pek5YAgLZ02jXuNwh33HjxxkxNs96Tf0fWrVb4ybhwe/fP8dKxbPy1SnLEtp+mmxpD9V9fD9DjBr0hj27PidoaMmUjSwOM4ueob17ZHpVFd6POqcDXqzMwUKFmbsR3PwK+CPoii0b1ILs8nWTtmKIfy05xi7tm1h/64dDO//BtXrNGDGouXZ6ofKfxs1ZiSPsHPnTlq3bk23bt0ICQmhRIkSnD17Ntt69Ho9rVq1YuTYoXzx/RL+PPgnV/66hKdRIJA4cPgYZsn28NFICn8dP0DRMi+goKFMmZLcuHqFO2fO2x2RM2fPERMbS6mgkg+1IqUJSnXSabBa47FKcdzSunNb6/FIRyQ7lCxVBidnZyKvX6Fo8RIOL/9CRdI9JrBkKU7+edhh21/Hj2a7ba3OCav10SXFy5QP5sLZM4+UexQ6JyesypMpYV6y1AsAJCY8XgHD40cP2d9bLBZOnzhG8SDHpdrHjzyQibl/n8sXzlO8ZNrl3FkhoFggWp2Ok8eO2LfFxcYQcfFCGtlzZ05TtkL6o2WPovPrvZFlia+WLHTYfvTgfgoWDqDXoGGUD6lEseIl08Ru6HS6NPeJt48vAHdu3bBvO/NQMGtmHDmwl1YdutC4eUtKlS2Pb/78XL+afvB0erh7eJLPLz8nHjpnVquVM389iLO5fy+KC2fP0HvQu1SvU58Spcqku9rKzd2DF1u1Y+y0OXw0fwlbfvqB6Hv/Xp4nlbyPOjKSRwgKCmLdunXs2bMHb29vZs6cyY0bNyhbtmyWdSxbtgyr1UqpsoEkOpnZuHojLnoXyuQvRpLOCQEcOXSQpQvm0KJFM7bv3c0v3//AJ6vX4W6No36tWpQtU4a3Bw9mwgcfYLVaeH/seGpWq0ZoxYq2TKmSHtA+CEpVErBoTBQOKMiBP09yNDIGg6sVTy/vLM/XZwVXN3d69B7Ax+M/QCiCSlVrEBcXy5+H9mNwdaNVh85pjun8Rm/efKUFX342n/pNX+TA7j/YvW1Lpr/O06NwQFFOHD3MtSsRGFxdM7StVv1GjB/+DlarFY0m48DcR1GoSAB7dmzl0vmzeHr74Oaeft6U1g2qMWjEGHs8QGre7dOD0CrVCalSDV+//Fy7EsHcqRMoViKI4kGlc9w/gFXLP6doYElKlCrNis8/JSY6mjadujnILJo9DS9vH3x8/Zg3bRLePj40yiAe41G4urnT6pXOzJw8Bg8vb3zy+bJg5lRkWU4z+nX0wF5q1svZNIKziwv9ho5kyqj3HLYXDSzBjetX+fn7dVQICeOP33/j919+dJApVKQo165E8PdfJyhQsBCurm646PUEh1VlyfzZFCpSlPtRd5k3fXKW+hIQWIKtv2ykftMXkSSYP/1DFCV7I2idX+/FkvmzKBpYguJBpfh66Wc2ZyP5b8DD0wsvbx/Wfr0c3/z+RF6/mmZV0YrFn+KbvwAvlK+IJMts3vS9beVbFvPmqKiAOjKSZxg9ejRhYWGEh4fToEED/P39adOmTbZ0eHl5sWjRQlq82Ia29dtx8I/9rPziC9z9fDFaNQgkuvcewNlTR3i5aRMWTpvOsMmTaVGnOi4JSbjFxrJ04ad4eXjStktXOr72OsWKBrD4kwVoNL4ge4OkAQSSEoOVaBK1Zm5pPOnY911kjYZ2jWrQICSIyCzOa2eHt9/7gN6Dh/PF/Fm0aVSdft3as2PLrxQOSD+grlLVGoyaMpMViz+lY7O67N6+lW5v9cPZOW0uk8x4rc8ANFmwrW6jZmi1umwvv0xNuy49KFaiFJ1bNKJBSBDHDu1PV+7S+bPExWachr9W/Ubs2PKLLU6kflVGD+lHYMlSLPxq3WPnsHjn/bEsXTCHDuF1OXpgH7O/+Apvn3yOMiPH8tHY9+ncoiG3b91kzpKv0TllMKWWBYaNmURIWFUGvv4qfbq0JbRKdYoHlcbpoTidm5HXOXb4AG06dclxO606dKZwsUCHbQ3DX6LbW/2YOno4HV+sx5+H9tP7HUeHpclLrajdoDFvdXqZBiFB9uXF4z/+BIvFQpcWjfho3EgGvPeIxIDJvDf2Qzw8vejRJpxBb3SmVv1G2R7xeaP/YF5s3Z5RQ/rSvXUzDK6u1KrfGGdn2zmTZZmP5n/B6RN/0r5pLT4e/z+GfjDBQYfB1ZWlC+bQuUUjurZsxPWrEcxbvjpXf2yoPP9I4klNRuciMTExeHp6Eh0djUeq7JlGo5GLFy9SvHhxXJITYj3rGVifFopi5cLdv0mSwEmAh8kTRVYwWTVE40rzmsG81r8vr749GACDSEBKErjF3k+rLDlTqpBc7b+ibEGpcVgkiXiNlgQp95NWPWnGD3+Hi+f+Ydl3Pz8R/auWf862335m4VdZz3ORl8hKWvqcZJ3NCQkJ8TSrWo6hoyfR7tXuAMycNJq42FjGfDT7ibWbl1EUhTYNq9OsZZssO0X/FYTFxK3rVxm37RbXYp/MNOnTRCtLDGgUxOAmjzcqmprMnt8O7edqq88IBd0K8mObH9XaNA8hhCDizlmSZJAR6K1eKLKCRZGJxhUPlySQJSySFgkFL1McWARO8XEOeiRZg4zhoUyp2INSrUCU1hWLlHduq+ULP6FGvQbo9a7s2r6FH9Z+wweTP35i7bXv+jox0feJj4vN1ZUWKnD65HEunfuHCqGViYuNYdHsaQA0bPaSXcbH148efQY+rS4+c1y/GsHeP7ZRuUZtzElJfLN8MdeuXOalNq887a6p/MfIO0+NbFLQreAz7Rz820TevUS8bPPmDYorWsWCBQ2xGNC7WYiW3RGAFgtuiYk4JSbAQ8F2sqxNrpzrbHdCZGsiVjkRRYLbWk9E6pUpmTBx5BA2fbcm3X0t2nVg9JRZOTU1W5z88whLF84lIS6OwsUCGTF+Ku06v/bE2tNqtfQaNOzRgio5Yvln87h0/hw6nY5ywaEsXfuTw/TQ630HOci3bVyTyKvpJwkbPXUmLdp2fKL9fdrIsswPa75m5qTRCAFBZV7gs6/XU6JUmUcfrKKSizyX0zQqjkTH3eW6MRIFCYOixdWkwyxrSNLoSdS7YEELCDyscQgzGB6KM5Blp2QnJHnly0NBqQqCOxqvHPXp7p3bxMfGprvP1d2dfL5+OdKropIdrl+NwGK2pLsvn5+fOnqlYkedpskZ/+lpGpUHmC0mbiXeQJEknBWxWS7GAAAXsklEQVQwJLlgki2YXPTEal0ByTYaYkzEyZSElJQEEmgkfXKmVPlBplQRh1VSSNRKRMuPN9efz9dPdThUnjpqtlAVlWcD1Rl5TlEUCwnGGG7F3cAkg0YIDBZPrLJCrLsPJmzR8q5KApgEzrExtqBU2RUhuSJSBaVaJYkYrRNG6dEZRFVUVFRUVLLDc+OM5IHZplzHarUQn3if+KR4zIoJRViwSgoWBJaUXBnJq+sMihsCuOueD4GMjIKnKQ7JouCUaESW3TMMSr2rdcMq5TwvhoqKikqeRwhAkM1ULipZJM87IynpzxMSEtBnM71zXsBiMRGXeJ8EUwIWqwkrVpTUDgeQXFzmoQ+2VTNaIeGkuKCxyNxxtwXyOQsjOqMVl0QjknBFyG4ZBKV6of7dqaioqNhiRsxWwT1j9kshqDyaPO+MaDQavLy87MXgDAZD1mpgPEOYLSbijTEkmY1YFDMCBaukYEVgzdQWYXc4ZCEjI4PQIKFBo2jRWSUkxUqSVnDb1R1MRtwtCTjHm5GFC2bJzaZGSUJWErHIZhTgPslBe5Z/L0+LioqKyjOJEAiLiXtRd9h6IQ6jRf2J9iTI884IgL+/P4DdIXkWsVjNGE0JmC1mbG6GgoJAkeBRfrYMyAJsia1lEDISMrKiQatg0yUJhCRhkTUk6ZxRJMfsh9qo+xiSkjBZnHiQeFeAMKJIArMkPxQPEp27xquoqKjkWQRmq2DrhTi+O/14NZtUMua5cEYkSaJgwYLkz58/2xUrcwuhKFyKPMW+09uJuPUP8cp9kjQJxMkmorQK8Y9IjexhVfC2yhisenSKG1rhgd7ihVe8J/numTFq4onWK9xwL8T+wFAS3DNZcmgEUJCFFXdiKBt3idC9PkgWLyAJnekegiMkINjsHcRNjX8ungkVFRWV5wdFwD2joo6IPGFy5Ix8+umnTJ8+ncjISMqXL8/s2bOpW7duhvI7duxg6NCh/PXXXxQqVIjhw4fTt2/fHHc6IzQazWMVIHsUQlE4em4XWw/+wNWof0iUYkjQxBGjSeKW7iGHQ5P8SiE5jUE+i0I+sxZXqwFn4YGT4o2rKR/5oj3wvpdIjD6Rmx7ubC9Riyv+gZCBA6MXCXhabuBhjcXDkoCHKREPowm3RAvucRIuMU7oo92Ro30AA5IUSBLgknAWo+4wcVbBp/mbkiTrIQHg+Vszr6KioqKSd8i2M7Jq1SoGDx7Mp59+Su3atVm0aBHNmzfn1KlTFC2ads3+xYsXeemll+jVqxcrV65k9+7d9O/fHz8/P9q3b58rRuQmJpORfSe3sHn/eu5bbmKUYkjQxBOtNXFLq5CY4iCkyd0iIwmBr1XgY9bZHQ5nqw8Gkzf57rniGpfAbTfBn4XKs/mF6oiHHCdJWPEkBg8lBk9LHAGJR/BISsLdaMYtXuAaJ6O/74Iu2hvZ6I0kOQOZL7OVhBmNJRat5SwxLue572JmsU9byEamVBUVFRUVlSdNtjOwVq9enbCwMBYsWGDfVrZsWdq0acOUKVPSyI8YMYIffviB06dP27f17duXP//8k71792apzaxmcMsqitUKksSouW8Ro7mJUY4hQbY5HDe1kCRn/LCWhcDPIvCx6DBYXXFWPHBSvHAzeuNz3wVMRi7ky8dPFRqR5O6NszDiKe7jYY3DwxKPh9mIe1ISbglW3OIlXKN1uMS4oon2RRYGx7asJjTWBGQlEUlJBBKxzcEYEZIRRU5CkUwoshWrpKAIgVUSWAGBwCRJGJ3gb30AhzSVHvu8qaioqKg8n+SpDKwmk4nDhw/z/vvvO2xv1qwZe/bsSfeYvXv30qxZM4dt4eHhfPHFF5jNZvvS3H+DFL/LarWi0Wq56HyMk4aHY0xsTohGCPJbwPshh8PF6o2r0QOv+07EamT+KBNCXKF8eFjjcLck4plkJMZoxjVB4B8rMfDIWZzvuqKL06JVTEjCiM2ZSETYnQkTQjZjxYpVFlhEclCrAKsEJkkQZ9ARoc/HOak40XIRksh5iXUVFRUVFZVnkWw5I3fu3MFqtVKgQAGH7QUKFODGjRvpHnPjxo105S0WC3fu3KFgwbTF7JKSkkhKSrJ/jo62re6IiYlJI5tdhKKgKAqyLOMS602pxNsYFFecFXecFS/cEtwxxGi5ns+Vm8WL4Gy1ICVacDJa0SVYEPEWvO9aaHvpOAITimxBkWy5P5TkbDhWBPEIorQaopz1/ONUmKuawhjxJEdTJJaH36RfRwNEznSrqKioqPznsUhgjI/Llefsw6Toe9QkTI4CWFPn8RBCZJrbIz359LanMGXKFMaPH59me0BAQHa7qqKioqKiopIFRs6CkU9Id2xsLJ6eGdc0y5Yz4uvri0ajSTMKcuvWrTSjHyn4+/unK6/VasmXL1+6x4wcOZKhQ4faPyuKQlRUFPny5cvVhGYxMTEEBARw5cqVXIlFeRZ53m1U7cv7PO82Pu/2wfNvo2pfzhFCEBsbS6FChTKVy5Yz4uTkROXKldm8eTNt27a1b9+8eTOtW7dO95iaNWuyceNGh22//fYbVapUyTBexNnZGWdnx5UiXl5e2elqtvDw8Hgub7CHed5tVO3L+zzvNj7v9sHzb6NqX87IbEQkhcwzcaXD0KFD+fzzz1myZAmnT59myJAhRERE2POGjBw5ktdee80u37dvXy5fvszQoUM5ffo0S5Ys4YsvvmDYsGHZbVpFRUVFRUXlOSTbMSOdOnXi7t27TJgwgcjISCpUqMBPP/1EsWLFAIiMjCQiIsIuX7x4cX766SeGDBnC/PnzKVSoEHPnzn0mc4yoqKioqKio/PvkKIC1f//+9O/fP919y5YtS7Otfv36HDlyJCdNPVGcnZ0ZO3Zsmimh54nn3UbVvrzP827j824fPP82qvY9ebKd9ExFRUVFRUVFJTfJdsyIioqKioqKikpuojojKioqKioqKk8V1RlRUVFRUVFReaqozoiKioqKiorKUyXPOyNTpkyhatWquLu7kz9/ftq0acOZM2ccZIQQjBs3jkKFCqHX62nQoAF//fWXfX9UVBQDBw6kTJkyGAwGihYtyqBBg+w1cVK4d+8e3bt3x9PTE09PT7p37879+/efefsA+vTpQ8mSJdHr9fj5+dG6dWv+/vvv58a+h2WbN2+OJEls2LDBYd/TsA9yz8YGDRogSZLD69VXX3WQyevXcO/evTRq1AhXV1e8vLxo0KABiYmJed6+S5cupbl2Ka81a9Y8Vftyy0aw1SLr3r07/v7+uLq6EhYWxtq1ax1k8uo1BDh//jxt27bFz88PDw8POnbsyM2bN5+6fZA1G7/77jvCw8Px9fVFkiSOHTuWRk9SUhIDBw7E19cXV1dXWrVqxdWrVx1knoiNIo8THh4uli5dKk6ePCmOHTsmWrRoIYoWLSri4uLsMlOnThXu7u5i3bp14sSJE6JTp06iYMGCIiYmRgghxIkTJ0S7du3EDz/8IM6dOye2bt0qSpUqJdq3b+/Q1osvvigqVKgg9uzZI/bs2SMqVKggWrZs+czbJ4QQixYtEjt27BAXL14Uhw8fFi+//LIICAgQFovlubAvhZkzZ4rmzZsLQKxfv95h39OwT4jcs7F+/fqiV69eIjIy0v66f//+U7cxt+zbs2eP8PDwEFOmTBEnT54U//zzj1izZo0wGo153j6LxeJw3SIjI8X48eOFq6uriI2Nfar25ZaNQgjRpEkTUbVqVbF//35x/vx5MXHiRCHLsjhy5MhTtTE37IuLixMlSpQQbdu2FcePHxfHjx8XrVu3FlWrVhVWq/Wp2pdVG7/88ksxfvx4sXjxYgGIo0ePptHTt29fUbhwYbF582Zx5MgR0bBhQxESEvLEnxV53hlJza1btwQgduzYIYQQQlEU4e/vL6ZOnWqXMRqNwtPTUyxcuDBDPatXrxZOTk7CbDYLIYQ4deqUAMS+ffvsMnv37hWA+Pvvv5+QNWnJLfv+/PNPAYhz584JIZ4P+44dOyaKFCkiIiMj0zgjz4p9QuTcxvr164t33nknQ73Pio05ta969epi1KhRGerN6/alJjQ0VLz55pv2z8+KfULk3EZXV1fx5ZdfOujy8fERn3/+uRDi2bExJ/b9+uuvQpZlER0dbZeJiooSgNi8ebMQ4tmxT4i0Nj7MxYsX03VG7t+/L3Q6nfj222/t265duyZkWRa//PKLEOLJ2Zjnp2lSkzK14uPjA8DFixe5ceMGzZo1s8s4OztTv3599uzZk6keDw8PtFpbXri9e/fi6elJ9erV7TI1atTA09MzUz25TW7YFx8fz9KlSylevLi9EnJety8hIYHOnTszb948/P390+h9VuyDx7uGX331Fb6+vpQvX55hw4YRGxtr3/es2JgT+27dusX+/fvJnz8/tWrVokCBAtSvX59du3bZj8nL9qXm8OHDHDt2jJ49e9q3PSv2Qc5trFOnDqtWrSIqKgpFUfj2229JSkqiQYMGwLNjY07sS0pKQpIkh8RgLi4uyLJsv0+fFfsgrY1Z4fDhw5jNZofzUKhQISpUqGDv/5Oy8blyRoQQDB06lDp16lChQgUAe8Xg1FWFCxQokKaacAp3795l4sSJ9OnTx77txo0b5M+fP41s/vz5M9ST2zyufZ9++ilubm64ubnxyy+/sHnzZpycnOx68rJ9Q4YMoVatWhkWbHwW7IPHs7Fr16588803bN++ndGjR7Nu3TratWtn3/8s2JhT+y5cuADAuHHj6NWrF7/88gthYWE0btyYs2fP2vXkVftS88UXX1C2bFlq1apl3/Ys2AePZ+OqVauwWCzky5cPZ2dn+vTpw/r16ylZsqRdz9O2Maf21ahRA1dXV0aMGEFCQgLx8fG89957KIpCZGSkXc/Ttg/StzEr3LhxAycnJ7y9vR22P3wenpSNOUoH/6wyYMAAjh8/7vBrKgVJkhw+CyHSbANbKeUWLVpQrlw5xo4dm6mOzPQ8CR7Xvq5du9K0aVMiIyP5+OOP6dixI7t378bFxSVdHRnpeVLk1L4ffviB33//naNHj2aq/2nbB493DXv16mV/X6FCBUqVKkWVKlU4cuQIYWFh6epIT8+TJKf2KYoC2AKt33jjDQAqVarE1q1bWbJkCVOmTElXR2o9T5rc+I5JTEzk66+/ZvTo0Y/UkZmeJ8Xj2Dhq1Cju3bvHli1b8PX1ZcOGDXTo0IGdO3dSsWLFdHWkp+dJklP7/Pz8WLNmDf369WPu3LnIskznzp0JCwtDo9FkqCO1nn+DzGzMCan7/yRsfG5GRgYOHMgPP/zAtm3bKFKkiH17ypB9ao/t1q1babzg2NhYXnzxRdzc3Fi/fj06nc5BT+qoaYDbt2+n0fMkyA37PD09KVWqFPXq1WPt2rX8/fffrF+/3q4nr9r3+++/c/78eby8vNBqtfaptfbt29uHh5+2fZA71/BhwsLC0Ol09pGDp23j49hXsGBBAMqVK+cgU7ZsWXvhzbxs38OsXbuWhIQEh+rmKXry8j16/vx55s2bx5IlS2jcuDEhISGMHTuWKlWqMH/+fLuevHwNmzVrxvnz57l16xZ37txhxYoVXLt2jeLFi9v1PKvXMCv4+/tjMpm4d++ew/aHz8MTszHH0SbPCIqiiLffflsUKlRI/PPPP+nu9/f3Fx999JF9W1JSUprAq+joaFGjRg1Rv359ER8fn0ZPStDO/v377dv27dv3xAOTcsu+1CQlJQm9Xi+WLl0qhMjb9kVGRooTJ044vAAxZ84cceHChadqX27ZmB4pdqYEqOXla6goiihUqFCaANbQ0FAxcuRIIUTetu9h6tevn2alnhB5/x49fvy4AMSpU6ccjm3WrJno1auXEOL5uYYpbN26VUiSZO/7s3wNH+ZRAayrVq2yb7t+/Xq6Aay5bWOed0b69esnPD09xfbt2x2WzSUkJNhlpk6dKjw9PcV3330nTpw4ITp37uywZCsmJkZUr15dVKxYUZw7d85BT+rlTMHBwWLv3r1i7969omLFik98yVZu2Hf+/Hnx4YcfikOHDonLly+LPXv2iNatWwsfHx9x8+bNPG9fepDB0t5/2z4hcsfGc+fOifHjx4uDBw+Kixcvik2bNokXXnhBVKpU6bm4R4UQYtasWcLDw0OsWbNGnD17VowaNUq4uLjYV3zldfuEEOLs2bNCkiTx888/p9tWXr5HTSaTCAoKEnXr1hX79+8X586dEx9//LGQJEls2rTpqdqYW9dwyZIlYu/eveLcuXNixYoVwsfHRwwdOtShrWf5Gt69e1ccPXpUbNq0SQDi22+/FUePHhWRkZF2mb59+4oiRYqILVu2iCNHjohGjRqlu7Q3t23M884IkO4r5Re/EDaPcezYscLf3184OzuLevXqiRMnTtj3b9u2LUM9Fy9etMvdvXtXdO3aVbi7uwt3d3fRtWtXce/evWfevmvXronmzZuL/PnzC51OJ4oUKSK6dOmSxovNq/ZlpDe1M/I07Evpy+PaGBERIerVqyd8fHyEk5OTKFmypBg0aJC4e/fuU7cxN6/hlClTRJEiRYTBYBA1a9YUO3fufK7sGzlypChSpIhDXoqHycv3qBBC/PPPP6Jdu3Yif/78wmAwiODg4DRLffPyNRwxYoQoUKCA0Ol0olSpUmLGjBlCUZSnbl9WbVy6dGm6MmPHjrXLJCYmigEDBggfHx+h1+tFy5YtRURExBO3UUo2QkVFRUVFRUXlqfDcBLCqqKioqKio5E1UZ0RFRUVFRUXlqaI6IyoqKioqKipPFdUZUVFRUVFRUXmqqM6IioqKioqKylNFdUZUVFRUVFRUniqqM6KioqKioqLyVFGdERUVFRUVFZWniuqMqKioqKioqDxVVGdERUUlz2K1WlEU5Wl3Q0VF5TFRnREVFZVc4csvvyRfvnwkJSU5bG/fvj2vvfYaABs3bqRy5cq4uLhQokQJxo8fj8ViscvOnDmTihUr4urqSkBAAP379ycuLs6+f9myZXh5efHjjz9Srlw5nJ2duXz58r9joIqKyhNDdUZUVFRyhQ4dOmC1Wvnhhx/s2+7cucOPP/7IG2+8wa+//kq3bt0YNGgQp06dYtGiRSxbtozJkyfb5WVZZu7cuZw8eZLly5fz+++/M3z4cId2EhISmDJlCp9//jl//fUX+fPn/9dsVFFReTKohfJUVFRyjf79+3Pp0iV++uknAObMmcPcuXM5d+4c9evXp3nz5owcOdIuv3LlSoYPH87169fT1bdmzRr69evHnTt3ANvIyBtvvMGxY8cICQl58gapqKj8K6jOiIqKSq5x9OhRqlatyuXLlylcuDChoaG0b9+e0aNH4+rqiqIoaDQau7zVasVoNBIfH4/BYGDbtm18+OGHnDp1ipiYGCwWC0ajkbi4OFxdXVm2bBl9+vTBaDQiSdJTtFRFRSU30T7tDqioqDw/VKpUiZCQEL788kvCw8M5ceIEGzduBEBRFMaPH0+7du3SHOfi4sLly5d56aWX6Nu3LxMnTsTHx4ddu3bRs2dPzGazXVav16uOiIrKc4bqjKioqOQqb731FrNmzeLatWs0adKEgIAAAMLCwjhz5gxBQUHpHnfo0CEsFgszZsxAlm3hbKtXr/7X+q2iovL0UJ0RFRWVXKVr164MGzaMxYsX8+WXX9q3jxkzhpYtWxIQEECHDh2QZZnjx49z4sQJJk2aRMmSJbFYLHzyySe8/PLL7N69m4ULFz5FS1RUVP4t1NU0KioquYqHhwft27fHzc2NNm3a2LeHh4fz448/snnzZqpWrUqNGjWYOXMmxYoVAyA0NJSZM2fy0UcfUaFCBb766iumTJnylKxQUVH5N1EDWFVUVHKdpk2bUrZsWebOnfu0u6KiopIHUJ0RFRWVXCMqKorffvuNrl27curUKcqUKfO0u6SiopIHUGNGVFRUco2wsDDu3bvHRx99pDoiKioqWUYdGVFRUVFRUVF5qqgBrCoqKioqKipPFdUZUVFRUVFRUXmqqM6IioqKioqKylNFdUZUVFRUVFRUniqqM6KioqKioqLyVFGdERUVFRUVFZWniuqMqKioqKioqDxVVGdERUVFRUVF5amiOiMqKioqKioqT5X/A1U6WOQWYfmfAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" } ], - "source": [ - "metals = [\n", - " #\"Aluminium\",\n", - " #\"Cadmium\",\n", - " \"Cobalt\",\n", - " #\"Graphite\",\n", - " #\"Iridium\",\n", - " #\"Iron\",\n", - " #\"Lanthanum\",\n", - " #\"Lead\",\n", - " \"Lithium\",\n", - " #\"Magnesium\",\n", - " #\"Manganese\",\n", - " #\"Molybdenum\",\n", - " #\"Neodymium\",\n", - " \"Nickel\",\n", - " #\"Palladium\",\n", - " \"Platinum\",\n", - " #\"Tin\",\n", - " #\"Silver\",\n", - " \"Titanium\",\n", - " #\"Uranium\",\n", - " \"Vanadium\",\n", - " \"Zinc\",\n", - "]\n", - "\n", - "p.calculate(\n", - " regions=[r for r in p.scenarios.coords[\"region\"].values if r!=\"World\"],\n", - " #regions=[\"World\",],\n", - " scenarios=[\n", - " #\"SSP2-Base\",\n", - " \"SSP2-RCP19\",\n", - " ],\n", - " #regions=[\"WEU\",],\n", - " years=[2020, 2030, 2040, 2050, 2060, 2070, 2080, 2090, 2100],\n", - " variables=[\n", - " v for v in p.scenarios.coords[\"variables\"].values\n", - " if any(i in v for i in [\"Industry\", \"Transport\", \"Heating\"])\n", - " ],\n", - " characterization=False,\n", - " flows=[(metal, \"natural resource\", \"in ground\", \"kilogram\") for metal in metals]\n", - " #flows=[(\"Carbon dioxide, fossil\", \"air\", \"unspecified\", \"kilogram\"),]\n", - ")\n", - "arr = p.display_results(cutoff=0.01)" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "cf1d2ba3-1a95-4c2b-aba9-9e8f731bcc45", - "metadata": {}, - "outputs": [], "source": [ "arr.sel(\n", " model=\"image\",\n", " scenario=\"SSP2-RCP19\",\n", - " region=\"WEU\",\n", - " impact_category=\"Platinum - natural resource - in ground - kilogram\"\n", - ").sum(dim=\"act_category\").to_dataframe(\"x\").unstack()[\"x\"].reset_index().to_excel(\"platinum_results.xlsx\")" + " impact_category=\"Vanadium - natural resource - in ground - kilogram\"\n", + ").sum(dim=[\"act_category\", \"region\"]).to_dataframe(\"x\").unstack()[\"x\"].plot(kind=\"area\")" ] }, - { - "cell_type": "code", - "execution_count": null, - "id": "1de1d7a2-6a41-4255-9639-6745ef981ac9", - "metadata": {}, - "outputs": [], - "source": [] - }, { "cell_type": "code", "execution_count": 8, @@ -8958,10 +10533,616 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 18, "id": "c5449334-b7de-4580-b08c-f517ea5c7556", "metadata": {}, "outputs": [], + "source": [ + "import json\n", + "import bw2io, bw2data" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "215c7839-110b-430b-9e47-daa15151dcea", + "metadata": {}, + "outputs": [], + "source": [ + "bw2data.projects.set_current(\"ei39\")" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "803572fe-5e58-4c32-a631-f63a117ed762", + "metadata": {}, + "outputs": [], + "source": [ + "relics = [m for m in bw2data.methods if \"relics\" in m[0].lower()]" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "id": "fcf25559-06f3-41d5-b93a-b63b224434c5", + "metadata": {}, + "outputs": [], + "source": [ + "list_m = []\n", + "for relic in relics:\n", + " m = bw2data.Method(relic)\n", + " new_m = {}\n", + " new_m[\"unit\"] = m.metadata[\"unit\"]\n", + " new_m[\"name\"] = m.name\n", + " new_m[\"exchanges\"] = [\n", + " {\n", + " \"name\": bw2data.get_activity(cf[0])[\"name\"],\n", + " \"categories\": bw2data.get_activity(cf[0])[\"categories\"],\n", + " \"amount\": cf[1]\n", + " }\n", + " for cf in m.load()\n", + " ]\n", + " list_m.append(new_m)" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "id": "7f4fbe84-d572-491e-967f-1b54ad63cc62", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[{'unit': 'kg aluminium',\n", + " 'name': ('RELICS', 'metals extraction', 'Aluminium'),\n", + " 'exchanges': [{'name': 'Aluminium, 24% in bauxite, 11% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Aluminium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg antimony',\n", + " 'name': ('RELICS', 'metals extraction', 'Antimony'),\n", + " 'exchanges': [{'name': 'Antimony',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg beryllium',\n", + " 'name': ('RELICS', 'metals extraction', 'Beryllium'),\n", + " 'exchanges': [{'name': 'Beryllium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg boron',\n", + " 'name': ('RELICS', 'metals extraction', 'Boron'),\n", + " 'exchanges': [{'name': 'Boron',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg brass',\n", + " 'name': ('RELICS', 'metals extraction', 'Brass'),\n", + " 'exchanges': []},\n", + " {'unit': 'kg cadmium',\n", + " 'name': ('RELICS', 'metals extraction', 'Cadmium'),\n", + " 'exchanges': [{'name': 'Cadmium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg cerium',\n", + " 'name': ('RELICS', 'metals extraction', 'Cerium'),\n", + " 'exchanges': [{'name': 'Cerium, 24% in bastnasite, 2.4% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Cerium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg chromium',\n", + " 'name': ('RELICS', 'metals extraction', 'Chromium'),\n", + " 'exchanges': [{'name': 'Chromium, 25.5% in chromite, 11.6% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Chromium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg cobalt',\n", + " 'name': ('RELICS', 'metals extraction', 'Cobalt'),\n", + " 'exchanges': [{'name': 'Cobalt',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Cobalt, Co 5.0E-2%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg copper',\n", + " 'name': ('RELICS', 'metals extraction', 'Copper'),\n", + " 'exchanges': [{'name': 'Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, Cu 6.8E-1%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, Cu 0.2%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, Cu 0.38%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg dysprosium',\n", + " 'name': ('RELICS', 'metals extraction', 'Dysprosium'),\n", + " 'exchanges': [{'name': 'Dysprosium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg erbium',\n", + " 'name': ('RELICS', 'metals extraction', 'Erbium'),\n", + " 'exchanges': [{'name': 'Terbium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Ytterbium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Erbium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg europium',\n", + " 'name': ('RELICS', 'metals extraction', 'Europium'),\n", + " 'exchanges': [{'name': 'Europium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Europium, 0.06% in bastnasite, 0.006% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg gadolinium',\n", + " 'name': ('RELICS', 'metals extraction', 'Gadolinium'),\n", + " 'exchanges': [{'name': 'Gadolinium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gadolinium, 0.15% in bastnasite, 0.015% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg gallium',\n", + " 'name': ('RELICS', 'metals extraction', 'Gallium'),\n", + " 'exchanges': [{'name': 'Gallium, 0.014% in bauxite',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gallium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg germanium',\n", + " 'name': ('RELICS', 'metals extraction', 'Germanium'),\n", + " 'exchanges': [{'name': 'Germanium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg gold',\n", + " 'name': ('RELICS', 'metals extraction', 'Gold'),\n", + " 'exchanges': [{'name': 'Gold, Au 1.0E-7%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 1.4E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 4.3E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 4.9E-5%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 7.1E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 1.8E-4%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 6.7E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 9.7E-4%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg graphite',\n", + " 'name': ('RELICS', 'metals extraction', 'Graphite'),\n", + " 'exchanges': [{'name': 'Graphite',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg hafnium',\n", + " 'name': ('RELICS', 'metals extraction', 'Hafnium'),\n", + " 'exchanges': [{'name': 'Hafnium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg indium',\n", + " 'name': ('RELICS', 'metals extraction', 'Indium'),\n", + " 'exchanges': [{'name': 'Indium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg iridium',\n", + " 'name': ('RELICS', 'metals extraction', 'Iridium'),\n", + " 'exchanges': [{'name': 'Iridium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg lanthanum',\n", + " 'name': ('RELICS', 'metals extraction', 'Lanthanum'),\n", + " 'exchanges': [{'name': 'Lanthanum',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Lanthanum, 7.2% in bastnasite, 0.72% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg lead',\n", + " 'name': ('RELICS', 'metals extraction', 'Lead'),\n", + " 'exchanges': [{'name': 'Lead, Pb 3.6E-1%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Lead',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Lead, Pb 0.014%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg lithium',\n", + " 'name': ('RELICS', 'metals extraction', 'Lithium'),\n", + " 'exchanges': [{'name': 'Lithium, 0.15% in brine',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Lithium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg magnesium',\n", + " 'name': ('RELICS', 'metals extraction', 'Magnesium'),\n", + " 'exchanges': [{'name': 'Magnesium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg manganese',\n", + " 'name': ('RELICS', 'metals extraction', 'Manganese'),\n", + " 'exchanges': [{'name': 'Manganese',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg molybdenum',\n", + " 'name': ('RELICS', 'metals extraction', 'Molybdenum'),\n", + " 'exchanges': [{'name': 'Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Molybdenum',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg neodymium',\n", + " 'name': ('RELICS', 'metals extraction', 'Neodymium'),\n", + " 'exchanges': [{'name': 'Neodymium, 4% in bastnasite, 0.4% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Neodymium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg nickel',\n", + " 'name': ('RELICS', 'metals extraction', 'Nickel'),\n", + " 'exchanges': [{'name': 'Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Nickel',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Nickel, 1.98% in silicates, 1.04% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Nickel, Ni 2.5E+0%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg niobium',\n", + " 'name': ('RELICS', 'metals extraction', 'Niobium'),\n", + " 'exchanges': [{'name': 'Niobium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg palladium',\n", + " 'name': ('RELICS', 'metals extraction', 'Palladium'),\n", + " 'exchanges': [{'name': 'Palladium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Palladium, Pd 1.6E-6%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg phosphorous',\n", + " 'name': ('RELICS', 'metals extraction', 'Phosphorous'),\n", + " 'exchanges': []},\n", + " {'unit': 'kg platinum',\n", + " 'name': ('RELICS', 'metals extraction', 'Platinum'),\n", + " 'exchanges': [{'name': 'Platinum, Pt 4.7E-7%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Platinum',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg potassium',\n", + " 'name': ('RELICS', 'metals extraction', 'Potassium'),\n", + " 'exchanges': [{'name': 'Potassium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg praseodymium',\n", + " 'name': ('RELICS', 'metals extraction', 'Praseodymium'),\n", + " 'exchanges': [{'name': 'Praseodymium, 0.42% in bastnasite, 0.042% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Praseodymium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg rhenium',\n", + " 'name': ('RELICS', 'metals extraction', 'Rhenium'),\n", + " 'exchanges': [{'name': 'Rhenium, in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Rhenium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg rhodium',\n", + " 'name': ('RELICS', 'metals extraction', 'Rhodium'),\n", + " 'exchanges': [{'name': 'Rhodium, Rh 1.6E-7%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Rhodium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg ruthenium',\n", + " 'name': ('RELICS', 'metals extraction', 'Ruthenium'),\n", + " 'exchanges': [{'name': 'Ruthenium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg samarium',\n", + " 'name': ('RELICS', 'metals extraction', 'Samarium'),\n", + " 'exchanges': [{'name': 'Samarium, 0.3% in bastnasite, 0.03% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Samarium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg scandium',\n", + " 'name': ('RELICS', 'metals extraction', 'Scandium'),\n", + " 'exchanges': [{'name': 'Scandium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg selenium',\n", + " 'name': ('RELICS', 'metals extraction', 'Selenium'),\n", + " 'exchanges': [{'name': 'Selenium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg silicon',\n", + " 'name': ('RELICS', 'metals extraction', 'Silicon'),\n", + " 'exchanges': [{'name': 'Silicon',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg silver',\n", + " 'name': ('RELICS', 'metals extraction', 'Silver'),\n", + " 'exchanges': [{'name': 'Silver, Ag 5.4E-3%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, Ag 9.7E-4%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, 0.01% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, Ag 1.8E-6%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg sulfur',\n", + " 'name': ('RELICS', 'metals extraction', 'Sulfur'),\n", + " 'exchanges': [{'name': 'Sulfur',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg strontium',\n", + " 'name': ('RELICS', 'metals extraction', 'Strontium'),\n", + " 'exchanges': [{'name': 'Strontium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg tantalum',\n", + " 'name': ('RELICS', 'metals extraction', 'Tantalum'),\n", + " 'exchanges': [{'name': 'Tantalum',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg tellurium',\n", + " 'name': ('RELICS', 'metals extraction', 'Tellurium'),\n", + " 'exchanges': [{'name': 'Tellurium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg terbium',\n", + " 'name': ('RELICS', 'metals extraction', 'Terbium'),\n", + " 'exchanges': [{'name': 'Ytterbium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Terbium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg tin',\n", + " 'name': ('RELICS', 'metals extraction', 'Tin'),\n", + " 'exchanges': [{'name': 'Platinum',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Astatine',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Protactinium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Tin, 79% in cassiterite, 0.1% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Tin',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Platinum, Pt 4.7E-7%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Actinium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg titanium',\n", + " 'name': ('RELICS', 'metals extraction', 'Titanium'),\n", + " 'exchanges': [{'name': 'Titanium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg tungsten',\n", + " 'name': ('RELICS', 'metals extraction', 'Tungsten'),\n", + " 'exchanges': [{'name': 'Tungsten',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg vanadium',\n", + " 'name': ('RELICS', 'metals extraction', 'Vanadium'),\n", + " 'exchanges': [{'name': 'Vanadium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg ytterbium',\n", + " 'name': ('RELICS', 'metals extraction', 'Ytterbium'),\n", + " 'exchanges': [{'name': 'Ytterbium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg yttrium',\n", + " 'name': ('RELICS', 'metals extraction', 'Yttrium'),\n", + " 'exchanges': [{'name': 'Yttrium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg zinc',\n", + " 'name': ('RELICS', 'metals extraction', 'Zinc'),\n", + " 'exchanges': [{'name': 'Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Zinc',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Zinc, Zn 0.63%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Zinc, Zn 3.1%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg zirconium',\n", + " 'name': ('RELICS', 'metals extraction', 'Zirconium'),\n", + " 'exchanges': [{'name': 'Zirconium, 50% in zircon, 0.39% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Zirconium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]}]" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "list_m" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "3a40b9fb-40a7-4076-9173-ad4fb6c2db8b", + "metadata": {}, + "outputs": [], "source": [] } ], diff --git a/dev/pivot.ipynb b/dev/pivot.ipynb index cc3ff16..c1dc7ea 100644 --- a/dev/pivot.ipynb +++ b/dev/pivot.ipynb @@ -1,5 +1,196 @@ { "cells": [ + { + "cell_type": "code", + "execution_count": 28, + "id": "18916cee-310e-4785-b496-988d59883636", + "metadata": {}, + "outputs": [], + "source": [ + "import xarray as xr" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "eabc5614-5c90-4bb7-b229-f12ced2f6f04", + "metadata": {}, + "outputs": [], + "source": [ + "arr = xr.open_dataarray(\"results_image_SSP2-Base.nc\")" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "05aa3629-f29f-42e2-8f5b-9c717f6649dd", + "metadata": {}, + "outputs": [], + "source": [ + "df = arr.to_dataframe(\"x\").unstack()[\"x\"].reset_index().melt(id_vars=[\n", + " \"model\", \"scenario\", \"region\", \"impact_category\", \"variable\", \"year\"\n", + "])" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "60c8b5e2-431f-461b-b0b8-023ed5d57412", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "212139" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(df)" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "d7e240c6-78b7-4e0b-b238-72ca5f6f7471", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "23571" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "years = [2020, 2030, 2040, 2050, 2060, 2070, 2080, 2090, 2100]\n", + "df_short = df.loc[df[\"year\"].isin(years)]\n", + "len(df_short)" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "9bb4ebbb-1516-44f1-9858-0fbebe23ac62", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "2097" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_short = df_short.loc[~df_short[\"value\"].isnull()]\n", + "len(df_short)" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "f33230d2-44fe-4c47-a3b0-eecbf3fd311c", + "metadata": {}, + "outputs": [], + "source": [ + "df_short[['Main sector', 'Sub sector', 'Energy carrier']] = df_short['variable'].str.split('_', expand=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "6a129543-43d1-4ac1-9550-8349517e5c81", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + " " + ], + "text/plain": [ + "" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from pivottablejs import pivot_ui\n", + "from IPython.display import HTML\n", + "pivot_ui(df_short.loc[~df_short[\"value\"].isnull()], outfile_path='IMAGE_SSP2_Base.html')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c2b2a738-eadd-4484-af93-fa4ef448819f", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e09d7255-3959-4375-83c9-9daba005535f", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "99aa311e-ba9b-4fd0-9fcb-198834964e25", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "85c8b131-4863-4fce-b15a-bc8885b10cb6", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0ec0e303-72e9-4c05-9737-7946a2fd6e2f", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "994dd3fb-79a0-4da6-a3fd-7b9f51c7f21e", + "metadata": {}, + "outputs": [], + "source": [] + }, { "cell_type": "code", "execution_count": 1, @@ -7,106 +198,569 @@ "metadata": {}, "outputs": [], "source": [ - "from pathways import Pathways" + "from pathways import Pathways" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "b3b37d5c-8f65-4fb3-8f1b-7bbc05327081", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Invalid datapackage: Descriptor validation error: {'path': 'mapping/mapping.yaml', 'profile': 'data-resource', 'name': 'mapping', 'format': 'yaml', 'mediatype': 'text/yaml', 'encoding': 'utf-8'} is not valid under any of the given schemas at \"resources/89\" in descriptor and at \"properties/resources/items/oneOf\" in profile\n", + "Invalid datapackage: Descriptor validation error: 'data-resource' is not one of ['tabular-data-resource'] at \"resources/89/profile\" in descriptor and at \"properties/resources/items/properties/profile/enum\" in profile\n" + ] + } + ], + "source": [ + "p = Pathways(datapackage=\"/Users/romain/GitHub/premise/dev/image-SSP2/datapackage.json\")" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "2f3bf87a-5922-41b6-92e5-0a5e55500e8e", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Calculating LCA results for image...\n", + "--- Calculating LCA results for SSP2-Base...\n", + "------ Calculating LCA results for 2005...\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "0% [##########################] 100% | ETA: 00:00:00\n", + "Total time elapsed: 00:17:59\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "------ Calculating LCA results for 2010...\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "0% [###################### ] 100% | ETA: 00:02:45\n", + "KeyboardInterrupt\n", + "\n" + ] + } + ], + "source": [ + "import numpy as np\n", + "p.calculate(\n", + " methods=[\n", + " 'EF v3.1 - acidification - accumulated exceedance (AE)',\n", + " 'EF v3.1 - climate change - global warming potential (GWP100)',\n", + " 'EF v3.1 - ecotoxicity: freshwater - comparative toxic unit for ecosystems (CTUe)',\n", + " 'EF v3.1 - energy resources: non-renewable - abiotic depletion potential (ADP): fossil fuels',\n", + " 'EF v3.1 - eutrophication: freshwater - fraction of nutrients reaching freshwater end compartment (P)',\n", + " #'EF v3.1 - eutrophication: marine - fraction of nutrients reaching marine end compartment (N)',\n", + " #'EF v3.1 - eutrophication: terrestrial - accumulated exceedance (AE)',\n", + " #'EF v3.1 - human toxicity: carcinogenic - comparative toxic unit for human (CTUh)',\n", + " #'EF v3.1 - human toxicity: non-carcinogenic - comparative toxic unit for human (CTUh)',\n", + " #'EF v3.1 - ionising radiation: human health - human exposure efficiency relative to u235',\n", + " #'EF v3.1 - land use - soil quality index',\n", + " 'EF v3.1 - material resources: metals/minerals - abiotic depletion potential (ADP): elements (ultimate reserves)',\n", + " 'EF v3.1 - ozone depletion - ozone depletion potential (ODP)',\n", + " 'EF v3.1 - particulate matter formation - impact on human health',\n", + " #'EF v3.1 - photochemical oxidant formation: human health - tropospheric ozone concentration increase',\n", + " 'EF v3.1 - water use - user deprivation potential (deprivation-weighted water consumption)',\n", + " 'RELICS - metals extraction - Aluminium',\n", + " 'RELICS - metals extraction - Cobalt',\n", + " 'RELICS - metals extraction - Copper',\n", + " 'RELICS - metals extraction - Graphite',\n", + " 'RELICS - metals extraction - Lithium',\n", + " 'RELICS - metals extraction - Molybdenum',\n", + " 'RELICS - metals extraction - Neodymium',\n", + " 'RELICS - metals extraction - Nickel',\n", + " 'RELICS - metals extraction - Platinum',\n", + " 'RELICS - metals extraction - Vanadium',\n", + " 'RELICS - metals extraction - Zinc',\n", + " ],\n", + " regions=[r for r in p.scenarios.coords[\"region\"].values if r!=\"World\"],\n", + " scenarios=[\n", + " \"SSP2-Base\",\n", + " #\"SSP2-RCP19\",\n", + " ],\n", + " variables=[\n", + " v for v in p.scenarios.coords[\"variables\"].values\n", + " if any(i in v for i in [\"Industry\", \"Transport\", \"Heating\"])\n", + " ],\n", + " years=[2005, 2010, 2020, 2030, 2040, 2050, 2060, 2070, 2080, 2090, 2100],\n", + " characterization=True,\n", + " data_type=np.float32,\n", + " multiprocessing=False,\n", + " demand_cutoff=0.1,\n", + ")\n", + "arr = p.display_results()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "83d7622b-18db-429b-9ec5-453244db74bb", + "metadata": {}, + "outputs": [], + "source": [ + "p.scenarios" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "a63727ad-455f-4d7d-80fb-086678cbf901", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
<xarray.DataArray 'value' (model: 0, scenario: 0, year: 0, region: 0,\n",
+       "                           impact_category: 0, variable: 0, act_category: 0)>\n",
+       "array([], shape=(0, 0, 0, 0, 0, 0, 0), dtype=float64)\n",
+       "Coordinates:\n",
+       "  * model            (model) object \n",
+       "  * scenario         (scenario) object \n",
+       "  * year             (year) int64 \n",
+       "  * region           (region) object \n",
+       "  * impact_category  (impact_category) object \n",
+       "  * variable         (variable) float64 \n",
+       "  * act_category     (act_category) object 
" + ], + "text/plain": [ + "\n", + "array([], shape=(0, 0, 0, 0, 0, 0, 0), dtype=float64)\n", + "Coordinates:\n", + " * model (model) object \n", + " * scenario (scenario) object \n", + " * year (year) int64 \n", + " * region (region) object \n", + " * impact_category (impact_category) object \n", + " * variable (variable) float64 \n", + " * act_category (act_category) object " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "arr" ] }, { "cell_type": "code", "execution_count": 4, - "id": "b3b37d5c-8f65-4fb3-8f1b-7bbc05327081", + "id": "55c1ae5b-f165-4b45-84b4-f46c8b859fdc", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Invalid datapackage: Descriptor validation error: {'path': 'mapping/mapping.yaml', 'profile': 'data-resource', 'name': 'mapping', 'format': 'yaml', 'mediatype': 'text/yaml', 'encoding': 'utf-8'} is not valid under any of the given schemas at \"resources/45\" in descriptor and at \"properties/resources/items/oneOf\" in profile\n", - "Invalid datapackage: Descriptor validation error: 'data-resource' is not one of ['tabular-data-resource'] at \"resources/45/profile\" in descriptor and at \"properties/resources/items/properties/profile/enum\" in profile\n" - ] - } - ], + "outputs": [], "source": [ - "p = Pathways(datapackage=\"/Users/romain/GitHub/premise/dev/image-SSP2-RCP19/datapackage.json\")" + "arr.to_netcdf(\"results_image_SSP2.nc\")" ] }, { "cell_type": "code", "execution_count": 5, - "id": "2f3bf87a-5922-41b6-92e5-0a5e55500e8e", - "metadata": { - "tags": [] - }, + "id": "0078f7fc-a267-4eab-b28d-d943133cd2c7", + "metadata": {}, "outputs": [ { - "name": "stdout", - "output_type": "stream", - "text": [ - "Calculating LCA results for image...\n", - "--- Calculating LCA results for SSP2-RCP19...\n", - "------ Calculating LCA results for 2005...\n", - "------ Calculating LCA results for 2010...\n", - "------ Calculating LCA results for 2015...\n", - "LCA matrices not found for the given model, scenario, and year.\n", - "------ Calculating LCA results for 2020...\n", - "------ Calculating LCA results for 2025...\n", - "LCA matrices not found for the given model, scenario, and year.\n", - "------ Calculating LCA results for 2030...\n", - "------ Calculating LCA results for 2035...\n", - "LCA matrices not found for the given model, scenario, and year.\n", - "------ Calculating LCA results for 2040...\n", - "------ Calculating LCA results for 2045...\n", - "LCA matrices not found for the given model, scenario, and year.\n", - "------ Calculating LCA results for 2050...\n", - "------ Calculating LCA results for 2060...\n", - "------ Calculating LCA results for 2070...\n", - "------ Calculating LCA results for 2080...\n", - "------ Calculating LCA results for 2090...\n", - "------ Calculating LCA results for 2100...\n" + "ename": "KeyError", + "evalue": "'x'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[5], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[43marr\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mto_dataframe\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mx\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43munstack\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mx\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m]\u001b[49m\u001b[38;5;241m.\u001b[39mreset_index()\u001b[38;5;241m.\u001b[39mmelt(id_vars\u001b[38;5;241m=\u001b[39m[\n\u001b[1;32m 2\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mmodel\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mscenario\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mregion\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mimpact_category\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mvariable\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124myear\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 3\u001b[0m ])\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/frame.py:3895\u001b[0m, in \u001b[0;36mDataFrame.__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 3893\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_single_key:\n\u001b[1;32m 3894\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcolumns\u001b[38;5;241m.\u001b[39mnlevels \u001b[38;5;241m>\u001b[39m \u001b[38;5;241m1\u001b[39m:\n\u001b[0;32m-> 3895\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_getitem_multilevel\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 3896\u001b[0m indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcolumns\u001b[38;5;241m.\u001b[39mget_loc(key)\n\u001b[1;32m 3897\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_integer(indexer):\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/frame.py:3953\u001b[0m, in \u001b[0;36mDataFrame._getitem_multilevel\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 3951\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_getitem_multilevel\u001b[39m(\u001b[38;5;28mself\u001b[39m, key):\n\u001b[1;32m 3952\u001b[0m \u001b[38;5;66;03m# self.columns is a MultiIndex\u001b[39;00m\n\u001b[0;32m-> 3953\u001b[0m loc \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcolumns\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget_loc\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 3954\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(loc, (\u001b[38;5;28mslice\u001b[39m, np\u001b[38;5;241m.\u001b[39mndarray)):\n\u001b[1;32m 3955\u001b[0m new_columns \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcolumns[loc]\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/indexes/multi.py:2925\u001b[0m, in \u001b[0;36mMultiIndex.get_loc\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 2922\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m mask\n\u001b[1;32m 2924\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(key, \u001b[38;5;28mtuple\u001b[39m):\n\u001b[0;32m-> 2925\u001b[0m loc \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_get_level_indexer\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mlevel\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;241;43m0\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[1;32m 2926\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m _maybe_to_slice(loc)\n\u001b[1;32m 2928\u001b[0m keylen \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlen\u001b[39m(key)\n", + "File \u001b[0;32m/opt/homebrew/Caskroom/miniforge/base/envs/ab/lib/python3.9/site-packages/pandas/core/indexes/multi.py:3303\u001b[0m, in \u001b[0;36mMultiIndex._get_level_indexer\u001b[0;34m(self, key, level, indexer)\u001b[0m\n\u001b[1;32m 3299\u001b[0m end \u001b[38;5;241m=\u001b[39m algos\u001b[38;5;241m.\u001b[39msearchsorted(level_codes, idx, side\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mright\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 3301\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m start \u001b[38;5;241m==\u001b[39m end:\n\u001b[1;32m 3302\u001b[0m \u001b[38;5;66;03m# The label is present in self.levels[level] but unused:\u001b[39;00m\n\u001b[0;32m-> 3303\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(key)\n\u001b[1;32m 3304\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mslice\u001b[39m(start, end)\n", + "\u001b[0;31mKeyError\u001b[0m: 'x'" ] } ], - "source": [ - "p.calculate(\n", - " methods=[\n", - " 'IPCC 2021 - climate change - GWP 100a, incl. H',\n", - " 'EN15804 - inventory indicators ISO21930 - Cumulative Energy Demand - renewable energy resources',\n", - " 'EN15804 - inventory indicators ISO21930 - Cumulative Energy Demand - non-renewable energy resources',\n", - " 'EN15804 - inventory indicators ISO21930 - use of net fresh water',\n", - " 'EF v3.1 EN15804 - particulate matter formation - impact on human health',\n", - " ],\n", - " regions=[r for r in p.scenarios.coords[\"region\"].values if r!=\"World\"],\n", - " #regions=[\"World\",],\n", - " scenarios=[\n", - " #\"SSP2-Base\",\n", - " \"SSP2-RCP19\",\n", - " ],\n", - " variables=[\n", - " v for v in p.scenarios.coords[\"variables\"].values\n", - " if any(i in v for i in [\"Industry\", \"Transport\", \"Heating\"])\n", - " ],\n", - " #variables=[\"Transport_Freight_(train)_Liquid_fossil\"],\n", - " #variables = [\"Electricity\", ],\n", - " characterization=True\n", - ")\n", - "arr = p.display_results(cutoff=0.01)" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "55c1ae5b-f165-4b45-84b4-f46c8b859fdc", - "metadata": {}, - "outputs": [], - "source": [ - "arr.to_netcdf(\"results_image_SSP2-RCP19.nc\")" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "0078f7fc-a267-4eab-b28d-d943133cd2c7", - "metadata": {}, - "outputs": [], "source": [ "df = arr.to_dataframe(\"x\").unstack()[\"x\"].reset_index().melt(id_vars=[\n", " \"model\", \"scenario\", \"region\", \"impact_category\", \"variable\", \"year\"\n", @@ -139,6 +793,9 @@ } ], "source": [ + "df = arr.to_dataframe(\"x\").unstack()[\"x\"].reset_index().melt(id_vars=[\n", + " \"model\", \"scenario\", \"region\", \"impact_category\", \"variable\", \"year\"\n", + "])\n", "df[['Main sector', 'Sub sector', 'Energy carrier']] = df['variable'].str.split('_', expand=True)" ] }, @@ -201,7 +858,7 @@ " #\"Aluminium\",\n", " #\"Cadmium\",\n", " \"Cobalt\",\n", - " #\"Graphite\",\n", + " \"Graphite\",\n", " #\"Iridium\",\n", " #\"Iron\",\n", " #\"Lanthanum\",\n", @@ -209,8 +866,8 @@ " \"Lithium\",\n", " #\"Magnesium\",\n", " #\"Manganese\",\n", - " #\"Molybdenum\",\n", - " #\"Neodymium\",\n", + " \"Molybdenum\",\n", + " \"Neodymium\",\n", " \"Nickel\",\n", " #\"Palladium\",\n", " \"Platinum\",\n", @@ -244,39 +901,14 @@ }, { "cell_type": "code", - "execution_count": 7, - "id": "39d1b2e5-b498-4f06-a442-1874978de660", + "execution_count": 1, + "id": "ee0e2805-adf5-43c4-92af-8e7c28f82bf5", "metadata": {}, "outputs": [], "source": [ - "arr.loc[dict(impact_category=\"Vanadium - natural resource - in ground - kilogram\")] *= 1.23e-2" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "fe68049e-30f5-42f0-a497-9e9fd77404ec", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "array(['Cobalt - natural resource - in ground - kilogram',\n", - " 'Lithium - natural resource - in ground - kilogram',\n", - " 'Nickel - natural resource - in ground - kilogram',\n", - " 'Platinum - natural resource - in ground - kilogram',\n", - " 'Titanium - natural resource - in ground - kilogram',\n", - " 'Vanadium - natural resource - in ground - kilogram',\n", - " 'Zinc - natural resource - in ground - kilogram'], dtype=object)" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "arr.coords[\"impact_category\"].values" + "import xarray as xr\n", + "\n", + "arr = xr.open_dataarray(\"results_image_SSP2_metals2.nc\")" ] }, { @@ -291,7 +923,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 2, "id": "a14f36a5-eab7-4510-a01b-a4bd048fe777", "metadata": {}, "outputs": [ @@ -409,7 +1041,7 @@ "4 Manufacture of basic chemicals NaN " ] }, - "execution_count": 9, + "execution_count": 2, "metadata": {}, "output_type": "execute_result" } @@ -423,7 +1055,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 3, "id": "9f451db5-7bcb-4b02-b8f6-76c3e260a3ac", "metadata": {}, "outputs": [ @@ -433,7 +1065,7 @@ "1906632" ] }, - "execution_count": 10, + "execution_count": 3, "metadata": {}, "output_type": "execute_result" } @@ -446,7 +1078,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 4, "id": "d91c5cba-2b06-4237-96d5-c09a8752df8a", "metadata": {}, "outputs": [ @@ -454,19 +1086,19 @@ "name": "stderr", "output_type": "stream", "text": [ - "/var/folders/cn/pys1j9rn0y7djkhv3hfdtrs00000gn/T/ipykernel_5243/1532667233.py:1: SettingWithCopyWarning: \n", + "/var/folders/cn/pys1j9rn0y7djkhv3hfdtrs00000gn/T/ipykernel_16102/1532667233.py:1: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", "Try using .loc[row_indexer,col_indexer] = value instead\n", "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " df_short[['Main sector', 'Sub sector', 'Energy carrier']] = df_short['variable'].str.split('_', expand=True)\n", - "/var/folders/cn/pys1j9rn0y7djkhv3hfdtrs00000gn/T/ipykernel_5243/1532667233.py:1: SettingWithCopyWarning: \n", + "/var/folders/cn/pys1j9rn0y7djkhv3hfdtrs00000gn/T/ipykernel_16102/1532667233.py:1: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", "Try using .loc[row_indexer,col_indexer] = value instead\n", "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " df_short[['Main sector', 'Sub sector', 'Energy carrier']] = df_short['variable'].str.split('_', expand=True)\n", - "/var/folders/cn/pys1j9rn0y7djkhv3hfdtrs00000gn/T/ipykernel_5243/1532667233.py:1: SettingWithCopyWarning: \n", + "/var/folders/cn/pys1j9rn0y7djkhv3hfdtrs00000gn/T/ipykernel_16102/1532667233.py:1: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", "Try using .loc[row_indexer,col_indexer] = value instead\n", "\n", @@ -481,7 +1113,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 5, "id": "8a317d76-b749-462d-946a-af43d4dd3728", "metadata": {}, "outputs": [ @@ -489,7 +1121,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/var/folders/cn/pys1j9rn0y7djkhv3hfdtrs00000gn/T/ipykernel_5243/3107786552.py:1: SettingWithCopyWarning: \n", + "/var/folders/cn/pys1j9rn0y7djkhv3hfdtrs00000gn/T/ipykernel_16102/3107786552.py:1: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", "Try using .loc[row_indexer,col_indexer] = value instead\n", "\n", @@ -504,7 +1136,30 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 9, + "id": "e02b9327-29db-4280-9401-121fb6eb8f54", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/var/folders/cn/pys1j9rn0y7djkhv3hfdtrs00000gn/T/ipykernel_16102/1133324581.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_short[\"value\"] /= 1000\n" + ] + } + ], + "source": [ + "df_short[\"value\"] /= 1000" + ] + }, + { + "cell_type": "code", + "execution_count": 6, "id": "a078dea5-fd2e-48aa-83cf-5dbc42ae802b", "metadata": {}, "outputs": [ @@ -515,7 +1170,7 @@ " 'Zinc'], dtype=object)" ] }, - "execution_count": 17, + "execution_count": 6, "metadata": {}, "output_type": "execute_result" } @@ -526,18 +1181,36 @@ }, { "cell_type": "code", - "execution_count": 14, - "id": "0b4be8e2-bf2b-4e75-978e-9933acedeada", + "execution_count": 13, + "id": "e24ef9b7-094b-4b63-a725-ac570045e1fd", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "371076" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "from pivottablejs import pivot_ui\n", - "from IPython.display import HTML" + "len(df_short.loc[~df_short[\"value\"].isnull()])" ] }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 7, + "id": "0b4be8e2-bf2b-4e75-978e-9933acedeada", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 14, "id": "8b0b8d60-9048-45be-be52-3ea3b32305d1", "metadata": {}, "outputs": [ @@ -556,16 +1229,18 @@ " " ], "text/plain": [ - "" + "" ] }, - "execution_count": 16, + "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "pivot_ui(df_short, outfile_path='pivottable_all_metals.html')" + "from pivottablejs import pivot_ui\n", + "from IPython.display import HTML\n", + "pivot_ui(df_short.loc[~df_short[\"value\"].isnull()], outfile_path='pivottable_all_metals.html')" ] }, { @@ -10051,10 +10726,616 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 18, "id": "c5449334-b7de-4580-b08c-f517ea5c7556", "metadata": {}, "outputs": [], + "source": [ + "import json\n", + "import bw2io, bw2data" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "215c7839-110b-430b-9e47-daa15151dcea", + "metadata": {}, + "outputs": [], + "source": [ + "bw2data.projects.set_current(\"ei39\")" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "803572fe-5e58-4c32-a631-f63a117ed762", + "metadata": {}, + "outputs": [], + "source": [ + "relics = [m for m in bw2data.methods if \"relics\" in m[0].lower()]" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "id": "fcf25559-06f3-41d5-b93a-b63b224434c5", + "metadata": {}, + "outputs": [], + "source": [ + "list_m = []\n", + "for relic in relics:\n", + " m = bw2data.Method(relic)\n", + " new_m = {}\n", + " new_m[\"unit\"] = m.metadata[\"unit\"]\n", + " new_m[\"name\"] = m.name\n", + " new_m[\"exchanges\"] = [\n", + " {\n", + " \"name\": bw2data.get_activity(cf[0])[\"name\"],\n", + " \"categories\": bw2data.get_activity(cf[0])[\"categories\"],\n", + " \"amount\": cf[1]\n", + " }\n", + " for cf in m.load()\n", + " ]\n", + " list_m.append(new_m)" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "id": "7f4fbe84-d572-491e-967f-1b54ad63cc62", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[{'unit': 'kg aluminium',\n", + " 'name': ('RELICS', 'metals extraction', 'Aluminium'),\n", + " 'exchanges': [{'name': 'Aluminium, 24% in bauxite, 11% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Aluminium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg antimony',\n", + " 'name': ('RELICS', 'metals extraction', 'Antimony'),\n", + " 'exchanges': [{'name': 'Antimony',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg beryllium',\n", + " 'name': ('RELICS', 'metals extraction', 'Beryllium'),\n", + " 'exchanges': [{'name': 'Beryllium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg boron',\n", + " 'name': ('RELICS', 'metals extraction', 'Boron'),\n", + " 'exchanges': [{'name': 'Boron',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg brass',\n", + " 'name': ('RELICS', 'metals extraction', 'Brass'),\n", + " 'exchanges': []},\n", + " {'unit': 'kg cadmium',\n", + " 'name': ('RELICS', 'metals extraction', 'Cadmium'),\n", + " 'exchanges': [{'name': 'Cadmium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg cerium',\n", + " 'name': ('RELICS', 'metals extraction', 'Cerium'),\n", + " 'exchanges': [{'name': 'Cerium, 24% in bastnasite, 2.4% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Cerium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg chromium',\n", + " 'name': ('RELICS', 'metals extraction', 'Chromium'),\n", + " 'exchanges': [{'name': 'Chromium, 25.5% in chromite, 11.6% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Chromium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg cobalt',\n", + " 'name': ('RELICS', 'metals extraction', 'Cobalt'),\n", + " 'exchanges': [{'name': 'Cobalt',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Cobalt, Co 5.0E-2%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg copper',\n", + " 'name': ('RELICS', 'metals extraction', 'Copper'),\n", + " 'exchanges': [{'name': 'Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, Cu 6.8E-1%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, Cu 0.2%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Copper, Cu 0.38%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg dysprosium',\n", + " 'name': ('RELICS', 'metals extraction', 'Dysprosium'),\n", + " 'exchanges': [{'name': 'Dysprosium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg erbium',\n", + " 'name': ('RELICS', 'metals extraction', 'Erbium'),\n", + " 'exchanges': [{'name': 'Terbium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Ytterbium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Erbium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg europium',\n", + " 'name': ('RELICS', 'metals extraction', 'Europium'),\n", + " 'exchanges': [{'name': 'Europium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Europium, 0.06% in bastnasite, 0.006% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg gadolinium',\n", + " 'name': ('RELICS', 'metals extraction', 'Gadolinium'),\n", + " 'exchanges': [{'name': 'Gadolinium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gadolinium, 0.15% in bastnasite, 0.015% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg gallium',\n", + " 'name': ('RELICS', 'metals extraction', 'Gallium'),\n", + " 'exchanges': [{'name': 'Gallium, 0.014% in bauxite',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gallium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg germanium',\n", + " 'name': ('RELICS', 'metals extraction', 'Germanium'),\n", + " 'exchanges': [{'name': 'Germanium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg gold',\n", + " 'name': ('RELICS', 'metals extraction', 'Gold'),\n", + " 'exchanges': [{'name': 'Gold, Au 1.0E-7%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 1.4E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 4.3E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 4.9E-5%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 7.1E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 1.8E-4%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 6.7E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Gold, Au 9.7E-4%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg graphite',\n", + " 'name': ('RELICS', 'metals extraction', 'Graphite'),\n", + " 'exchanges': [{'name': 'Graphite',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg hafnium',\n", + " 'name': ('RELICS', 'metals extraction', 'Hafnium'),\n", + " 'exchanges': [{'name': 'Hafnium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg indium',\n", + " 'name': ('RELICS', 'metals extraction', 'Indium'),\n", + " 'exchanges': [{'name': 'Indium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg iridium',\n", + " 'name': ('RELICS', 'metals extraction', 'Iridium'),\n", + " 'exchanges': [{'name': 'Iridium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg lanthanum',\n", + " 'name': ('RELICS', 'metals extraction', 'Lanthanum'),\n", + " 'exchanges': [{'name': 'Lanthanum',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Lanthanum, 7.2% in bastnasite, 0.72% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg lead',\n", + " 'name': ('RELICS', 'metals extraction', 'Lead'),\n", + " 'exchanges': [{'name': 'Lead, Pb 3.6E-1%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Lead',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Lead, Pb 0.014%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg lithium',\n", + " 'name': ('RELICS', 'metals extraction', 'Lithium'),\n", + " 'exchanges': [{'name': 'Lithium, 0.15% in brine',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Lithium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg magnesium',\n", + " 'name': ('RELICS', 'metals extraction', 'Magnesium'),\n", + " 'exchanges': [{'name': 'Magnesium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg manganese',\n", + " 'name': ('RELICS', 'metals extraction', 'Manganese'),\n", + " 'exchanges': [{'name': 'Manganese',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg molybdenum',\n", + " 'name': ('RELICS', 'metals extraction', 'Molybdenum'),\n", + " 'exchanges': [{'name': 'Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Molybdenum',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg neodymium',\n", + " 'name': ('RELICS', 'metals extraction', 'Neodymium'),\n", + " 'exchanges': [{'name': 'Neodymium, 4% in bastnasite, 0.4% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Neodymium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg nickel',\n", + " 'name': ('RELICS', 'metals extraction', 'Nickel'),\n", + " 'exchanges': [{'name': 'Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Nickel',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Nickel, 1.98% in silicates, 1.04% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Nickel, Ni 2.5E+0%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg niobium',\n", + " 'name': ('RELICS', 'metals extraction', 'Niobium'),\n", + " 'exchanges': [{'name': 'Niobium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg palladium',\n", + " 'name': ('RELICS', 'metals extraction', 'Palladium'),\n", + " 'exchanges': [{'name': 'Palladium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Palladium, Pd 1.6E-6%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg phosphorous',\n", + " 'name': ('RELICS', 'metals extraction', 'Phosphorous'),\n", + " 'exchanges': []},\n", + " {'unit': 'kg platinum',\n", + " 'name': ('RELICS', 'metals extraction', 'Platinum'),\n", + " 'exchanges': [{'name': 'Platinum, Pt 4.7E-7%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Platinum',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg potassium',\n", + " 'name': ('RELICS', 'metals extraction', 'Potassium'),\n", + " 'exchanges': [{'name': 'Potassium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg praseodymium',\n", + " 'name': ('RELICS', 'metals extraction', 'Praseodymium'),\n", + " 'exchanges': [{'name': 'Praseodymium, 0.42% in bastnasite, 0.042% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Praseodymium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg rhenium',\n", + " 'name': ('RELICS', 'metals extraction', 'Rhenium'),\n", + " 'exchanges': [{'name': 'Rhenium, in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Rhenium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg rhodium',\n", + " 'name': ('RELICS', 'metals extraction', 'Rhodium'),\n", + " 'exchanges': [{'name': 'Rhodium, Rh 1.6E-7%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Rhodium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg ruthenium',\n", + " 'name': ('RELICS', 'metals extraction', 'Ruthenium'),\n", + " 'exchanges': [{'name': 'Ruthenium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg samarium',\n", + " 'name': ('RELICS', 'metals extraction', 'Samarium'),\n", + " 'exchanges': [{'name': 'Samarium, 0.3% in bastnasite, 0.03% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Samarium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg scandium',\n", + " 'name': ('RELICS', 'metals extraction', 'Scandium'),\n", + " 'exchanges': [{'name': 'Scandium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg selenium',\n", + " 'name': ('RELICS', 'metals extraction', 'Selenium'),\n", + " 'exchanges': [{'name': 'Selenium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg silicon',\n", + " 'name': ('RELICS', 'metals extraction', 'Silicon'),\n", + " 'exchanges': [{'name': 'Silicon',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg silver',\n", + " 'name': ('RELICS', 'metals extraction', 'Silver'),\n", + " 'exchanges': [{'name': 'Silver, Ag 5.4E-3%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, Ag 9.7E-4%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, 0.01% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, Ag 1.8E-6%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg sulfur',\n", + " 'name': ('RELICS', 'metals extraction', 'Sulfur'),\n", + " 'exchanges': [{'name': 'Sulfur',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg strontium',\n", + " 'name': ('RELICS', 'metals extraction', 'Strontium'),\n", + " 'exchanges': [{'name': 'Strontium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg tantalum',\n", + " 'name': ('RELICS', 'metals extraction', 'Tantalum'),\n", + " 'exchanges': [{'name': 'Tantalum',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg tellurium',\n", + " 'name': ('RELICS', 'metals extraction', 'Tellurium'),\n", + " 'exchanges': [{'name': 'Tellurium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg terbium',\n", + " 'name': ('RELICS', 'metals extraction', 'Terbium'),\n", + " 'exchanges': [{'name': 'Ytterbium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Terbium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg tin',\n", + " 'name': ('RELICS', 'metals extraction', 'Tin'),\n", + " 'exchanges': [{'name': 'Platinum',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Astatine',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Protactinium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Tin, 79% in cassiterite, 0.1% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Tin',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Platinum, Pt 4.7E-7%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Actinium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg titanium',\n", + " 'name': ('RELICS', 'metals extraction', 'Titanium'),\n", + " 'exchanges': [{'name': 'Titanium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg tungsten',\n", + " 'name': ('RELICS', 'metals extraction', 'Tungsten'),\n", + " 'exchanges': [{'name': 'Tungsten',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg vanadium',\n", + " 'name': ('RELICS', 'metals extraction', 'Vanadium'),\n", + " 'exchanges': [{'name': 'Vanadium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg ytterbium',\n", + " 'name': ('RELICS', 'metals extraction', 'Ytterbium'),\n", + " 'exchanges': [{'name': 'Ytterbium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg yttrium',\n", + " 'name': ('RELICS', 'metals extraction', 'Yttrium'),\n", + " 'exchanges': [{'name': 'Yttrium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg zinc',\n", + " 'name': ('RELICS', 'metals extraction', 'Zinc'),\n", + " 'exchanges': [{'name': 'Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Zinc',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Zinc, Zn 0.63%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Zinc, Zn 3.1%, in mixed ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]},\n", + " {'unit': 'kg zirconium',\n", + " 'name': ('RELICS', 'metals extraction', 'Zirconium'),\n", + " 'exchanges': [{'name': 'Zirconium, 50% in zircon, 0.39% in crude ore',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0},\n", + " {'name': 'Zirconium',\n", + " 'categories': ('natural resource', 'in ground'),\n", + " 'amount': 1.0}]}]" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "list_m" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "3a40b9fb-40a7-4076-9173-ad4fb6c2db8b", + "metadata": {}, + "outputs": [], "source": [] } ], diff --git a/dev/program.prof b/dev/program.prof new file mode 100644 index 0000000..8e912b3 Binary files /dev/null and b/dev/program.prof differ diff --git a/dev/timing.py b/dev/timing.py new file mode 100644 index 0000000..bfd8024 --- /dev/null +++ b/dev/timing.py @@ -0,0 +1,52 @@ +from pathways import Pathways +p = Pathways(datapackage="/Users/romain/GitHub/premise/dev/image-SSP2/datapackage.json") + +for scenario in [ + #"SSP2-Base", + "SSP2-RCP19" +]: + p.calculate( + methods=[ + 'EF v3.1 - acidification - accumulated exceedance (AE)', + 'EF v3.1 - climate change - global warming potential (GWP100)', + 'EF v3.1 - ecotoxicity: freshwater - comparative toxic unit for ecosystems (CTUe)', + 'EF v3.1 - energy resources: non-renewable - abiotic depletion potential (ADP): fossil fuels', + 'EF v3.1 - eutrophication: freshwater - fraction of nutrients reaching freshwater end compartment (P)', + 'EF v3.1 - human toxicity: carcinogenic - comparative toxic unit for human (CTUh)', + 'EF v3.1 - material resources: metals/minerals - abiotic depletion potential (ADP): elements (ultimate reserves)', + 'EF v3.1 - particulate matter formation - impact on human health', + 'EF v3.1 - water use - user deprivation potential (deprivation-weighted water consumption)', + 'RELICS - metals extraction - Aluminium', + 'RELICS - metals extraction - Cobalt', + 'RELICS - metals extraction - Copper', + 'RELICS - metals extraction - Graphite', + 'RELICS - metals extraction - Lithium', + 'RELICS - metals extraction - Molybdenum', + 'RELICS - metals extraction - Neodymium', + 'RELICS - metals extraction - Nickel', + 'RELICS - metals extraction - Platinum', + 'RELICS - metals extraction - Vanadium', + 'RELICS - metals extraction - Zinc', + ], + regions=[r for r in p.scenarios.coords["region"].values if r!="World"], + scenarios=[scenario], + years=[ + 2020, + 2030, + 2040, + 2050, + 2060, + 2070, + 2080, + 2090, + 2100 + ], + variables=[ + v for v in p.scenarios.coords["variables"].values + if any(i in v for i in ["Industry", "Transport", "Heating"]) + ], + demand_cutoff=0.01 + ) + arr = p.display_results(cutoff=0.0001) + + arr.to_netcdf(f"results_image_{scenario}.nc") diff --git a/pathways/data/activities_classifications.yaml b/pathways/data/activities_classifications.yaml index 38ccfcb..6e4604b 100644 --- a/pathways/data/activities_classifications.yaml +++ b/pathways/data/activities_classifications.yaml @@ -182821,19 +182821,19 @@ - transport, freight, aircraft, long haul - ton kilometer - GLO -: Passenger air transport +: Freight air transport ? !!python/tuple - market for transport, freight, aircraft, medium haul - transport, freight, aircraft, medium haul - ton kilometer - GLO -: Passenger air transport +: Freight air transport ? !!python/tuple - market for transport, freight, aircraft, short haul - transport, freight, aircraft, short haul - ton kilometer - GLO -: Passenger air transport +: Freight air transport ? !!python/tuple - market for transport, freight, aircraft, unspecified - transport, freight, aircraft, unspecified @@ -230016,49 +230016,49 @@ - transport, freight, aircraft, long haul - ton kilometer - GLO -: Passenger air transport +: Freight air transport ? !!python/tuple - transport, freight, aircraft, belly-freight, medium haul - transport, freight, aircraft, medium haul - ton kilometer - GLO -: Passenger air transport +: Freight air transport ? !!python/tuple - transport, freight, aircraft, belly-freight, short haul - transport, freight, aircraft, short haul - ton kilometer - GLO -: Passenger air transport +: Freight air transport ? !!python/tuple - transport, freight, aircraft, belly-freight, very short haul - transport, freight, aircraft, very short haul - ton kilometer - GLO -: Passenger air transport +: Freight air transport ? !!python/tuple - transport, freight, aircraft, dedicated freight, long haul - transport, freight, aircraft, long haul - ton kilometer - GLO -: Passenger air transport +: Freight air transport ? !!python/tuple - transport, freight, aircraft, dedicated freight, medium haul - transport, freight, aircraft, medium haul - ton kilometer - GLO -: Passenger air transport +: Freight air transport ? !!python/tuple - transport, freight, aircraft, dedicated freight, short haul - transport, freight, aircraft, short haul - ton kilometer - GLO -: Passenger air transport +: Freight air transport ? !!python/tuple - transport, freight, aircraft, dedicated freight, very short haul - transport, freight, aircraft, very short haul - ton kilometer - GLO -: Passenger air transport +: Freight air transport ? !!python/tuple - transport, freight, conveyor belt - transport, freight, conveyor belt @@ -242319,13 +242319,13 @@ - transport, helicopter - hour - GLO -: Passenger air transport +: Freight air transport ? !!python/tuple - transport, helicopter, LTO cycle - transport, helicopter, LTO cycle - unit - GLO -: Passenger air transport +: Freight air transport ? !!python/tuple - transport, passenger aircraft, all distances to generic market for transport, passenger aircraft, unspecified @@ -263201,3 +263201,339 @@ - kilogram - GLO : Growing of vegetables and melons roots and tubers +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- RER +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- BRA +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- CAN +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- CEU +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- CHN +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- EAF +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- INDIA +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- INDO +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- JAP +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- KOR +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- ME +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- MEX +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- NAF +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- OCE +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- RCAM +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- RSAF +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- RSAM +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- RSAS +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- RUS +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- SAF +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- SEAS +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- STAN +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- TUR +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- UKR +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- USA +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- WAF +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- WEU +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in passenger car +- electricity, low voltage +- kilowatt hour +- World +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- RER +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- BRA +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- CAN +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- CEU +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- CHN +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- EAF +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- INDIA +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- INDO +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- JAP +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- KOR +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- ME +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- MEX +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- NAF +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- OCE +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- RCAM +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- RSAF +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- RSAM +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- RSAS +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- RUS +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- SAF +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- SEAS +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- STAN +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- TUR +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- UKR +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- USA +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- WAF +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- WEU +: Steam and air conditioning supply +? !!python/tuple +- electricity, used in heavy-duty vehicle +- electricity, low voltage +- kilowatt hour +- World +: Steam and air conditioning supply diff --git a/pathways/data/final_energy_mapping.xlsx b/pathways/data/final_energy_mapping.xlsx index 85653b1..fb343de 100644 Binary files a/pathways/data/final_energy_mapping.xlsx and b/pathways/data/final_energy_mapping.xlsx differ diff --git a/pathways/data/lcia_data.json b/pathways/data/lcia_data.json index aa7ab2c..db599fd 100644 --- a/pathways/data/lcia_data.json +++ b/pathways/data/lcia_data.json @@ -1 +1,507 @@ -[{"unit": "kg SO2-Eq", "name": ["CML v4.8 2016 no LT", "acidification no LT", "acidification (incl. fate, average Europe total, A&B) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.6}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.783673469}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6}, {"name": "Ammonia", "categories": ["air"], "amount": 1.6}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1.2}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.783673469}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.783673469}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.783673469}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.96}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.96}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.96}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.96}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.76}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.5}]}, {"unit": "kg CO2-Eq", "name": ["CML v4.8 2016 no LT", "climate change no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 16}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4800}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 782}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 138}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1980}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 79}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 527}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7670}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3170}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 6290}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1760}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 148}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 677}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 28}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 28}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1730}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6630}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 16100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 23500}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 16}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16}, {"name": "Chloroform", "categories": ["air"], "amount": 16}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 160}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4800}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4800}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4800}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 782}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 782}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 782}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 138}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 138}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 138}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1980}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1980}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1980}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 79}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 79}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 527}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 527}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 527}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7670}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7670}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7670}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3170}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3170}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3170}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 28}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1750}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1750}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 6290}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6290}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 6290}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1760}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1760}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1760}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 13900}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 9}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 148}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 148}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 148}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 677}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 677}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 677}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28}, {"name": "Methane, fossil", "categories": ["air"], "amount": 28}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1730}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1730}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1730}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6630}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6630}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6630}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 16100}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16100}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 16100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 23500}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23500}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 23500}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8550}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 28}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 28}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 28}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8590}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8590}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5820}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5820}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5820}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5820}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 265}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 265}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 265}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["CML v4.8 2016 no LT", "ecotoxicity: freshwater no LT", "freshwater aquatic ecotoxicity (FAETP inf) no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 29.49533085}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 171.8260122}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 27543.9258}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 50.94693271}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 519.4373798}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 79.23967176}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 95850.36583}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 283.1084245}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3.723752847}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 344.5970581}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 194.3865145}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 42.82246292}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 4.58563184}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 8.284720127}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 8.36818e-05}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.360324568}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000131227}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.334773948}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.370678892}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 87.77019479}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 17130.14029}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 103.1859686}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 3.25314e-07}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 289.4303366}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1523.011325}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.401496318}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 23.15337181}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2006.573756}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 584.5336542}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.032958813}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.796783349}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 9.5153e-05}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.038097112}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 1.922646069}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.690584275}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 6.913909397}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 639.1861685}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 221.6538139}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1157.306919}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 805.782122}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 199339.4398}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 24.09919497}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1293.825496}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 8.943808102}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 20139.95554}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 2126816.609}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 72.47918315}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 345.4825421}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 1.188877652}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2.206962213}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000121789}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000119313}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.42593e-11}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.86154e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000412935}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.81057e-05}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 11055.68571}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.098656659}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 380.9895881}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 381.1617771}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 8.255924503}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.921647131}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 4.638464651}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 167.9323357}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.399626922}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 97.42163568}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 693.1429309}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 162.0879155}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.462892182}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 29.99999205}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 29.99999205}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 316.7874757}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.412871049}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 3.926415532}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 43.70064072}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.032679173}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.32865e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000251931}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 14117.59934}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 97.3192924}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 4.37469e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 629.4706747}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 29.53209263}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 970.4507327}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.30679e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 171.8260122}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 497.628906}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 916.7842984}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.515898377}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.403587546}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 10.52329205}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 76.4086027}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 79.47660628}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 3.084748678}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 2.770891361}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1670.238851}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.036846268}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 15.05965114}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 546.2392735}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 2332.496164}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.09075e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1553.337312}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 685.8406233}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 2.537017575}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 10.16626668}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 7.04338e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3307.653992}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 39.76875083}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1733.840782}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 8965.69091}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 17.78364688}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 91.71242268}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.8260122}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 171.8260122}, {"name": "Acenaphthene", "categories": ["air"], "amount": 171.8260122}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 519.4373798}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 519.4373798}, {"name": "Acrolein", "categories": ["air"], "amount": 519.4373798}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.723752847}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.723752847}, {"name": "Antimony ion", "categories": ["air"], "amount": 3.723752847}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.82246292}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.82246292}, {"name": "Barium II", "categories": ["air"], "amount": 42.82246292}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.36818e-05}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.36818e-05}, {"name": "Benzene", "categories": ["air"], "amount": 8.36818e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000131227}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000131227}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000131227}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.334773948}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.334773948}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.334773948}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.370678892}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.370678892}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.370678892}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 87.77019479}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 87.77019479}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 87.77019479}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 17130.14029}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17130.14029}, {"name": "Beryllium II", "categories": ["air"], "amount": 17130.14029}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.25314e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.25314e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 3.25314e-07}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 289.4303366}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 289.4303366}, {"name": "Cadmium II", "categories": ["air"], "amount": 289.4303366}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.032958813}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.032958813}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.032958813}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5153e-05}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5153e-05}, {"name": "Chloroform", "categories": ["air"], "amount": 9.5153e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.922646069}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.922646069}, {"name": "Chromium III", "categories": ["air"], "amount": 1.922646069}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.690584275}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.690584275}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.690584275}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 639.1861685}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 639.1861685}, {"name": "Cobalt II", "categories": ["air"], "amount": 639.1861685}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 221.6538139}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 221.6538139}, {"name": "Copper ion", "categories": ["air"], "amount": 221.6538139}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2126816.609}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2126816.609}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 2126816.609}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000121789}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000121789}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000121789}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000119313}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000119313}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000119313}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42593e-11}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42593e-11}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86154e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86154e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.86154e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000412935}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000412935}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.000412935}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.81057e-05}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.81057e-05}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.098656659}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.098656659}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.098656659}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.255924503}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.255924503}, {"name": "Formaldehyde", "categories": ["air"], "amount": 8.255924503}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.638464651}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.638464651}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 4.638464651}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.399626922}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.399626922}, {"name": "Lead II", "categories": ["air"], "amount": 2.399626922}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 316.7874757}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 316.7874757}, {"name": "Mercury II", "categories": ["air"], "amount": 316.7874757}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.032679173}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.032679173}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.032679173}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32865e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32865e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.32865e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000251931}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000251931}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000251931}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.3192924}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 97.3192924}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 97.3192924}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.37469e-05}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.37469e-05}, {"name": "m-Xylene", "categories": ["air"], "amount": 4.37469e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 629.4706747}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 629.4706747}, {"name": "Nickel II", "categories": ["air"], "amount": 629.4706747}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.30679e-05}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.30679e-05}, {"name": "o-Xylene", "categories": ["air"], "amount": 9.30679e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.8260122}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 171.8260122}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 171.8260122}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.515898377}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.515898377}, {"name": "Phenol", "categories": ["air"], "amount": 1.515898377}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.403587546}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.403587546}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.403587546}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.52329205}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.52329205}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 10.52329205}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.036846268}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.036846268}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.036846268}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 546.2392735}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 546.2392735}, {"name": "Selenium IV", "categories": ["air"], "amount": 546.2392735}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09075e-05}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.09075e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.09075e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1553.337312}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1553.337312}, {"name": "Thallium I", "categories": ["air"], "amount": 1553.337312}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.537017575}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.537017575}, {"name": "Tin ion", "categories": ["air"], "amount": 2.537017575}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.04338e-05}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.04338e-05}, {"name": "Toluene", "categories": ["air"], "amount": 7.04338e-05}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1733.840782}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1733.840782}, {"name": "Vanadium V", "categories": ["air"], "amount": 1733.840782}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.78364688}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.78364688}, {"name": "Zinc II", "categories": ["air"], "amount": 17.78364688}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 9.980626326}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 9.980626326}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 9.980626326}, {"name": "Antimony ion", "categories": ["soil"], "amount": 9.980626326}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 114.754741}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 114.754741}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 114.754741}, {"name": "Barium II", "categories": ["soil"], "amount": 114.754741}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 45897.5345}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 45897.5345}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 45897.5345}, {"name": "Beryllium II", "categories": ["soil"], "amount": 45897.5345}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 776.1149557}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 776.1149557}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 776.1149557}, {"name": "Cadmium II", "categories": ["soil"], "amount": 776.1149557}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.254694777}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.254694777}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.254694777}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.254694777}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 21.01877911}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 21.01877911}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 21.01877911}, {"name": "Chromium VI", "categories": ["soil"], "amount": 21.01877911}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1712.622007}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1712.622007}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1712.622007}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1712.622007}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 594.650583}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 594.650583}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 594.650583}, {"name": "Copper ion", "categories": ["soil"], "amount": 594.650583}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.671884382}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 6.527796616}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 6.527796616}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 6.527796616}, {"name": "Lead II", "categories": ["soil"], "amount": 6.527796616}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 848.1277497}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 848.1277497}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 848.1277497}, {"name": "Mercury II", "categories": ["soil"], "amount": 848.1277497}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 262.0749706}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 262.0749706}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 262.0749706}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 262.0749706}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1690.253104}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1690.253104}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1690.253104}, {"name": "Nickel II", "categories": ["soil"], "amount": 1690.253104}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1463.367658}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1463.367658}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1463.367658}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1463.367658}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 4170.357612}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 4170.357612}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 4170.357612}, {"name": "Thallium I", "categories": ["soil"], "amount": 4170.357612}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 6.901545648}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 6.901545648}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 6.901545648}, {"name": "Tin ion", "categories": ["soil"], "amount": 6.901545648}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4654.224158}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 4654.224158}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 4654.224158}, {"name": "Vanadium V", "categories": ["soil"], "amount": 4654.224158}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 47.74504968}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 47.74504968}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 47.74504968}, {"name": "Zinc II", "categories": ["soil"], "amount": 47.74504968}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 27543.9258}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.117133035}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Acenaphthene", "categories": ["water"], "amount": 27543.9258}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 0.117133035}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 27543.9258}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.006036076}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 79.23967176}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 79.23967176}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 19.7471634}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.56984e-21}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 19.7471634}, {"name": "Antimony ion", "categories": ["water"], "amount": 19.7471634}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 227.7547418}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.40807e-19}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 227.7547418}, {"name": "Barium II", "categories": ["water"], "amount": 227.7547418}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.091442188}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.19439e-06}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.091442188}, {"name": "Benzene", "categories": ["water"], "amount": 0.091442188}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000258594}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.360324568}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.360324568}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.545523699}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.43815e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.545523699}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.545523699}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 91349.16197}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.5677e-16}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 91349.16197}, {"name": "Beryllium II", "categories": ["water"], "amount": 91349.16197}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.52612e-20}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1523.011325}, {"name": "Cadmium II", "categories": ["water"], "amount": 1523.011325}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 105.1696058}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.006529295}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 105.1696058}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 105.1696058}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.042349293}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 4.48297e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.042349293}, {"name": "Chloroform", "categories": ["water"], "amount": 0.042349293}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 27.65563759}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.53467e-22}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 27.65563759}, {"name": "Chromium VI", "categories": ["water"], "amount": 27.65563759}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 8.83668e-23}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 6.913909397}, {"name": "Chromium III", "categories": ["water"], "amount": 6.913909397}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 3407.831958}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.21543e-18}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 3407.831958}, {"name": "Cobalt II", "categories": ["water"], "amount": 3407.831958}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.10941e-20}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1157.306919}, {"name": "Copper ion", "categories": ["water"], "amount": 1157.306919}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.109593474}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 7.10351e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.109593474}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.109593474}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.022946375}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 8.82702e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.022946375}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.022946375}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 0.022490624}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.04966e-12}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 0.022490624}, {"name": "Ethylene", "categories": ["water"], "amount": 0.022490624}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 0.027866613}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.40913e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 0.027866613}, {"name": "Chloroethylene", "categories": ["water"], "amount": 0.027866613}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.696350599}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.000202109}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.696350599}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.696350599}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.096977306}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.55453e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.096977306}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.096977306}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 9.795451453}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.003778204}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 9.795451453}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 9.795451453}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 280.7343279}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.000212611}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 280.7343279}, {"name": "Formaldehyde", "categories": ["water"], "amount": 280.7343279}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 9.615718658}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 5.5714e-23}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 9.615718658}, {"name": "Lead II", "categories": ["water"], "amount": 9.615718658}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1717.144328}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 6.773349297}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1717.144328}, {"name": "Mercury II", "categories": ["water"], "amount": 1717.144328}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.01228851}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 5.01878e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.01228851}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.01228851}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.20840893}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000190563}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.20840893}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.20840893}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 476.1891468}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.58768e-19}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 476.1891468}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 476.1891468}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.59828717}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.2348e-06}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.59828717}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.59828717}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.09427e-19}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3237.610008}, {"name": "Nickel II", "categories": ["water"], "amount": 3237.610008}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.564623853}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.5123e-05}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.564623853}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.564623853}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 27543.9258}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.117133035}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 27543.9258}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 237.0076571}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.72839e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 237.0076571}, {"name": "Phenol", "categories": ["water"], "amount": 237.0076571}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 3.18725e-05}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 76.4086027}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 76.4086027}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.9224e-05}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 79.47660628}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 79.47660628}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 3.8217e-07}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 3.084748678}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 3.084748678}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00014339}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 2.770891361}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 2.770891361}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.964936638}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.000441224}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.964936638}, {"name": "Propylene oxide", "categories": ["water"], "amount": 3.964936638}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 2919.215918}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 7.37855e-18}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 2919.215918}, {"name": "Selenium IV", "categories": ["water"], "amount": 2919.215918}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.439672438}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.01252e-05}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.439672438}, {"name": "Styrene", "categories": ["water"], "amount": 0.439672438}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 8010.748812}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 7.89876e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 8010.748812}, {"name": "Thallium I", "categories": ["water"], "amount": 8010.748812}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 9.45727e-23}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 10.16626668}, {"name": "Tin ion", "categories": ["water"], "amount": 10.16626668}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.294514441}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 8.26905e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.294514441}, {"name": "Toluene", "categories": ["water"], "amount": 0.294514441}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 2.3929e-18}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 8965.69091}, {"name": "Vanadium V", "categories": ["water"], "amount": 8965.69091}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.7611e-21}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 91.71242268}, {"name": "Zinc II", "categories": ["water"], "amount": 91.71242268}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.633354816}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 519.1373278}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15909.97498}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 38.70264593}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.868972369}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 199339.4398}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 986.5000335}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 111.3634597}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1115.193351}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.19295282}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 360.8377327}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.93283786}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1466.6325}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 83602.82745}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3237.610008}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 231.4644637}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 17.26224344}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 4510.732407}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16.11900088}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 199339.4398}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 171.8260122}, {"name": "Anthracene", "categories": ["air"], "amount": 136.6120225}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 41.95943397}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 171.8260122}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 43.59828858}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 3877.313303}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 171.8260122}, {"name": "Fluorene", "categories": ["air"], "amount": 171.8260122}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 165.284645}, {"name": "Phenanthrene", "categories": ["air"], "amount": 1.26038299}, {"name": "Pyrene", "categories": ["air"], "amount": 171.8260122}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.310533909}, {"name": "Permethrin", "categories": ["water"], "amount": 5033760.13}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 83602.82745}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 51746.706}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 1169429.359}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 13151.73799}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 76813.73869}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 658.9115519}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 57270.20995}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 114823.123}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 251689.8554}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 57270.20995}, {"name": "Anthracene", "categories": ["water"], "amount": 57270.20995}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 16.70312979}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 1169429.359}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 1169429.359}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 9.112002017}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 76813.73869}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 76813.73869}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.000741658}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41402952}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.41402952}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41402952}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.41402952}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 172761006.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 172761006.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 172761006.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 133273.7576}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 27543.9258}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 251689.8554}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1368.227175}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1368.227175}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 4957.984372}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 4957.984372}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 4531.703764}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 4531.703764}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 38378.53316}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 27.18350061}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 27.18350061}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.058224124}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 135031.4275}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.099260671}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.012983861}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 5.306394539}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 5.306394539}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 50.70964583}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 50.70964583}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 491210.9319}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 491210.9319}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 123106.4602}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 491210.9319}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 3.81057e-05}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 0.213835093}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 199339.4398}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 6452.497435}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 74.08667954}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 755.4108063}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 30.85501588}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 94.94810336}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 350.2386357}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 254.956018}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.328300702}, {"name": "Glyphosate", "categories": ["water"], "amount": 1368.227175}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 152.987151}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 50.73202763}, {"name": "Acrolein", "categories": ["water"], "amount": 251473.5781}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 653735.0536}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 172.5578345}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 27083.51373}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1814.591747}, {"name": "Thiram", "categories": ["air"], "amount": 2703.849252}, {"name": "Dimethoate", "categories": ["air"], "amount": 12.51989401}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 97982.61947}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 48634.13547}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 49.60329639}, {"name": "Triallate", "categories": ["air"], "amount": 61.24233876}, {"name": "Ethylene", "categories": ["air"], "amount": 1.42593e-11}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.495763292}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 516.5336286}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 18508.73048}, {"name": "Fluoranthene", "categories": ["air"], "amount": 17.80093307}, {"name": "Chrysene", "categories": ["air"], "amount": 39.21597222}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 373.5251898}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["air"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 134.4097828}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 134.4097828}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 134.4097828}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 134.4097828}, {"name": "Arsenic ion", "categories": ["water"], "amount": 206.7462211}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 206.7462211}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.84676e-20}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 206.7462211}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 83602.82745}, {"name": "Bifenthrin", "categories": ["air"], "amount": 820.4307545}, {"name": "Bifenthrin", "categories": ["water"], "amount": 243975.0192}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 411.9497193}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 820.4307545}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 243975.0192}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 7944107.679}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7944107.679}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 688967.2267}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 7944107.679}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 688967.2267}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 83602.82745}, {"name": "Carbendazim", "categories": ["air"], "amount": 2984.253341}, {"name": "Diuron", "categories": ["air"], "amount": 530.4214428}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.534613272}, {"name": "Simazine", "categories": ["air"], "amount": 2102.507808}, {"name": "2,4-D", "categories": ["water"], "amount": 402.5031791}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 81.95312224}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 402.5031791}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 5637.495888}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 27142.89531}, {"name": "Simazine", "categories": ["water"], "amount": 27142.89531}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2102.507808}, {"name": "Carbendazim", "categories": ["water"], "amount": 38370.44685}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 6110.916654}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2984.253341}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 38370.44685}, {"name": "Acephate", "categories": ["water"], "amount": 1100.038327}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 159.4736929}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 1100.038327}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 372.4242025}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 372.4242025}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.749747191}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.534613272}, {"name": "Diuron", "categories": ["water"], "amount": 9418.481705}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1130.909622}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 530.4214428}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 2703.849252}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 155.3675579}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4384.96246}, {"name": "Trifluralin", "categories": ["water"], "amount": 27083.51373}, {"name": "Thiram", "categories": ["water"], "amount": 97982.61947}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 640742.9179}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1448.384406}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.671884382}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5809.442399}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 28448.1302}, {"name": "Metolachlor", "categories": ["water"], "amount": 38378.53316}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 928.8046855}, {"name": "Methomyl", "categories": ["water"], "amount": 135031.4275}, {"name": "Atrazine", "categories": ["water"], "amount": 4957.984372}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 640742.9179}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 135031.4275}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 13866.15252}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 38378.53316}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1893.703975}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 355.7691128}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.011362329}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.001288171}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.011362329}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.011362329}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.233298462}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["CML v4.8 2016 no LT", "ecotoxicity: marine no LT", "marine aquatic ecotoxicity (MAETP inf) no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.166268447}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 4260.507702}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 5484.758202}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.673347713}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 566.0364618}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.541179208}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1640.55123}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 32.25818735}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 33052.50793}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 33.87635225}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 0.141080873}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 779565.3252}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.005770347}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.035936153}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.002800786}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.114144105}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000795715}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2405.978834}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 173.9143878}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1367.099998}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 469829433.5}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 0.113669485}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.74475e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1105226.199}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 220265.8312}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 6.8803e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.007368271}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 30.42401718}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.970646634}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.529975423}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.08091629}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.059163653}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.65378751}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5242.324119}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 20969.29648}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 860.9360739}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 5435082.746}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 893429.8064}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 232741.9688}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 2.844134965}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 296.6379608}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 0.059689858}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 7.805477329}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.039430536}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 390.9612721}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 296410658}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 0.140914206}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 2.090980765}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.003645076}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 0.001353163}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.304302175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.081602129}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.92625e-11}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000129875}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.337578123}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.002682571}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 264.0185609}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.854460841}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 6.796509622}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.125470081}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.633649187}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.002800256}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 40746153.29}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 1.790669499}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 7048.834153}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.402646208}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 12.45284229}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.661495138}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.000617321}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.052923369}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.052923369}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1199665.677}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.001134192}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.032789743}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.998664245}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 4.106691015}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.003840259}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.151577694}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 440.1608248}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1945254.63}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000392614}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3757791.485}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.008423614}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1.977305823}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000914458}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 4260.507702}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.348160602}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 5.473259118}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.552763901}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.33998576}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 40.0189118}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.052669738}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.076518676}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.001724787}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.034863856}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 7.312514195}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.121878186}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 30.4102425}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 21196061.02}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 12.68754919}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.000509345}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 25632232.34}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.650328304}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 7505.452047}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1227.869894}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000699426}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.67350198}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.150987406}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 12207311.7}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 8579403.259}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 67254.71999}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 13846.76932}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4260.507702}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4260.507702}, {"name": "Acenaphthene", "categories": ["air"], "amount": 4260.507702}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 566.0364618}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 566.0364618}, {"name": "Acrolein", "categories": ["air"], "amount": 566.0364618}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 33052.50793}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33052.50793}, {"name": "Antimony ion", "categories": ["air"], "amount": 33052.50793}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 779565.3252}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 779565.3252}, {"name": "Barium II", "categories": ["air"], "amount": 779565.3252}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002800786}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002800786}, {"name": "Benzene", "categories": ["air"], "amount": 0.002800786}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000795715}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000795715}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000795715}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2405.978834}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2405.978834}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2405.978834}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 173.9143878}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 173.9143878}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 173.9143878}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1367.099998}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1367.099998}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1367.099998}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 469829433.5}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 469829433.5}, {"name": "Beryllium II", "categories": ["air"], "amount": 469829433.5}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74475e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74475e-06}, {"name": "Butadiene", "categories": ["air"], "amount": 2.74475e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1105226.199}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1105226.199}, {"name": "Cadmium II", "categories": ["air"], "amount": 1105226.199}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.529975423}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.529975423}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.529975423}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059163653}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059163653}, {"name": "Chloroform", "categories": ["air"], "amount": 0.059163653}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 5242.324119}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5242.324119}, {"name": "Chromium III", "categories": ["air"], "amount": 5242.324119}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 20969.29648}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20969.29648}, {"name": "Chromium VI", "categories": ["air"], "amount": 20969.29648}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5435082.746}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5435082.746}, {"name": "Cobalt II", "categories": ["air"], "amount": 5435082.746}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 893429.8064}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 893429.8064}, {"name": "Copper ion", "categories": ["air"], "amount": 893429.8064}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 296410658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 296410658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 296410658}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.304302175}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.304302175}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.304302175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.081602129}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.081602129}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.081602129}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92625e-11}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.92625e-11}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000129875}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000129875}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.000129875}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.337578123}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.337578123}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.337578123}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002682571}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002682571}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.854460841}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.854460841}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.854460841}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.633649187}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.633649187}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.633649187}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 40746153.29}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40746153.29}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 40746153.29}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7048.834153}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7048.834153}, {"name": "Lead II", "categories": ["air"], "amount": 7048.834153}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1199665.677}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1199665.677}, {"name": "Mercury II", "categories": ["air"], "amount": 1199665.677}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.106691015}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.106691015}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 4.106691015}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003840259}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003840259}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.003840259}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.151577694}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.151577694}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.151577694}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1945254.63}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1945254.63}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1945254.63}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000392614}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000392614}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.000392614}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3757791.485}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3757791.485}, {"name": "Nickel II", "categories": ["air"], "amount": 3757791.485}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000914458}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000914458}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.000914458}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 4260.507702}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4260.507702}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 4260.507702}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.552763901}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.552763901}, {"name": "Phenol", "categories": ["air"], "amount": 0.552763901}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33998576}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.33998576}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.33998576}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.0189118}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.0189118}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 40.0189118}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.121878186}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.121878186}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.121878186}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 21196061.02}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 21196061.02}, {"name": "Selenium IV", "categories": ["air"], "amount": 21196061.02}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000509345}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000509345}, {"name": "Styrene", "categories": ["air"], "amount": 0.000509345}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 25632232.34}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25632232.34}, {"name": "Thallium I", "categories": ["air"], "amount": 25632232.34}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7505.452047}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7505.452047}, {"name": "Tin ion", "categories": ["air"], "amount": 7505.452047}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000699426}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000699426}, {"name": "Toluene", "categories": ["air"], "amount": 0.000699426}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 12207311.7}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12207311.7}, {"name": "Vanadium V", "categories": ["air"], "amount": 12207311.7}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 67254.71999}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67254.71999}, {"name": "Zinc II", "categories": ["air"], "amount": 67254.71999}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 13699.32049}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 13699.32049}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 13699.32049}, {"name": "Antimony ion", "categories": ["soil"], "amount": 13699.32049}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 419874.7663}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 419874.7663}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 419874.7663}, {"name": "Barium II", "categories": ["soil"], "amount": 419874.7663}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 271059202.2}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 271059202.2}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 271059202.2}, {"name": "Beryllium II", "categories": ["soil"], "amount": 271059202.2}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 112245.7876}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 112245.7876}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 112245.7876}, {"name": "Cadmium II", "categories": ["soil"], "amount": 112245.7876}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 654.3268115}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 654.3268115}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 654.3268115}, {"name": "Chromium III", "categories": ["soil"], "amount": 654.3268115}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 2617.307246}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2617.307246}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2617.307246}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2617.307246}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2203266.179}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2203266.179}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2203266.179}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2203266.179}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 119588.1103}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 119588.1103}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 119588.1103}, {"name": "Copper ion", "categories": ["soil"], "amount": 119588.1103}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.011156382}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 753.3606976}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 753.3606977}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 753.3606977}, {"name": "Lead II", "categories": ["soil"], "amount": 753.3606977}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 165517.2757}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 165517.2757}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 165517.2757}, {"name": "Mercury II", "categories": ["soil"], "amount": 165517.2757}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1150000.353}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1150000.353}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1150000.353}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1150000.353}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1174636.474}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1174636.474}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1174636.474}, {"name": "Nickel II", "categories": ["soil"], "amount": 1174636.474}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 12706802.13}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 12706802.13}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 12706802.13}, {"name": "Selenium IV", "categories": ["soil"], "amount": 12706802.13}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 13837686.72}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 13837686.72}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 13837686.72}, {"name": "Thallium I", "categories": ["soil"], "amount": 13837686.72}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 833.5606756}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 833.5606756}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 833.5606756}, {"name": "Tin ion", "categories": ["soil"], "amount": 833.5606756}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4453696.464}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 4453696.464}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 4453696.464}, {"name": "Vanadium V", "categories": ["soil"], "amount": 4453696.464}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 7208.562045}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 7208.562045}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 7208.562045}, {"name": "Zinc II", "categories": ["soil"], "amount": 7208.562045}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 5484.758202}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 23737.83848}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Acenaphthene", "categories": ["water"], "amount": 5484.758202}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 23737.83848}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 5484.758202}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 3.129479467}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.541179208}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.541179208}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 27104.78394}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 48723.01979}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 27104.78394}, {"name": "Antimony ion", "categories": ["water"], "amount": 27104.78394}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 833329.134}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1086641.338}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 833329.134}, {"name": "Barium II", "categories": ["water"], "amount": 833329.134}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.00265539}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.015174218}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00265539}, {"name": "Benzene", "categories": ["water"], "amount": 0.00265539}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.350958141}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.114144105}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.114144105}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.001358689}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.061621478}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.001358689}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.001358689}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 539484990.5}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 643371294.1}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 539484990.5}, {"name": "Beryllium II", "categories": ["water"], "amount": 539484990.5}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1848053.818}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 220265.8312}, {"name": "Cadmium II", "categories": ["water"], "amount": 220265.8312}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 1.794912375}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 29.72565952}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 1.794912375}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.794912375}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.058164962}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.056452223}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.058164962}, {"name": "Chloroform", "categories": ["water"], "amount": 0.058164962}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3443.744296}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 32873.05623}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3443.744296}, {"name": "Chromium VI", "categories": ["water"], "amount": 3443.744296}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 8218.264057}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 860.9360739}, {"name": "Chromium III", "categories": ["water"], "amount": 860.9360739}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4384131.971}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 8048980.529}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4384131.971}, {"name": "Cobalt II", "categories": ["water"], "amount": 4384131.971}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1475564.328}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 232741.9688}, {"name": "Copper ion", "categories": ["water"], "amount": 232741.9688}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.300877436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.269785602}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.300877436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.300877436}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.081452672}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.09060469}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.081452672}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.081452672}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 2.77811e-05}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 0.002584756}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 2.77811e-05}, {"name": "Ethylene", "categories": ["water"], "amount": 2.77811e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 0.000377217}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.019525441}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 0.000377217}, {"name": "Chloroethylene", "categories": ["water"], "amount": 0.000377217}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.336718811}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.648268219}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.336718811}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.336718811}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.003334904}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.056669202}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.003334904}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.003334904}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.627275329}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.736651015}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.627275329}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.627275329}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.189875093}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 5.647157935}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.189875093}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.189875093}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1109.731957}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 11304.99376}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1109.731957}, {"name": "Lead II", "categories": ["water"], "amount": 1109.731957}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 214326.8839}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1875335.379}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 214326.8839}, {"name": "Mercury II", "categories": ["water"], "amount": 214326.8839}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.003539819}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.003244141}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.003539819}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.003539819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.145521766}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.111408081}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.145521766}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.145521766}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2089545.925}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2620221.279}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2089545.925}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2089545.925}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.002122398}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.141496158}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.002122398}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.002122398}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 5766615.509}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2249967.65}, {"name": "Nickel II", "categories": ["water"], "amount": 2249967.65}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.002508141}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.131442012}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.002508141}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.002508141}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5484.758202}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 23737.83848}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 5484.758202}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.056287221}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 4.658646236}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.056287221}, {"name": "Phenol", "categories": ["water"], "amount": 0.056287221}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 1.576270043}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.052669738}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.052669738}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 1.673049608}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.076518676}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.076518676}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.051854268}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.001724787}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.001724787}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 2.480774389}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.034863856}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.034863856}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.057709568}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.144919185}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.057709568}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.057709568}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 25348311.37}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 28720844.53}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 25348311.37}, {"name": "Selenium IV", "categories": ["water"], "amount": 25348311.37}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.002231707}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.124595041}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.002231707}, {"name": "Styrene", "categories": ["water"], "amount": 0.002231707}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 26580510.06}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 35584562.31}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 26580510.06}, {"name": "Thallium I", "categories": ["water"], "amount": 26580510.06}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 12027.03239}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1227.869894}, {"name": "Tin ion", "categories": ["water"], "amount": 1227.869894}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.001236583}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.050902141}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.001236583}, {"name": "Toluene", "categories": ["water"], "amount": 0.001236583}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 18333506.76}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 8579403.259}, {"name": "Vanadium V", "categories": ["water"], "amount": 8579403.259}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 111954.7668}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 13846.76932}, {"name": "Zinc II", "categories": ["water"], "amount": 13846.76932}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.619648147}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 62.05496427}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 30906.51545}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.281333499}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 104.431918}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 296.6379608}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 724.2192353}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.77078953}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 5.857365918}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.41221915}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 278.7568027}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.80881645}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 380.4114192}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 18975.08232}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2249967.65}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 47.88518145}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.042278305}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 707.743079}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.085432048}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 296.6379608}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4260.507702}, {"name": "Anthracene", "categories": ["air"], "amount": 1699.044661}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1018.752889}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 4260.507702}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 1656.938866}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 118520.4269}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 4260.507702}, {"name": "Fluorene", "categories": ["air"], "amount": 4260.507702}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 7276.503979}, {"name": "Phenanthrene", "categories": ["air"], "amount": 7.27368542}, {"name": "Pyrene", "categories": ["air"], "amount": 4260.507702}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.026797867}, {"name": "Permethrin", "categories": ["water"], "amount": 26768.50225}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 18975.08232}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 9056.071685}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 435324.2829}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 867.8601037}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 14519.96574}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.06087036}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 3022.686823}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 8306.18003}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 12122.77648}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 3022.686823}, {"name": "Anthracene", "categories": ["water"], "amount": 3022.686823}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 17693.05209}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 435324.2829}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 435324.2829}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 1475670.997}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 14519.96574}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 14519.96574}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 110121.093}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.905855614}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.905855614}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.905855614}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.905855614}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 44689724.99}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 44689724.99}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 44689724.99}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 502939102}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 5484.758202}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 12122.77648}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.15710571}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.15710571}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 484.3155375}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 484.3155375}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.416176522}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.416176522}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 582.3304636}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 0.036252362}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 0.036252362}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.283757033}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 4206.783074}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.061594649}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 3.59023e-05}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.014672826}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.014672826}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.219884162}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.219884162}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 177778.5123}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 177778.5123}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 44554.55269}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 177778.5123}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.002682571}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 5.0248e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 296.6379608}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 253.7255274}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 0.040927385}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.271818895}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 0.02556258}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 14.23852026}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 0.342412195}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 0.677124279}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.005900367}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.15710571}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 2387.046086}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 171.7339388}, {"name": "Acrolein", "categories": ["water"], "amount": 1080.499342}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 982.0954895}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.752136595}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 422.9033701}, {"name": "Deltamethrin", "categories": ["air"], "amount": 3511.491188}, {"name": "Thiram", "categories": ["air"], "amount": 218.3898935}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.626953421}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 74.38893597}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 780.1600572}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.84496147}, {"name": "Triallate", "categories": ["air"], "amount": 148.5832596}, {"name": "Ethylene", "categories": ["air"], "amount": 7.92625e-11}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.912492033}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 10.46793179}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 2979.888479}, {"name": "Fluoranthene", "categories": ["air"], "amount": 199.9548986}, {"name": "Chrysene", "categories": ["air"], "amount": 413.5266606}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.487440895}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["air"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 77078.25934}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 77078.25934}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 77078.25934}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 77078.25934}, {"name": "Arsenic ion", "categories": ["water"], "amount": 118560.1116}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 118560.1116}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 342656.1385}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 118560.1116}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 18975.08232}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1019.099725}, {"name": "Bifenthrin", "categories": ["water"], "amount": 212.9292696}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 0.453803099}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1019.099725}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 212.9292696}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 10049.92574}, {"name": "Cypermethrin", "categories": ["water"], "amount": 10049.92574}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1025.25538}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 10049.92574}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1025.25538}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 18975.08232}, {"name": "Carbendazim", "categories": ["air"], "amount": 718.5857249}, {"name": "Diuron", "categories": ["air"], "amount": 113.0184131}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 50.6043711}, {"name": "Simazine", "categories": ["air"], "amount": 275.1322673}, {"name": "2,4-D", "categories": ["water"], "amount": 2.268953866}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.4619809}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 2.268953866}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 30.66500492}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 143.743963}, {"name": "Simazine", "categories": ["water"], "amount": 143.743963}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 275.1322673}, {"name": "Carbendazim", "categories": ["water"], "amount": 581.7791703}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 92.65499302}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 718.5857249}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 581.7791703}, {"name": "Acephate", "categories": ["water"], "amount": 14.53877309}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 2.107707778}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 14.53877309}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 39.72920839}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 39.72920839}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 5.973704191}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.6043711}, {"name": "Diuron", "categories": ["water"], "amount": 54.66291684}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.844659219}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 113.0184131}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 218.3898935}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.496648719}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.157912353}, {"name": "Trifluralin", "categories": ["water"], "amount": 422.9033701}, {"name": "Thiram", "categories": ["water"], "amount": 74.38893597}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 239.5760275}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 0.584486595}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.011156382}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 91.31733999}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 886.9604635}, {"name": "Metolachlor", "categories": ["water"], "amount": 582.3304636}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 91.30813498}, {"name": "Methomyl", "categories": ["water"], "amount": 4206.783074}, {"name": "Atrazine", "categories": ["water"], "amount": 484.3155375}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 239.5760275}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 4206.783074}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3890.877234}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 582.3304636}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 29.76671388}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 0.143568431}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.659224841}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.947615996}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.659224841}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.659224841}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.18883e-05}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["CML v4.8 2016 no LT", "ecotoxicity: terrestrial no LT", "terrestrial ecotoxicity (TETP inf) no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.57851244}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.019197865}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 0.002117132}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.686908257}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 16.3291159}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.003851263}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4220.13516}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 20.44124316}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.610706495}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 6.589018491}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 0.972861498}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.859760308}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.490183413}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.594972359}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.55771e-05}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.000716486}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.43178e-06}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.260630905}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.039152073}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.241153066}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1766.961648}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 83.31013088}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.32408e-08}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 81.2492588}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.41506e-20}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.04096702}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.107050434}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 49.38152623}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 7.50168812}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.005142978}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.896431354}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.01912e-05}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.677825069}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3031.119801}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.27196e-19}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 108.7097487}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 6.991272773}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 4.0632e-21}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 69.02741802}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 89744.2628}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 8.544692429}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 11.53865332}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.804877405}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 588.2692621}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 11991.58892}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 11.4875777}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 22.66603011}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.516636803}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2.745601943}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000178048}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.64203e-05}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.34791e-12}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.61477e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008113672}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.72388e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 271.483092}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.002523741}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 11.54793215}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 11.54811747}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.939745149}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.096342491}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.002949857}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 6.439093707}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 15.66983733}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 23.44629566}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 20.70611846}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.075688031}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.094486765}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 4.726490856}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 4.726490856}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 28312.6357}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.04161199}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.173846406}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.088504744}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.012770435}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 4.27196e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.00047115}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 304.597033}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 17.53812242}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.50812e-07}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 116.0434782}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5.865380501}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 92.25673286}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.26837e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.019197865}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 17.16341161}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 251.2313155}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.003314907}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.030416826}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.252814177}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 6.56524e-06}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.26928e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.00036558}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.30169e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 120.4248996}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00150898}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.693729029}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 53.4729737}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 29.33138885}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.35979e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 339.8323841}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 50.7618752}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 14.36401755}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 7.86268e-22}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.59178e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1879.533466}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 35.16705282}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 665.2345714}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.02117e-17}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 11.96305468}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.5338e-21}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.019197865}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.019197865}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.019197865}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.3291159}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.3291159}, {"name": "Acrolein", "categories": ["air"], "amount": 16.3291159}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.610706495}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.610706495}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.610706495}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.859760308}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.859760308}, {"name": "Barium II", "categories": ["air"], "amount": 4.859760308}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55771e-05}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55771e-05}, {"name": "Benzene", "categories": ["air"], "amount": 1.55771e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43178e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43178e-06}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.43178e-06}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.260630905}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.260630905}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.260630905}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.039152073}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.039152073}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.039152073}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.241153066}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.241153066}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.241153066}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1766.961648}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1766.961648}, {"name": "Beryllium II", "categories": ["air"], "amount": 1766.961648}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.32408e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.32408e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 2.32408e-08}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 81.2492588}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 81.2492588}, {"name": "Cadmium II", "categories": ["air"], "amount": 81.2492588}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.005142978}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.005142978}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.005142978}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.01912e-05}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.01912e-05}, {"name": "Chloroform", "categories": ["air"], "amount": 4.01912e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3031.119801}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3031.119801}, {"name": "Chromium III", "categories": ["air"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air"], "amount": 3031.119801}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 108.7097487}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 108.7097487}, {"name": "Cobalt II", "categories": ["air"], "amount": 108.7097487}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.991272773}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.991272773}, {"name": "Copper ion", "categories": ["air"], "amount": 6.991272773}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11991.58892}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11991.58892}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 11991.58892}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000178048}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000178048}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000178048}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64203e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64203e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.64203e-05}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34791e-12}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.34791e-12}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.61477e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.61477e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.61477e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008113672}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008113672}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.008113672}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.72388e-06}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.72388e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002523741}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002523741}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.002523741}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.939745149}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.939745149}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.939745149}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002949857}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002949857}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.002949857}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.66983733}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.66983733}, {"name": "Lead II", "categories": ["air"], "amount": 15.66983733}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 28312.6357}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28312.6357}, {"name": "Mercury II", "categories": ["air"], "amount": 28312.6357}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.012770435}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.012770435}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.012770435}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.27196e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.27196e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 4.27196e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00047115}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00047115}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.00047115}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.53812242}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.53812242}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 17.53812242}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.50812e-07}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.50812e-07}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.50812e-07}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.0434782}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.0434782}, {"name": "Nickel II", "categories": ["air"], "amount": 116.0434782}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26837e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26837e-06}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.26837e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.019197865}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.019197865}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.019197865}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003314907}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003314907}, {"name": "Phenol", "categories": ["air"], "amount": 0.003314907}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.030416826}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.030416826}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.030416826}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.252814177}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.252814177}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 2.252814177}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00150898}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00150898}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.00150898}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 53.4729737}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53.4729737}, {"name": "Selenium IV", "categories": ["air"], "amount": 53.4729737}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35979e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35979e-07}, {"name": "Styrene", "categories": ["air"], "amount": 1.35979e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 339.8323841}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 339.8323841}, {"name": "Thallium I", "categories": ["air"], "amount": 339.8323841}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.36401755}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.36401755}, {"name": "Tin ion", "categories": ["air"], "amount": 14.36401755}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.59178e-05}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.59178e-05}, {"name": "Toluene", "categories": ["air"], "amount": 1.59178e-05}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 665.2345714}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 665.2345714}, {"name": "Vanadium V", "categories": ["air"], "amount": 665.2345714}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.96305468}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.96305468}, {"name": "Zinc II", "categories": ["air"], "amount": 11.96305468}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.253223943}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.253223943}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.253223943}, {"name": "Antimony ion", "categories": ["soil"], "amount": 1.253223943}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9.97088385}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 9.97088385}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 9.97088385}, {"name": "Barium II", "categories": ["soil"], "amount": 9.97088385}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3624.728815}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3624.728815}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3624.728815}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3624.728815}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 166.8079461}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 166.8079461}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 166.8079461}, {"name": "Cadmium II", "categories": ["soil"], "amount": 166.8079461}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 6302.861689}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6302.861689}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6302.861689}, {"name": "Chromium III", "categories": ["soil"], "amount": 6302.861689}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 6302.861689}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6302.861689}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6302.861689}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6302.861689}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 223.0091107}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 223.0091107}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 223.0091107}, {"name": "Cobalt II", "categories": ["soil"], "amount": 223.0091107}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 14.35989027}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 14.35989027}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 14.35989027}, {"name": "Copper ion", "categories": ["soil"], "amount": 14.35989027}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.095958223}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 32.51821421}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 32.51821421}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 32.51821421}, {"name": "Lead II", "categories": ["soil"], "amount": 32.51821421}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 55994.13828}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 55994.13828}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 55994.13828}, {"name": "Mercury II", "categories": ["soil"], "amount": 55994.13828}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 36.14502748}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 36.14502748}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 36.14502748}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 36.14502748}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 238.5519273}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 238.5519274}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 238.5519274}, {"name": "Nickel II", "categories": ["soil"], "amount": 238.5519274}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 109.6792964}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 109.6792964}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 109.6792964}, {"name": "Selenium IV", "categories": ["soil"], "amount": 109.6792964}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 698.4945098}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 698.4945098}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 698.4945098}, {"name": "Thallium I", "categories": ["soil"], "amount": 698.4945098}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 29.80836303}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 29.80836303}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 29.80836303}, {"name": "Tin ion", "categories": ["soil"], "amount": 29.80836303}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1367.124462}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1367.124462}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1367.124462}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1367.124462}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 24.58896916}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 24.58896916}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 24.58896916}, {"name": "Zinc II", "categories": ["soil"], "amount": 24.58896916}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 0.002117132}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.000814222}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.002117132}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 0.000814222}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 0.002117132}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.00011682}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.003851263}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.003851263}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 1.65527e-20}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 2.95793e-20}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1.65527e-20}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.65527e-20}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 5.08404e-19}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 6.61473e-19}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 5.08404e-19}, {"name": "Barium II", "categories": ["water"], "amount": 5.08404e-19}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.37489e-05}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.71474e-06}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.37489e-05}, {"name": "Benzene", "categories": ["water"], "amount": 1.37489e-05}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000410059}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.000716486}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.000716486}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1.18734e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.03112e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1.18734e-06}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 1.18734e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.29791e-16}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.92755e-16}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.29791e-16}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.29791e-16}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.12511e-19}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.41506e-20}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.41506e-20}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.004805763}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.001022648}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.004805763}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.004805763}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.92432e-05}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.91233e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.92432e-05}, {"name": "Chloroform", "categories": ["water"], "amount": 3.92432e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.27196e-19}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 2.04903e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.27196e-19}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.27196e-19}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.04903e-18}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.27196e-19}, {"name": "Chromium III", "categories": ["water"], "amount": 2.27196e-19}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.69481e-18}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 4.91636e-18}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.69481e-18}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.69481e-18}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.47671e-20}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 4.0632e-21}, {"name": "Copper ion", "categories": ["water"], "amount": 4.0632e-21}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.000175355}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.000104507}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.000175355}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.000175355}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.62095e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.02926e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.62095e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 2.62095e-05}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 1.12337e-12}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.93462e-14}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 1.12337e-12}, {"name": "Ethylene", "categories": ["water"], "amount": 1.12337e-12}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.56142e-07}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.30672e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.56142e-07}, {"name": "Chloroethylene", "categories": ["water"], "amount": 2.56142e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.007943515}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.004009301}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.007943515}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.007943515}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.59242e-06}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.94708e-06}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.59242e-06}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 4.59242e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.001757229}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 9.6932e-05}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.001757229}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.001757229}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.001560067}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.42154e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.001560067}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.001560067}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.77422e-22}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 4.56635e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.77422e-22}, {"name": "Lead II", "categories": ["water"], "amount": 4.77422e-22}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 930.3282657}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7642.71941}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 930.3282657}, {"name": "Mercury II", "categories": ["water"], "amount": 930.3282657}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 3.8969e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 6.45675e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 3.8969e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 3.8969e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000467436}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000358658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000467436}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000467436}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.31009e-18}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.89143e-18}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.31009e-18}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.31009e-18}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 5.98822e-07}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 1.0799e-07}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 5.98822e-07}, {"name": "m-Xylene", "categories": ["water"], "amount": 5.98822e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.60828e-18}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.02958e-18}, {"name": "Nickel II", "categories": ["water"], "amount": 1.02958e-18}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.16564e-06}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 2.06792e-07}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.16564e-06}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.16564e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 0.002117132}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.000814222}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.002117132}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 2.48776e-06}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 3.78042e-08}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 2.48776e-06}, {"name": "Phenol", "categories": ["water"], "amount": 2.48776e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 1.0451e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 6.56524e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 6.56524e-06}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.05932e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.26928e-05}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.26928e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 4.74435e-06}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.00036558}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.00036558}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 8.82537e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.30169e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.30169e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.000647466}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.80926e-05}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.000647466}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.000647466}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.55254e-17}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.75745e-17}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.55254e-17}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.55254e-17}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.26503e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.71653e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.26503e-07}, {"name": "Styrene", "categories": ["water"], "amount": 1.26503e-07}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.13184e-17}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.18247e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.13184e-17}, {"name": "Thallium I", "categories": ["water"], "amount": 3.13184e-17}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 7.24832e-21}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 7.86268e-22}, {"name": "Tin ion", "categories": ["water"], "amount": 7.86268e-22}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.41614e-05}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.8729e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.41614e-05}, {"name": "Toluene", "categories": ["water"], "amount": 1.41614e-05}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 2.16377e-17}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.02117e-17}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.02117e-17}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.94558e-20}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.5338e-21}, {"name": "Zinc II", "categories": ["water"], "amount": 2.5338e-21}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.253138655}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.126483729}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.44037674}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.596861512}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.016707204}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 89744.2628}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.663267175}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.063006827}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 80.85467582}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.689752657}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.984006513}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.046591303}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.112568797}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8917.249644}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.02958e-18}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 6.277859761}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 2.489601068}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 105.652796}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1.314098078}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 89744.2628}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 1.019197865}, {"name": "Anthracene", "categories": ["air"], "amount": 0.03165522}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.230183862}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 1.019197865}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 0.203597118}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 29.73408185}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.019197865}, {"name": "Fluorene", "categories": ["air"], "amount": 1.019197865}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.802815412}, {"name": "Phenanthrene", "categories": ["air"], "amount": 0.00013547}, {"name": "Pyrene", "categories": ["air"], "amount": 1.019197865}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4.794461775}, {"name": "Permethrin", "categories": ["water"], "amount": 0.390269878}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8917.249644}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 0.000434591}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.206463693}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 0.004935323}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 6.19698e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.000491331}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.019730523}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.013964808}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.002531442}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.019730523}, {"name": "Anthracene", "categories": ["water"], "amount": 0.019730523}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.004031554}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.206463693}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.206463693}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.087717724}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 6.19698e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 6.19698e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 4.06739e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008002759}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.008002759}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008002759}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.008002759}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 587.3381951}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 587.3381951}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 587.3381951}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 830.0602948}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.002117132}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.002531442}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.24704e-11}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.24704e-11}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 0.000762269}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 0.000762269}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.58839e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.58839e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 0.000213114}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.35214e-11}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.35214e-11}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.042760823}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 0.00216456}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000680873}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.001418673}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 6.07759e-12}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 6.07759e-12}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.83073e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.83073e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 26909.24466}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 26909.24466}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26972.99909}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 26909.24466}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 4.72388e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 0.225852834}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 89744.2628}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 634.332364}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 200.3452311}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 83.00538627}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 16.02197304}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.168548893}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 86.81610585}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 29.8896806}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.807119009}, {"name": "Glyphosate", "categories": ["water"], "amount": 2.24704e-11}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.258001228}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.038407254}, {"name": "Acrolein", "categories": ["water"], "amount": 5.837651345}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 0.031755535}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.22042e-05}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 0.01347489}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.764819509}, {"name": "Thiram", "categories": ["air"], "amount": 31.57040007}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.303757155}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 0.092878258}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 0.002660134}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.312798883}, {"name": "Triallate", "categories": ["air"], "amount": 0.006883873}, {"name": "Ethylene", "categories": ["air"], "amount": 1.34791e-12}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.000819184}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 6.04813e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.008369001}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.018210122}, {"name": "Chrysene", "categories": ["air"], "amount": 0.215190847}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 15.77051225}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 3335.673763}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 3335.673763}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 3335.673763}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3335.673763}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.0385e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.0385e-17}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.96079e-17}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.0385e-17}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 8917.249644}, {"name": "Bifenthrin", "categories": ["air"], "amount": 8.78153598}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.02102326}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 83.15047122}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.78153598}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.02102326}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 15.78326675}, {"name": "Cypermethrin", "categories": ["water"], "amount": 15.78326675}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 77600.1715}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 15.78326675}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 77600.1715}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8917.249644}, {"name": "Carbendazim", "categories": ["air"], "amount": 19.81889052}, {"name": "Diuron", "categories": ["air"], "amount": 8.735349275}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 0.007067536}, {"name": "Simazine", "categories": ["air"], "amount": 8.762236893}, {"name": "2,4-D", "categories": ["water"], "amount": 9.25695e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.096478878}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 9.25695e-10}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 20.66324254}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 0.00100887}, {"name": "Simazine", "categories": ["water"], "amount": 0.00100887}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.762236893}, {"name": "Carbendazim", "categories": ["water"], "amount": 6.2678e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 37.59722245}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.81889052}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6.2678e-08}, {"name": "Acephate", "categories": ["water"], "amount": 2.18433e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.320086974}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.18433e-08}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 0.005462096}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 0.005462096}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.612724082}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007067536}, {"name": "Diuron", "categories": ["water"], "amount": 0.001676646}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 18.56576338}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.735349275}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.57040007}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 34.34774662}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 81.23108427}, {"name": "Trifluralin", "categories": ["water"], "amount": 0.01347489}, {"name": "Thiram", "categories": ["water"], "amount": 0.092878258}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.021307616}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 16.98380089}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.095958223}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 0.413157136}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 222.8364451}, {"name": "Metolachlor", "categories": ["water"], "amount": 0.000213114}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 4.443547838}, {"name": "Methomyl", "categories": ["water"], "amount": 0.00216456}, {"name": "Atrazine", "categories": ["water"], "amount": 0.000762269}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.021307616}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 0.00216456}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 118.9485519}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 0.000213114}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.537701937}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 16.68693885}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.000515628}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.000239843}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.000515628}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.000515628}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.144899733}]}, {"unit": "megajoule", "name": ["CML v4.8 2016 no LT", "energy resources: non-renewable no LT", "abiotic depletion potential (ADP): fossil fuels no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}]}, {"unit": "kg PO4-Eq", "name": ["CML v4.8 2016 no LT", "eutrophication no LT", "eutrophication (fate not incl.) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.35}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.022}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.1}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.42}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 0.97}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 3.06}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35}, {"name": "Ammonia", "categories": ["air"], "amount": 0.35}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Nitrate", "categories": ["air"], "amount": 0.1}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.97}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.97}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 0.97}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["air"], "amount": 3.06}, {"name": "Nitrogen", "categories": ["soil", "forestry"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["soil", "industrial"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["soil"], "amount": 0.42}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil"], "amount": 3.06}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.33}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Ammonium", "categories": ["water"], "amount": 0.33}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 0.022}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.022}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 0.022}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.1}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.1}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.1}, {"name": "Nitrate", "categories": ["water"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water"], "amount": 0.1}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.42}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 1}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphate", "categories": ["water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["water"], "amount": 3.06}, {"name": "Nitrate", "categories": ["soil"], "amount": 0.1}, {"name": "Nitrogen", "categories": ["air"], "amount": 0.42}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.2}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.97}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 1}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.1}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 0.35}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.27}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.13}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.13}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.1}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["CML v4.8 2016 no LT", "human toxicity no LT", "human toxicity (HTP inf) no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 46.95248552}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 572399.6238}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 280468.7123}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 21.6158398}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 56.90600399}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 7065.337009}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 506.5604567}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4669.038981}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 6707.542439}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 21.29570277}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 38.96120538}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 756.4636536}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.428415284}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 15.08444889}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1899.909223}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.101492617}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.973210461}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 3157103.03}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 409.4755204}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 226630.8493}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 28.59462036}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2224.391497}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 145040.5399}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 22.89077835}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.097484578}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 20.96550871}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 141.1897573}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1423.264744}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.41434511}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 2.176965739}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 12.66010972}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.940444523}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 646.8397982}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3425330.245}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.0522661}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 17470.22468}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 4295.027793}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.339256586}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 24.45949255}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 5203.22925}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 0.159576856}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 117.0824573}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 317.7014202}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 561.75174}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1933982792}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 168.3598988}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1269.59515}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 276.4234481}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 0.263478527}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 16.44430059}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 6.807735251}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.636745223}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 84.3427304}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.528467685}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 34.40934674}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 5675.883451}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 14074.62877}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 71.68935956}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 87.9434291}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.830667251}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.014873106}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 2850.61598}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 0.22}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 960.5245308}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 466.517307}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 488.9721488}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 168.9280705}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.025679269}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 104.2537922}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 743.5060416}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 743.5060416}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6008.157802}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 6.462060062}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 49.07942564}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 50.83126765}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 350.9998319}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.975109844}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 220.43152129999999}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 43.32398112}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 5426.282198}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.02714893}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 35032.83874}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 10.09682066}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 611.4515635}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.12474733}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 572399.6238}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.915905394}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 11.33104861}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.518172944}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 95.31928284}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 5.079340246}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.086137019}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.536966302}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 7.153902703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 6.341172176}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 26.08302291}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1262.37464}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 72.47340019}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 47687.15468}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 205.5657513}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.047384819}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.096}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 432190.2296}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 7.913637413}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.734086071}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 0.017319702}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.32691844}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 32.56742982}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 124.8288183}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 6240.349576}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 3163.049164}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 104.4419271}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.583947274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 572399.6238}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 572399.6238}, {"name": "Acenaphthene", "categories": ["air"], "amount": 572399.6238}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 56.90600399}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 56.90600399}, {"name": "Acrolein", "categories": ["air"], "amount": 56.90600399}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Ammonia", "categories": ["air"], "amount": 0.1}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6707.542439}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6707.542439}, {"name": "Antimony ion", "categories": ["air"], "amount": 6707.542439}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 756.4636536}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 756.4636536}, {"name": "Barium II", "categories": ["air"], "amount": 756.4636536}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1899.909223}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1899.909223}, {"name": "Benzene", "categories": ["air"], "amount": 1899.909223}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.973210461}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.973210461}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.973210461}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3157103.03}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3157103.03}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 3157103.03}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 409.4755204}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 409.4755204}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 409.4755204}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 226630.8493}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 226630.8493}, {"name": "Beryllium II", "categories": ["air"], "amount": 226630.8493}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2224.391497}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2224.391497}, {"name": "Butadiene", "categories": ["air"], "amount": 2224.391497}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 145040.5399}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 145040.5399}, {"name": "Cadmium II", "categories": ["air"], "amount": 145040.5399}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.41434511}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.41434511}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.41434511}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.66010972}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.66010972}, {"name": "Chloroform", "categories": ["air"], "amount": 12.66010972}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 646.8397982}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 646.8397982}, {"name": "Chromium III", "categories": ["air"], "amount": 646.8397982}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 3425330.245}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3425330.245}, {"name": "Chromium VI", "categories": ["air"], "amount": 3425330.245}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 17470.22468}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17470.22468}, {"name": "Cobalt II", "categories": ["air"], "amount": 17470.22468}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4295.027793}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4295.027793}, {"name": "Copper ion", "categories": ["air"], "amount": 4295.027793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1933982792}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1933982792}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1933982792}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.44430059}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.44430059}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 16.44430059}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.807735251}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.807735251}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 6.807735251}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.636745223}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.636745223}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.3427304}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84.3427304}, {"name": "Chloroethylene", "categories": ["air"], "amount": 84.3427304}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.528467685}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.528467685}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.528467685}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.40934674}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.40934674}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14074.62877}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14074.62877}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 14074.62877}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.830667251}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.830667251}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.830667251}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 2850.61598}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2850.61598}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 2850.61598}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 0.22}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 466.517307}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 466.517307}, {"name": "Lead II", "categories": ["air"], "amount": 466.517307}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6008.157802}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6008.157802}, {"name": "Mercury II", "categories": ["air"], "amount": 6008.157802}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 350.9998319}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 350.9998319}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 350.9998319}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.975109844}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.975109844}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.975109844}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 220.43152129999999}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 220.43152129999999}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 220.43152129999999}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5426.282198}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5426.282198}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 5426.282198}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02714893}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02714893}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.02714893}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 35032.83874}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35032.83874}, {"name": "Nickel II", "categories": ["air"], "amount": 35032.83874}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12474733}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12474733}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.12474733}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 572399.6238}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 572399.6238}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 572399.6238}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.518172944}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.518172944}, {"name": "Phenol", "categories": ["air"], "amount": 0.518172944}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 95.31928284}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 95.31928284}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 95.31928284}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.079340246}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.079340246}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 5.079340246}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1262.37464}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1262.37464}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1262.37464}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 47687.15468}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 47687.15468}, {"name": "Selenium IV", "categories": ["air"], "amount": 47687.15468}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.047384819}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.047384819}, {"name": "Styrene", "categories": ["air"], "amount": 0.047384819}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.096}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.096}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.096}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 432190.2296}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 432190.2296}, {"name": "Thallium I", "categories": ["air"], "amount": 432190.2296}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.734086071}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.734086071}, {"name": "Tin ion", "categories": ["air"], "amount": 1.734086071}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.32691844}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.32691844}, {"name": "Toluene", "categories": ["air"], "amount": 0.32691844}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 6240.349576}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6240.349576}, {"name": "Vanadium V", "categories": ["air"], "amount": 6240.349576}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 104.4419271}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 104.4419271}, {"name": "Zinc II", "categories": ["air"], "amount": 104.4419271}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 8886.17791}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 2634.762665}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 2634.762665}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2634.762665}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 362.7992628}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 317.9863027}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 317.9863027}, {"name": "Barium II", "categories": ["soil"], "amount": 317.9863027}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 12759.74363}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 7049.473022}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 7049.473022}, {"name": "Beryllium II", "categories": ["soil"], "amount": 7049.473022}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 19635.29994}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 66.68443569}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 66.68443569}, {"name": "Cadmium II", "categories": ["soil"], "amount": 66.68443569}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5127.707054}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 299.8393545}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 299.8393545}, {"name": "Chromium III", "categories": ["soil"], "amount": 299.8393545}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 8546.178423}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 499.7322575}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 499.7322575}, {"name": "Chromium VI", "categories": ["soil"], "amount": 499.7322575}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2385.442004}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 59.06461831}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 59.06461831}, {"name": "Cobalt II", "categories": ["soil"], "amount": 59.06461831}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 93.85679802}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.254452298}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.254452298}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.254452298}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.00064887}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3280.690192}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 293.3054054}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 293.3054054}, {"name": "Lead II", "categories": ["soil"], "amount": 293.3054054}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 5921.154138}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1080.535201}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1080.535201}, {"name": "Mercury II", "categories": ["soil"], "amount": 1080.535201}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 6168.303633}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3063.38868}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3063.38868}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3063.38868}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2678.846488}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 198.1619649}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 198.1619649}, {"name": "Nickel II", "categories": ["soil"], "amount": 198.1619649}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 28862.50761}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 28079.08675}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 28079.08675}, {"name": "Selenium IV", "categories": ["soil"], "amount": 28079.08675}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2017113.894}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 117789.0589}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 117789.0589}, {"name": "Thallium I", "categories": ["soil"], "amount": 117789.0589}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 13.138903}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.524726874}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.524726874}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.524726874}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 18500.01247}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1696.80539}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1696.80539}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1696.80539}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 63.74466425}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.422129282}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.422129282}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.422129282}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 280468.7123}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 28788.29537}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Acenaphthene", "categories": ["water"], "amount": 280468.7123}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 28788.29537}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 280468.7123}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 50.90890083}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 7065.337009}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 7065.337009}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 5141.476631}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 8635.388246}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 5141.476631}, {"name": "Antimony ion", "categories": ["water"], "amount": 5141.476631}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 630.48373}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 804.5390233}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 630.48373}, {"name": "Barium II", "categories": ["water"], "amount": 630.48373}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1830.884085}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 209.8918122}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1830.884085}, {"name": "Benzene", "categories": ["water"], "amount": 1830.884085}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.164478016}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.101492617}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 9.101492617}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.826606711}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.070199334}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.826606711}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.826606711}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 13974.73411}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 16171.15242}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 13974.73411}, {"name": "Beryllium II", "categories": ["water"], "amount": 13974.73411}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 103.9128177}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 22.89077835}, {"name": "Cadmium II", "categories": ["water"], "amount": 22.89077835}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.430394716}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.48164415}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.430394716}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.430394716}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 12.5243439}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 6.015220004}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 12.5243439}, {"name": "Chloroform", "categories": ["water"], "amount": 12.5243439}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.4204435}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 16.73299543}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.4204435}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.4204435}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 10.03979726}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.0522661}, {"name": "Chromium III", "categories": ["water"], "amount": 2.0522661}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 96.70201437}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 60.45069603}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 96.70201437}, {"name": "Cobalt II", "categories": ["water"], "amount": 96.70201437}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 5.905060312}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.339256586}, {"name": "Copper ion", "categories": ["water"], "amount": 1.339256586}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 16.24329096}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 9.64873939}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 16.24329096}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 16.24329096}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 27.8696181}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 5.451970744}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 27.8696181}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 27.8696181}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 0.654052646}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 0.047072421}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 0.654052646}, {"name": "Ethylene", "categories": ["water"], "amount": 0.654052646}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 144.6682248}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 42.60548615}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 144.6682248}, {"name": "Chloroethylene", "categories": ["water"], "amount": 144.6682248}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.721910837}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 2.752523179}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.721910837}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 5.721910837}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 33.45953481}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 14.11827287}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 33.45953481}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 33.45953481}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 11426.26443}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 541.085742}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 11426.26443}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 11426.26443}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.037052116}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.8154e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.037052116}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.037052116}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 12.25950173}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 78.76428612}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 12.25950173}, {"name": "Lead II", "categories": ["water"], "amount": 12.25950173}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1425.959363}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 8195.224968}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1425.959363}, {"name": "Mercury II", "categories": ["water"], "amount": 1425.959363}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.839853574}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.298493641}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.839853574}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.839853574}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 219.692705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 167.828564}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 219.692705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 219.692705}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 5513.681367}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6788.946972}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 5513.681367}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5513.681367}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.336783791}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.010334512}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.336783791}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.336783791}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 746.665693}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 331.0802679}, {"name": "Nickel II", "categories": ["water"], "amount": 331.0802679}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.424561724}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.025771414}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.424561724}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.424561724}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 280468.7123}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 28788.29537}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 280468.7123}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.049158431}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 7.95894e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.049158431}, {"name": "Phenol", "categories": ["water"], "amount": 0.049158431}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.000851871}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.086137019}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.086137019}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.003009561}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.536966302}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.536966302}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.008385921}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 7.153902703}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 7.153902703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.28519923}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 6.341172176}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 6.341172176}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 2642.980524}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 15.84498715}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 2642.980524}, {"name": "Propylene oxide", "categories": ["water"], "amount": 2642.980524}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 56010.94407}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 62917.77073}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 56010.94407}, {"name": "Selenium IV", "categories": ["water"], "amount": 56010.94407}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.085066175}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.010186849}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.085066175}, {"name": "Styrene", "categories": ["water"], "amount": 0.085066175}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 225123.8713}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 294343.489}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 225123.8713}, {"name": "Thallium I", "categories": ["water"], "amount": 225123.8713}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 0.105182287}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 0.017319702}, {"name": "Tin ion", "categories": ["water"], "amount": 0.017319702}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.302760499}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.038517634}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.302760499}, {"name": "Toluene", "categories": ["water"], "amount": 0.302760499}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 6233.917231}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 3163.049164}, {"name": "Vanadium V", "categories": ["water"], "amount": 3163.049164}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.19999566}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.583947274}, {"name": "Zinc II", "categories": ["water"], "amount": 0.583947274}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.136013664}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.18145336}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.850360928}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.638457455}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.738320271}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 5203.22925}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.7389661}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.210621665}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 23.56553774}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.057595997}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.450871169}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003098997}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.577086947}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 166.431544}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 331.0802679}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 2734.917543}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 15.27470602}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 12.7781966}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1223.050434}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 5203.22925}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 572399.6238}, {"name": "Anthracene", "categories": ["air"], "amount": 0.520422664}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 572399.6238}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 572399.6238}, {"name": "Fluorene", "categories": ["air"], "amount": 572399.6238}, {"name": "Pyrene", "categories": ["air"], "amount": 572399.6238}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.039195746}, {"name": "Permethrin", "categories": ["water"], "amount": 22.54924968}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 166.431544}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 5.553238233}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.05711587}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.05711587}, {"name": "Anthracene", "categories": ["water"], "amount": 2.05711587}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.156677578}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3351.180314}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3351.180314}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3351.180314}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3351.180314}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 858267345.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 858267345.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 858267345.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 422342786.9}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 280468.7123}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.066237718}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.066237718}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 4.555788198}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 4.555788198}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 4.694817632}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 4.694817632}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 0.554356861}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 15.13770331}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 15.13770331}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.65427582}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.269386885}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.124918372}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 4.524656751}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 23.95944151}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 23.95944151}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.733209571}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.733209571}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 10123779.93}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 10123779.93}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1299184496}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 10123779.93}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 34.40934674}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 0.080087751}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 5203.22925}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 278.774953}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 0.968191034}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 12.00018312}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 3.380127333}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 413.0108847}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.717284771}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 51.45627099}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.149323301}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.066237718}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 5649677.483}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1198.715728}, {"name": "Acrolein", "categories": ["water"], "amount": 58.59259586}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 2.845330678}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 18.01470286}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 97.04684555}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1.617587491}, {"name": "Thiram", "categories": ["air"], "amount": 18.91443696}, {"name": "Dimethoate", "categories": ["air"], "amount": 43.54358934}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.310226295}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 83.44656586}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.753387639}, {"name": "Triallate", "categories": ["air"], "amount": 9.689976174}, {"name": "Ethylene", "categories": ["air"], "amount": 0.636745223}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.111306559}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 0.5}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 20.37430754}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["air"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 31813.03016}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1020.374027}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1020.374027}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1020.374027}, {"name": "Arsenic ion", "categories": ["water"], "amount": 950.6167656}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 950.6167656}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2397.031702}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 950.6167656}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 166.431544}, {"name": "Bifenthrin", "categories": ["air"], "amount": 19.42076798}, {"name": "Bifenthrin", "categories": ["water"], "amount": 98.18592011}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 0.297107111}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.42076798}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 98.18592011}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 5.548800031}, {"name": "Cypermethrin", "categories": ["water"], "amount": 5.548800031}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84613789}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.548800031}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84613789}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 166.431544}, {"name": "Carbendazim", "categories": ["air"], "amount": 19.23469038}, {"name": "Diuron", "categories": ["air"], "amount": 214.2614033}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 8.390622577}, {"name": "Simazine", "categories": ["air"], "amount": 33.32637426}, {"name": "2,4-D", "categories": ["water"], "amount": 3.466807207}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.721599071}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.466807207}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.193224878}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 9.736157846}, {"name": "Simazine", "categories": ["water"], "amount": 9.736157846}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.32637426}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.50851113}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 0.431865359}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.23469038}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.50851113}, {"name": "Acephate", "categories": ["water"], "amount": 2.111216706}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.306684008}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.111216706}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.68939329}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 6.68939329}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.998669009}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.390622577}, {"name": "Diuron", "categories": ["water"], "amount": 53.10208373}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 7.235435534}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 214.2614033}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 18.91443696}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.68248084}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.252862858}, {"name": "Trifluralin", "categories": ["water"], "amount": 97.04684555}, {"name": "Thiram", "categories": ["water"], "amount": 3.310226295}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 44.34622685}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 0.139274158}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.00064887}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 0.109797211}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 0.693002197}, {"name": "Metolachlor", "categories": ["water"], "amount": 0.554356861}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 0.875981568}, {"name": "Methomyl", "categories": ["water"], "amount": 3.269386885}, {"name": "Atrazine", "categories": ["water"], "amount": 4.555788198}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 44.34622685}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.269386885}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.158518232}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 0.554356861}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 11.44844615}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 14.45331682}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 8.854417106}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 4.093422131}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 8.854417106}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 8.854417106}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.2}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.2}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 1.838961201}]}, {"unit": "kg Sb-Eq", "name": ["CML v4.8 2016 no LT", "material resources: metals/minerals no LT", "abiotic depletion potential (ADP): elements (ultimate reserves) no LT"], "exchanges": [{"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.156577463}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.000442708}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 1.45748e-07}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 0.006888901}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24473e-08}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.006338267}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.14656e-05}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 2.02016e-09}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.53988e-06}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.51553e-06}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.51553e-06}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.603394795}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.000192838}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.05816e-05}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.66356227}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.016229792}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.671456e-08}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.671456e-08}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.000538067}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.44494e-06}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.671456e-08}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24473e-08}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.006338267}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538067}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.006338267}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538067}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.56882e-05}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.000538067}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.006338267}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 6.04204e-06}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.156577463}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.53988e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.092226828}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 1.59761e-08}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 5.51553e-06}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 5.50238e-08}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 7.70121e-07}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.002974487}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 1.25902e-05}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.041076119}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.004271652}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 6.52264e-07}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 0.006888901}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.14656e-05}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 2.02016e-09}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.9348e-05}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 0.603394795}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 0.194094965}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1.40205e-11}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 4.05816e-05}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 40.66356227}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.42912e-05}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 0.004518138}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 5.69217e-07}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.56882e-05}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 0.001398204}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 1.45748e-07}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.09433e-09}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 7.07133e-07}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.24473e-08}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.000442708}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 2.78576e-08}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 5.44494e-06}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2.216820008}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 0.5706016}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 2.02016e-09}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.016229792}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 0.024965696}, {"name": "Bromine", "categories": ["natural resource", "in water"], "amount": 0.004392025}, {"name": "Bromine, 0.23% in water", "categories": ["natural resource", "in water"], "amount": 0.004392025}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 0.024965696}]}, {"unit": "kg CFC-11-Eq", "name": ["CML v4.8 2016 no LT", "ozone depletion no LT", "ozone layer depletion (ODP steady state) no LT"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.38}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.38}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 12}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.94}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.94}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg ethylene-Eq", "name": ["CML v4.8 2016 no LT", "photochemical oxidant formation no LT", "photochemical oxidation (high NOx) no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.977}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.42}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.36}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.842}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.188}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.433}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.641}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.097}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.094}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.092}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.218}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.851}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.352}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.62}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.027}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.027}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.023}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.445}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.123}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.009}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.399}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.325}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.209}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.386}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.085}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.519}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.032}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.494}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.482}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.092}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.068}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.005}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.14}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.373}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.027}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.108}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.053}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.395}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.798}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.176}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.561}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.123}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.142}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.048}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.175}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.637}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.977}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.977}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.977}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.42}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.42}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.42}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.36}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.36}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.36}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.842}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.842}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.842}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.188}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.188}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.433}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.433}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.433}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.49}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.641}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.641}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.641}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.097}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.097}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.097}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.094}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.094}, {"name": "Acetone", "categories": ["air"], "amount": 0.094}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.092}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.092}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.092}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.218}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.218}, {"name": "Benzene", "categories": ["air"], "amount": 0.218}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.73}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.851}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.851}, {"name": "Butadiene", "categories": ["air"], "amount": 0.851}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.352}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.352}, {"name": "Butane", "categories": ["air"], "amount": 0.352}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.62}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.62}, {"name": "Butanol", "categories": ["air"], "amount": 0.62}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.027}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.027}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.023}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.023}, {"name": "Chloroform", "categories": ["air"], "amount": 0.023}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Cumene", "categories": ["air"], "amount": 0.5}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.29}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.445}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.445}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.445}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.123}, {"name": "Ethane", "categories": ["air"], "amount": 0.123}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.009}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.009}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.009}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.399}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.399}, {"name": "Ethanol", "categories": ["air"], "amount": 0.399}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.029}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.325}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.325}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.209}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.209}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.209}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.386}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.386}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.386}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.085}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.085}, {"name": "Ethyne", "categories": ["air"], "amount": 0.085}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.519}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.519}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.519}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.032}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.032}, {"name": "Formic acid", "categories": ["air"], "amount": 0.032}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.494}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.494}, {"name": "Heptane", "categories": ["air"], "amount": 0.494}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.482}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.482}, {"name": "Hexane", "categories": ["air"], "amount": 0.482}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.092}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.092}, {"name": "Isoprene", "categories": ["air"], "amount": 1.092}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.006}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.068}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.006}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.005}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.005}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.005}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14}, {"name": "Methanol", "categories": ["air"], "amount": 0.14}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.059}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.373}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.373}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.373}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.027}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.108}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.108}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.108}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.053}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.053}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.053}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.395}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.395}, {"name": "Pentane", "categories": ["air"], "amount": 0.395}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.798}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.798}, {"name": "Propanal", "categories": ["air"], "amount": 0.798}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.176}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.176}, {"name": "Propane", "categories": ["air"], "amount": 0.176}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.561}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.561}, {"name": "Propanol", "categories": ["air"], "amount": 0.561}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.123}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.123}, {"name": "Propene", "categories": ["air"], "amount": 1.123}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.15}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.15}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.15}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.142}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.142}, {"name": "Styrene", "categories": ["air"], "amount": 0.142}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.048}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.048}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.048}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.175}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.175}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.175}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.637}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.637}, {"name": "Toluene", "categories": ["air"], "amount": 0.637}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.027}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.006}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.027}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.269}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.269}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.269}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.189}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.189}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.189}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.325}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.025}, {"name": "Nitric oxide", "categories": ["air"], "amount": -0.427}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.307}, {"name": "Ethylene", "categories": ["air"], "amount": 1}, {"name": "Butene", "categories": ["air"], "amount": 1.079}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.079}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.079}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 1.079}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.028}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.028}]}, {"unit": "kg SO2-Eq", "name": ["CML v4.8 2016", "acidification", "acidification (incl. fate, average Europe total, A&B)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.6}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.783673469}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 1.6}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6}, {"name": "Ammonia", "categories": ["air"], "amount": 1.6}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1.2}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1.2}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.783673469}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 0.783673469}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.783673469}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.783673469}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.96}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.96}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.96}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.96}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.96}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.76}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.5}]}, {"unit": "kg CO2-Eq", "name": ["CML v4.8 2016", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 16}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4800}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 782}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 138}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1980}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 79}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 527}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7670}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3170}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 6290}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1760}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 148}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 677}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 28}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 28}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1730}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6630}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 16100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 23500}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 16}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 16}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16}, {"name": "Chloroform", "categories": ["air"], "amount": 16}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 160}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4800}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 4800}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4800}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4800}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 5820}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 782}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 782}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 782}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 782}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 138}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 138}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 138}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 138}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1980}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 1980}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1980}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1980}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 79}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 79}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 79}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 527}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 527}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 527}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 527}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7670}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7670}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7670}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7670}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 11100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3170}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3170}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3170}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3170}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 28}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 28}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1750}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1750}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1750}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 6290}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 6290}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6290}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 6290}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1760}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1760}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1760}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1760}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 13900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 13900}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 9}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 9}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 148}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 148}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 148}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 148}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 677}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 677}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 677}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 677}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 28}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28}, {"name": "Methane, fossil", "categories": ["air"], "amount": 28}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1730}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1730}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1730}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1730}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6630}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 6630}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6630}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6630}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 4660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 16100}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 16100}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16100}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 16100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 23500}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 23500}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23500}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 23500}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8550}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 28}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 28}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 28}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 28}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8590}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8590}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8590}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5820}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5820}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5820}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5820}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 265}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 265}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 265}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 265}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["CML v4.8 2016", "ecotoxicity: freshwater", "freshwater aquatic ecotoxicity (FAETP inf)"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 29.49533085}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 171.8260122}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 27543.9258}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 50.94693271}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 519.4373798}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 79.23967176}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 95850.36583}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 283.1084245}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3.723752847}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 344.5970581}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 194.3865145}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 42.82246292}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 4.58563184}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 8.284720127}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 8.36818e-05}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.360324568}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000131227}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.334773948}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.370678892}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 87.77019479}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 17130.14029}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 103.1859686}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 3.25314e-07}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 289.4303366}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1523.011325}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.401496318}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 23.15337181}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2006.573756}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 584.5336542}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.032958813}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.796783349}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 9.5153e-05}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.038097112}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 1.922646069}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.690584275}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 6.913909397}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 639.1861685}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 221.6538139}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1157.306919}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 805.782122}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 199339.4398}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 24.09919497}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1293.825496}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 8.943808102}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 20139.95554}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 2126816.609}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 72.47918315}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 345.4825421}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 1.188877652}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2.206962213}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000121789}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000119313}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.42593e-11}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.86154e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000412935}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.81057e-05}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 11055.68571}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.098656659}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 380.9895881}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 381.1617771}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 8.255924503}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.921647131}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 4.638464651}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 167.9323357}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.399626922}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 97.42163568}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 693.1429309}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 162.0879155}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.462892182}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 29.99999205}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 29.99999205}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 316.7874757}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.412871049}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 3.926415532}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 43.70064072}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.032679173}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.32865e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000251931}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 14117.59934}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 97.3192924}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 4.37469e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 629.4706747}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 29.53209263}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 970.4507327}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.30679e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 171.8260122}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 497.628906}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 916.7842984}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.515898377}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.403587546}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 10.52329205}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 76.4086027}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 79.47660628}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 3.084748678}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 2.770891361}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1670.238851}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.036846268}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 15.05965114}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 546.2392735}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 2332.496164}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.09075e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1553.337312}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 685.8406233}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 2.537017575}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 10.16626668}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 7.04338e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3307.653992}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 39.76875083}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1733.840782}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 8965.69091}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 17.78364688}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 91.71242268}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.8260122}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 171.8260122}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 171.8260122}, {"name": "Acenaphthene", "categories": ["air"], "amount": 171.8260122}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 519.4373798}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 519.4373798}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 519.4373798}, {"name": "Acrolein", "categories": ["air"], "amount": 519.4373798}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.723752847}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 3.723752847}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.723752847}, {"name": "Antimony ion", "categories": ["air"], "amount": 3.723752847}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.82246292}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 42.82246292}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.82246292}, {"name": "Barium II", "categories": ["air"], "amount": 42.82246292}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.36818e-05}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 8.36818e-05}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.36818e-05}, {"name": "Benzene", "categories": ["air"], "amount": 8.36818e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000131227}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.000131227}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000131227}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000131227}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.334773948}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.334773948}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.334773948}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.334773948}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.370678892}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.370678892}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.370678892}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.370678892}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 87.77019479}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 87.77019479}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 87.77019479}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 87.77019479}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 17130.14029}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 17130.14029}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17130.14029}, {"name": "Beryllium II", "categories": ["air"], "amount": 17130.14029}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.25314e-07}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 3.25314e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.25314e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 3.25314e-07}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 289.4303366}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 289.4303366}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 289.4303366}, {"name": "Cadmium II", "categories": ["air"], "amount": 289.4303366}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.032958813}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.032958813}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.032958813}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.032958813}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5153e-05}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 9.5153e-05}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5153e-05}, {"name": "Chloroform", "categories": ["air"], "amount": 9.5153e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.922646069}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.922646069}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.922646069}, {"name": "Chromium III", "categories": ["air"], "amount": 1.922646069}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.690584275}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 7.690584275}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.690584275}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.690584275}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 639.1861685}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 639.1861685}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 639.1861685}, {"name": "Cobalt II", "categories": ["air"], "amount": 639.1861685}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 221.6538139}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 221.6538139}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 221.6538139}, {"name": "Copper ion", "categories": ["air"], "amount": 221.6538139}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2126816.609}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 2126816.609}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2126816.609}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 2126816.609}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000121789}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.000121789}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000121789}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000121789}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000119313}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000119313}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000119313}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000119313}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42593e-11}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1.42593e-11}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42593e-11}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86154e-06}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.86154e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86154e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.86154e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000412935}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.000412935}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000412935}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.000412935}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.81057e-05}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.81057e-05}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.81057e-05}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.098656659}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.098656659}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.098656659}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.098656659}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.255924503}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 8.255924503}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.255924503}, {"name": "Formaldehyde", "categories": ["air"], "amount": 8.255924503}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.638464651}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 4.638464651}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.638464651}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 4.638464651}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.399626922}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 2.399626922}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.399626922}, {"name": "Lead II", "categories": ["air"], "amount": 2.399626922}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 316.7874757}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 316.7874757}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 316.7874757}, {"name": "Mercury II", "categories": ["air"], "amount": 316.7874757}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.032679173}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.032679173}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.032679173}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.032679173}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32865e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 3.32865e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32865e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.32865e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000251931}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000251931}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000251931}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000251931}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.3192924}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 97.3192924}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 97.3192924}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 97.3192924}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.37469e-05}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 4.37469e-05}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.37469e-05}, {"name": "m-Xylene", "categories": ["air"], "amount": 4.37469e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 629.4706747}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 629.4706747}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 629.4706747}, {"name": "Nickel II", "categories": ["air"], "amount": 629.4706747}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.30679e-05}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 9.30679e-05}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.30679e-05}, {"name": "o-Xylene", "categories": ["air"], "amount": 9.30679e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.8260122}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 171.8260122}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 171.8260122}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 171.8260122}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.515898377}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1.515898377}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.515898377}, {"name": "Phenol", "categories": ["air"], "amount": 1.515898377}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.403587546}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.403587546}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.403587546}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.403587546}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.52329205}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 10.52329205}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.52329205}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 10.52329205}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.036846268}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.036846268}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.036846268}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.036846268}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 546.2392735}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 546.2392735}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 546.2392735}, {"name": "Selenium IV", "categories": ["air"], "amount": 546.2392735}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09075e-05}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 5.09075e-05}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.09075e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.09075e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1553.337312}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 1553.337312}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1553.337312}, {"name": "Thallium I", "categories": ["air"], "amount": 1553.337312}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.537017575}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 2.537017575}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.537017575}, {"name": "Tin ion", "categories": ["air"], "amount": 2.537017575}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.04338e-05}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 7.04338e-05}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.04338e-05}, {"name": "Toluene", "categories": ["air"], "amount": 7.04338e-05}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1733.840782}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 1733.840782}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1733.840782}, {"name": "Vanadium V", "categories": ["air"], "amount": 1733.840782}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.78364688}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 17.78364688}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.78364688}, {"name": "Zinc II", "categories": ["air"], "amount": 17.78364688}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 9.980626326}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 9.980626326}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 9.980626326}, {"name": "Antimony ion", "categories": ["soil"], "amount": 9.980626326}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 114.754741}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 114.754741}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 114.754741}, {"name": "Barium II", "categories": ["soil"], "amount": 114.754741}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 45897.5345}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 45897.5345}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 45897.5345}, {"name": "Beryllium II", "categories": ["soil"], "amount": 45897.5345}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 776.1149557}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 776.1149557}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 776.1149557}, {"name": "Cadmium II", "categories": ["soil"], "amount": 776.1149557}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.254694777}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.254694777}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.254694777}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.254694777}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 21.01877911}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 21.01877911}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 21.01877911}, {"name": "Chromium VI", "categories": ["soil"], "amount": 21.01877911}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1712.622007}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1712.622007}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1712.622007}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1712.622007}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 594.650583}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 594.650583}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 594.650583}, {"name": "Copper ion", "categories": ["soil"], "amount": 594.650583}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.671884382}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 6.527796616}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 6.527796616}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 6.527796616}, {"name": "Lead II", "categories": ["soil"], "amount": 6.527796616}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 848.1277497}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 848.1277497}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 848.1277497}, {"name": "Mercury II", "categories": ["soil"], "amount": 848.1277497}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 262.0749706}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 262.0749706}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 262.0749706}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 262.0749706}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1690.253104}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1690.253104}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1690.253104}, {"name": "Nickel II", "categories": ["soil"], "amount": 1690.253104}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1463.367658}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1463.367658}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1463.367658}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1463.367658}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 4170.357612}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 4170.357612}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 4170.357612}, {"name": "Thallium I", "categories": ["soil"], "amount": 4170.357612}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 6.901545648}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 6.901545648}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 6.901545648}, {"name": "Tin ion", "categories": ["soil"], "amount": 6.901545648}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4654.224158}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 4654.224158}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 4654.224158}, {"name": "Vanadium V", "categories": ["soil"], "amount": 4654.224158}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 47.74504968}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 47.74504968}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 47.74504968}, {"name": "Zinc II", "categories": ["soil"], "amount": 47.74504968}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 27543.9258}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 27543.9258}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.117133035}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Acenaphthene", "categories": ["water"], "amount": 27543.9258}, {"name": "Acenaphthylene", "categories": ["water", "ground-, long-term"], "amount": 27543.9258}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 0.117133035}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 27543.9258}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 79.23967176}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.006036076}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 79.23967176}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 79.23967176}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 19.7471634}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 19.7471634}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.56984e-21}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 19.7471634}, {"name": "Antimony ion", "categories": ["water"], "amount": 19.7471634}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 227.7547418}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 227.7547418}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.40807e-19}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 227.7547418}, {"name": "Barium II", "categories": ["water"], "amount": 227.7547418}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.091442188}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.091442188}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.19439e-06}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.091442188}, {"name": "Benzene", "categories": ["water"], "amount": 0.091442188}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.360324568}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000258594}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.360324568}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.360324568}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.545523699}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.545523699}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.43815e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.545523699}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.545523699}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 91349.16197}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 91349.16197}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.5677e-16}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 91349.16197}, {"name": "Beryllium II", "categories": ["water"], "amount": 91349.16197}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1523.011325}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.52612e-20}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1523.011325}, {"name": "Cadmium II", "categories": ["water"], "amount": 1523.011325}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 105.1696058}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 105.1696058}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.006529295}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 105.1696058}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 105.1696058}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.042349293}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.042349293}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 4.48297e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.042349293}, {"name": "Chloroform", "categories": ["water"], "amount": 0.042349293}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 27.65563759}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 27.65563759}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.53467e-22}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 27.65563759}, {"name": "Chromium VI", "categories": ["water"], "amount": 27.65563759}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 6.913909397}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 8.83668e-23}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 6.913909397}, {"name": "Chromium III", "categories": ["water"], "amount": 6.913909397}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 3407.831958}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 3407.831958}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.21543e-18}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 3407.831958}, {"name": "Cobalt II", "categories": ["water"], "amount": 3407.831958}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1157.306919}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.10941e-20}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1157.306919}, {"name": "Copper ion", "categories": ["water"], "amount": 1157.306919}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.109593474}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.109593474}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 7.10351e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.109593474}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.109593474}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.022946375}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.022946375}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 8.82702e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.022946375}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.022946375}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 0.022490624}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 0.022490624}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.04966e-12}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 0.022490624}, {"name": "Ethylene", "categories": ["water"], "amount": 0.022490624}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 0.027866613}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.027866613}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.40913e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 0.027866613}, {"name": "Chloroethylene", "categories": ["water"], "amount": 0.027866613}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.696350599}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.696350599}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.000202109}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.696350599}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.696350599}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.096977306}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.096977306}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.55453e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.096977306}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.096977306}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 9.795451453}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 9.795451453}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.003778204}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 9.795451453}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 9.795451453}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 280.7343279}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 280.7343279}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.000212611}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 280.7343279}, {"name": "Formaldehyde", "categories": ["water"], "amount": 280.7343279}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 9.615718658}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 9.615718658}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 5.5714e-23}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 9.615718658}, {"name": "Lead II", "categories": ["water"], "amount": 9.615718658}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1717.144328}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 1717.144328}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 6.773349297}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1717.144328}, {"name": "Mercury II", "categories": ["water"], "amount": 1717.144328}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.01228851}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.01228851}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 5.01878e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.01228851}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.01228851}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.20840893}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.20840893}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000190563}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.20840893}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.20840893}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 476.1891468}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 476.1891468}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.58768e-19}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 476.1891468}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 476.1891468}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.59828717}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.59828717}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.2348e-06}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.59828717}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.59828717}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3237.610008}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.09427e-19}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3237.610008}, {"name": "Nickel II", "categories": ["water"], "amount": 3237.610008}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.564623853}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.564623853}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.5123e-05}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.564623853}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.564623853}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 27543.9258}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 27543.9258}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.117133035}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 27543.9258}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 237.0076571}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 237.0076571}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.72839e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 237.0076571}, {"name": "Phenol", "categories": ["water"], "amount": 237.0076571}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 76.4086027}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 3.18725e-05}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 76.4086027}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 76.4086027}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 79.47660628}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.9224e-05}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 79.47660628}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 79.47660628}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.084748678}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 3.8217e-07}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 3.084748678}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 3.084748678}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 2.770891361}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00014339}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 2.770891361}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 2.770891361}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.964936638}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 3.964936638}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.000441224}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.964936638}, {"name": "Propylene oxide", "categories": ["water"], "amount": 3.964936638}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 2919.215918}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 2919.215918}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 7.37855e-18}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 2919.215918}, {"name": "Selenium IV", "categories": ["water"], "amount": 2919.215918}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.439672438}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.439672438}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.01252e-05}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.439672438}, {"name": "Styrene", "categories": ["water"], "amount": 0.439672438}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 8010.748812}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 8010.748812}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 7.89876e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 8010.748812}, {"name": "Thallium I", "categories": ["water"], "amount": 8010.748812}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 10.16626668}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 9.45727e-23}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 10.16626668}, {"name": "Tin ion", "categories": ["water"], "amount": 10.16626668}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.294514441}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.294514441}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 8.26905e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.294514441}, {"name": "Toluene", "categories": ["water"], "amount": 0.294514441}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 8965.69091}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 2.3929e-18}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 8965.69091}, {"name": "Vanadium V", "categories": ["water"], "amount": 8965.69091}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 91.71242268}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.7611e-21}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 91.71242268}, {"name": "Zinc II", "categories": ["water"], "amount": 91.71242268}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.633354816}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 519.1373278}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15909.97498}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 38.70264593}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.868972369}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 199339.4398}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 986.5000335}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 111.3634597}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1115.193351}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.19295282}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 360.8377327}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.93283786}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1466.6325}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 83602.82745}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3237.610008}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 231.4644637}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 17.26224344}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 4510.732407}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16.11900088}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 199339.4398}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 171.8260122}, {"name": "Anthracene", "categories": ["air"], "amount": 136.6120225}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 41.95943397}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 171.8260122}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 43.59828858}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 3877.313303}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 171.8260122}, {"name": "Fluorene", "categories": ["air"], "amount": 171.8260122}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 165.284645}, {"name": "Phenanthrene", "categories": ["air"], "amount": 1.26038299}, {"name": "Pyrene", "categories": ["air"], "amount": 171.8260122}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.310533909}, {"name": "Permethrin", "categories": ["water"], "amount": 5033760.13}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 83602.82745}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 51746.706}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 1169429.359}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 13151.73799}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 76813.73869}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 658.9115519}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 57270.20995}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 114823.123}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 251689.8554}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 57270.20995}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 57270.20995}, {"name": "Anthracene", "categories": ["water"], "amount": 57270.20995}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 16.70312979}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-, long-term"], "amount": 1169429.359}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 1169429.359}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 1169429.359}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 9.112002017}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 76813.73869}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 76813.73869}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-, long-term"], "amount": 76813.73869}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.000741658}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41402952}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.41402952}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.41402952}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41402952}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.41402952}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 172761006.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 172761006.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 172761006.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 172761006.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 133273.7576}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 27543.9258}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 251689.8554}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1368.227175}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1368.227175}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 4957.984372}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 4957.984372}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 4531.703764}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 4531.703764}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 38378.53316}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 27.18350061}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 27.18350061}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.058224124}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 135031.4275}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.099260671}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.012983861}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 5.306394539}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 5.306394539}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 50.70964583}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 50.70964583}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 491210.9319}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 491210.9319}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 123106.4602}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 491210.9319}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 3.81057e-05}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 0.213835093}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 199339.4398}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 6452.497435}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 74.08667954}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 755.4108063}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 30.85501588}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 94.94810336}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 350.2386357}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 254.956018}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.328300702}, {"name": "Glyphosate", "categories": ["water"], "amount": 1368.227175}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 152.987151}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 50.73202763}, {"name": "Acrolein", "categories": ["water"], "amount": 251473.5781}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 653735.0536}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 1814.591747}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 12.51989401}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 172.5578345}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 27083.51373}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1814.591747}, {"name": "Thiram", "categories": ["air"], "amount": 2703.849252}, {"name": "Dimethoate", "categories": ["air"], "amount": 12.51989401}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 97982.61947}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 48634.13547}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 49.60329639}, {"name": "Triallate", "categories": ["air"], "amount": 61.24233876}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 61.24233876}, {"name": "Ethylene", "categories": ["air"], "amount": 1.42593e-11}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.495763292}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 516.5336286}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 18508.73048}, {"name": "Fluoranthene", "categories": ["air"], "amount": 17.80093307}, {"name": "Chrysene", "categories": ["air"], "amount": 39.21597222}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 373.5251898}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["air"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 134.4097828}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 134.4097828}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 134.4097828}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 134.4097828}, {"name": "Arsenic ion", "categories": ["water"], "amount": 206.7462211}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 206.7462211}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.84676e-20}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 206.7462211}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 206.7462211}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 83602.82745}, {"name": "Bifenthrin", "categories": ["air"], "amount": 820.4307545}, {"name": "Bifenthrin", "categories": ["water"], "amount": 243975.0192}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 411.9497193}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 820.4307545}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 243975.0192}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 7944107.679}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7944107.679}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 688967.2267}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 7944107.679}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 688967.2267}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 83602.82745}, {"name": "Carbendazim", "categories": ["air"], "amount": 2984.253341}, {"name": "Diuron", "categories": ["air"], "amount": 530.4214428}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.534613272}, {"name": "Simazine", "categories": ["air"], "amount": 2102.507808}, {"name": "2,4-D", "categories": ["water"], "amount": 402.5031791}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 81.95312224}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 402.5031791}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 5637.495888}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 27142.89531}, {"name": "Simazine", "categories": ["water"], "amount": 27142.89531}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2102.507808}, {"name": "Carbendazim", "categories": ["water"], "amount": 38370.44685}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 6110.916654}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2984.253341}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 38370.44685}, {"name": "Acephate", "categories": ["water"], "amount": 1100.038327}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 159.4736929}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 1100.038327}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 372.4242025}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 372.4242025}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.749747191}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.534613272}, {"name": "Diuron", "categories": ["water"], "amount": 9418.481705}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1130.909622}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 530.4214428}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 2703.849252}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 155.3675579}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4384.96246}, {"name": "Trifluralin", "categories": ["water"], "amount": 27083.51373}, {"name": "Thiram", "categories": ["water"], "amount": 97982.61947}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 640742.9179}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1448.384406}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.671884382}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5809.442399}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 28448.1302}, {"name": "Metolachlor", "categories": ["water"], "amount": 38378.53316}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 928.8046855}, {"name": "Methomyl", "categories": ["water"], "amount": 135031.4275}, {"name": "Atrazine", "categories": ["water"], "amount": 4957.984372}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 2703.849252}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 640742.9179}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 135031.4275}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 13866.15252}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 38378.53316}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1893.703975}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 355.7691128}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.011362329}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.011362329}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.001288171}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.011362329}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.011362329}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.233298462}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["CML v4.8 2016", "ecotoxicity: marine", "marine aquatic ecotoxicity (MAETP inf)"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.166268447}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 4260.507702}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 5484.758202}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.673347713}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 566.0364618}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.541179208}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1640.55123}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 32.25818735}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 33052.50793}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 33.87635225}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 0.141080873}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 779565.3252}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.005770347}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.035936153}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.002800786}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.114144105}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000795715}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2405.978834}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 173.9143878}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1367.099998}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 469829433.5}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 0.113669485}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.74475e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1105226.199}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 220265.8312}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 6.8803e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.007368271}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 30.42401718}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.970646634}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.529975423}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.08091629}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.059163653}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.65378751}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5242.324119}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 20969.29648}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 860.9360739}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 5435082.746}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 893429.8064}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 232741.9688}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 2.844134965}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 296.6379608}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 0.059689858}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 7.805477329}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.039430536}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 390.9612721}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 296410658}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 0.140914206}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 2.090980765}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.003645076}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 0.001353163}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.304302175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.081602129}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.92625e-11}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000129875}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.337578123}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.002682571}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 264.0185609}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.854460841}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 6.796509622}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.125470081}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.633649187}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.002800256}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 40746153.29}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 1.790669499}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 7048.834153}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.402646208}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 12.45284229}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.661495138}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.000617321}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.052923369}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.052923369}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1199665.677}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.001134192}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.032789743}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.998664245}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 4.106691015}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.003840259}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.151577694}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 440.1608248}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1945254.63}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000392614}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3757791.485}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.008423614}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1.977305823}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000914458}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 4260.507702}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.348160602}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 5.473259118}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.552763901}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.33998576}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 40.0189118}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.052669738}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.076518676}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.001724787}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.034863856}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 7.312514195}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.121878186}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 30.4102425}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 21196061.02}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 12.68754919}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.000509345}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 25632232.34}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.650328304}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 7505.452047}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1227.869894}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000699426}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.67350198}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.150987406}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 12207311.7}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 8579403.259}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 67254.71999}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 13846.76932}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4260.507702}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 4260.507702}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4260.507702}, {"name": "Acenaphthene", "categories": ["air"], "amount": 4260.507702}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 566.0364618}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 566.0364618}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 566.0364618}, {"name": "Acrolein", "categories": ["air"], "amount": 566.0364618}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 33052.50793}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 33052.50793}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33052.50793}, {"name": "Antimony ion", "categories": ["air"], "amount": 33052.50793}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 779565.3252}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 779565.3252}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 779565.3252}, {"name": "Barium II", "categories": ["air"], "amount": 779565.3252}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002800786}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.002800786}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002800786}, {"name": "Benzene", "categories": ["air"], "amount": 0.002800786}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000795715}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.000795715}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000795715}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000795715}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2405.978834}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 2405.978834}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2405.978834}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2405.978834}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 173.9143878}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 173.9143878}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 173.9143878}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 173.9143878}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1367.099998}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1367.099998}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1367.099998}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1367.099998}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 469829433.5}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 469829433.5}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 469829433.5}, {"name": "Beryllium II", "categories": ["air"], "amount": 469829433.5}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74475e-06}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 2.74475e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74475e-06}, {"name": "Butadiene", "categories": ["air"], "amount": 2.74475e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1105226.199}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 1105226.199}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1105226.199}, {"name": "Cadmium II", "categories": ["air"], "amount": 1105226.199}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.529975423}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.529975423}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.529975423}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.529975423}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059163653}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.059163653}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059163653}, {"name": "Chloroform", "categories": ["air"], "amount": 0.059163653}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 5242.324119}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 5242.324119}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5242.324119}, {"name": "Chromium III", "categories": ["air"], "amount": 5242.324119}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 20969.29648}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 20969.29648}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20969.29648}, {"name": "Chromium VI", "categories": ["air"], "amount": 20969.29648}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5435082.746}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 5435082.746}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5435082.746}, {"name": "Cobalt II", "categories": ["air"], "amount": 5435082.746}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 893429.8064}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 893429.8064}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 893429.8064}, {"name": "Copper ion", "categories": ["air"], "amount": 893429.8064}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 296410658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 296410658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 296410658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 296410658}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.304302175}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.304302175}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.304302175}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.304302175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.081602129}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.081602129}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.081602129}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.081602129}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92625e-11}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 7.92625e-11}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.92625e-11}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000129875}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.000129875}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000129875}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.000129875}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.337578123}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.337578123}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.337578123}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.337578123}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002682571}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.002682571}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002682571}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.854460841}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.854460841}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.854460841}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.854460841}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.633649187}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.633649187}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.633649187}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.633649187}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 40746153.29}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 40746153.29}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40746153.29}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 40746153.29}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7048.834153}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 7048.834153}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7048.834153}, {"name": "Lead II", "categories": ["air"], "amount": 7048.834153}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1199665.677}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 1199665.677}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1199665.677}, {"name": "Mercury II", "categories": ["air"], "amount": 1199665.677}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.106691015}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 4.106691015}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.106691015}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 4.106691015}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003840259}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.003840259}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003840259}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.003840259}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.151577694}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.151577694}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.151577694}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.151577694}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1945254.63}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1945254.63}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1945254.63}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1945254.63}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000392614}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000392614}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000392614}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.000392614}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3757791.485}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 3757791.485}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3757791.485}, {"name": "Nickel II", "categories": ["air"], "amount": 3757791.485}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000914458}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000914458}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000914458}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.000914458}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 4260.507702}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 4260.507702}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4260.507702}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 4260.507702}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.552763901}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.552763901}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.552763901}, {"name": "Phenol", "categories": ["air"], "amount": 0.552763901}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33998576}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.33998576}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.33998576}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.33998576}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.0189118}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 40.0189118}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.0189118}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 40.0189118}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.121878186}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.121878186}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.121878186}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.121878186}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 21196061.02}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 21196061.02}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 21196061.02}, {"name": "Selenium IV", "categories": ["air"], "amount": 21196061.02}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000509345}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.000509345}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000509345}, {"name": "Styrene", "categories": ["air"], "amount": 0.000509345}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 25632232.34}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 25632232.34}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25632232.34}, {"name": "Thallium I", "categories": ["air"], "amount": 25632232.34}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7505.452047}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 7505.452047}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7505.452047}, {"name": "Tin ion", "categories": ["air"], "amount": 7505.452047}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000699426}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.000699426}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000699426}, {"name": "Toluene", "categories": ["air"], "amount": 0.000699426}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 12207311.7}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 12207311.7}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12207311.7}, {"name": "Vanadium V", "categories": ["air"], "amount": 12207311.7}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 67254.71999}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 67254.71999}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67254.71999}, {"name": "Zinc II", "categories": ["air"], "amount": 67254.71999}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 13699.32049}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 13699.32049}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 13699.32049}, {"name": "Antimony ion", "categories": ["soil"], "amount": 13699.32049}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 419874.7663}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 419874.7663}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 419874.7663}, {"name": "Barium II", "categories": ["soil"], "amount": 419874.7663}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 271059202.2}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 271059202.2}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 271059202.2}, {"name": "Beryllium II", "categories": ["soil"], "amount": 271059202.2}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 112245.7876}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 112245.7876}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 112245.7876}, {"name": "Cadmium II", "categories": ["soil"], "amount": 112245.7876}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 654.3268115}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 654.3268115}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 654.3268115}, {"name": "Chromium III", "categories": ["soil"], "amount": 654.3268115}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 2617.307246}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2617.307246}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2617.307246}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2617.307246}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2203266.179}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2203266.179}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2203266.179}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2203266.179}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 119588.1103}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 119588.1103}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 119588.1103}, {"name": "Copper ion", "categories": ["soil"], "amount": 119588.1103}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.011156382}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 753.3606976}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 753.3606977}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 753.3606977}, {"name": "Lead II", "categories": ["soil"], "amount": 753.3606977}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 165517.2757}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 165517.2757}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 165517.2757}, {"name": "Mercury II", "categories": ["soil"], "amount": 165517.2757}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1150000.353}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1150000.353}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1150000.353}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1150000.353}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1174636.474}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1174636.474}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1174636.474}, {"name": "Nickel II", "categories": ["soil"], "amount": 1174636.474}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 12706802.13}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 12706802.13}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 12706802.13}, {"name": "Selenium IV", "categories": ["soil"], "amount": 12706802.13}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 13837686.72}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 13837686.72}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 13837686.72}, {"name": "Thallium I", "categories": ["soil"], "amount": 13837686.72}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 833.5606756}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 833.5606756}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 833.5606756}, {"name": "Tin ion", "categories": ["soil"], "amount": 833.5606756}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4453696.464}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 4453696.464}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 4453696.464}, {"name": "Vanadium V", "categories": ["soil"], "amount": 4453696.464}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 7208.562045}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 7208.562045}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 7208.562045}, {"name": "Zinc II", "categories": ["soil"], "amount": 7208.562045}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 5484.758202}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 5484.758202}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 23737.83848}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Acenaphthene", "categories": ["water"], "amount": 5484.758202}, {"name": "Acenaphthylene", "categories": ["water", "ground-, long-term"], "amount": 5484.758202}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 23737.83848}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 5484.758202}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.541179208}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 3.129479467}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.541179208}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.541179208}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 27104.78394}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 27104.78394}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 48723.01979}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 27104.78394}, {"name": "Antimony ion", "categories": ["water"], "amount": 27104.78394}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 833329.134}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 833329.134}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1086641.338}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 833329.134}, {"name": "Barium II", "categories": ["water"], "amount": 833329.134}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.00265539}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.00265539}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.015174218}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00265539}, {"name": "Benzene", "categories": ["water"], "amount": 0.00265539}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.114144105}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.350958141}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.114144105}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.114144105}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.001358689}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.001358689}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.061621478}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.001358689}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.001358689}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 539484990.5}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 539484990.5}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 643371294.1}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 539484990.5}, {"name": "Beryllium II", "categories": ["water"], "amount": 539484990.5}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 220265.8312}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1848053.818}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 220265.8312}, {"name": "Cadmium II", "categories": ["water"], "amount": 220265.8312}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 1.794912375}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 1.794912375}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 29.72565952}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 1.794912375}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.794912375}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.058164962}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.058164962}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.056452223}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.058164962}, {"name": "Chloroform", "categories": ["water"], "amount": 0.058164962}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3443.744296}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 3443.744296}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 32873.05623}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3443.744296}, {"name": "Chromium VI", "categories": ["water"], "amount": 3443.744296}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 860.9360739}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 8218.264057}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 860.9360739}, {"name": "Chromium III", "categories": ["water"], "amount": 860.9360739}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4384131.971}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 4384131.971}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 8048980.529}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4384131.971}, {"name": "Cobalt II", "categories": ["water"], "amount": 4384131.971}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 232741.9688}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1475564.328}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 232741.9688}, {"name": "Copper ion", "categories": ["water"], "amount": 232741.9688}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.300877436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.300877436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.269785602}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.300877436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.300877436}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.081452672}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.081452672}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.09060469}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.081452672}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.081452672}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 2.77811e-05}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 2.77811e-05}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 0.002584756}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 2.77811e-05}, {"name": "Ethylene", "categories": ["water"], "amount": 2.77811e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 0.000377217}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.000377217}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.019525441}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 0.000377217}, {"name": "Chloroethylene", "categories": ["water"], "amount": 0.000377217}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.336718811}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.336718811}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.648268219}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.336718811}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.336718811}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.003334904}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.003334904}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.056669202}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.003334904}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.003334904}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.627275329}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.627275329}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.736651015}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.627275329}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.627275329}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.189875093}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.189875093}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 5.647157935}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.189875093}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.189875093}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1109.731957}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 1109.731957}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 11304.99376}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1109.731957}, {"name": "Lead II", "categories": ["water"], "amount": 1109.731957}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 214326.8839}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 214326.8839}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1875335.379}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 214326.8839}, {"name": "Mercury II", "categories": ["water"], "amount": 214326.8839}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.003539819}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.003539819}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.003244141}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.003539819}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.003539819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.145521766}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 1.145521766}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.111408081}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.145521766}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.145521766}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2089545.925}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2089545.925}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2620221.279}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2089545.925}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2089545.925}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.002122398}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.002122398}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.141496158}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.002122398}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.002122398}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2249967.65}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 5766615.509}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2249967.65}, {"name": "Nickel II", "categories": ["water"], "amount": 2249967.65}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.002508141}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.002508141}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.131442012}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.002508141}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.002508141}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5484.758202}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 5484.758202}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 23737.83848}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 5484.758202}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.056287221}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.056287221}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 4.658646236}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.056287221}, {"name": "Phenol", "categories": ["water"], "amount": 0.056287221}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.052669738}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 1.576270043}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.052669738}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.052669738}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 0.076518676}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 1.673049608}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.076518676}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.076518676}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.001724787}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.051854268}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.001724787}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.001724787}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.034863856}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 2.480774389}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.034863856}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.034863856}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.057709568}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.057709568}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.144919185}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.057709568}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.057709568}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 25348311.37}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 25348311.37}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 28720844.53}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 25348311.37}, {"name": "Selenium IV", "categories": ["water"], "amount": 25348311.37}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.002231707}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.002231707}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.124595041}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.002231707}, {"name": "Styrene", "categories": ["water"], "amount": 0.002231707}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 26580510.06}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 26580510.06}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 35584562.31}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 26580510.06}, {"name": "Thallium I", "categories": ["water"], "amount": 26580510.06}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1227.869894}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 12027.03239}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1227.869894}, {"name": "Tin ion", "categories": ["water"], "amount": 1227.869894}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.001236583}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.001236583}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.050902141}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.001236583}, {"name": "Toluene", "categories": ["water"], "amount": 0.001236583}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 8579403.259}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 18333506.76}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 8579403.259}, {"name": "Vanadium V", "categories": ["water"], "amount": 8579403.259}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 13846.76932}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 111954.7668}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 13846.76932}, {"name": "Zinc II", "categories": ["water"], "amount": 13846.76932}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.619648147}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 62.05496427}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 30906.51545}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.281333499}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 104.431918}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 296.6379608}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 724.2192353}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.77078953}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 5.857365918}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.41221915}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 278.7568027}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.80881645}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 380.4114192}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 18975.08232}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2249967.65}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 47.88518145}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.042278305}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 707.743079}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.085432048}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 296.6379608}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4260.507702}, {"name": "Anthracene", "categories": ["air"], "amount": 1699.044661}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1018.752889}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 4260.507702}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 1656.938866}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 118520.4269}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 4260.507702}, {"name": "Fluorene", "categories": ["air"], "amount": 4260.507702}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 7276.503979}, {"name": "Phenanthrene", "categories": ["air"], "amount": 7.27368542}, {"name": "Pyrene", "categories": ["air"], "amount": 4260.507702}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.026797867}, {"name": "Permethrin", "categories": ["water"], "amount": 26768.50225}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 18975.08232}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 9056.071685}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 435324.2829}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 867.8601037}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 14519.96574}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.06087036}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 3022.686823}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 8306.18003}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 12122.77648}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 3022.686823}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 3022.686823}, {"name": "Anthracene", "categories": ["water"], "amount": 3022.686823}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 17693.05209}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-, long-term"], "amount": 435324.2829}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 435324.2829}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 435324.2829}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 1475670.997}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 14519.96574}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 14519.96574}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-, long-term"], "amount": 14519.96574}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 110121.093}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.905855614}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.905855614}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.905855614}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.905855614}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.905855614}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 44689724.99}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 44689724.99}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 44689724.99}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 44689724.99}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 502939102}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 5484.758202}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 12122.77648}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.15710571}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.15710571}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 484.3155375}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 484.3155375}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.416176522}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.416176522}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 582.3304636}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 0.036252362}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 0.036252362}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.283757033}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 4206.783074}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.061594649}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 3.59023e-05}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.014672826}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.014672826}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.219884162}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.219884162}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 177778.5123}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 177778.5123}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 44554.55269}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 177778.5123}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.002682571}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 5.0248e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 296.6379608}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 253.7255274}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 0.040927385}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.271818895}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 0.02556258}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 14.23852026}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 0.342412195}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 0.677124279}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.005900367}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.15710571}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 2387.046086}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 171.7339388}, {"name": "Acrolein", "categories": ["water"], "amount": 1080.499342}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 982.0954895}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 3511.491188}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.626953421}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.752136595}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 422.9033701}, {"name": "Deltamethrin", "categories": ["air"], "amount": 3511.491188}, {"name": "Thiram", "categories": ["air"], "amount": 218.3898935}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.626953421}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 74.38893597}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 780.1600572}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.84496147}, {"name": "Triallate", "categories": ["air"], "amount": 148.5832596}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 148.5832596}, {"name": "Ethylene", "categories": ["air"], "amount": 7.92625e-11}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.912492033}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 10.46793179}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 2979.888479}, {"name": "Fluoranthene", "categories": ["air"], "amount": 199.9548986}, {"name": "Chrysene", "categories": ["air"], "amount": 413.5266606}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.487440895}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["air"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 77078.25934}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 77078.25934}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 77078.25934}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 77078.25934}, {"name": "Arsenic ion", "categories": ["water"], "amount": 118560.1116}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 118560.1116}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 342656.1385}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 118560.1116}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 118560.1116}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 18975.08232}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1019.099725}, {"name": "Bifenthrin", "categories": ["water"], "amount": 212.9292696}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 0.453803099}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1019.099725}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 212.9292696}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 10049.92574}, {"name": "Cypermethrin", "categories": ["water"], "amount": 10049.92574}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1025.25538}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 10049.92574}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1025.25538}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 18975.08232}, {"name": "Carbendazim", "categories": ["air"], "amount": 718.5857249}, {"name": "Diuron", "categories": ["air"], "amount": 113.0184131}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 50.6043711}, {"name": "Simazine", "categories": ["air"], "amount": 275.1322673}, {"name": "2,4-D", "categories": ["water"], "amount": 2.268953866}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.4619809}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 2.268953866}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 30.66500492}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 143.743963}, {"name": "Simazine", "categories": ["water"], "amount": 143.743963}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 275.1322673}, {"name": "Carbendazim", "categories": ["water"], "amount": 581.7791703}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 92.65499302}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 718.5857249}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 581.7791703}, {"name": "Acephate", "categories": ["water"], "amount": 14.53877309}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 2.107707778}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 14.53877309}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 39.72920839}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 39.72920839}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 5.973704191}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.6043711}, {"name": "Diuron", "categories": ["water"], "amount": 54.66291684}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.844659219}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 113.0184131}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 218.3898935}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.496648719}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.157912353}, {"name": "Trifluralin", "categories": ["water"], "amount": 422.9033701}, {"name": "Thiram", "categories": ["water"], "amount": 74.38893597}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 239.5760275}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 0.584486595}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.011156382}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 91.31733999}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 886.9604635}, {"name": "Metolachlor", "categories": ["water"], "amount": 582.3304636}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 91.30813498}, {"name": "Methomyl", "categories": ["water"], "amount": 4206.783074}, {"name": "Atrazine", "categories": ["water"], "amount": 484.3155375}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 218.3898935}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 239.5760275}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 4206.783074}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3890.877234}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 582.3304636}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 29.76671388}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 0.143568431}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.659224841}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.659224841}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.947615996}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.659224841}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.659224841}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.18883e-05}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["CML v4.8 2016", "ecotoxicity: terrestrial", "terrestrial ecotoxicity (TETP inf)"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.57851244}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.019197865}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 0.002117132}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.686908257}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 16.3291159}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.003851263}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4220.13516}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 20.44124316}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.610706495}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 6.589018491}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 0.972861498}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.859760308}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.490183413}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.594972359}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.55771e-05}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.000716486}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.43178e-06}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.260630905}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.039152073}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.241153066}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1766.961648}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 83.31013088}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.32408e-08}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 81.2492588}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.41506e-20}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.04096702}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.107050434}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 49.38152623}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 7.50168812}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.005142978}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.896431354}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.01912e-05}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.677825069}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3031.119801}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.27196e-19}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 108.7097487}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 6.991272773}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 4.0632e-21}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 69.02741802}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 89744.2628}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 8.544692429}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 11.53865332}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.804877405}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 588.2692621}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 11991.58892}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 11.4875777}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 22.66603011}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.516636803}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2.745601943}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000178048}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.64203e-05}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.34791e-12}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.61477e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008113672}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.72388e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 271.483092}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.002523741}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 11.54793215}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 11.54811747}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.939745149}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.096342491}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.002949857}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 6.439093707}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 15.66983733}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 23.44629566}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 20.70611846}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.075688031}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.094486765}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 4.726490856}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 4.726490856}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 28312.6357}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.04161199}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.173846406}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.088504744}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.012770435}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 4.27196e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.00047115}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 304.597033}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 17.53812242}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.50812e-07}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 116.0434782}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5.865380501}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 92.25673286}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.26837e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.019197865}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 17.16341161}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 251.2313155}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.003314907}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.030416826}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.252814177}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 6.56524e-06}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.26928e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.00036558}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.30169e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 120.4248996}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00150898}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.693729029}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 53.4729737}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 29.33138885}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.35979e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 339.8323841}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 50.7618752}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 14.36401755}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 7.86268e-22}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.59178e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1879.533466}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 35.16705282}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 665.2345714}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.02117e-17}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 11.96305468}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.5338e-21}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.019197865}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.019197865}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.019197865}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.019197865}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.3291159}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 16.3291159}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.3291159}, {"name": "Acrolein", "categories": ["air"], "amount": 16.3291159}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.610706495}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.610706495}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.610706495}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.610706495}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.859760308}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 4.859760308}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.859760308}, {"name": "Barium II", "categories": ["air"], "amount": 4.859760308}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55771e-05}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.55771e-05}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55771e-05}, {"name": "Benzene", "categories": ["air"], "amount": 1.55771e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43178e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1.43178e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43178e-06}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.43178e-06}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.260630905}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.260630905}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.260630905}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.260630905}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.039152073}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.039152073}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.039152073}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.039152073}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.241153066}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.241153066}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.241153066}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.241153066}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1766.961648}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 1766.961648}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1766.961648}, {"name": "Beryllium II", "categories": ["air"], "amount": 1766.961648}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.32408e-08}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 2.32408e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.32408e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 2.32408e-08}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 81.2492588}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 81.2492588}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 81.2492588}, {"name": "Cadmium II", "categories": ["air"], "amount": 81.2492588}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.005142978}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.005142978}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.005142978}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.005142978}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.01912e-05}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.01912e-05}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.01912e-05}, {"name": "Chloroform", "categories": ["air"], "amount": 4.01912e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3031.119801}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 3031.119801}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3031.119801}, {"name": "Chromium III", "categories": ["air"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air"], "amount": 3031.119801}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 108.7097487}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 108.7097487}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 108.7097487}, {"name": "Cobalt II", "categories": ["air"], "amount": 108.7097487}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.991272773}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 6.991272773}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.991272773}, {"name": "Copper ion", "categories": ["air"], "amount": 6.991272773}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11991.58892}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 11991.58892}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11991.58892}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 11991.58892}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000178048}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.000178048}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000178048}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000178048}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64203e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.64203e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64203e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.64203e-05}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34791e-12}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1.34791e-12}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.34791e-12}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.61477e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.61477e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.61477e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.61477e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008113672}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.008113672}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008113672}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.008113672}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.72388e-06}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 4.72388e-06}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.72388e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002523741}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.002523741}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002523741}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.002523741}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.939745149}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.939745149}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.939745149}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.939745149}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002949857}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.002949857}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002949857}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.002949857}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.66983733}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 15.66983733}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.66983733}, {"name": "Lead II", "categories": ["air"], "amount": 15.66983733}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 28312.6357}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 28312.6357}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28312.6357}, {"name": "Mercury II", "categories": ["air"], "amount": 28312.6357}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.012770435}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.012770435}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.012770435}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.012770435}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.27196e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 4.27196e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.27196e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 4.27196e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00047115}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.00047115}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00047115}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.00047115}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.53812242}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 17.53812242}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.53812242}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 17.53812242}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.50812e-07}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 6.50812e-07}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.50812e-07}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.50812e-07}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.0434782}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 116.0434782}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.0434782}, {"name": "Nickel II", "categories": ["air"], "amount": 116.0434782}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26837e-06}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.26837e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26837e-06}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.26837e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.019197865}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 1.019197865}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.019197865}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.019197865}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003314907}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.003314907}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003314907}, {"name": "Phenol", "categories": ["air"], "amount": 0.003314907}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.030416826}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.030416826}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.030416826}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.030416826}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.252814177}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.252814177}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.252814177}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 2.252814177}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00150898}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.00150898}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00150898}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.00150898}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 53.4729737}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 53.4729737}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53.4729737}, {"name": "Selenium IV", "categories": ["air"], "amount": 53.4729737}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35979e-07}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.35979e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35979e-07}, {"name": "Styrene", "categories": ["air"], "amount": 1.35979e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 339.8323841}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 339.8323841}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 339.8323841}, {"name": "Thallium I", "categories": ["air"], "amount": 339.8323841}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.36401755}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 14.36401755}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.36401755}, {"name": "Tin ion", "categories": ["air"], "amount": 14.36401755}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.59178e-05}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.59178e-05}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.59178e-05}, {"name": "Toluene", "categories": ["air"], "amount": 1.59178e-05}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 665.2345714}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 665.2345714}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 665.2345714}, {"name": "Vanadium V", "categories": ["air"], "amount": 665.2345714}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.96305468}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 11.96305468}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.96305468}, {"name": "Zinc II", "categories": ["air"], "amount": 11.96305468}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.253223943}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.253223943}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.253223943}, {"name": "Antimony ion", "categories": ["soil"], "amount": 1.253223943}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9.97088385}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 9.97088385}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 9.97088385}, {"name": "Barium II", "categories": ["soil"], "amount": 9.97088385}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3624.728815}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3624.728815}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3624.728815}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3624.728815}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 166.8079461}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 166.8079461}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 166.8079461}, {"name": "Cadmium II", "categories": ["soil"], "amount": 166.8079461}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 6302.861689}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6302.861689}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6302.861689}, {"name": "Chromium III", "categories": ["soil"], "amount": 6302.861689}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 6302.861689}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6302.861689}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6302.861689}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6302.861689}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 223.0091107}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 223.0091107}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 223.0091107}, {"name": "Cobalt II", "categories": ["soil"], "amount": 223.0091107}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 14.35989027}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 14.35989027}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 14.35989027}, {"name": "Copper ion", "categories": ["soil"], "amount": 14.35989027}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.095958223}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 32.51821421}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 32.51821421}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 32.51821421}, {"name": "Lead II", "categories": ["soil"], "amount": 32.51821421}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 55994.13828}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 55994.13828}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 55994.13828}, {"name": "Mercury II", "categories": ["soil"], "amount": 55994.13828}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 36.14502748}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 36.14502748}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 36.14502748}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 36.14502748}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 238.5519273}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 238.5519274}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 238.5519274}, {"name": "Nickel II", "categories": ["soil"], "amount": 238.5519274}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 109.6792964}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 109.6792964}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 109.6792964}, {"name": "Selenium IV", "categories": ["soil"], "amount": 109.6792964}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 698.4945098}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 698.4945098}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 698.4945098}, {"name": "Thallium I", "categories": ["soil"], "amount": 698.4945098}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 29.80836303}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 29.80836303}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 29.80836303}, {"name": "Tin ion", "categories": ["soil"], "amount": 29.80836303}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1367.124462}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1367.124462}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1367.124462}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1367.124462}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 24.58896916}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 24.58896916}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 24.58896916}, {"name": "Zinc II", "categories": ["soil"], "amount": 24.58896916}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 0.002117132}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 0.002117132}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.000814222}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.002117132}, {"name": "Acenaphthylene", "categories": ["water", "ground-, long-term"], "amount": 0.002117132}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 0.000814222}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 0.002117132}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.003851263}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.00011682}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.003851263}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.003851263}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 1.65527e-20}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 1.65527e-20}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 2.95793e-20}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1.65527e-20}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.65527e-20}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 5.08404e-19}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 5.08404e-19}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 6.61473e-19}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 5.08404e-19}, {"name": "Barium II", "categories": ["water"], "amount": 5.08404e-19}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.37489e-05}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 1.37489e-05}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.71474e-06}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.37489e-05}, {"name": "Benzene", "categories": ["water"], "amount": 1.37489e-05}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.000716486}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000410059}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.000716486}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.000716486}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1.18734e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 1.18734e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.03112e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1.18734e-06}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 1.18734e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.29791e-16}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 3.29791e-16}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.92755e-16}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.29791e-16}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.29791e-16}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.41506e-20}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.12511e-19}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.41506e-20}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.41506e-20}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.004805763}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.004805763}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.001022648}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.004805763}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.004805763}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.92432e-05}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 3.92432e-05}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.91233e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.92432e-05}, {"name": "Chloroform", "categories": ["water"], "amount": 3.92432e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.27196e-19}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 2.27196e-19}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 2.04903e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.27196e-19}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.27196e-19}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 2.27196e-19}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.04903e-18}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.27196e-19}, {"name": "Chromium III", "categories": ["water"], "amount": 2.27196e-19}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.69481e-18}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 2.69481e-18}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 4.91636e-18}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.69481e-18}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.69481e-18}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 4.0632e-21}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.47671e-20}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 4.0632e-21}, {"name": "Copper ion", "categories": ["water"], "amount": 4.0632e-21}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.000175355}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.000175355}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.000104507}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.000175355}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.000175355}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.62095e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 2.62095e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.02926e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.62095e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 2.62095e-05}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 1.12337e-12}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 1.12337e-12}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.93462e-14}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 1.12337e-12}, {"name": "Ethylene", "categories": ["water"], "amount": 1.12337e-12}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.56142e-07}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 2.56142e-07}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.30672e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.56142e-07}, {"name": "Chloroethylene", "categories": ["water"], "amount": 2.56142e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.007943515}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.007943515}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.004009301}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.007943515}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.007943515}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.59242e-06}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 4.59242e-06}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.94708e-06}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.59242e-06}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 4.59242e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.001757229}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.001757229}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 9.6932e-05}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.001757229}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.001757229}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.001560067}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.001560067}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.42154e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.001560067}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.001560067}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.77422e-22}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 4.77422e-22}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 4.56635e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.77422e-22}, {"name": "Lead II", "categories": ["water"], "amount": 4.77422e-22}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 930.3282657}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 930.3282657}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7642.71941}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 930.3282657}, {"name": "Mercury II", "categories": ["water"], "amount": 930.3282657}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 3.8969e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 3.8969e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 6.45675e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 3.8969e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 3.8969e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000467436}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.000467436}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000358658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000467436}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000467436}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.31009e-18}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.31009e-18}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.89143e-18}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.31009e-18}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.31009e-18}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 5.98822e-07}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 5.98822e-07}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 1.0799e-07}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 5.98822e-07}, {"name": "m-Xylene", "categories": ["water"], "amount": 5.98822e-07}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 1.02958e-18}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.60828e-18}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.02958e-18}, {"name": "Nickel II", "categories": ["water"], "amount": 1.02958e-18}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.16564e-06}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.16564e-06}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 2.06792e-07}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.16564e-06}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.16564e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 0.002117132}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 0.002117132}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.000814222}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.002117132}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 2.48776e-06}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 2.48776e-06}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 3.78042e-08}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 2.48776e-06}, {"name": "Phenol", "categories": ["water"], "amount": 2.48776e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 6.56524e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 1.0451e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 6.56524e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 6.56524e-06}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.26928e-05}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.05932e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.26928e-05}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.26928e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.00036558}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 4.74435e-06}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.00036558}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.00036558}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.30169e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 8.82537e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.30169e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.30169e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.000647466}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.000647466}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.80926e-05}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.000647466}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.000647466}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.55254e-17}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 1.55254e-17}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.75745e-17}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.55254e-17}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.55254e-17}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.26503e-07}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 1.26503e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.71653e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.26503e-07}, {"name": "Styrene", "categories": ["water"], "amount": 1.26503e-07}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.13184e-17}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 3.13184e-17}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.18247e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.13184e-17}, {"name": "Thallium I", "categories": ["water"], "amount": 3.13184e-17}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 7.86268e-22}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 7.24832e-21}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 7.86268e-22}, {"name": "Tin ion", "categories": ["water"], "amount": 7.86268e-22}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.41614e-05}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 1.41614e-05}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.8729e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.41614e-05}, {"name": "Toluene", "categories": ["water"], "amount": 1.41614e-05}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 1.02117e-17}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 2.16377e-17}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.02117e-17}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.02117e-17}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 2.5338e-21}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.94558e-20}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.5338e-21}, {"name": "Zinc II", "categories": ["water"], "amount": 2.5338e-21}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.253138655}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.126483729}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.44037674}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.596861512}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.016707204}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 89744.2628}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.663267175}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.063006827}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 80.85467582}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.689752657}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.984006513}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.046591303}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.112568797}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8917.249644}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.02958e-18}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 6.277859761}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 2.489601068}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 105.652796}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1.314098078}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 89744.2628}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 1.019197865}, {"name": "Anthracene", "categories": ["air"], "amount": 0.03165522}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.230183862}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 1.019197865}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 0.203597118}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 29.73408185}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.019197865}, {"name": "Fluorene", "categories": ["air"], "amount": 1.019197865}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.802815412}, {"name": "Phenanthrene", "categories": ["air"], "amount": 0.00013547}, {"name": "Pyrene", "categories": ["air"], "amount": 1.019197865}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4.794461775}, {"name": "Permethrin", "categories": ["water"], "amount": 0.390269878}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8917.249644}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 0.000434591}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.206463693}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 0.004935323}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 6.19698e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.000491331}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.019730523}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.013964808}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.002531442}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.019730523}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 0.019730523}, {"name": "Anthracene", "categories": ["water"], "amount": 0.019730523}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.004031554}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-, long-term"], "amount": 0.206463693}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.206463693}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.206463693}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.087717724}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 6.19698e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 6.19698e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-, long-term"], "amount": 6.19698e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 4.06739e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008002759}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.008002759}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.008002759}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008002759}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.008002759}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 587.3381951}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 587.3381951}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 587.3381951}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 587.3381951}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 830.0602948}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.002117132}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.002531442}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.24704e-11}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.24704e-11}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 0.000762269}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 0.000762269}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.58839e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.58839e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 0.000213114}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.35214e-11}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.35214e-11}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.042760823}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 0.00216456}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000680873}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.001418673}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 6.07759e-12}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 6.07759e-12}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.83073e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.83073e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 26909.24466}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 26909.24466}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26972.99909}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 26909.24466}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 4.72388e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 0.225852834}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 89744.2628}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 634.332364}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 200.3452311}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 83.00538627}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 16.02197304}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.168548893}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 86.81610585}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 29.8896806}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.807119009}, {"name": "Glyphosate", "categories": ["water"], "amount": 2.24704e-11}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.258001228}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.038407254}, {"name": "Acrolein", "categories": ["water"], "amount": 5.837651345}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 0.031755535}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 0.764819509}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 0.303757155}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.22042e-05}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 0.01347489}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.764819509}, {"name": "Thiram", "categories": ["air"], "amount": 31.57040007}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.303757155}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 0.092878258}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 0.002660134}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.312798883}, {"name": "Triallate", "categories": ["air"], "amount": 0.006883873}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 0.006883873}, {"name": "Ethylene", "categories": ["air"], "amount": 1.34791e-12}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.000819184}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 6.04813e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.008369001}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.018210122}, {"name": "Chrysene", "categories": ["air"], "amount": 0.215190847}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 15.77051225}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 3335.673763}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 3335.673763}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 3335.673763}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3335.673763}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.0385e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.0385e-17}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.96079e-17}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.0385e-17}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.0385e-17}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 8917.249644}, {"name": "Bifenthrin", "categories": ["air"], "amount": 8.78153598}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.02102326}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 83.15047122}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.78153598}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.02102326}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 15.78326675}, {"name": "Cypermethrin", "categories": ["water"], "amount": 15.78326675}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 77600.1715}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 15.78326675}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 77600.1715}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8917.249644}, {"name": "Carbendazim", "categories": ["air"], "amount": 19.81889052}, {"name": "Diuron", "categories": ["air"], "amount": 8.735349275}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 0.007067536}, {"name": "Simazine", "categories": ["air"], "amount": 8.762236893}, {"name": "2,4-D", "categories": ["water"], "amount": 9.25695e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.096478878}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 9.25695e-10}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 20.66324254}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 0.00100887}, {"name": "Simazine", "categories": ["water"], "amount": 0.00100887}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.762236893}, {"name": "Carbendazim", "categories": ["water"], "amount": 6.2678e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 37.59722245}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.81889052}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6.2678e-08}, {"name": "Acephate", "categories": ["water"], "amount": 2.18433e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.320086974}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.18433e-08}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 0.005462096}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 0.005462096}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.612724082}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007067536}, {"name": "Diuron", "categories": ["water"], "amount": 0.001676646}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 18.56576338}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.735349275}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.57040007}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 34.34774662}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 81.23108427}, {"name": "Trifluralin", "categories": ["water"], "amount": 0.01347489}, {"name": "Thiram", "categories": ["water"], "amount": 0.092878258}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.021307616}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 16.98380089}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.095958223}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 0.413157136}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 222.8364451}, {"name": "Metolachlor", "categories": ["water"], "amount": 0.000213114}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 4.443547838}, {"name": "Methomyl", "categories": ["water"], "amount": 0.00216456}, {"name": "Atrazine", "categories": ["water"], "amount": 0.000762269}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 31.57040007}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.021307616}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 0.00216456}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 118.9485519}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 0.000213114}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.537701937}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 16.68693885}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.000515628}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.000515628}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.000239843}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.000515628}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.000515628}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.144899733}]}, {"unit": "megajoule", "name": ["CML v4.8 2016", "energy resources: non-renewable", "abiotic depletion potential (ADP): fossil fuels"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}]}, {"unit": "kg PO4-Eq", "name": ["CML v4.8 2016", "eutrophication", "eutrophication (fate not incl.)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.35}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.022}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.1}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.42}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 0.97}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 3.06}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.35}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35}, {"name": "Ammonia", "categories": ["air"], "amount": 0.35}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.1}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Nitrate", "categories": ["air"], "amount": 0.1}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.97}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 0.97}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.97}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 0.97}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["air", "low population density, long-term"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["air"], "amount": 3.06}, {"name": "Nitrogen", "categories": ["soil", "forestry"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["soil", "industrial"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["soil"], "amount": 0.42}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil"], "amount": 3.06}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.33}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.33}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Ammonium", "categories": ["water"], "amount": 0.33}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-, long-term"], "amount": 0.022}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 0.022}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.022}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 0.022}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.1}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.1}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.1}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.1}, {"name": "Nitrate", "categories": ["water"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water"], "amount": 0.1}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.42}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 1}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphate", "categories": ["water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["water"], "amount": 3.06}, {"name": "Nitrate", "categories": ["soil"], "amount": 0.1}, {"name": "Nitrogen", "categories": ["air"], "amount": 0.42}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.2}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.97}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 1}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.1}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 0.35}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.27}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.27}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.13}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.13}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.13}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.1}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["CML v4.8 2016", "human toxicity", "human toxicity (HTP inf)"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 46.95248552}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 572399.6238}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 280468.7123}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 21.6158398}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 56.90600399}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 7065.337009}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 506.5604567}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4669.038981}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 6707.542439}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 21.29570277}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 38.96120538}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 756.4636536}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.428415284}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 15.08444889}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1899.909223}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.101492617}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.973210461}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 3157103.03}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 409.4755204}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 226630.8493}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 28.59462036}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2224.391497}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 145040.5399}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 22.89077835}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.097484578}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 20.96550871}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 141.1897573}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1423.264744}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.41434511}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 2.176965739}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 12.66010972}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.940444523}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 646.8397982}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3425330.245}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.0522661}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 17470.22468}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 4295.027793}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.339256586}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 24.45949255}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 5203.22925}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 0.159576856}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 117.0824573}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 317.7014202}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 561.75174}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1933982792}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 168.3598988}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1269.59515}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 276.4234481}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 0.263478527}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 16.44430059}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 6.807735251}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.636745223}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 84.3427304}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.528467685}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 34.40934674}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 5675.883451}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 14074.62877}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 71.68935956}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 87.9434291}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.830667251}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.014873106}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 2850.61598}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 0.22}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 960.5245308}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 466.517307}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 488.9721488}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 168.9280705}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.025679269}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 104.2537922}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 743.5060416}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 743.5060416}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6008.157802}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 6.462060062}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 49.07942564}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 50.83126765}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 350.9998319}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.975109844}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 220.43152129999999}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 43.32398112}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 5426.282198}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.02714893}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 35032.83874}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 10.09682066}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 611.4515635}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.12474733}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 572399.6238}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.915905394}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 11.33104861}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.518172944}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 95.31928284}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 5.079340246}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.086137019}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.536966302}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 7.153902703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 6.341172176}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 26.08302291}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1262.37464}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 72.47340019}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 47687.15468}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 205.5657513}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.047384819}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.096}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 432190.2296}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 7.913637413}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.734086071}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 0.017319702}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.32691844}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 32.56742982}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 124.8288183}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 6240.349576}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 3163.049164}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 104.4419271}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.583947274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 572399.6238}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 572399.6238}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 572399.6238}, {"name": "Acenaphthene", "categories": ["air"], "amount": 572399.6238}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 56.90600399}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 56.90600399}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 56.90600399}, {"name": "Acrolein", "categories": ["air"], "amount": 56.90600399}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.1}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Ammonia", "categories": ["air"], "amount": 0.1}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6707.542439}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 6707.542439}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6707.542439}, {"name": "Antimony ion", "categories": ["air"], "amount": 6707.542439}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 756.4636536}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 756.4636536}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 756.4636536}, {"name": "Barium II", "categories": ["air"], "amount": 756.4636536}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1899.909223}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1899.909223}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1899.909223}, {"name": "Benzene", "categories": ["air"], "amount": 1899.909223}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.973210461}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.973210461}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.973210461}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.973210461}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3157103.03}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 3157103.03}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3157103.03}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 3157103.03}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 409.4755204}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 409.4755204}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 409.4755204}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 409.4755204}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 226630.8493}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 226630.8493}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 226630.8493}, {"name": "Beryllium II", "categories": ["air"], "amount": 226630.8493}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2224.391497}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 2224.391497}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2224.391497}, {"name": "Butadiene", "categories": ["air"], "amount": 2224.391497}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 145040.5399}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 145040.5399}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 145040.5399}, {"name": "Cadmium II", "categories": ["air"], "amount": 145040.5399}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.41434511}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.41434511}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.41434511}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.41434511}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.66010972}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 12.66010972}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.66010972}, {"name": "Chloroform", "categories": ["air"], "amount": 12.66010972}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 646.8397982}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 646.8397982}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 646.8397982}, {"name": "Chromium III", "categories": ["air"], "amount": 646.8397982}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 3425330.245}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 3425330.245}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3425330.245}, {"name": "Chromium VI", "categories": ["air"], "amount": 3425330.245}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 17470.22468}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 17470.22468}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17470.22468}, {"name": "Cobalt II", "categories": ["air"], "amount": 17470.22468}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4295.027793}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 4295.027793}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4295.027793}, {"name": "Copper ion", "categories": ["air"], "amount": 4295.027793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1933982792}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1933982792}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1933982792}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1933982792}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.44430059}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 16.44430059}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.44430059}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 16.44430059}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.807735251}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 6.807735251}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.807735251}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 6.807735251}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.636745223}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.636745223}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.636745223}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.3427304}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 84.3427304}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84.3427304}, {"name": "Chloroethylene", "categories": ["air"], "amount": 84.3427304}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.528467685}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 5.528467685}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.528467685}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.528467685}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.40934674}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 34.40934674}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.40934674}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14074.62877}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 14074.62877}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14074.62877}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 14074.62877}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.830667251}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.830667251}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.830667251}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.830667251}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Hydrochloric acid", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 2850.61598}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 2850.61598}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2850.61598}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 2850.61598}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 0.22}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 0.22}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 466.517307}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 466.517307}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 466.517307}, {"name": "Lead II", "categories": ["air"], "amount": 466.517307}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6008.157802}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 6008.157802}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6008.157802}, {"name": "Mercury II", "categories": ["air"], "amount": 6008.157802}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 350.9998319}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 350.9998319}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 350.9998319}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 350.9998319}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.975109844}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1.975109844}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.975109844}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.975109844}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 220.43152129999999}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 220.43152129999999}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 220.43152129999999}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 220.43152129999999}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5426.282198}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 5426.282198}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5426.282198}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 5426.282198}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02714893}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.02714893}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02714893}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.02714893}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 35032.83874}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 35032.83874}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35032.83874}, {"name": "Nickel II", "categories": ["air"], "amount": 35032.83874}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12474733}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.12474733}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12474733}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.12474733}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 572399.6238}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 572399.6238}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 572399.6238}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 572399.6238}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.518172944}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.518172944}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.518172944}, {"name": "Phenol", "categories": ["air"], "amount": 0.518172944}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 95.31928284}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 95.31928284}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 95.31928284}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 95.31928284}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.079340246}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 5.079340246}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.079340246}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 5.079340246}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1262.37464}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1262.37464}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1262.37464}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1262.37464}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 47687.15468}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 47687.15468}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 47687.15468}, {"name": "Selenium IV", "categories": ["air"], "amount": 47687.15468}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.047384819}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.047384819}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.047384819}, {"name": "Styrene", "categories": ["air"], "amount": 0.047384819}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.096}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.096}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.096}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.096}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 432190.2296}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 432190.2296}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 432190.2296}, {"name": "Thallium I", "categories": ["air"], "amount": 432190.2296}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.734086071}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 1.734086071}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.734086071}, {"name": "Tin ion", "categories": ["air"], "amount": 1.734086071}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.32691844}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.32691844}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.32691844}, {"name": "Toluene", "categories": ["air"], "amount": 0.32691844}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 6240.349576}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 6240.349576}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6240.349576}, {"name": "Vanadium V", "categories": ["air"], "amount": 6240.349576}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 104.4419271}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 104.4419271}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 104.4419271}, {"name": "Zinc II", "categories": ["air"], "amount": 104.4419271}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 8886.17791}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 2634.762665}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 2634.762665}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2634.762665}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 362.7992628}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 317.9863027}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 317.9863027}, {"name": "Barium II", "categories": ["soil"], "amount": 317.9863027}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 12759.74363}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 7049.473022}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 7049.473022}, {"name": "Beryllium II", "categories": ["soil"], "amount": 7049.473022}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 19635.29994}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 66.68443569}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 66.68443569}, {"name": "Cadmium II", "categories": ["soil"], "amount": 66.68443569}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5127.707054}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 299.8393545}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 299.8393545}, {"name": "Chromium III", "categories": ["soil"], "amount": 299.8393545}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 8546.178423}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 499.7322575}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 499.7322575}, {"name": "Chromium VI", "categories": ["soil"], "amount": 499.7322575}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2385.442004}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 59.06461831}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 59.06461831}, {"name": "Cobalt II", "categories": ["soil"], "amount": 59.06461831}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 93.85679802}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.254452298}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.254452298}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.254452298}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.00064887}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3280.690192}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 293.3054054}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 293.3054054}, {"name": "Lead II", "categories": ["soil"], "amount": 293.3054054}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 5921.154138}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1080.535201}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1080.535201}, {"name": "Mercury II", "categories": ["soil"], "amount": 1080.535201}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 6168.303633}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3063.38868}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3063.38868}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3063.38868}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2678.846488}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 198.1619649}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 198.1619649}, {"name": "Nickel II", "categories": ["soil"], "amount": 198.1619649}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 28862.50761}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 28079.08675}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 28079.08675}, {"name": "Selenium IV", "categories": ["soil"], "amount": 28079.08675}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2017113.894}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 117789.0589}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 117789.0589}, {"name": "Thallium I", "categories": ["soil"], "amount": 117789.0589}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 13.138903}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.524726874}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.524726874}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.524726874}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 18500.01247}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1696.80539}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1696.80539}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1696.80539}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 63.74466425}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.422129282}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.422129282}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.422129282}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 280468.7123}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 280468.7123}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 28788.29537}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Acenaphthene", "categories": ["water"], "amount": 280468.7123}, {"name": "Acenaphthylene", "categories": ["water", "ground-, long-term"], "amount": 280468.7123}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 28788.29537}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 280468.7123}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 7065.337009}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 50.90890083}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 7065.337009}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 7065.337009}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 5141.476631}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 5141.476631}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 8635.388246}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 5141.476631}, {"name": "Antimony ion", "categories": ["water"], "amount": 5141.476631}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 630.48373}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 630.48373}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 804.5390233}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 630.48373}, {"name": "Barium II", "categories": ["water"], "amount": 630.48373}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1830.884085}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 1830.884085}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 209.8918122}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1830.884085}, {"name": "Benzene", "categories": ["water"], "amount": 1830.884085}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 9.101492617}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.164478016}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.101492617}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 9.101492617}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.826606711}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.826606711}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.070199334}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.826606711}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.826606711}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 13974.73411}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 13974.73411}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 16171.15242}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 13974.73411}, {"name": "Beryllium II", "categories": ["water"], "amount": 13974.73411}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 22.89077835}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 103.9128177}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 22.89077835}, {"name": "Cadmium II", "categories": ["water"], "amount": 22.89077835}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.430394716}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 2.430394716}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.48164415}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.430394716}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.430394716}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 12.5243439}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 12.5243439}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 6.015220004}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 12.5243439}, {"name": "Chloroform", "categories": ["water"], "amount": 12.5243439}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.4204435}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 3.4204435}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 16.73299543}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.4204435}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.4204435}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 2.0522661}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 10.03979726}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.0522661}, {"name": "Chromium III", "categories": ["water"], "amount": 2.0522661}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 96.70201437}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 96.70201437}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 60.45069603}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 96.70201437}, {"name": "Cobalt II", "categories": ["water"], "amount": 96.70201437}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1.339256586}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 5.905060312}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.339256586}, {"name": "Copper ion", "categories": ["water"], "amount": 1.339256586}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 16.24329096}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 16.24329096}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 9.64873939}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 16.24329096}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 16.24329096}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 27.8696181}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 27.8696181}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 5.451970744}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 27.8696181}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 27.8696181}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 0.654052646}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 0.654052646}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 0.047072421}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 0.654052646}, {"name": "Ethylene", "categories": ["water"], "amount": 0.654052646}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 144.6682248}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 144.6682248}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 42.60548615}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 144.6682248}, {"name": "Chloroethylene", "categories": ["water"], "amount": 144.6682248}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.721910837}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 5.721910837}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 2.752523179}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.721910837}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 5.721910837}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 33.45953481}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 33.45953481}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 14.11827287}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 33.45953481}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 33.45953481}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 11426.26443}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 11426.26443}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 541.085742}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 11426.26443}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 11426.26443}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.037052116}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.037052116}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.8154e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.037052116}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.037052116}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 12.25950173}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 12.25950173}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 78.76428612}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 12.25950173}, {"name": "Lead II", "categories": ["water"], "amount": 12.25950173}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1425.959363}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 1425.959363}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 8195.224968}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1425.959363}, {"name": "Mercury II", "categories": ["water"], "amount": 1425.959363}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.839853574}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 1.839853574}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.298493641}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.839853574}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.839853574}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 219.692705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 219.692705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 167.828564}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 219.692705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 219.692705}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 5513.681367}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 5513.681367}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6788.946972}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 5513.681367}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5513.681367}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.336783791}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.336783791}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.010334512}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.336783791}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.336783791}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 331.0802679}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 746.665693}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 331.0802679}, {"name": "Nickel II", "categories": ["water"], "amount": 331.0802679}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.424561724}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.424561724}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.025771414}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.424561724}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.424561724}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 280468.7123}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 280468.7123}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 28788.29537}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 280468.7123}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.049158431}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.049158431}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 7.95894e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.049158431}, {"name": "Phenol", "categories": ["water"], "amount": 0.049158431}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.086137019}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.000851871}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.086137019}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.086137019}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 0.536966302}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.003009561}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.536966302}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.536966302}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 7.153902703}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.008385921}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 7.153902703}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 7.153902703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 6.341172176}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.28519923}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 6.341172176}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 6.341172176}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 2642.980524}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 2642.980524}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 15.84498715}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 2642.980524}, {"name": "Propylene oxide", "categories": ["water"], "amount": 2642.980524}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 56010.94407}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 56010.94407}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 62917.77073}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 56010.94407}, {"name": "Selenium IV", "categories": ["water"], "amount": 56010.94407}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.085066175}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.085066175}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.010186849}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.085066175}, {"name": "Styrene", "categories": ["water"], "amount": 0.085066175}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 225123.8713}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 225123.8713}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 294343.489}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 225123.8713}, {"name": "Thallium I", "categories": ["water"], "amount": 225123.8713}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 0.017319702}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 0.105182287}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 0.017319702}, {"name": "Tin ion", "categories": ["water"], "amount": 0.017319702}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.302760499}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.302760499}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.038517634}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.302760499}, {"name": "Toluene", "categories": ["water"], "amount": 0.302760499}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 3163.049164}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 6233.917231}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 3163.049164}, {"name": "Vanadium V", "categories": ["water"], "amount": 3163.049164}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.583947274}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.19999566}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.583947274}, {"name": "Zinc II", "categories": ["water"], "amount": 0.583947274}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.136013664}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.18145336}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.850360928}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.638457455}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.738320271}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 5203.22925}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.7389661}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.210621665}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 23.56553774}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.057595997}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.450871169}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003098997}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.577086947}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 166.431544}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 331.0802679}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 2734.917543}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 15.27470602}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 12.7781966}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1223.050434}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 5203.22925}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 572399.6238}, {"name": "Anthracene", "categories": ["air"], "amount": 0.520422664}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 572399.6238}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 572399.6238}, {"name": "Fluorene", "categories": ["air"], "amount": 572399.6238}, {"name": "Pyrene", "categories": ["air"], "amount": 572399.6238}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.039195746}, {"name": "Permethrin", "categories": ["water"], "amount": 22.54924968}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 166.431544}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 5.553238233}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.05711587}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.05711587}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 2.05711587}, {"name": "Anthracene", "categories": ["water"], "amount": 2.05711587}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.156677578}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3351.180314}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 3351.180314}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3351.180314}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3351.180314}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3351.180314}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 858267345.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 858267345.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 858267345.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 858267345.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 422342786.9}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 280468.7123}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.066237718}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.066237718}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 4.555788198}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 4.555788198}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 4.694817632}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 4.694817632}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 0.554356861}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 15.13770331}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 15.13770331}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.65427582}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.269386885}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.124918372}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 4.524656751}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 23.95944151}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 23.95944151}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.733209571}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.733209571}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 10123779.93}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 10123779.93}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1299184496}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 10123779.93}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 34.40934674}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 0.080087751}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 5203.22925}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 278.774953}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 0.968191034}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 12.00018312}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 3.380127333}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 413.0108847}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.717284771}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 51.45627099}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.149323301}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.066237718}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 5649677.483}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1198.715728}, {"name": "Acrolein", "categories": ["water"], "amount": 58.59259586}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 2.845330678}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 1.617587491}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 43.54358934}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 18.01470286}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 97.04684555}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1.617587491}, {"name": "Thiram", "categories": ["air"], "amount": 18.91443696}, {"name": "Dimethoate", "categories": ["air"], "amount": 43.54358934}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.310226295}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 83.44656586}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.753387639}, {"name": "Triallate", "categories": ["air"], "amount": 9.689976174}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 9.689976174}, {"name": "Ethylene", "categories": ["air"], "amount": 0.636745223}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.111306559}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 0.5}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 20.37430754}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["air"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 31813.03016}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1020.374027}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1020.374027}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1020.374027}, {"name": "Arsenic ion", "categories": ["water"], "amount": 950.6167656}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 950.6167656}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2397.031702}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 950.6167656}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 950.6167656}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 166.431544}, {"name": "Bifenthrin", "categories": ["air"], "amount": 19.42076798}, {"name": "Bifenthrin", "categories": ["water"], "amount": 98.18592011}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 0.297107111}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.42076798}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 98.18592011}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 5.548800031}, {"name": "Cypermethrin", "categories": ["water"], "amount": 5.548800031}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84613789}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.548800031}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84613789}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 166.431544}, {"name": "Carbendazim", "categories": ["air"], "amount": 19.23469038}, {"name": "Diuron", "categories": ["air"], "amount": 214.2614033}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 8.390622577}, {"name": "Simazine", "categories": ["air"], "amount": 33.32637426}, {"name": "2,4-D", "categories": ["water"], "amount": 3.466807207}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.721599071}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.466807207}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.193224878}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 9.736157846}, {"name": "Simazine", "categories": ["water"], "amount": 9.736157846}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.32637426}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.50851113}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 0.431865359}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.23469038}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.50851113}, {"name": "Acephate", "categories": ["water"], "amount": 2.111216706}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.306684008}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.111216706}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.68939329}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 6.68939329}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.998669009}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.390622577}, {"name": "Diuron", "categories": ["water"], "amount": 53.10208373}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 7.235435534}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 214.2614033}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 18.91443696}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.68248084}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.252862858}, {"name": "Trifluralin", "categories": ["water"], "amount": 97.04684555}, {"name": "Thiram", "categories": ["water"], "amount": 3.310226295}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 44.34622685}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 0.139274158}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.00064887}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 0.109797211}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 0.693002197}, {"name": "Metolachlor", "categories": ["water"], "amount": 0.554356861}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 0.875981568}, {"name": "Methomyl", "categories": ["water"], "amount": 3.269386885}, {"name": "Atrazine", "categories": ["water"], "amount": 4.555788198}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 18.91443696}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 44.34622685}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.269386885}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.158518232}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 0.554356861}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 11.44844615}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 14.45331682}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 8.854417106}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 8.854417106}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 4.093422131}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 8.854417106}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 8.854417106}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.2}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.2}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.2}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 1.838961201}]}, {"unit": "kg Sb-Eq", "name": ["CML v4.8 2016", "material resources: metals/minerals", "abiotic depletion potential (ADP): elements (ultimate reserves)"], "exchanges": [{"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.156577463}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.000442708}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 1.45748e-07}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 0.006888901}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24473e-08}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.006338267}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.14656e-05}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 2.02016e-09}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.53988e-06}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.51553e-06}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.51553e-06}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.603394795}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.000192838}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.05816e-05}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.66356227}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.016229792}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.671456e-08}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.671456e-08}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.000538067}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.44494e-06}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.671456e-08}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24473e-08}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.006338267}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538067}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.006338267}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538067}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.56882e-05}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.000538067}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.006338267}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 6.04204e-06}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.156577463}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.53988e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.092226828}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 1.59761e-08}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 5.51553e-06}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 5.50238e-08}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 7.70121e-07}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.002974487}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 1.25902e-05}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.041076119}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.004271652}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 6.52264e-07}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 0.006888901}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.14656e-05}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 2.02016e-09}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.9348e-05}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 0.603394795}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 0.194094965}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1.40205e-11}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 4.05816e-05}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 40.66356227}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.42912e-05}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 0.004518138}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 5.69217e-07}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.56882e-05}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 0.001398204}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 1.45748e-07}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.09433e-09}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 7.07133e-07}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.24473e-08}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.000442708}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 2.78576e-08}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 5.44494e-06}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2.216820008}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 0.5706016}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 2.02016e-09}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.016229792}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 0.024965696}, {"name": "Bromine", "categories": ["natural resource", "in water"], "amount": 0.004392025}, {"name": "Bromine, 0.23% in water", "categories": ["natural resource", "in water"], "amount": 0.004392025}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 0.024965696}]}, {"unit": "kg CFC-11-Eq", "name": ["CML v4.8 2016", "ozone depletion", "ozone layer depletion (ODP steady state)"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.38}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.38}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 12}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.94}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.94}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg ethylene-Eq", "name": ["CML v4.8 2016", "photochemical oxidant formation", "photochemical oxidation (high NOx)"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.977}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.42}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.36}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.842}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.188}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.433}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.641}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.097}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.094}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.092}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.218}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.851}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.352}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.62}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.027}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.027}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.023}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.445}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.123}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.009}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.399}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.325}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.209}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.386}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.085}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.519}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.032}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.494}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.482}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.092}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.068}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.005}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.14}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.373}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.027}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.108}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.053}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.395}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.798}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.176}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.561}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.123}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.142}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.048}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.175}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.637}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.977}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.977}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.977}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.977}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.42}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.42}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.42}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.42}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.36}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.36}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.36}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.36}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.842}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.842}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.842}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.842}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.188}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.188}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.188}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.433}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.433}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.433}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.433}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.49}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.49}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.641}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.641}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.641}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.641}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.097}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.097}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.097}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.097}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.094}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.094}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.094}, {"name": "Acetone", "categories": ["air"], "amount": 0.094}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.092}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": -0.092}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.092}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.092}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.218}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.218}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.218}, {"name": "Benzene", "categories": ["air"], "amount": 0.218}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.73}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.73}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.851}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.851}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.851}, {"name": "Butadiene", "categories": ["air"], "amount": 0.851}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.352}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.352}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.352}, {"name": "Butane", "categories": ["air"], "amount": 0.352}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.62}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.62}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.62}, {"name": "Butanol", "categories": ["air"], "amount": 0.62}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.027}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.027}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.027}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.027}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.023}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.023}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.023}, {"name": "Chloroform", "categories": ["air"], "amount": 0.023}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Cumene", "categories": ["air"], "amount": 0.5}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.29}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.29}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.445}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.445}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.445}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.445}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.123}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.123}, {"name": "Ethane", "categories": ["air"], "amount": 0.123}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.009}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.009}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.009}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.009}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.399}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.399}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.399}, {"name": "Ethanol", "categories": ["air"], "amount": 0.399}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.029}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.029}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.325}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.325}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.325}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.209}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.209}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.209}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.209}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.386}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.386}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.386}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.386}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.085}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.085}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.085}, {"name": "Ethyne", "categories": ["air"], "amount": 0.085}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.519}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.519}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.519}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.519}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.032}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.032}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.032}, {"name": "Formic acid", "categories": ["air"], "amount": 0.032}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.494}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 0.494}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.494}, {"name": "Heptane", "categories": ["air"], "amount": 0.494}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.482}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.482}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.482}, {"name": "Hexane", "categories": ["air"], "amount": 0.482}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.092}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.092}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.092}, {"name": "Isoprene", "categories": ["air"], "amount": 1.092}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.006}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.068}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.068}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.006}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.005}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.005}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.005}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.005}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.14}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14}, {"name": "Methanol", "categories": ["air"], "amount": 0.14}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.059}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.373}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.373}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.373}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.373}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.027}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.027}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.108}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.108}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.108}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.108}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.053}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.053}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.053}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.053}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.395}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.395}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.395}, {"name": "Pentane", "categories": ["air"], "amount": 0.395}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.798}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.798}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.798}, {"name": "Propanal", "categories": ["air"], "amount": 0.798}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.176}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.176}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.176}, {"name": "Propane", "categories": ["air"], "amount": 0.176}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.561}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.561}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.561}, {"name": "Propanol", "categories": ["air"], "amount": 0.561}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.123}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 1.123}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.123}, {"name": "Propene", "categories": ["air"], "amount": 1.123}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.15}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.15}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.15}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.15}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.142}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.142}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.142}, {"name": "Styrene", "categories": ["air"], "amount": 0.142}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.048}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.048}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.048}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.048}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.175}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.175}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.175}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.175}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.637}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.637}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.637}, {"name": "Toluene", "categories": ["air"], "amount": 0.637}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.027}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.027}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.006}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.027}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.269}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.269}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.269}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.269}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.189}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.189}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.189}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.189}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.325}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.025}, {"name": "Nitric oxide", "categories": ["air"], "amount": -0.427}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.307}, {"name": "Ethylene", "categories": ["air"], "amount": 1}, {"name": "Butene", "categories": ["air"], "amount": 1.079}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.079}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 1.079}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.079}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 1.079}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.028}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.028}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.028}]}, {"unit": "kg Si-Eq", "name": ["Crustal Scarcity Indicator 2020", "material resources: metals/minerals", "crustal scarcity potential (CSP)"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.4}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 170}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 460}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 1.5}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 2900}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 3500000}, {"name": "Calcite", "categories": ["natural resource", "in ground"], "amount": 19}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6600}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 2.8}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 8100000}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 1.4}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.82}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 170}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 180}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 4100}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.47}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 21}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 260000}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 2.5}, {"name": "Fluorspar, 92%", "categories": ["natural resource", "in ground"], "amount": 250}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 76000}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 18000}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Granite", "categories": ["natural resource", "in ground"], "amount": 2.4}, {"name": "Gravel", "categories": ["natural resource", "in ground"], "amount": 2.8}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 130}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 5400000}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.4}, {"name": "Kaolinite, 24% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.82}, {"name": "Kieserite, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 160}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 14000}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 18000}, {"name": "Magnesite, 60% in crude ore", "categories": ["natural resource", "in ground"], "amount": 23}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 370}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 140}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 14000}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 4800}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 4800}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4800}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4800}, {"name": "Olivine", "categories": ["natural resource", "in ground"], "amount": 3.5}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 190000000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 190000000}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 1.7}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 650}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 650}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5800}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 190000000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 190000000}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 380}, {"name": "Pyrolusite", "categories": ["natural resource", "in ground"], "amount": 230}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 4700000000}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 4700000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1500000000}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 74000}, {"name": "Sand, unspecified", "categories": ["natural resource", "in ground"], "amount": 2.1}, {"name": "Shale", "categories": ["natural resource", "in ground"], "amount": 0.82}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 730}, {"name": "Sodium nitrate", "categories": ["natural resource", "in ground"], "amount": 840}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 160}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 670}, {"name": "Stibnite", "categories": ["natural resource", "in ground"], "amount": 1000000}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 700}, {"name": "Sylvite, 25 % in sylvinite", "categories": ["natural resource", "in ground"], "amount": 580}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 2.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 400000}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 57000000}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 170000}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.2}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.2}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 3500}, {"name": "Vermiculite", "categories": ["natural resource", "in ground"], "amount": 2.2}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 3900}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 1600}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.2}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.4}, {"name": "Steatite", "categories": ["natural resource", "in ground"], "amount": 2.2}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3900}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3900}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4800}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 11000}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 190000000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 190000000}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4700000000}, {"name": "Laterite", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 3900}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 620}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 3500000}, {"name": "Calcium", "categories": ["natural resource", "in ground"], "amount": 6.2}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 370}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 9400000}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 19}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 650}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 12}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 2000}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1400000}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 110000}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 150000}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 1600000}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 6600}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 79000}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 130000}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 260000}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 510}, {"name": "Fluorspar", "categories": ["natural resource", "in ground"], "amount": 250}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 76000}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 22000}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 76000}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 370000}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 5400000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 7600000000}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 0.82}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 14000}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 160}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 18000}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 940000}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 23}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 14000}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 35000}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 6900000000}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 5800}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 1500000000}, {"name": "Rubidium", "categories": ["natural resource", "in ground"], "amount": 5800}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 470000000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 74000}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 13000}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 2200000}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 580}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 400000}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 57000000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 470000}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 570000}, {"name": "Thorium", "categories": ["natural resource", "in ground"], "amount": 51000}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 280000}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 1000000}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 150000}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 15000}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 11000}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 220000}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 18000}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 3.4}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 880}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.4}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 67}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 190000000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 190000000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 4700000000}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 4800}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 10}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 170000}, {"name": "Gangue", "categories": ["natural resource", "in ground"], "amount": 2.8}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 140000}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 510}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 510}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 200}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: non-renewable", "energy content (HHV)"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.9}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 19.1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.9}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 46}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: non-renewable, biomass", "energy content (HHV)"], "exchanges": [{"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: non-renewable, fossil", "energy content (HHV)"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.9}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 19.1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.9}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 46}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: non-renewable, nuclear", "energy content (HHV)"], "exchanges": [{"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: renewable", "energy content (HHV)"], "exchanges": [{"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: renewable, biomass", "energy content (HHV)"], "exchanges": [{"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: renewable, geothermal", "energy content (HHV)"], "exchanges": [{"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: renewable, geothermal, solar, wind", "energy content (HHV)"], "exchanges": [{"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: renewable, solar", "energy content (HHV)"], "exchanges": [{"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: renewable, water", "energy content (HHV)"], "exchanges": [{"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: renewable, wind", "energy content (HHV)"], "exchanges": [{"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "total", "energy content (HHV)"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.9}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 19.1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.9}, {"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 46}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: non-renewable", "exergy content"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 10.3}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 19.7}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 10.3}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 1.05}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 37.6}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 37.6}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 46.7}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: non-renewable, biomass", "exergy content"], "exchanges": [{"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 1.05}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: non-renewable, fossil", "exergy content"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 10.3}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 19.7}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 10.3}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 37.6}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 37.6}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 46.7}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: non-renewable, nuclear", "exergy content"], "exchanges": [{"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: renewable", "exergy content"], "exchanges": [{"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 0.93}, {"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 1.05}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: renewable, biomass", "exergy content"], "exchanges": [{"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 1.05}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: renewable, solar", "exergy content"], "exchanges": [{"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 0.93}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: renewable, water", "exergy content"], "exchanges": [{"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: renewable, wind", "exergy content"], "exchanges": [{"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "material resources", "exergy content"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.73}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 0.06}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.2}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.28}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 8.58}, {"name": "Calcite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26.25}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.43}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.059}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.57}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 196.14}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 232.3}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 101.24}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 153.21}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26.84}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 142.79}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 73.15}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 33.49}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 5.77}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 21.73}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 0.082}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10500}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Fluorspar, 92%", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4200}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 4500}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 346070}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 481690}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 450000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 294940}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 146510}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1285700}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 94030}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 88732}, {"name": "Granite", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Gravel", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.045}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 2769.1}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Kaolinite, 24% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.63}, {"name": "Kieserite, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 87.5}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 4.29}, {"name": "Magnesite, 60% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.05}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 1.09}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 209.05}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 456.47}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1222.4}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1447.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 955.25}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 890.39}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 638.61}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 12.05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 45.4}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 56.06}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 60.58}, {"name": "Olivine", "categories": ["natural resource", "in ground"], "amount": 0.78}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 48902}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 12974}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.6}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.25}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 15.75}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 25144}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 94774}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.6}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 11.91}, {"name": "Pyrolusite", "categories": ["natural resource", "in ground"], "amount": 0.31}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 54365}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 204920}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 16205}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Sand, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Shale", "categories": ["natural resource", "in ground"], "amount": 0.57}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 961.16}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6300}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 10256}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5059.2}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5936.2}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 8262.7}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 0.25}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 0.35}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 19.01}, {"name": "Sylvite, 25 % in sylvinite", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.039}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 393750}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 278.32}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 630}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 24.23}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Vermiculite", "categories": ["natural resource", "in ground"], "amount": 0.039}, {"name": "Water, cooling, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, lake", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, river", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, well, in ground", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 6.79}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 161.54}, {"name": "Water, in air", "categories": ["natural resource", "in air"], "amount": 50}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 24.23}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 7.04}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 58070}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 16.66}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 996.09}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 16.66}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 996.09}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 4.2}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 8.58}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 15.75}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 26.25}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 10500}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 21}, {"name": "Fluorspar", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 4200}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 638.61}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 2769.1}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.63}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 87.5}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 1.05}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 16205}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 393750}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 278.32}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 192.5}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 4500}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 5.73}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 5.43}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 161.54}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 94774}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 12974}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 204920}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 60.58}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 58070}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 21.73}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 630}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 21}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 63}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "material resources: metals", "exergy content"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.73}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 8.58}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26.25}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.43}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 196.14}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 232.3}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 101.24}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 153.21}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26.84}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 142.79}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 73.15}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 33.49}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 5.77}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 21.73}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10500}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4200}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 4500}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 346070}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 481690}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 450000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 294940}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 146510}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1285700}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 94030}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 88732}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 2769.1}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 87.5}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 4.29}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 209.05}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 456.47}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1222.4}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1447.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 955.25}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 890.39}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 638.61}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 12.05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 45.4}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 56.06}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 60.58}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 48902}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 12974}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 25144}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 94774}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 54365}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 204920}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 16205}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 961.16}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6300}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 10256}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5059.2}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5936.2}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 8262.7}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 393750}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 278.32}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 630}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 24.23}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 6.79}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 161.54}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 24.23}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 7.04}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 58070}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 16.66}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 996.09}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 16.66}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 996.09}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 8.58}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 26.25}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 10500}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 4200}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 638.61}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 2769.1}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 87.5}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 16205}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 393750}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 278.32}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 192.5}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 4500}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 5.73}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 5.43}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 161.54}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 94774}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 12974}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 204920}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 60.58}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 58070}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 21.73}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 630}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "material resources: minerals", "exergy content"], "exchanges": [{"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 0.06}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.2}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.28}, {"name": "Calcite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.059}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.57}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 0.082}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Fluorspar, 92%", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Granite", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Gravel", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.045}, {"name": "Kaolinite, 24% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.63}, {"name": "Kieserite, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Magnesite, 60% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.05}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 1.09}, {"name": "Olivine", "categories": ["natural resource", "in ground"], "amount": 0.78}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.6}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.25}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 15.75}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.6}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 11.91}, {"name": "Pyrolusite", "categories": ["natural resource", "in ground"], "amount": 0.31}, {"name": "Sand, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Shale", "categories": ["natural resource", "in ground"], "amount": 0.57}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 0.25}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 0.35}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 19.01}, {"name": "Sylvite, 25 % in sylvinite", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.039}, {"name": "Vermiculite", "categories": ["natural resource", "in ground"], "amount": 0.039}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 4.2}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 15.75}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 21}, {"name": "Fluorspar", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.63}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 1.05}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 21}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 63}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "material resources: water", "exergy content"], "exchanges": [{"name": "Water, cooling, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, lake", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, river", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, well, in ground", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, in air", "categories": ["natural resource", "in air"], "amount": 50}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "total", "exergy content"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.73}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 0.06}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.2}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.28}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 8.58}, {"name": "Calcite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26.25}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.43}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.059}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.57}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 10.3}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 19.7}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 196.14}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 232.3}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 101.24}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 153.21}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26.84}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 142.79}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 73.15}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 33.49}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 5.77}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 21.73}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 0.082}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10500}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Fluorspar, 92%", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4200}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 4500}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 346070}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 481690}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 450000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 294940}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 146510}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1285700}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 94030}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 88732}, {"name": "Granite", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Gravel", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.045}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 2769.1}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Kaolinite, 24% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.63}, {"name": "Kieserite, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 87.5}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 4.29}, {"name": "Magnesite, 60% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.05}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 1.09}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 209.05}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 456.47}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1222.4}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1447.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 955.25}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 890.39}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 638.61}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 12.05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 45.4}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 56.06}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 60.58}, {"name": "Olivine", "categories": ["natural resource", "in ground"], "amount": 0.78}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 48902}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 12974}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 10.3}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.6}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.25}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 15.75}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 25144}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 94774}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.6}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 11.91}, {"name": "Pyrolusite", "categories": ["natural resource", "in ground"], "amount": 0.31}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 54365}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 204920}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 16205}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Sand, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Shale", "categories": ["natural resource", "in ground"], "amount": 0.57}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 961.16}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6300}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 10256}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5059.2}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5936.2}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 8262.7}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 0.25}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 0.35}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 19.01}, {"name": "Sylvite, 25 % in sylvinite", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.039}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 393750}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 278.32}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 630}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 24.23}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Vermiculite", "categories": ["natural resource", "in ground"], "amount": 0.039}, {"name": "Water, cooling, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, lake", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, river", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, well, in ground", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 6.79}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 161.54}, {"name": "Water, in air", "categories": ["natural resource", "in air"], "amount": 50}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 24.23}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 7.04}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 58070}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 16.66}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 996.09}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 0.93}, {"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 1.05}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 1.05}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 16.66}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 996.09}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 4.2}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 8.58}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 15.75}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 26.25}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 10500}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 21}, {"name": "Fluorspar", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 4200}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 638.61}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 2769.1}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.63}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 87.5}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 1.05}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 16205}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 393750}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 278.32}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 192.5}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 4500}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 5.73}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 5.43}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 161.54}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 94774}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 12974}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 204920}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 60.58}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 58070}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 21.73}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 630}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 37.6}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 21}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 63}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 37.6}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 46.7}]}, {"unit": "square meter-year", "name": ["Ecological Footprint", "CO2", "global hectares"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.6722}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6722}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2.6722}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6722}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 2.6722}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.6722}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -2.6722}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -2.6722}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -2.6722}]}, {"unit": "square meter-year", "name": ["Ecological Footprint", "land occupation", "global hectares"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, lake, artificial", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, river, artificial", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, river, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": 0.36}, {"name": "Occupation, seabed, infrastructure", "categories": ["natural resource", "land"], "amount": 0.36}, {"name": "Occupation, seabed, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.36}, {"name": "Occupation, seabed, unspecified", "categories": ["natural resource", "land"], "amount": 0.36}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 2.19}]}, {"unit": "square meter-year", "name": ["Ecological Footprint", "nuclear", "global hectares"], "exchanges": [{"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 109740}]}, {"unit": "square meter-year", "name": ["Ecological Footprint", "total", "global hectares"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.6722}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, lake, artificial", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, river, artificial", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, river, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": 0.36}, {"name": "Occupation, seabed, infrastructure", "categories": ["natural resource", "land"], "amount": 0.36}, {"name": "Occupation, seabed, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.36}, {"name": "Occupation, seabed, unspecified", "categories": ["natural resource", "land"], "amount": 0.36}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6722}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2.6722}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6722}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.6722}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 2.6722}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.6722}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -2.6722}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -2.6722}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -2.6722}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 109740}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "climate change no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3100}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1000}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1000}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1000}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1000}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1000}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000}, {"name": "Chloroform", "categories": ["air"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 16000}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 270000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4800000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 140000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11000000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3200000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1800000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 680000}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 30000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 28000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6600000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12000000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 16000000}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8600000}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 24000000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to air no LT", "air pollutants and PM no LT"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetone", "categories": ["air"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acrolein", "categories": ["air"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 44000}, {"name": "Ammonia", "categories": ["air"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 44000}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butane", "categories": ["air"], "amount": 12000}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butanol", "categories": ["air"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butene", "categories": ["air"], "amount": 12000}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Cumene", "categories": ["air"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane", "categories": ["air"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethanol", "categories": ["air"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene", "categories": ["air"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethyne", "categories": ["air"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Formic acid", "categories": ["air"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Furan", "categories": ["air"], "amount": 12000}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Heptane", "categories": ["air"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hexane", "categories": ["air"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 7300}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13000}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 16000}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Isoprene", "categories": ["air"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methanol", "categories": ["air"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Nitric acid", "categories": ["air"], "amount": 4200}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 4200}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 33000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Paraffins", "categories": ["air"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 160000}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Pentane", "categories": ["air"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Phenol", "categories": ["air"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 8100}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propanal", "categories": ["air"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propane", "categories": ["air"], "amount": 12000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propanol", "categories": ["air"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propene", "categories": ["air"], "amount": 12000}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Styrene", "categories": ["air"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 5400}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Terpenes", "categories": ["air"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Toluene", "categories": ["air"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Xylene", "categories": ["air"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to air no LT", "carcinogenic substances into air no LT"], "exchanges": [{"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 910000}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 110000000}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 69000}, {"name": "Benzene", "categories": ["air"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 69000}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1100000000}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 110000000}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 11000000}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 300000}, {"name": "Butadiene", "categories": ["air"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 300000}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Chrysene", "categories": ["air"], "amount": 1100000}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1100000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 9200000000000}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 120000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 140000}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 270000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 110000000}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 96000}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 2200000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to air no LT", "heavy metals into air no LT"], "exchanges": [{"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 59000000}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 230000}, {"name": "Chromium III", "categories": ["air"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 230000}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7500000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1700000}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8700000}, {"name": "Lead II", "categories": ["air"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 8700000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 720000000}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5200000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4700000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to air no LT", "radioactive substances into air no LT"], "exchanges": [{"name": "Aerosols, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0032}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.0063}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.0068}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.11}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.00022}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.0084}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 7.4e-06}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 8.4e-05}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 5e-06}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 7.4e-08}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.00078}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.7e-08}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.00078}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "urban air close to ground"], "amount": 0.003}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.00047}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 0.023}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 0.051}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.0043}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 7.4e-08}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to soil no LT", "heavy metals into soil no LT"], "exchanges": [{"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 37000000}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 100000}, {"name": "Chromium III", "categories": ["soil"], "amount": 100000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["soil"], "amount": 330000000}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 770000}, {"name": "Copper ion", "categories": ["soil"], "amount": 770000}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 460000}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 460000}, {"name": "Lead II", "categories": ["soil"], "amount": 460000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 200000000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 200000000}, {"name": "Mercury II", "categories": ["soil"], "amount": 200000000}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 4100000}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 4100000}, {"name": "Nickel II", "categories": ["soil"], "amount": 4100000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2200000}, {"name": "Zinc II", "categories": ["soil"], "amount": 2200000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to soil no LT", "pesticides into soil no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1200}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 8800000}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7100000}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2700000}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 4900}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 250000}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 330000}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 18000}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 760000}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 4800}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 160000}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 13000000}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 900000}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 590000}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6800000}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 62000}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 22000000}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 13000000}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 870000}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 43000}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Chlorthal", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 280000}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 3600}, {"name": "Cinidon-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 67000}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cloransulam-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Cupric hydroxide", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 96000}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 350000}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 18000}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 92000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 180000}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 370000}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 44000}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Diclofop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 68000}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 28000}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 37000}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimefuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 190000}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 8500000}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3100000}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 49000}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 20000000}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 9300000}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 54000}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 9300}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3200000}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 570000}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 230000}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 380000}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 160000}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Fenoxaprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 8500}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 770}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 3600000}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpropimorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flonicamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 17000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 290000}, {"name": "Flucarbazone sodium salt", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Fluoroglycofen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 490000}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 720000}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5000000}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 3100}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 50000}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 280000}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 380000}, {"name": "Hexaconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 610000}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 49000}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 50000}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 1200}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 370000}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 4900000}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iodosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 210000}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 5600000}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 21000000}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 35000}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1600000}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 36000}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 45}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 930000}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 510000}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 14000}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 63000}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 6800000}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 2700000}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 790000}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 450000}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 500000}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 78000}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Oils, non-fossil", "categories": ["soil", "agricultural"], "amount": 11000}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 11000}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 400000}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 88000}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 3000000}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 580000}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5700000}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7900000}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 5200000}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 10000}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3300000}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 410000}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 89000}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1700000}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 690000}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 470000}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 440000}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 15000000}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 740000}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 40000}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 540000}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 370}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2700}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 420000}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 650000}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 5100000}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1700000}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 17000}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 9800000}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 220}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1000000}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 68000}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 740000}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1900}, {"name": "Quinoxyfen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 75000}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spinosad", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 15000}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfosate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 9300}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 82000}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1600000}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebutam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4600000}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 7900000}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 300000}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 9700}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 5000000}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 87000}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tribenuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 650000}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 3100000}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 12000000}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 78000}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 460000}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 500000}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2800000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to water no LT", "heavy metals into water no LT"], "exchanges": [{"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 6200000}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 6200000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 6200000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1100000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1100000}, {"name": "Cadmium II", "categories": ["water"], "amount": 1100000}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 610}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 610}, {"name": "Chromium III", "categories": ["water"], "amount": 610}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 9700000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9700000}, {"name": "Chromium VI", "categories": ["water"], "amount": 9700000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4200}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 4200}, {"name": "Copper ion", "categories": ["water"], "amount": 4200}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 9700000}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 9700000}, {"name": "Dichromate", "categories": ["water"], "amount": 9700000}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 18000}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 18000}, {"name": "Iron ion", "categories": ["water"], "amount": 18000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 12000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 12000}, {"name": "Lead II", "categories": ["water"], "amount": 12000}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1200}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 1200}, {"name": "Manganese II", "categories": ["water"], "amount": 1200}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 4300000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 4300000}, {"name": "Mercury II", "categories": ["water"], "amount": 4300000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 120000}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 120000}, {"name": "Nickel II", "categories": ["water"], "amount": 120000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 61000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 61000}, {"name": "Zinc II", "categories": ["water"], "amount": 61000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to water no LT", "POP into water no LT"], "exchanges": [{"name": "Anthracene", "categories": ["water", "surface water"], "amount": 660000000}, {"name": "Anthracene", "categories": ["water"], "amount": 660000000}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 13000000}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 13000000}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 1200000000}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 1200000000}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 2400000000}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 2400000000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 17000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 3300000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 3300000000}, {"name": "Diuron", "categories": ["water"], "amount": 5500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 480000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 480000}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 760000}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 760000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 7700000000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 7700000000}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 150000000}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 150000000}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 100000000}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 100000000}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 410000000}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 410000000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 20000000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 20000000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 6100000}, {"name": "Toluene", "categories": ["water"], "amount": 6100000}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 3500000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 14000000}, {"name": "Xylene", "categories": ["water"], "amount": 14000000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to water no LT", "radioactive substances into water no LT"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 1800}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 3900}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.01}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.01}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1.9}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 10}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.8}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.8}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 2.1}, {"name": "Caesium-137", "categories": ["water"], "amount": 2.1}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 150}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00053}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00053}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 50}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 0.55}, {"name": "Cobalt-60", "categories": ["water"], "amount": 0.55}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 7200}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 0.0088}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 5.5e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 5.5e-06}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 13000}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0063}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0063}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0039}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0039}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 940}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water", "ocean"], "amount": 820}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water", "surface water"], "amount": 0.37}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water"], "amount": 0.37}, {"name": "Radioactive species, alpha emitters", "categories": ["water", "surface water"], "amount": 0.00039}, {"name": "Radioactive species, alpha emitters", "categories": ["water"], "amount": 0.00039}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.0016}, {"name": "Radium-226", "categories": ["water"], "amount": 0.0016}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 18}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0063}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0063}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.51}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.03}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 3.2}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.029}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.029}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.029}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.029}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to water no LT", "water pollutants no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 46000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 46000}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 46000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 54000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 54000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 54000}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Acenaphthene", "categories": ["water"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 19000000}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 28000}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 28000}, {"name": "Ammonium", "categories": ["water"], "amount": 28000}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 39000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 39000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 39000}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 4000}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 19000000}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 6800}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 6800}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 6800}, {"name": "Chlorinated solvents, unspecified", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water"], "amount": 54000}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1700}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1700}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1700}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 150000}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 150000}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 150000}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water"], "amount": 54000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 5100}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5100}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5100}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 27000}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 8100}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 8100}, {"name": "Nitrate", "categories": ["water"], "amount": 8100}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 11000}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 11000}, {"name": "Nitrite", "categories": ["water"], "amount": 11000}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 36000}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 36000}, {"name": "Nitrogen", "categories": ["water"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 36000}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 290000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 19000000}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 320000}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 320000}, {"name": "Phosphate", "categories": ["water"], "amount": 320000}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 970000}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 970000}, {"name": "Phosphorus", "categories": ["water"], "amount": 970000}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 220}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 6.5}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 6.5}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 12}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 7.2}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.2}, {"name": "Styrene", "categories": ["water"], "amount": 7.2}, {"name": "Tributyltin compounds", "categories": ["water", "ocean"], "amount": 7.600000000000001}, {"name": "Tributyltin compounds", "categories": ["water", "surface water"], "amount": 7.600000000000001}, {"name": "Tributyltin compounds", "categories": ["water"], "amount": 7.600000000000001}, {"name": "Trifluralin", "categories": ["water"], "amount": 4200}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.26}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.26}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.26}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "energy resources no LT", "energy resources no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 80}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 160}, {"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 2.8}, {"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 2.8}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 8.3}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 2.6}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 2.6}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 2.5}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 330}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 330}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 380}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 4600000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "land use no LT", "land use no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 860}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 1340}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 100}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 1340}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 1380}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 1380}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 1470}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 1460}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 1460}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1530}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "mineral resources no LT", "mineral resources no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0038}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0038}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 150000}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 350}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.3}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 2.2}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 12}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 44000}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 42}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 750}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 540000}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 540000}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 290}, {"name": "Calcium", "categories": ["natural resource", "in ground"], "amount": 0.054}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 37}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 37}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 39}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 7.3}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 9.5}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 9.5}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 0.063}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 0.063}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 4.8}, {"name": "Gravel", "categories": ["natural resource", "in ground"], "amount": 28}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 0.58}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 20}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 16000}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 16000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 29000000}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 100}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.026}, {"name": "Magnesite, 60% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.026}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 3.7}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.7}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 410000}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 11000000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 0.02}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 14}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 14}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 160000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 160000000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 55000000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Sand, unspecified", "categories": ["natural resource", "in ground"], "amount": 28}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 0.011}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 47000}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.00012}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 0.025}, {"name": "Stibnite", "categories": ["natural resource", "in ground"], "amount": 8400}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.25}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 23}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Sylvite, 25 % in sylvinite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 190}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 190}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 25000000}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 25000000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 75}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 12000}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12000}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.057}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 39}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 15}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 3.9}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.9}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "natural resources no LT", "biotic resources no LT"], "exchanges": [{"name": "Fish, demersal, in ocean", "categories": ["natural resource", "biotic"], "amount": 9290}, {"name": "Fish, pelagic, in ocean", "categories": ["natural resource", "biotic"], "amount": 9290}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "ozone depletion no LT", "ozone depletion no LT"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2500000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 20000000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2800000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 500000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 550000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 15000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 75000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 250000000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 500000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 28000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 25000000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "total no LT", "UBP no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 46000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 46000}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 46000}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1200}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 54000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 54000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 54000}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Acenaphthene", "categories": ["water"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 19000000}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetone", "categories": ["air"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 8800000}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acrolein", "categories": ["air"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 910000}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 1800}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0032}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7100000}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0038}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0038}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 3900}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2700000}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 44000}, {"name": "Ammonia", "categories": ["air"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 44000}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 28000}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 28000}, {"name": "Ammonium", "categories": ["water"], "amount": 28000}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 660000000}, {"name": "Anthracene", "categories": ["water"], "amount": 660000000}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 4900}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 150000}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.01}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.01}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1.9}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 350}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 6200000}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 6200000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 6200000}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 250000}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 330000}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.3}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 2.2}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 18000}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 760000}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 4800}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 110000000}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 69000}, {"name": "Benzene", "categories": ["air"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 69000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 39000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 39000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 39000}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 13000000}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 13000000}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 4000}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 19000000}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 110000000}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 1200000000}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 1200000000}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 11000000}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 2400000000}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 2400000000}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 12}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 160000}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 44000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 17000000}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 42}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 750}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 13000000}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 300000}, {"name": "Butadiene", "categories": ["air"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 300000}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butane", "categories": ["air"], "amount": 12000}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butanol", "categories": ["air"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butene", "categories": ["air"], "amount": 12000}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 900000}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 6800}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 6800}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 6800}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 540000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1100000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1100000}, {"name": "Cadmium II", "categories": ["water"], "amount": 1100000}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 540000}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 290}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 10}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.8}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.8}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 2.1}, {"name": "Caesium-137", "categories": ["water"], "amount": 2.1}, {"name": "Calcium", "categories": ["natural resource", "in ground"], "amount": 0.054}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 590000}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6800000}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 62000}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 22000000}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3100}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1000}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 150}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 13000000}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 870000}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water"], "amount": 54000}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 43000}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water"], "amount": 54000}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000}, {"name": "Chloroform", "categories": ["air"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 16000}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Chlorthal", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 280000}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 3600}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 230000}, {"name": "Chromium III", "categories": ["air"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 230000}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 100000}, {"name": "Chromium III", "categories": ["soil"], "amount": 100000}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 610}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 610}, {"name": "Chromium III", "categories": ["water"], "amount": 610}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["soil"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 9700000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9700000}, {"name": "Chromium VI", "categories": ["water"], "amount": 9700000}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Chrysene", "categories": ["air"], "amount": 1100000}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Cinidon-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 67000}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cloransulam-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 80}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 160}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 37}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 37}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00053}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00053}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 50}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 0.55}, {"name": "Cobalt-60", "categories": ["water"], "amount": 0.55}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 39}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1700000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 770000}, {"name": "Copper ion", "categories": ["soil"], "amount": 770000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4200}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 4200}, {"name": "Copper ion", "categories": ["water"], "amount": 4200}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Cumene", "categories": ["air"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cupric hydroxide", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 7200}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 96000}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 350000}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 18000}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 92000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 180000}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1100000000}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 370000}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 44000}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 9700000}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 9700000}, {"name": "Dichromate", "categories": ["water"], "amount": 9700000}, {"name": "Diclofop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 68000}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 28000}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 37000}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimefuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 190000}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 8500000}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3100000}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 270000}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 49000}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 20000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 3300000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 3300000000}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 9300000}, {"name": "Diuron", "categories": ["water"], "amount": 5500000}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 54000}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 9300}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 7.3}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3200000}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 570000}, {"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 2.8}, {"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 2.8}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 8.3}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 2.6}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 2.6}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 2.5}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 120000}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane", "categories": ["air"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1700}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1700}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1700}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4800000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 20000000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2800000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 480000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 480000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2000000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 500000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 550000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 15000000}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 150000}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 150000}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 150000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11000000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3200000}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethanol", "categories": ["air"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 230000}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene", "categories": ["air"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 760000}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 760000}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethyne", "categories": ["air"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 380000}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 160000}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Fenoxaprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 8500}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 770}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 3600000}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpropimorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fish, demersal, in ocean", "categories": ["natural resource", "biotic"], "amount": 9290}, {"name": "Fish, pelagic, in ocean", "categories": ["natural resource", "biotic"], "amount": 9290}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flonicamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 17000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 290000}, {"name": "Flucarbazone sodium salt", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluoroglycofen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 490000}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 720000}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5000000}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Formic acid", "categories": ["air"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 3100}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 50000}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Furan", "categories": ["air"], "amount": 12000}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 9.5}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 9.5}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 0.063}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 0.063}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 330}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 330}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 280000}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 4.8}, {"name": "Gravel", "categories": ["natural resource", "in ground"], "amount": 28}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 0.58}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Heptane", "categories": ["air"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 380000}, {"name": "Hexaconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hexane", "categories": ["air"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 610000}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 20}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1800000}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 7300}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13000}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 16000}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 0.0088}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 5.5e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 5.5e-06}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 49000}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 50000}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 1200}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 370000}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 4900000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 110000000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 7700000000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 7700000000}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 16000}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 16000}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 13000}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0063}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0063}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 5e-06}, {"name": "Iodosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 210000}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 29000000}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 18000}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 18000}, {"name": "Iron ion", "categories": ["water"], "amount": 18000}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Isoprene", "categories": ["air"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 7.4e-08}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8700000}, {"name": "Lead II", "categories": ["air"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 8700000}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 460000}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 460000}, {"name": "Lead II", "categories": ["soil"], "amount": 460000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 12000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 12000}, {"name": "Lead II", "categories": ["water"], "amount": 12000}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.00078}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 5600000}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 21000000}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 100}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.026}, {"name": "Magnesite, 60% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.026}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 35000}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1600000}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 3.7}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1200}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 1200}, {"name": "Manganese II", "categories": ["water"], "amount": 1200}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.7}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0039}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0039}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 36000}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 45}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 410000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 720000000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 200000000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 200000000}, {"name": "Mercury II", "categories": ["soil"], "amount": 200000000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 4300000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 4300000}, {"name": "Mercury II", "categories": ["water"], "amount": 4300000}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 930000}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 510000}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 14000}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 63000}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 15000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 75000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 250000000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 500000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1800000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water"], "amount": 54000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 680000}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 30000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 28000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 5100}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5100}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5100}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6600000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12000000}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methanol", "categories": ["air"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 6800000}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 2700000}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 790000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 450000}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 500000}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5200000}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 4100000}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 4100000}, {"name": "Nickel II", "categories": ["soil"], "amount": 4100000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 120000}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 120000}, {"name": "Nickel II", "categories": ["water"], "amount": 120000}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 27000}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 8100}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 8100}, {"name": "Nitrate", "categories": ["water"], "amount": 8100}, {"name": "Nitric acid", "categories": ["air"], "amount": 4200}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 4200}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 11000}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 11000}, {"name": "Nitrite", "categories": ["water"], "amount": 11000}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 36000}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 36000}, {"name": "Nitrogen", "categories": ["water"], "amount": 36000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 16000000}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 33000}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 36000}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 78000}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.7e-08}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 860}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 1340}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 100}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 1340}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 1380}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 1380}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 1470}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 1460}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 1460}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 380}, {"name": "Oils, non-fossil", "categories": ["soil", "agricultural"], "amount": 11000}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 11000}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 290000}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 400000}, {"name": "Organic carbon, placed in landfill", "categories": ["inventory indicator", "waste"], "amount": 6200}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 11000000}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 88000}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 3000000}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 580000}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5700000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 19000000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Paraffins", "categories": ["air"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7900000}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 160000}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 5200000}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 10000}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3300000}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Pentane", "categories": ["air"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8600000}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 410000}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 89000}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Phenol", "categories": ["air"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1700000}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 320000}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 320000}, {"name": "Phosphate", "categories": ["water"], "amount": 320000}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 8100}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 970000}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 970000}, {"name": "Phosphorus", "categories": ["water"], "amount": 970000}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 220}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 150000000}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 150000000}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 100000000}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 100000000}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 6.5}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 6.5}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 410000000}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 410000000}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 690000}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 470000}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 440000}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 940}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.00078}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 0.02}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 14}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 14}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 15000000}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 740000}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 40000}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 540000}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 370}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2700}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propanal", "categories": ["air"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propane", "categories": ["air"], "amount": 12000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 420000}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propanol", "categories": ["air"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 650000}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propene", "categories": ["air"], "amount": 12000}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 5100000}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1700000}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 96000}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 17000}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 9800000}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 220}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1000000}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 68000}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 740000}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1900}, {"name": "Quinoxyfen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water", "ocean"], "amount": 820}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water", "surface water"], "amount": 0.37}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water"], "amount": 0.37}, {"name": "Radioactive species, alpha emitters", "categories": ["water", "surface water"], "amount": 0.00039}, {"name": "Radioactive species, alpha emitters", "categories": ["water"], "amount": 0.00039}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "urban air close to ground"], "amount": 0.003}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.0016}, {"name": "Radium-226", "categories": ["water"], "amount": 0.0016}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 160000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 160000000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 55000000}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 18}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Sand, unspecified", "categories": ["natural resource", "in ground"], "amount": 28}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 0.011}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 47000}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 75000}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.00012}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0063}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0063}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 0.025}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spinosad", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 15000}, {"name": "Stibnite", "categories": ["natural resource", "in ground"], "amount": 8400}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.25}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.51}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Styrene", "categories": ["air"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 7.2}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.2}, {"name": "Styrene", "categories": ["water"], "amount": 7.2}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfosate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 23}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 9300}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 24000000}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 82000}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Sylvite, 25 % in sylvinite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 190}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 190}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1600000}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebutam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 25000000}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 25000000}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Terpenes", "categories": ["air"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 20000000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 20000000}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4600000}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 7900000}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 300000}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 9700}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 5000000}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 0.023}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 75}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 12000}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12000}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.057}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Toluene", "categories": ["air"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 6100000}, {"name": "Toluene", "categories": ["water"], "amount": 6100000}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 87000}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tribenuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Tributyltin compounds", "categories": ["water", "ocean"], "amount": 7.600000000000001}, {"name": "Tributyltin compounds", "categories": ["water", "surface water"], "amount": 7.600000000000001}, {"name": "Tributyltin compounds", "categories": ["water"], "amount": 7.600000000000001}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 3500000}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 650000}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 3100000}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 12000000}, {"name": "Trifluralin", "categories": ["water"], "amount": 4200}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 78000}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 39}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 4600000}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.03}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 3.2}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.029}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.029}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.029}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.029}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 460000}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "Volume occupied, final repository for low-active radioactive waste", "categories": ["natural resource", "in ground"], "amount": 680000}, {"name": "Volume occupied, final repository for radioactive waste", "categories": ["natural resource", "in ground"], "amount": 47000000000}, {"name": "Volume occupied, underground deposit", "categories": ["natural resource", "in ground"], "amount": 230000000}, {"name": "Waste mass, total, placed in landfill", "categories": ["inventory indicator", "waste"], "amount": 24}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 990}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 990}, {"name": "Water", "categories": ["air"], "amount": 990}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 990}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 7.4e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Xylene", "categories": ["air"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 14000000}, {"name": "Xylene", "categories": ["water"], "amount": 14000000}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 15}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4700000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2200000}, {"name": "Zinc II", "categories": ["soil"], "amount": 2200000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 61000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 61000}, {"name": "Zinc II", "categories": ["water"], "amount": 61000}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 500000}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 3.9}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.9}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 2200000}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.26}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.26}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.26}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2800000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "waste disposal no LT", "radioactive waste to deposit no LT"], "exchanges": [{"name": "Volume occupied, final repository for low-active radioactive waste", "categories": ["natural resource", "in ground"], "amount": 680000}, {"name": "Volume occupied, final repository for radioactive waste", "categories": ["natural resource", "in ground"], "amount": 47000000000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "waste disposal no LT", "waste, non radioactive no LT"], "exchanges": [{"name": "Organic carbon, placed in landfill", "categories": ["inventory indicator", "waste"], "amount": 6200}, {"name": "Volume occupied, underground deposit", "categories": ["natural resource", "in ground"], "amount": 230000000}, {"name": "Waste mass, total, placed in landfill", "categories": ["inventory indicator", "waste"], "amount": 24}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "water use no LT", "water resources, evaporated no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 990}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 990}, {"name": "Water", "categories": ["air"], "amount": 990}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 990}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3100}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1000}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1000}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1000}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1000}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1000}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000}, {"name": "Chloroform", "categories": ["air"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 16000}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 270000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4800000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 140000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11000000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3200000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1800000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 680000}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 30000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 28000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6600000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12000000}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 16000000}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8600000}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 24000000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to air", "air pollutants and PM"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetone", "categories": ["air"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acrolein", "categories": ["air"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 44000}, {"name": "Ammonia", "categories": ["air"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 44000}, {"name": "Benzal chloride", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butane", "categories": ["air"], "amount": 12000}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butanol", "categories": ["air"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butene", "categories": ["air"], "amount": 12000}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Cumene", "categories": ["air"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane", "categories": ["air"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethanol", "categories": ["air"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene", "categories": ["air"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethyne", "categories": ["air"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Formic acid", "categories": ["air"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Furan", "categories": ["air"], "amount": 12000}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Heptane", "categories": ["air"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hexane", "categories": ["air"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrochloric acid", "categories": ["air", "low population density, long-term"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 7300}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13000}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 16000}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Isoprene", "categories": ["air"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methanol", "categories": ["air"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Nitric acid", "categories": ["air"], "amount": 4200}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 4200}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 33000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Paraffins", "categories": ["air"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 160000}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Pentane", "categories": ["air"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Phenol", "categories": ["air"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 8100}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propanal", "categories": ["air"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propane", "categories": ["air"], "amount": 12000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propanol", "categories": ["air"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propene", "categories": ["air"], "amount": 12000}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Styrene", "categories": ["air"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 5400}, {"name": "Terpenes", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Terpenes", "categories": ["air"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Toluene", "categories": ["air"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Xylene", "categories": ["air"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to air", "carcinogenic substances into air"], "exchanges": [{"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 910000}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 110000000}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 69000}, {"name": "Benzene", "categories": ["air"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 69000}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1100000000}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 110000000}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 11000000}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 300000}, {"name": "Butadiene", "categories": ["air"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 300000}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Chrysene", "categories": ["air"], "amount": 1100000}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1100000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 9200000000000}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 120000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 140000}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 270000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 110000000}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 96000}, {"name": "o-Nitrotoluene", "categories": ["air", "low population density, long-term"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 2200000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to air", "heavy metals into air"], "exchanges": [{"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 59000000}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 230000}, {"name": "Chromium III", "categories": ["air"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 230000}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7500000}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1700000}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8700000}, {"name": "Lead II", "categories": ["air"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 8700000}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 720000000}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5200000}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4700000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to air", "radioactive substances into air"], "exchanges": [{"name": "Aerosols, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0032}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.0063}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.0068}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.11}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.00022}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.0084}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 7.4e-06}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 8.4e-05}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 5e-06}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 7.4e-08}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.00078}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.7e-08}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Plutonium-alpha", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.00078}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "low population density, long-term"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "urban air close to ground"], "amount": 0.003}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.00047}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 0.023}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 0.051}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.0043}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 7.4e-08}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to soil", "heavy metals into soil"], "exchanges": [{"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 37000000}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 100000}, {"name": "Chromium III", "categories": ["soil"], "amount": 100000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["soil"], "amount": 330000000}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 770000}, {"name": "Copper ion", "categories": ["soil"], "amount": 770000}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 460000}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 460000}, {"name": "Lead II", "categories": ["soil"], "amount": 460000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 200000000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 200000000}, {"name": "Mercury II", "categories": ["soil"], "amount": 200000000}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 4100000}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 4100000}, {"name": "Nickel II", "categories": ["soil"], "amount": 4100000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2200000}, {"name": "Zinc II", "categories": ["soil"], "amount": 2200000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to soil", "pesticides into soil"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1200}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 8800000}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7100000}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2700000}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 4900}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 250000}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 330000}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 18000}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 760000}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 4800}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 160000}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 13000000}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 900000}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 590000}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6800000}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 62000}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 22000000}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 13000000}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 870000}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 43000}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Chlorthal", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 280000}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 3600}, {"name": "Cinidon-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 67000}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cloransulam-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Cupric hydroxide", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 96000}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 350000}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 18000}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 92000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 180000}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 370000}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 44000}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Diclofop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 68000}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 28000}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 37000}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimefuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 190000}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 8500000}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3100000}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 49000}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 20000000}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 9300000}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 54000}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 9300}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3200000}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 570000}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 230000}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 380000}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 160000}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Fenoxaprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 8500}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 770}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 3600000}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpropimorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flonicamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 17000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 290000}, {"name": "Flucarbazone sodium salt", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Fluoroglycofen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 490000}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 720000}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5000000}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 3100}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 50000}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 280000}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 380000}, {"name": "Hexaconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 610000}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 49000}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 50000}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 1200}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 370000}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 4900000}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iodosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 210000}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 5600000}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 21000000}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 35000}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1600000}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 36000}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 45}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 930000}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 510000}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 14000}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 63000}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 6800000}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 2700000}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 790000}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 450000}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 500000}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 78000}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Oils, non-fossil", "categories": ["soil", "agricultural"], "amount": 11000}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 11000}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 400000}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 88000}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 3000000}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 580000}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5700000}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7900000}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 5200000}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 10000}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3300000}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 410000}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 89000}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1700000}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 690000}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 470000}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 440000}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 15000000}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 740000}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 40000}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 540000}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 370}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2700}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 420000}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 650000}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 5100000}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1700000}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 17000}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 9800000}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 220}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1000000}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 68000}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 740000}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1900}, {"name": "Quinoxyfen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 75000}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spinosad", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 15000}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfosate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 9300}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 82000}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1600000}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebutam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4600000}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 7900000}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 300000}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 9700}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 5000000}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 87000}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tribenuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 650000}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 3100000}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 12000000}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 78000}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 460000}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 500000}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2800000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to water", "heavy metals into water"], "exchanges": [{"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 6200000}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 6200000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 6200000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1100000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1100000}, {"name": "Cadmium II", "categories": ["water"], "amount": 1100000}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 610}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 610}, {"name": "Chromium III", "categories": ["water"], "amount": 610}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 9700000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9700000}, {"name": "Chromium VI", "categories": ["water"], "amount": 9700000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4200}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 4200}, {"name": "Copper ion", "categories": ["water"], "amount": 4200}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 9700000}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 9700000}, {"name": "Dichromate", "categories": ["water"], "amount": 9700000}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 18000}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 18000}, {"name": "Iron ion", "categories": ["water"], "amount": 18000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 12000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 12000}, {"name": "Lead II", "categories": ["water"], "amount": 12000}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1200}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 1200}, {"name": "Manganese II", "categories": ["water"], "amount": 1200}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 4300000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 4300000}, {"name": "Mercury II", "categories": ["water"], "amount": 4300000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 120000}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 120000}, {"name": "Nickel II", "categories": ["water"], "amount": 120000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 61000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 61000}, {"name": "Zinc II", "categories": ["water"], "amount": 61000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to water", "POP into water"], "exchanges": [{"name": "Anthracene", "categories": ["water", "surface water"], "amount": 660000000}, {"name": "Anthracene", "categories": ["water"], "amount": 660000000}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 13000000}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 13000000}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 1200000000}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 1200000000}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 2400000000}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 2400000000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 17000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 3300000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 3300000000}, {"name": "Diuron", "categories": ["water"], "amount": 5500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 480000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 480000}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 760000}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 760000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 7700000000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 7700000000}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 150000000}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 150000000}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 100000000}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 100000000}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 410000000}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 410000000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 20000000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 20000000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 6100000}, {"name": "Toluene", "categories": ["water"], "amount": 6100000}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 3500000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 14000000}, {"name": "Xylene", "categories": ["water"], "amount": 14000000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to water", "radioactive substances into water"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 1800}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 3900}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.01}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.01}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1.9}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 10}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.8}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.8}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 2.1}, {"name": "Caesium-137", "categories": ["water"], "amount": 2.1}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 150}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00053}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00053}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 50}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 0.55}, {"name": "Cobalt-60", "categories": ["water"], "amount": 0.55}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 7200}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 0.0088}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 5.5e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 5.5e-06}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 13000}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0063}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0063}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0039}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0039}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 940}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water", "ocean"], "amount": 820}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water", "surface water"], "amount": 0.37}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water"], "amount": 0.37}, {"name": "Radioactive species, alpha emitters", "categories": ["water", "surface water"], "amount": 0.00039}, {"name": "Radioactive species, alpha emitters", "categories": ["water"], "amount": 0.00039}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.0016}, {"name": "Radium-226", "categories": ["water"], "amount": 0.0016}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 18}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0063}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0063}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.51}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.03}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 3.2}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.029}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.029}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.029}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.029}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to water", "water pollutants"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 46000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 46000}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 46000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 54000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 54000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 54000}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Acenaphthene", "categories": ["water"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 19000000}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 28000}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 28000}, {"name": "Ammonium", "categories": ["water"], "amount": 28000}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 39000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 39000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 39000}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 4000}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 19000000}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 6800}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 6800}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 6800}, {"name": "Chlorinated solvents, unspecified", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water"], "amount": 54000}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1700}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1700}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1700}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 150000}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 150000}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 150000}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water"], "amount": 54000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 5100}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5100}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5100}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 27000}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 8100}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 8100}, {"name": "Nitrate", "categories": ["water"], "amount": 8100}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 11000}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 11000}, {"name": "Nitrite", "categories": ["water"], "amount": 11000}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 36000}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 36000}, {"name": "Nitrogen", "categories": ["water"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 36000}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 290000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 19000000}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 320000}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 320000}, {"name": "Phosphate", "categories": ["water"], "amount": 320000}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 970000}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 970000}, {"name": "Phosphorus", "categories": ["water"], "amount": 970000}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 220}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 6.5}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 6.5}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 12}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 7.2}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.2}, {"name": "Styrene", "categories": ["water"], "amount": 7.2}, {"name": "Tributyltin compounds", "categories": ["water", "ocean"], "amount": 7.600000000000001}, {"name": "Tributyltin compounds", "categories": ["water", "surface water"], "amount": 7.600000000000001}, {"name": "Tributyltin compounds", "categories": ["water"], "amount": 7.600000000000001}, {"name": "Trifluralin", "categories": ["water"], "amount": 4200}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.26}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.26}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.26}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "energy resources", "energy resources"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 80}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 160}, {"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 2.8}, {"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 2.8}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 8.3}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 2.6}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 2.6}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 2.5}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 330}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 330}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 380}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 4600000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "land use", "land use"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 860}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 1340}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 100}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 1340}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 1380}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 1380}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 1470}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 1460}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 1460}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1530}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "mineral resources", "mineral resources"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0038}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0038}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 150000}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 350}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.3}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 2.2}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 12}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 44000}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 42}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 750}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 540000}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 540000}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 290}, {"name": "Calcium", "categories": ["natural resource", "in ground"], "amount": 0.054}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 37}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 37}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 39}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 7.3}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 9.5}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 9.5}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 0.063}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 0.063}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 4.8}, {"name": "Gravel", "categories": ["natural resource", "in ground"], "amount": 28}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 0.58}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 20}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 16000}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 16000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 29000000}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 100}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.026}, {"name": "Magnesite, 60% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.026}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 3.7}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.7}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 410000}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 11000000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 0.02}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 14}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 14}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 160000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 160000000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 55000000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Sand, unspecified", "categories": ["natural resource", "in ground"], "amount": 28}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 0.011}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 47000}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.00012}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 0.025}, {"name": "Stibnite", "categories": ["natural resource", "in ground"], "amount": 8400}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.25}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 23}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Sylvite, 25 % in sylvinite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 190}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 190}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 25000000}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 25000000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 75}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 12000}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12000}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.057}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 39}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 15}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 3.9}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.9}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "natural resources", "biotic resources"], "exchanges": [{"name": "Fish, demersal, in ocean", "categories": ["natural resource", "biotic"], "amount": 9290}, {"name": "Fish, pelagic, in ocean", "categories": ["natural resource", "biotic"], "amount": 9290}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "ozone depletion", "ozone depletion"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2500000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 20000000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2800000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 500000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 550000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 15000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 75000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 250000000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 500000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 28000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 25000000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "total", "UBP"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 46000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 46000}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 46000}, {"name": "1,4-Butanediol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1200}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 54000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 54000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 54000}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Acenaphthene", "categories": ["water"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 19000000}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetone", "categories": ["air"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 8800000}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acrolein", "categories": ["air"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 910000}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 1800}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0032}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7100000}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0038}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0038}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 3900}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2700000}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 44000}, {"name": "Ammonia", "categories": ["air"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 44000}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 28000}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 28000}, {"name": "Ammonium", "categories": ["water"], "amount": 28000}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 660000000}, {"name": "Anthracene", "categories": ["water"], "amount": 660000000}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 4900}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 150000}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.01}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.01}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1.9}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 350}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 6200000}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 6200000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 6200000}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 250000}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 330000}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.3}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 2.2}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 18000}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 760000}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 4800}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 110000000}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzal chloride", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 69000}, {"name": "Benzene", "categories": ["air"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 69000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 39000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 39000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 39000}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 13000000}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 13000000}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 4000}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 19000000}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 110000000}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 1200000000}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 1200000000}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 11000000}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 2400000000}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 2400000000}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 12}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 160000}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 44000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 17000000}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 42}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 750}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 13000000}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 300000}, {"name": "Butadiene", "categories": ["air"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 300000}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butane", "categories": ["air"], "amount": 12000}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butanol", "categories": ["air"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butene", "categories": ["air"], "amount": 12000}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 900000}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 6800}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 6800}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 6800}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 540000}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1100000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1100000}, {"name": "Cadmium II", "categories": ["water"], "amount": 1100000}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 540000}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 290}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 10}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.8}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.8}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 2.1}, {"name": "Caesium-137", "categories": ["water"], "amount": 2.1}, {"name": "Calcium", "categories": ["natural resource", "in ground"], "amount": 0.054}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 590000}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6800000}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 62000}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 22000000}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3100}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1000}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 150}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 13000000}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 870000}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water"], "amount": 54000}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 43000}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water"], "amount": 54000}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000}, {"name": "Chloroform", "categories": ["air"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 16000}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Chlorthal", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 280000}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 3600}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 230000}, {"name": "Chromium III", "categories": ["air"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 230000}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 100000}, {"name": "Chromium III", "categories": ["soil"], "amount": 100000}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 610}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 610}, {"name": "Chromium III", "categories": ["water"], "amount": 610}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["soil"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 9700000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9700000}, {"name": "Chromium VI", "categories": ["water"], "amount": 9700000}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Chrysene", "categories": ["air"], "amount": 1100000}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Cinidon-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 67000}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cloransulam-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 80}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 160}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 37}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 37}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00053}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00053}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 50}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 0.55}, {"name": "Cobalt-60", "categories": ["water"], "amount": 0.55}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 39}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1700000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 770000}, {"name": "Copper ion", "categories": ["soil"], "amount": 770000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4200}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 4200}, {"name": "Copper ion", "categories": ["water"], "amount": 4200}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Cumene", "categories": ["air"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cupric hydroxide", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 7200}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 96000}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 350000}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 18000}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 92000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 180000}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1100000000}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 370000}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 44000}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 9700000}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 9700000}, {"name": "Dichromate", "categories": ["water"], "amount": 9700000}, {"name": "Diclofop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 68000}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 28000}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 37000}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimefuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 190000}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 8500000}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3100000}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 270000}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 49000}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 20000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 3300000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 3300000000}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 9300000}, {"name": "Diuron", "categories": ["water"], "amount": 5500000}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 54000}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 9300}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 7.3}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3200000}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 570000}, {"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 2.8}, {"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 2.8}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 8.3}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 2.6}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 2.6}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 2.5}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 120000}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane", "categories": ["air"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1700}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1700}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1700}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4800000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 20000000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2800000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 480000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 480000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2000000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 500000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 550000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 15000000}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 150000}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 150000}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 150000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11000000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3200000}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethanol", "categories": ["air"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 230000}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene", "categories": ["air"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 760000}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 760000}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethyne", "categories": ["air"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 380000}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 160000}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Fenoxaprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 8500}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 770}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 3600000}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpropimorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fish, demersal, in ocean", "categories": ["natural resource", "biotic"], "amount": 9290}, {"name": "Fish, pelagic, in ocean", "categories": ["natural resource", "biotic"], "amount": 9290}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flonicamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 17000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 290000}, {"name": "Flucarbazone sodium salt", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluoroglycofen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 490000}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 720000}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5000000}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Formic acid", "categories": ["air"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 3100}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 50000}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Furan", "categories": ["air"], "amount": 12000}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 9.5}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 9.5}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 0.063}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 0.063}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 330}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 330}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 280000}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 4.8}, {"name": "Gravel", "categories": ["natural resource", "in ground"], "amount": 28}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 0.58}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Heptane", "categories": ["air"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 380000}, {"name": "Hexaconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hexane", "categories": ["air"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 610000}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 20}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1800000}, {"name": "Hydrochloric acid", "categories": ["air", "low population density, long-term"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 7300}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13000}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 16000}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 0.0088}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 5.5e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 5.5e-06}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 49000}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 50000}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 1200}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 370000}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 4900000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 110000000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 7700000000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 7700000000}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 16000}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 16000}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 13000}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0063}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0063}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 5e-06}, {"name": "Iodosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 210000}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 29000000}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 18000}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 18000}, {"name": "Iron ion", "categories": ["water"], "amount": 18000}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Isoprene", "categories": ["air"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 7.4e-08}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8700000}, {"name": "Lead II", "categories": ["air"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 8700000}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 460000}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 460000}, {"name": "Lead II", "categories": ["soil"], "amount": 460000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 12000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 12000}, {"name": "Lead II", "categories": ["water"], "amount": 12000}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.00078}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 5600000}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 21000000}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 100}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.026}, {"name": "Magnesite, 60% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.026}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 35000}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1600000}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 3.7}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1200}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 1200}, {"name": "Manganese II", "categories": ["water"], "amount": 1200}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.7}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0039}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0039}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 36000}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 45}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 410000}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 720000000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 200000000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 200000000}, {"name": "Mercury II", "categories": ["soil"], "amount": 200000000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 4300000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 4300000}, {"name": "Mercury II", "categories": ["water"], "amount": 4300000}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 930000}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 510000}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 14000}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 63000}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 15000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 75000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 250000000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 500000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1800000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water"], "amount": 54000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 680000}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 30000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 28000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 5100}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5100}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5100}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6600000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12000000}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methanol", "categories": ["air"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 6800000}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 2700000}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 790000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 450000}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 500000}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5200000}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 4100000}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 4100000}, {"name": "Nickel II", "categories": ["soil"], "amount": 4100000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 120000}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 120000}, {"name": "Nickel II", "categories": ["water"], "amount": 120000}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 27000}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 8100}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 8100}, {"name": "Nitrate", "categories": ["water"], "amount": 8100}, {"name": "Nitric acid", "categories": ["air"], "amount": 4200}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 4200}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 11000}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 11000}, {"name": "Nitrite", "categories": ["water"], "amount": 11000}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 36000}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 36000}, {"name": "Nitrogen", "categories": ["water"], "amount": 36000}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 16000000}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 33000}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 36000}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 78000}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.7e-08}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 860}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 1340}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 100}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 1340}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 1380}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 1380}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 1470}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 1460}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 1460}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 380}, {"name": "Oils, non-fossil", "categories": ["soil", "agricultural"], "amount": 11000}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 11000}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 290000}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 400000}, {"name": "Organic carbon, placed in landfill", "categories": ["inventory indicator", "waste"], "amount": 6200}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 11000000}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 88000}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 3000000}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 580000}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5700000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 19000000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Paraffins", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Paraffins", "categories": ["air"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7900000}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 160000}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 5200000}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 10000}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3300000}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Pentane", "categories": ["air"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8600000}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 410000}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 89000}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Phenol", "categories": ["air"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1700000}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 320000}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 320000}, {"name": "Phosphate", "categories": ["water"], "amount": 320000}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 8100}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 970000}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 970000}, {"name": "Phosphorus", "categories": ["water"], "amount": 970000}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 220}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 150000000}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 150000000}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 100000000}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 100000000}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 6.5}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 6.5}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 410000000}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 410000000}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 690000}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 470000}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 440000}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Plutonium-alpha", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 940}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.00078}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 0.02}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 14}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 14}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 15000000}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 740000}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 40000}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 540000}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 370}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2700}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propanal", "categories": ["air"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propane", "categories": ["air"], "amount": 12000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 420000}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propanol", "categories": ["air"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 650000}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propene", "categories": ["air"], "amount": 12000}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 5100000}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1700000}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 96000}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 17000}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 9800000}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 220}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1000000}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 68000}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 740000}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1900}, {"name": "Quinoxyfen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water", "ocean"], "amount": 820}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water", "surface water"], "amount": 0.37}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water"], "amount": 0.37}, {"name": "Radioactive species, alpha emitters", "categories": ["water", "surface water"], "amount": 0.00039}, {"name": "Radioactive species, alpha emitters", "categories": ["water"], "amount": 0.00039}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "low population density, long-term"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "urban air close to ground"], "amount": 0.003}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.0016}, {"name": "Radium-226", "categories": ["water"], "amount": 0.0016}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 160000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 160000000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 55000000}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 18}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Sand, unspecified", "categories": ["natural resource", "in ground"], "amount": 28}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 0.011}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 47000}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 75000}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.00012}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0063}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0063}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 0.025}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spinosad", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 15000}, {"name": "Stibnite", "categories": ["natural resource", "in ground"], "amount": 8400}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.25}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.51}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Styrene", "categories": ["air"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 7.2}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.2}, {"name": "Styrene", "categories": ["water"], "amount": 7.2}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfosate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 23}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 9300}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 24000000}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 82000}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Sylvite, 25 % in sylvinite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "TOC, Total Organic Carbon", "categories": ["water", "ground-, long-term"], "amount": 9500}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 190}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 190}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1600000}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebutam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 25000000}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 25000000}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Terpenes", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Terpenes", "categories": ["air"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 20000000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 20000000}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4600000}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 7900000}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 300000}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 9700}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 5000000}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 0.023}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 75}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 12000}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12000}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.057}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Toluene", "categories": ["air"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 6100000}, {"name": "Toluene", "categories": ["water"], "amount": 6100000}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 87000}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tribenuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Tributyltin compounds", "categories": ["water", "ocean"], "amount": 7.600000000000001}, {"name": "Tributyltin compounds", "categories": ["water", "surface water"], "amount": 7.600000000000001}, {"name": "Tributyltin compounds", "categories": ["water"], "amount": 7.600000000000001}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 3500000}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 650000}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 3100000}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 12000000}, {"name": "Trifluralin", "categories": ["water"], "amount": 4200}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 78000}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 39}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 4600000}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.03}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 3.2}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.029}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.029}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.029}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.029}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 460000}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "Volume occupied, final repository for low-active radioactive waste", "categories": ["natural resource", "in ground"], "amount": 680000}, {"name": "Volume occupied, final repository for radioactive waste", "categories": ["natural resource", "in ground"], "amount": 47000000000}, {"name": "Volume occupied, underground deposit", "categories": ["natural resource", "in ground"], "amount": 230000000}, {"name": "Waste mass, total, placed in landfill", "categories": ["inventory indicator", "waste"], "amount": 24}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 990}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 990}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 990}, {"name": "Water", "categories": ["air"], "amount": 990}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 990}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 7.4e-08}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Xylene", "categories": ["air"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 14000000}, {"name": "Xylene", "categories": ["water"], "amount": 14000000}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 15}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4700000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2200000}, {"name": "Zinc II", "categories": ["soil"], "amount": 2200000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 61000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 61000}, {"name": "Zinc II", "categories": ["water"], "amount": 61000}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 500000}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 3.9}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.9}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "o-Nitrotoluene", "categories": ["air", "low population density, long-term"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 2200000}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.26}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.26}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.26}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2800000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "waste disposal", "radioactive waste to deposit"], "exchanges": [{"name": "Volume occupied, final repository for low-active radioactive waste", "categories": ["natural resource", "in ground"], "amount": 680000}, {"name": "Volume occupied, final repository for radioactive waste", "categories": ["natural resource", "in ground"], "amount": 47000000000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "waste disposal", "waste, non radioactive"], "exchanges": [{"name": "Organic carbon, placed in landfill", "categories": ["inventory indicator", "waste"], "amount": 6200}, {"name": "TOC, Total Organic Carbon", "categories": ["water", "ground-, long-term"], "amount": 9500}, {"name": "Volume occupied, underground deposit", "categories": ["natural resource", "in ground"], "amount": 230000000}, {"name": "Waste mass, total, placed in landfill", "categories": ["inventory indicator", "waste"], "amount": 24}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "water use", "water resources, evaporated"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 990}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 990}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 990}, {"name": "Water", "categories": ["air"], "amount": 990}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 990}]}, {"unit": "points", "name": ["Ecosystem Damage Potential", "land occupation", "ecosystem damage potential"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.74}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.74}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 0.19}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -0.11}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -0.32}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.29}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.63}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 0.49}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 0.49}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 0.8}, {"name": "Occupation, inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, lake, artificial", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.42}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.42}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, river, artificial", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, river, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.41}, {"name": "Occupation, seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, seabed, infrastructure", "categories": ["natural resource", "land"], "amount": 0.8}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -0.26}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.59}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.1}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.59}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 0.63}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.63}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 0.22}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -0.33}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -0.33}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 0.61}]}, {"unit": "points", "name": ["Ecosystem Damage Potential", "land transformation", "ecosystem damage potential"], "exchanges": [{"name": "Transformation, from annual crop", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.03}, {"name": "Transformation, from annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.03}, {"name": "Transformation, from cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.455}, {"name": "Transformation, from dump site", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from forest, extensive", "categories": ["natural resource", "land"], "amount": 12.75}, {"name": "Transformation, from forest, intensive", "categories": ["natural resource", "land"], "amount": 4.25}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 7.75}, {"name": "Transformation, from forest, unspecified", "categories": ["natural resource", "land"], "amount": 7.75}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from industrial area", "categories": ["natural resource", "land"], "amount": 0.1025}, {"name": "Transformation, from inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from lake, artificial", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from pasture, man made", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from permanent crop", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1.9}, {"name": "Transformation, from permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1.9}, {"name": "Transformation, from permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from river, artificial", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from river, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from seabed, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.2}, {"name": "Transformation, from seabed, unspecified", "categories": ["natural resource", "land"], "amount": 0.2}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 5.3}, {"name": "Transformation, from traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.0525}, {"name": "Transformation, from traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.175}, {"name": "Transformation, from traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.0525}, {"name": "Transformation, from unspecified", "categories": ["natural resource", "land"], "amount": 0.0425}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.0425}, {"name": "Transformation, from urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.125}, {"name": "Transformation, from urban, green area", "categories": ["natural resource", "land"], "amount": 0.125}, {"name": "Transformation, from urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, to annual crop", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, irrigated", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -0.03}, {"name": "Transformation, to annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -0.03}, {"name": "Transformation, to cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -0.455}, {"name": "Transformation, to dump site", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to forest, extensive", "categories": ["natural resource", "land"], "amount": -12.75}, {"name": "Transformation, to forest, intensive", "categories": ["natural resource", "land"], "amount": -4.25}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -7.75}, {"name": "Transformation, to forest, unspecified", "categories": ["natural resource", "land"], "amount": -7.75}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to industrial area", "categories": ["natural resource", "land"], "amount": -0.1025}, {"name": "Transformation, to inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to lake, artificial", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to mineral extraction site", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to pasture, man made", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to permanent crop", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -1.9}, {"name": "Transformation, to permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -1.9}, {"name": "Transformation, to permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to river, artificial", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to river, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to seabed, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.2}, {"name": "Transformation, to seabed, unspecified", "categories": ["natural resource", "land"], "amount": -0.2}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -5.3}, {"name": "Transformation, to traffic area, rail network", "categories": ["natural resource", "land"], "amount": -0.0525}, {"name": "Transformation, to traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": -0.175}, {"name": "Transformation, to traffic area, road network", "categories": ["natural resource", "land"], "amount": -0.0525}, {"name": "Transformation, to unspecified", "categories": ["natural resource", "land"], "amount": -0.0425}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.0425}, {"name": "Transformation, to urban, continuously built", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to urban, discontinuously built", "categories": ["natural resource", "land"], "amount": -0.125}, {"name": "Transformation, to urban, green area", "categories": ["natural resource", "land"], "amount": -0.125}, {"name": "Transformation, to urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -0.14}]}, {"unit": "points", "name": ["Ecosystem Damage Potential", "total", "ecosystem damage potential"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.74}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.74}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 0.19}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -0.11}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -0.32}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.29}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.63}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 0.49}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 0.49}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 0.8}, {"name": "Occupation, inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, lake, artificial", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.42}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.42}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, river, artificial", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, river, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.41}, {"name": "Occupation, seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, seabed, infrastructure", "categories": ["natural resource", "land"], "amount": 0.8}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -0.26}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.59}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.1}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.59}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 0.63}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.63}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 0.22}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -0.33}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -0.33}, {"name": "Transformation, from annual crop", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.03}, {"name": "Transformation, from annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.03}, {"name": "Transformation, from cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.455}, {"name": "Transformation, from dump site", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from forest, extensive", "categories": ["natural resource", "land"], "amount": 12.75}, {"name": "Transformation, from forest, intensive", "categories": ["natural resource", "land"], "amount": 4.25}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 7.75}, {"name": "Transformation, from forest, unspecified", "categories": ["natural resource", "land"], "amount": 7.75}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from industrial area", "categories": ["natural resource", "land"], "amount": 0.1025}, {"name": "Transformation, from inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from lake, artificial", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from pasture, man made", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from permanent crop", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1.9}, {"name": "Transformation, from permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1.9}, {"name": "Transformation, from permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from river, artificial", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from river, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from seabed, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.2}, {"name": "Transformation, from seabed, unspecified", "categories": ["natural resource", "land"], "amount": 0.2}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 5.3}, {"name": "Transformation, from traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.0525}, {"name": "Transformation, from traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.175}, {"name": "Transformation, from traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.0525}, {"name": "Transformation, from unspecified", "categories": ["natural resource", "land"], "amount": 0.0425}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.0425}, {"name": "Transformation, from urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.125}, {"name": "Transformation, from urban, green area", "categories": ["natural resource", "land"], "amount": 0.125}, {"name": "Transformation, from urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, to annual crop", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, irrigated", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -0.03}, {"name": "Transformation, to annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -0.03}, {"name": "Transformation, to cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -0.455}, {"name": "Transformation, to dump site", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to forest, extensive", "categories": ["natural resource", "land"], "amount": -12.75}, {"name": "Transformation, to forest, intensive", "categories": ["natural resource", "land"], "amount": -4.25}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -7.75}, {"name": "Transformation, to forest, unspecified", "categories": ["natural resource", "land"], "amount": -7.75}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to industrial area", "categories": ["natural resource", "land"], "amount": -0.1025}, {"name": "Transformation, to inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to lake, artificial", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to mineral extraction site", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to pasture, man made", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to permanent crop", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -1.9}, {"name": "Transformation, to permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -1.9}, {"name": "Transformation, to permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to river, artificial", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to river, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to seabed, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.2}, {"name": "Transformation, to seabed, unspecified", "categories": ["natural resource", "land"], "amount": -0.2}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -5.3}, {"name": "Transformation, to traffic area, rail network", "categories": ["natural resource", "land"], "amount": -0.0525}, {"name": "Transformation, to traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": -0.175}, {"name": "Transformation, to traffic area, road network", "categories": ["natural resource", "land"], "amount": -0.0525}, {"name": "Transformation, to unspecified", "categories": ["natural resource", "land"], "amount": -0.0425}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.0425}, {"name": "Transformation, to urban, continuously built", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to urban, discontinuously built", "categories": ["natural resource", "land"], "amount": -0.125}, {"name": "Transformation, to urban, green area", "categories": ["natural resource", "land"], "amount": -0.125}, {"name": "Transformation, to urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 0.61}]}, {"unit": "square meter", "name": ["EDIP 2003 no LT", "acidification no LT", "acidification no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 23.1}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 62}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 113}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 33.2}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 17.7}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 11.5}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.1}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.1}, {"name": "Ammonia", "categories": ["air"], "amount": 23.1}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 62}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 62}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 113}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 113}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 113}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.2}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33.2}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 33.2}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.7}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.7}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 17.7}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.5}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.5}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 11.5}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 8.6}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 8.6}]}, {"unit": "m3 water", "name": ["EDIP 2003 no LT", "ecotoxicity no LT", "acute, in water no LT"], "exchanges": [{"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 11765000}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1250000}, {"name": "Dichromate", "categories": ["water", "ground-"], "amount": 32099}, {"name": "Hypochlorite", "categories": ["water", "ground-"], "amount": 26667}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 5000000}, {"name": "Titanium ion", "categories": ["water", "ground-"], "amount": 13680}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 20000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 100000}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 34.483}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 34.483}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 34.483}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 34.483}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 126.58}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 126.58}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 126.58}, {"name": "2-Propanol", "categories": ["water"], "amount": 126.58}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 366.3}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 366.3}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 366.3}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 366.3}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 200}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 200}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 200}, {"name": "Acetic acid", "categories": ["water"], "amount": 200}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Acetone", "categories": ["water"], "amount": 10000}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 66667}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 66667}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 66667}, {"name": "Aluminium III", "categories": ["water"], "amount": 66667}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 188680}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 188680}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 188680}, {"name": "Antimony ion", "categories": ["water"], "amount": 188680}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Benzene", "categories": ["water"], "amount": 10000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 100000}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4000}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 4000}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4000}, {"name": "Beryllium II", "categories": ["water"], "amount": 4000}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 36.364}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 36.364}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 36.364}, {"name": "Butanol", "categories": ["water"], "amount": 36.364}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 11765000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 11765000}, {"name": "Cadmium II", "categories": ["water"], "amount": 11765000}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Chloroform", "categories": ["water"], "amount": 10000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 66667}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 66667}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 66667}, {"name": "Chromium VI", "categories": ["water"], "amount": 66667}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Cobalt II", "categories": ["water"], "amount": 200000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1250000}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1250000}, {"name": "Copper ion", "categories": ["water"], "amount": 1250000}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 7142.9}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 7142.9}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 7142.9}, {"name": "Cumene", "categories": ["water"], "amount": 7142.9}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Cyanide", "categories": ["water"], "amount": 2000000}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 32099}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 32099}, {"name": "Dichromate", "categories": ["water"], "amount": 32099}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 20}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 20}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 20}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 20}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 10000}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.6918}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.6918}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.6918}, {"name": "Ethanol", "categories": ["water"], "amount": 2.6918}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 4545.5}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 4545.5}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 4545.5}, {"name": "Ethylene", "categories": ["water"], "amount": 4545.5}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 10000}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 207.25}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 207.25}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 207.25}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 207.25}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 59880}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 59880}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 59880}, {"name": "Formaldehyde", "categories": ["water"], "amount": 59880}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 73529}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 73529}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 73529}, {"name": "Hexane", "categories": ["water"], "amount": 73529}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 3333300}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 3333300}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 3333300}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 3333300}, {"name": "Hypochlorite", "categories": ["water", "ocean"], "amount": 26667}, {"name": "Hypochlorite", "categories": ["water", "surface water"], "amount": 26667}, {"name": "Hypochlorite", "categories": ["water"], "amount": 26667}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Iron ion", "categories": ["water"], "amount": 10000}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Lead II", "categories": ["water"], "amount": 200000}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 35714}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 35714}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 35714}, {"name": "Manganese II", "categories": ["water"], "amount": 35714}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Mercury II", "categories": ["water"], "amount": 2000000}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 25}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 25}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 25}, {"name": "Methanol", "categories": ["water"], "amount": 25}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 200000}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "m-Xylene", "categories": ["water"], "amount": 10000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 66667}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 66667}, {"name": "Nickel II", "categories": ["water"], "amount": 66667}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 200000}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "o-Xylene", "categories": ["water"], "amount": 10000}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 22222}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 22222}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 22222}, {"name": "Phenol", "categories": ["water"], "amount": 22222}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1000}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1000}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1000}, {"name": "Propanal", "categories": ["water"], "amount": 1000}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 588.24}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 588.24}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 588.24}, {"name": "Propylene oxide", "categories": ["water"], "amount": 588.24}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1428600}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1428600}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1428600}, {"name": "Selenium IV", "categories": ["water"], "amount": 1428600}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 5000000}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 5000000}, {"name": "Silver I", "categories": ["water"], "amount": 5000000}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 62500}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 62500}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 62500}, {"name": "Strontium", "categories": ["water"], "amount": 62500}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 40000}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 40000}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 40000}, {"name": "Styrene", "categories": ["water"], "amount": 40000}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 333330}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 333330}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 333330}, {"name": "Thallium I", "categories": ["water"], "amount": 333330}, {"name": "Titanium ion", "categories": ["water", "ocean"], "amount": 13680}, {"name": "Titanium ion", "categories": ["water", "surface water"], "amount": 13680}, {"name": "Titanium ion", "categories": ["water"], "amount": 13680}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Toluene", "categories": ["water"], "amount": 10000}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 20000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 20000}, {"name": "Vanadium V", "categories": ["water"], "amount": 20000}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Xylene", "categories": ["water"], "amount": 10000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Zinc II", "categories": ["water"], "amount": 100000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 192310}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 192310}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 192310}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 192310}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 10000}]}, {"unit": "m3 soil", "name": ["EDIP 2003 no LT", "ecotoxicity no LT", "chronic, in soil no LT"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 95.515}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 461.7}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 789.88}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 11482}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 15232}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 782.2}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 6933.8}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 10036}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 19764}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 527990}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 218820}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 101260}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 27121}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3594}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 37807}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 212.76}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1244700}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 91.976}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1777.8}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3344.7}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2082}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 24963}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 10.667}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1508.3}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 36186}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 9095.8}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 17.778}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 83.098}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 7587200}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 6666.7}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 180590}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 68978}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4093200}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 60.654}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 35162000}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 75.244}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 11740000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 4481100}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 61023}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 10.262}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 8720.3}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1055.9}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 15096}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 468910}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 585.76}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 671890}, {"name": "Fenpropimorph", "categories": ["soil", "agricultural"], "amount": 22489}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 6452200}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 720920}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 249680}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 202910}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 155300}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2464.3}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 591340}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 707770}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 10.667}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 59170}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 613750}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 26698}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 1899.6}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2900600}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 20.375}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 5333.3}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 120870}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 254120}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 97.538}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 32141000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2625300}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 3875}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 3136.7}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 53.333}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 333.29}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 4857100000}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 152620}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 3121000}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 24465000}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2335500}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 39998}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 3066.8}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 164630}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 675480000}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 10765}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 91431}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 189420}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2486.3}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 106380}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 265950}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 4.2341}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 3324.4}, {"name": "Sulfosate", "categories": ["soil", "agricultural"], "amount": 553.58}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 4938.2}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 113250000}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 17730}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 17206}, {"name": "Thorium", "categories": ["air", "urban air close to ground"], "amount": 8865}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 727.63}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 968.76}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2006300}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 2999800}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 141470}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1587500}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 128430}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 344.9}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 400.47}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.3333}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 95.515}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 95.515}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 95.515}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 461.7}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 461.7}, {"name": "2-Propanol", "categories": ["air"], "amount": 461.7}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 789.88}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 789.88}, {"name": "Acetic acid", "categories": ["air"], "amount": 789.88}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 11482}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11482}, {"name": "Acetone", "categories": ["air"], "amount": 11482}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 782.2}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 782.2}, {"name": "Aluminium III", "categories": ["air"], "amount": 782.2}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 10036}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10036}, {"name": "Antimony ion", "categories": ["air"], "amount": 10036}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 27121}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27121}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 27121}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3594}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3594}, {"name": "Benzene", "categories": ["air"], "amount": 3594}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 212.76}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 212.76}, {"name": "Beryllium II", "categories": ["air"], "amount": 212.76}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.976}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.976}, {"name": "Butanol", "categories": ["air"], "amount": 91.976}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1777.8}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1777.8}, {"name": "Cadmium II", "categories": ["air"], "amount": 1777.8}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 24963}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24963}, {"name": "Chloroform", "categories": ["air"], "amount": 24963}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.667}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.667}, {"name": "Chromium VI", "categories": ["air"], "amount": 10.667}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9095.8}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9095.8}, {"name": "Cobalt II", "categories": ["air"], "amount": 9095.8}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.778}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.778}, {"name": "Copper ion", "categories": ["air"], "amount": 17.778}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 83.098}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 83.098}, {"name": "Cumene", "categories": ["air"], "amount": 83.098}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7587200}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7587200}, {"name": "Cyanide", "categories": ["air"], "amount": 7587200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11740000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11740000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 11740000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 61023}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 61023}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 61023}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.262}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.262}, {"name": "Ethanol", "categories": ["air"], "amount": 10.262}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8720.3}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1055.9}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 585.76}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 585.76}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 585.76}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 202910}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 202910}, {"name": "Formaldehyde", "categories": ["air"], "amount": 202910}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2464.3}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2464.3}, {"name": "Hexane", "categories": ["air"], "amount": 2464.3}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 531.9}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 531.9}, {"name": "Iron ion", "categories": ["air"], "amount": 531.9}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.667}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.667}, {"name": "Lead II", "categories": ["air"], "amount": 10.667}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1899.6}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1899.6}, {"name": "Manganese II", "categories": ["air"], "amount": 1899.6}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["air"], "amount": 5333.3}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.538}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 97.538}, {"name": "Methanol", "categories": ["air"], "amount": 97.538}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 3875}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3875}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 3875}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 53.333}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53.333}, {"name": "Nickel II", "categories": ["air"], "amount": 53.333}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 3066.8}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3066.8}, {"name": "Propanal", "categories": ["air"], "amount": 3066.8}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 10765}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10765}, {"name": "Propylene oxide", "categories": ["air"], "amount": 10765}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 106380}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 106380}, {"name": "Selenium IV", "categories": ["air"], "amount": 106380}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 265950}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265950}, {"name": "Silver I", "categories": ["air"], "amount": 265950}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2341}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2341}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 4.2341}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 3324.4}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3324.4}, {"name": "Strontium", "categories": ["air"], "amount": 3324.4}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 17730}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17730}, {"name": "Thallium I", "categories": ["air"], "amount": 17730}, {"name": "Thorium", "categories": ["air", "non-urban air or from high stacks"], "amount": 8865}, {"name": "Thorium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8865}, {"name": "Thorium", "categories": ["air"], "amount": 8865}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 727.63}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 727.63}, {"name": "Titanium ion", "categories": ["air"], "amount": 727.63}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 968.76}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 968.76}, {"name": "Toluene", "categories": ["air"], "amount": 968.76}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 344.9}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 344.9}, {"name": "Vanadium V", "categories": ["air"], "amount": 344.9}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 400.47}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400.47}, {"name": "Xylene", "categories": ["air"], "amount": 400.47}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3333}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3333}, {"name": "Zinc II", "categories": ["air"], "amount": 5.3333}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 977.75}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 977.75}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 977.75}, {"name": "Aluminium III", "categories": ["soil"], "amount": 977.75}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 12545}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 12545}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 12545}, {"name": "Antimony ion", "categories": ["soil"], "amount": 12545}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 265.95}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 265.95}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 265.95}, {"name": "Beryllium II", "categories": ["soil"], "amount": 265.95}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 2222.2}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2222.2}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2222.2}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2222.2}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 13.333}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 13.333}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 13.333}, {"name": "Chromium VI", "categories": ["soil"], "amount": 13.333}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 11370}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 11370}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 11370}, {"name": "Cobalt II", "categories": ["soil"], "amount": 11370}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 22.222}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 22.222}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 22.222}, {"name": "Copper ion", "categories": ["soil"], "amount": 22.222}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 155300}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 664.87}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 664.87}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 664.87}, {"name": "Iron ion", "categories": ["soil"], "amount": 664.87}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 13.333}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 13.333}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 13.333}, {"name": "Lead II", "categories": ["soil"], "amount": 13.333}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 2374.5}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 2374.5}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 2374.5}, {"name": "Manganese II", "categories": ["soil"], "amount": 2374.5}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["soil"], "amount": 5333.3}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 4843.7}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 4843.7}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4843.7}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 66.667}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 66.667}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 66.667}, {"name": "Nickel II", "categories": ["soil"], "amount": 66.667}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 333.29}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 333.29}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 333.29}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 132970}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 132970}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 132970}, {"name": "Selenium IV", "categories": ["soil"], "amount": 132970}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 332440}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 332440}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 332440}, {"name": "Silver I", "categories": ["soil"], "amount": 332440}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 4155.4}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 4155.4}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 4155.4}, {"name": "Strontium", "categories": ["soil"], "amount": 4155.4}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 22162}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 22162}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 22162}, {"name": "Thallium I", "categories": ["soil"], "amount": 22162}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 909.54}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 909.54}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 909.54}, {"name": "Titanium ion", "categories": ["soil"], "amount": 909.54}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 431.12}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 431.12}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 431.12}, {"name": "Vanadium V", "categories": ["soil"], "amount": 431.12}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 6.6667}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 6.6667}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 6.6667}, {"name": "Zinc II", "categories": ["soil"], "amount": 6.6667}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 3594}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3594}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 3594}, {"name": "Benzene", "categories": ["water"], "amount": 3594}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 37807}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 37807}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 37807}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 24963}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 24963}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 24963}, {"name": "Chloroform", "categories": ["water"], "amount": 24963}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 83.098}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 83.098}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 83.098}, {"name": "Cumene", "categories": ["water"], "amount": 83.098}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 7587200}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 7587200}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 7587200}, {"name": "Cyanide", "categories": ["water"], "amount": 7587200}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["water"], "amount": 8720.3}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1055.9}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2464.3}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2464.3}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2464.3}, {"name": "Hexane", "categories": ["water"], "amount": 2464.3}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["water"], "amount": 5333.3}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 400.47}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 400.47}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 400.47}, {"name": "m-Xylene", "categories": ["water"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water"], "amount": 400.47}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 968.76}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 968.76}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 968.76}, {"name": "Toluene", "categories": ["water"], "amount": 968.76}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 400.47}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 400.47}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 400.47}, {"name": "Xylene", "categories": ["water"], "amount": 400.47}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 17232}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 531.9}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["air"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 333.33}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 333.33}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 333.33}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 333.33}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 150510}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 875000000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 492.91}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 492.91}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 492.91}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 492.91}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 114680}]}, {"unit": "m3 water", "name": ["EDIP 2003 no LT", "ecotoxicity no LT", "chronic, in water no LT"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 13.793}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 50.633}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 80}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1212.1}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 29412}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 377360}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 8888.9}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4000}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 8000}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 14.545}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 23529000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 117650000}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 133330}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 400000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2500000}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 12500000}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2857.1}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 800000}, {"name": "Dichromate", "categories": ["water", "ground-"], "amount": 320990}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 555560000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.0767}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1818.2}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 82.902}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 23952}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 147060}, {"name": "Hypochlorite", "categories": ["water", "ground-"], "amount": 266670}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 400000}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 71429}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 4000000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 400000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 133330}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 400}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1176.5}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 4000000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 10000000}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 50000000}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 52926}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 125000}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 666670}, {"name": "Thorium", "categories": ["air", "urban air close to ground"], "amount": 333330}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 27360}, {"name": "Titanium ion", "categories": ["water", "ground-"], "amount": 136800}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 4000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 40000}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 4000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 200000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1000000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.793}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.793}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 13.793}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.633}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.633}, {"name": "2-Propanol", "categories": ["air"], "amount": 50.633}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 80}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80}, {"name": "Acetic acid", "categories": ["air"], "amount": 80}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1212.1}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1212.1}, {"name": "Acetone", "categories": ["air"], "amount": 1212.1}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 29412}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29412}, {"name": "Aluminium III", "categories": ["air"], "amount": 29412}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 377360}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 377360}, {"name": "Antimony ion", "categories": ["air"], "amount": 377360}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8888.9}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8888.9}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 8888.9}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000}, {"name": "Benzene", "categories": ["air"], "amount": 4000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8000}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8000}, {"name": "Beryllium II", "categories": ["air"], "amount": 8000}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.545}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.545}, {"name": "Butanol", "categories": ["air"], "amount": 14.545}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 23529000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23529000}, {"name": "Cadmium II", "categories": ["air"], "amount": 23529000}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Chloroform", "categories": ["air"], "amount": 20000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 133330}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 133330}, {"name": "Chromium VI", "categories": ["air"], "amount": 133330}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 400000}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400000}, {"name": "Cobalt II", "categories": ["air"], "amount": 400000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000}, {"name": "Copper ion", "categories": ["air"], "amount": 2500000}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2857.1}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2857.1}, {"name": "Cumene", "categories": ["air"], "amount": 2857.1}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 800000}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 800000}, {"name": "Cyanide", "categories": ["air"], "amount": 800000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 555560000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 555560000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 555560000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 20000}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0767}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0767}, {"name": "Ethanol", "categories": ["air"], "amount": 1.0767}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1818.2}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 20000}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.902}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.902}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 82.902}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 23952}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23952}, {"name": "Formaldehyde", "categories": ["air"], "amount": 23952}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 147060}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 147060}, {"name": "Hexane", "categories": ["air"], "amount": 147060}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Iron ion", "categories": ["air"], "amount": 20000}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 400000}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400000}, {"name": "Lead II", "categories": ["air"], "amount": 400000}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 71429}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71429}, {"name": "Manganese II", "categories": ["air"], "amount": 71429}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000000}, {"name": "Mercury II", "categories": ["air"], "amount": 4000000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Methanol", "categories": ["air"], "amount": 10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 400000}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400000}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 400000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 133330}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 133330}, {"name": "Nickel II", "categories": ["air"], "amount": 133330}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 400}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400}, {"name": "Propanal", "categories": ["air"], "amount": 400}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1176.5}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1176.5}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1176.5}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000000}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000000}, {"name": "Selenium IV", "categories": ["air"], "amount": 4000000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000000}, {"name": "Silver I", "categories": ["air"], "amount": 10000000}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 52926}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 52926}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 52926}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 125000}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 125000}, {"name": "Strontium", "categories": ["air"], "amount": 125000}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 666670}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 666670}, {"name": "Thallium I", "categories": ["air"], "amount": 666670}, {"name": "Thorium", "categories": ["air", "non-urban air or from high stacks"], "amount": 333330}, {"name": "Thorium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 333330}, {"name": "Thorium", "categories": ["air"], "amount": 333330}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 27360}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27360}, {"name": "Titanium ion", "categories": ["air"], "amount": 27360}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000}, {"name": "Toluene", "categories": ["air"], "amount": 4000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 40000}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40000}, {"name": "Vanadium V", "categories": ["air"], "amount": 40000}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000}, {"name": "Xylene", "categories": ["air"], "amount": 4000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 200000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 200000}, {"name": "Zinc II", "categories": ["air"], "amount": 200000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 4000000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 4000000}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 4000000}, {"name": "Mercury II", "categories": ["soil"], "amount": 4000000}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 68.966}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 68.966}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 68.966}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 68.966}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 253.16}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 253.16}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 253.16}, {"name": "2-Propanol", "categories": ["water"], "amount": 253.16}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 732.6}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 732.6}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 732.6}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 732.6}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 400}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 400}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 400}, {"name": "Acetic acid", "categories": ["water"], "amount": 400}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 6060.6}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 6060.6}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 6060.6}, {"name": "Acetone", "categories": ["water"], "amount": 6060.6}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 147060}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 147060}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 147060}, {"name": "Aluminium III", "categories": ["water"], "amount": 147060}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 1886800}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1886800}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1886800}, {"name": "Antimony ion", "categories": ["water"], "amount": 1886800}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "Benzene", "categories": ["water"], "amount": 4000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 200000}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 40000}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 40000}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 40000}, {"name": "Beryllium II", "categories": ["water"], "amount": 40000}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 72.727}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 72.727}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 72.727}, {"name": "Butanol", "categories": ["water"], "amount": 72.727}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 117650000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 117650000}, {"name": "Cadmium II", "categories": ["water"], "amount": 117650000}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 20000}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 20000}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 20000}, {"name": "Chloroform", "categories": ["water"], "amount": 20000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 666670}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 666670}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 666670}, {"name": "Chromium VI", "categories": ["water"], "amount": 666670}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Cobalt II", "categories": ["water"], "amount": 2000000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 12500000}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 12500000}, {"name": "Copper ion", "categories": ["water"], "amount": 12500000}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2857.1}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2857.1}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2857.1}, {"name": "Cumene", "categories": ["water"], "amount": 2857.1}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 800000}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 800000}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 800000}, {"name": "Cyanide", "categories": ["water"], "amount": 800000}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 320990}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 320990}, {"name": "Dichromate", "categories": ["water"], "amount": 320990}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 29.412}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 29.412}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 29.412}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 29.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 100000}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 5.3836}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3836}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 5.3836}, {"name": "Ethanol", "categories": ["water"], "amount": 5.3836}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["water"], "amount": 1818.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 20000}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 414.51}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 414.51}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 414.51}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 414.51}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 119760}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 119760}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 119760}, {"name": "Formaldehyde", "categories": ["water"], "amount": 119760}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 147060}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 147060}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 147060}, {"name": "Hexane", "categories": ["water"], "amount": 147060}, {"name": "Hypochlorite", "categories": ["water", "ocean"], "amount": 266670}, {"name": "Hypochlorite", "categories": ["water", "surface water"], "amount": 266670}, {"name": "Hypochlorite", "categories": ["water"], "amount": 266670}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Iron ion", "categories": ["water"], "amount": 100000}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Lead II", "categories": ["water"], "amount": 2000000}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 357140}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 357140}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 357140}, {"name": "Manganese II", "categories": ["water"], "amount": 357140}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 4000000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 4000000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 4000000}, {"name": "Mercury II", "categories": ["water"], "amount": 4000000}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 50}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 50}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 50}, {"name": "Methanol", "categories": ["water"], "amount": 50}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2000000}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "m-Xylene", "categories": ["water"], "amount": 4000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 666670}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 666670}, {"name": "Nickel II", "categories": ["water"], "amount": 666670}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 1000000}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 1000000}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 1000000}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1000000}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "o-Xylene", "categories": ["water"], "amount": 4000}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 44444}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 44444}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 44444}, {"name": "Phenol", "categories": ["water"], "amount": 44444}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 2000}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 2000}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 2000}, {"name": "Propanal", "categories": ["water"], "amount": 2000}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 5882.4}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 5882.4}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 5882.4}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5882.4}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 20000000}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 20000000}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 20000000}, {"name": "Selenium IV", "categories": ["water"], "amount": 20000000}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 50000000}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 50000000}, {"name": "Silver I", "categories": ["water"], "amount": 50000000}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 625000}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 625000}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 625000}, {"name": "Strontium", "categories": ["water"], "amount": 625000}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3333300}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 3333300}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3333300}, {"name": "Thallium I", "categories": ["water"], "amount": 3333300}, {"name": "Titanium ion", "categories": ["water", "ocean"], "amount": 136800}, {"name": "Titanium ion", "categories": ["water", "surface water"], "amount": 136800}, {"name": "Titanium ion", "categories": ["water"], "amount": 136800}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "Toluene", "categories": ["water"], "amount": 4000}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Vanadium V", "categories": ["water"], "amount": 200000}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "Xylene", "categories": ["water"], "amount": 4000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1000000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1000000}, {"name": "Zinc II", "categories": ["water"], "amount": 1000000}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["air"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1923100}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1923100}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1923100}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1923100}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 10000}]}, {"unit": "m3 waste water", "name": ["EDIP 2003 no LT", "ecotoxicity no LT", "in sewage treatment plants no LT"], "exchanges": [{"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5000000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 15000000}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 25000000}, {"name": "Dichromate", "categories": ["water", "ground-"], "amount": 482}, {"name": "Hypochlorite", "categories": ["water", "ground-"], "amount": 898000}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 6700}, {"name": "Titanium ion", "categories": ["water", "ground-"], "amount": 6800}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 290000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 44000}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 20}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 20}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 20}, {"name": "Acetic acid", "categories": ["water"], "amount": 20}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 500000000}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 500000000}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 500000000}, {"name": "Acetone", "categories": ["water"], "amount": 500000000}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Benzene", "categories": ["water"], "amount": 500000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5000000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5000000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5000000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 15000000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 15000000}, {"name": "Cadmium II", "categories": ["water"], "amount": 15000000}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Chloroform", "categories": ["water"], "amount": 500000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1000}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1000}, {"name": "Chromium VI", "categories": ["water"], "amount": 1000}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 120000}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 120000}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 120000}, {"name": "Cobalt II", "categories": ["water"], "amount": 120000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 25000000}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 25000000}, {"name": "Copper ion", "categories": ["water"], "amount": 25000000}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1900}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1900}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1900}, {"name": "Cumene", "categories": ["water"], "amount": 1900}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 100000000}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 100000000}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 100000000}, {"name": "Cyanide", "categories": ["water"], "amount": 100000000}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 482}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 482}, {"name": "Dichromate", "categories": ["water"], "amount": 482}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 500000}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3600}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 3600}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3600}, {"name": "Formaldehyde", "categories": ["water"], "amount": 3600}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 170000000}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 170000000}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 170000000}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 170000000}, {"name": "Hypochlorite", "categories": ["water", "ocean"], "amount": 898000}, {"name": "Hypochlorite", "categories": ["water", "surface water"], "amount": 898000}, {"name": "Hypochlorite", "categories": ["water"], "amount": 898000}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 6700}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 6700}, {"name": "Iron ion", "categories": ["water"], "amount": 6700}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5000000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 5000000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5000000}, {"name": "Lead II", "categories": ["water"], "amount": 5000000}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 130000}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 130000}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 130000}, {"name": "Manganese II", "categories": ["water"], "amount": 130000}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Mercury II", "categories": ["water"], "amount": 100000}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 8}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 8}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 8}, {"name": "Methanol", "categories": ["water"], "amount": 8}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 100000}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "m-Xylene", "categories": ["water"], "amount": 500000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 69000}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 69000}, {"name": "Nickel II", "categories": ["water"], "amount": 69000}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "o-Xylene", "categories": ["water"], "amount": 500000}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 780}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 780}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 780}, {"name": "Phenol", "categories": ["water"], "amount": 780}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 30}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 30}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 30}, {"name": "Propylene oxide", "categories": ["water"], "amount": 30}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 10000000}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 10000000}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 10000000}, {"name": "Selenium IV", "categories": ["water"], "amount": 10000000}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 5000000}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 5000000}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 5000000}, {"name": "Strontium", "categories": ["water"], "amount": 5000000}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 690}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 690}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 690}, {"name": "Styrene", "categories": ["water"], "amount": 690}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 1700000}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1700000}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 1700000}, {"name": "Thallium I", "categories": ["water"], "amount": 1700000}, {"name": "Titanium ion", "categories": ["water", "ocean"], "amount": 6800}, {"name": "Titanium ion", "categories": ["water", "surface water"], "amount": 6800}, {"name": "Titanium ion", "categories": ["water"], "amount": 6800}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Toluene", "categories": ["water"], "amount": 500000}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 290000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 290000}, {"name": "Vanadium V", "categories": ["water"], "amount": 290000}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Xylene", "categories": ["water"], "amount": 500000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 44000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 44000}, {"name": "Zinc II", "categories": ["water"], "amount": 44000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2500}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 2500}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2500}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 2500}]}, {"unit": "kg NO3-", "name": ["EDIP 2003 no LT", "eutrophication no LT", "combined potential no LT"], "exchanges": [{"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.69002}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 3.64}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.4838}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 2.38}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.287}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.7965}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.3479}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 2.6137}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 9.196}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 32.03}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.2}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.5}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.64}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.64}, {"name": "Ammonia", "categories": ["air"], "amount": 3.64}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38}, {"name": "Cyanide", "categories": ["air"], "amount": 2.38}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.2}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrate", "categories": ["air"], "amount": 1}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.03}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32.03}, {"name": "Phosphorus", "categories": ["air"], "amount": 32.03}, {"name": "Nitrogen", "categories": ["soil", "forestry"], "amount": 2.3479}, {"name": "Nitrogen", "categories": ["soil", "industrial"], "amount": 2.3479}, {"name": "Nitrogen", "categories": ["soil"], "amount": 2.3479}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.627}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.627}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.627}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.627}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.69002}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.69002}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.69002}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 2.548}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.4838}, {"name": "Ammonium", "categories": ["water"], "amount": 0.4838}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4042}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 1.666}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4042}, {"name": "Cyanide", "categories": ["water"], "amount": 1.4042}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 1.218}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 1.4451}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 1.218}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1.218}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 2.7134}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.287}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.287}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.59}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.7}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.59}, {"name": "Nitrate", "categories": ["water"], "amount": 0.59}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.729}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.7965}, {"name": "Nitrite", "categories": ["water"], "amount": 0.7965}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.29796}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.35351}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.29796}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.29796}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 2.6137}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 3.101}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 2.6137}, {"name": "Nitrogen", "categories": ["water"], "amount": 2.6137}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 3.101}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 2.6137}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 2.6137}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 10.45}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 9.196}, {"name": "Phosphate", "categories": ["water"], "amount": 9.196}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 28.186}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 32.03}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 28.186}, {"name": "Phosphorus", "categories": ["water"], "amount": 28.186}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.82}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.82}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.82}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.35}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.35}]}, {"unit": "kg N", "name": ["EDIP 2003 no LT", "eutrophication no LT", "separate N potential no LT"], "exchanges": [{"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.15576}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.82}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.4838}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 0.54}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 0.51625}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.23}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.177}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.53}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.59}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82}, {"name": "Ammonia", "categories": ["air"], "amount": 0.82}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.54}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.54}, {"name": "Cyanide", "categories": ["air"], "amount": 0.54}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23}, {"name": "Nitrate", "categories": ["air"], "amount": 0.23}, {"name": "Nitrogen", "categories": ["soil", "forestry"], "amount": 0.53}, {"name": "Nitrogen", "categories": ["soil", "industrial"], "amount": 0.53}, {"name": "Nitrogen", "categories": ["soil"], "amount": 0.53}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.15576}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.15576}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.15576}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.574}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.4838}, {"name": "Ammonium", "categories": ["water"], "amount": 0.4838}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 0.3186}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 0.378}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 0.3186}, {"name": "Cyanide", "categories": ["water"], "amount": 0.3186}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.27494}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.3262}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.27494}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.27494}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.6125}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 0.51625}, {"name": "Hydrazine", "categories": ["water"], "amount": 0.51625}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.1357}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.161}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.1357}, {"name": "Nitrate", "categories": ["water"], "amount": 0.1357}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.162}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.177}, {"name": "Nitrite", "categories": ["water"], "amount": 0.177}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.06726}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.0798}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.06726}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.06726}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.59}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.7}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.59}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.59}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 0.7}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.59}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.59}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.64}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.64}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.3}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.3}]}, {"unit": "kg P", "name": ["EDIP 2003 no LT", "eutrophication no LT", "separate P potential no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.2904}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phosphorus", "categories": ["air"], "amount": 1}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0198}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0198}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0198}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0198}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.2904}, {"name": "Phosphate", "categories": ["water"], "amount": 0.2904}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 0.88}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 0.88}, {"name": "Phosphorus", "categories": ["water"], "amount": 0.88}]}, {"unit": "square meter", "name": ["EDIP 2003 no LT", "eutrophication no LT", "terrestrial eutrophication no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 101}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 101}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101}, {"name": "Ammonia", "categories": ["air"], "amount": 101}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 25.4}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.4}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.4}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 25.4}]}, {"unit": "kg CO2-Eq", "name": ["EDIP 2003 no LT", "global warming no LT", "GWP 100a no LT"], "exchanges": [{"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 30}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 140}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4300}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 700}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 120}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2400}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 120}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 620}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3400}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 6900}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1700}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 14000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 210}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 550}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 23}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 16}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 23}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1800}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5700}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 22200}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentene", "categories": ["air"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetic acid", "categories": ["air"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 1}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetone", "categories": ["air"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acrolein", "categories": ["air"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene", "categories": ["air"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butadiene", "categories": ["air"], "amount": 3}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butane", "categories": ["air"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 30}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30}, {"name": "Chloroform", "categories": ["air"], "amount": 30}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Cumene", "categories": ["air"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethane", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 140}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4300}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4300}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4300}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 700}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 700}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 700}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 120}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 120}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 120}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2400}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2400}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2400}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 120}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 120}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 120}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 620}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 620}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 620}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3400}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethanol", "categories": ["air"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethyne", "categories": ["air"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Formic acid", "categories": ["air"], "amount": 2}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Furan", "categories": ["air"], "amount": 2}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Heptane", "categories": ["air"], "amount": 3}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hexane", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Lactic acid", "categories": ["air"], "amount": 2}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 23}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 23}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1300}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 6900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 6900}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1700}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 14000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 14000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 10}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10600}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10600}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10600}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 210}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 210}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 210}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 550}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 550}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 550}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 23}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23}, {"name": "Methane, fossil", "categories": ["air"], "amount": 23}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 16}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 16}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1800}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5700}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12000}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 2}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanol", "categories": ["air"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl formate", "categories": ["air"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "m-Xylene", "categories": ["air"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "o-Xylene", "categories": ["air"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Paraffins", "categories": ["air"], "amount": 3}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Pentane", "categories": ["air"], "amount": 3}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol", "categories": ["air"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propanal", "categories": ["air"], "amount": 2}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propane", "categories": ["air"], "amount": 3}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propene", "categories": ["air"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propionic acid", "categories": ["air"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Sodium formate", "categories": ["air"], "amount": 2}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Styrene", "categories": ["air"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 22200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 22200}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 2}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Toluene", "categories": ["air"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Xylene", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9800}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9800}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9800}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9800}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6000}, {"name": "Butene", "categories": ["air"], "amount": 3}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 296}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 296}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 296}]}, {"unit": "kg CO2-Eq", "name": ["EDIP 2003 no LT", "global warming no LT", "GWP 20a no LT"], "exchanges": [{"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 100}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 3300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 450}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5500}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2100}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 410}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5200}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 390}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 4900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 5900}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 16}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 3600}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7900}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 4800}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 10000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 35}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 700}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1800}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 62}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 55}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 62}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 3900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6300}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 9400}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentene", "categories": ["air"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetic acid", "categories": ["air"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 1}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetone", "categories": ["air"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acrolein", "categories": ["air"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene", "categories": ["air"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butadiene", "categories": ["air"], "amount": 3}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butane", "categories": ["air"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 100}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100}, {"name": "Chloroform", "categories": ["air"], "amount": 100}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Cumene", "categories": ["air"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethane", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 3300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 450}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 450}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 450}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5500}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5500}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5500}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2100}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2100}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2100}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 410}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 410}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 410}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5200}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5200}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5200}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 390}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 390}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 4900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 4900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 5900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 5900}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethanol", "categories": ["air"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethyne", "categories": ["air"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Formic acid", "categories": ["air"], "amount": 2}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Furan", "categories": ["air"], "amount": 2}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Heptane", "categories": ["air"], "amount": 3}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hexane", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Lactic acid", "categories": ["air"], "amount": 2}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 62}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 62}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 62}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 16}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 16}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 3600}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3600}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 3600}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7900}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 4800}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4800}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 4800}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 10000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 35}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 700}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1800}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 62}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 62}, {"name": "Methane, fossil", "categories": ["air"], "amount": 62}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 55}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 55}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2700}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2700}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 3900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 3900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6300}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 9400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 9400}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 2}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanol", "categories": ["air"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl formate", "categories": ["air"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "m-Xylene", "categories": ["air"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "o-Xylene", "categories": ["air"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Paraffins", "categories": ["air"], "amount": 3}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Pentane", "categories": ["air"], "amount": 3}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol", "categories": ["air"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propanal", "categories": ["air"], "amount": 2}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propane", "categories": ["air"], "amount": 3}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propene", "categories": ["air"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propionic acid", "categories": ["air"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Sodium formate", "categories": ["air"], "amount": 2}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Styrene", "categories": ["air"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 15100}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 2}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Toluene", "categories": ["air"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Xylene", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 7500}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7500}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 7500}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6100}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6100}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6100}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 7500}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6100}, {"name": "Butene", "categories": ["air"], "amount": 3}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 275}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 275}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 275}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 275}]}, {"unit": "kg CO2-Eq", "name": ["EDIP 2003 no LT", "global warming no LT", "GWP 500a no LT"], "exchanges": [{"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 9}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 400}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 42}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 220}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 37}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 740}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 36}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 190}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 18000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1100}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 390}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 540}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16300}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 65}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 170}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 580}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 8900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10000}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 32400}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentene", "categories": ["air"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetic acid", "categories": ["air"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 1}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetone", "categories": ["air"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acrolein", "categories": ["air"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene", "categories": ["air"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butadiene", "categories": ["air"], "amount": 3}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butane", "categories": ["air"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9}, {"name": "Chloroform", "categories": ["air"], "amount": 9}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Cumene", "categories": ["air"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethane", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 400}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 400}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 42}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 42}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1600}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 220}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 220}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 220}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 37}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 37}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 740}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 740}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 740}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 36}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 36}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 190}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 190}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 190}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 18000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 18000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1100}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethanol", "categories": ["air"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethyne", "categories": ["air"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Formic acid", "categories": ["air"], "amount": 2}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Furan", "categories": ["air"], "amount": 2}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Heptane", "categories": ["air"], "amount": 3}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hexane", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Lactic acid", "categories": ["air"], "amount": 2}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 390}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 390}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2700}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2700}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 540}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 540}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 540}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16300}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16300}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16300}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 5200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 65}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 65}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 65}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 170}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 170}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 170}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 580}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 580}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 580}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 8900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 8900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10000}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 2}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanol", "categories": ["air"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl formate", "categories": ["air"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "m-Xylene", "categories": ["air"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "o-Xylene", "categories": ["air"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Paraffins", "categories": ["air"], "amount": 3}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Pentane", "categories": ["air"], "amount": 3}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol", "categories": ["air"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propanal", "categories": ["air"], "amount": 2}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propane", "categories": ["air"], "amount": 3}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propene", "categories": ["air"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propionic acid", "categories": ["air"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Sodium formate", "categories": ["air"], "amount": 2}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Styrene", "categories": ["air"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 32400}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32400}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 32400}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 2}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Toluene", "categories": ["air"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Xylene", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8700}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8700}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8700}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2700}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2700}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2700}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8700}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2700}, {"name": "Butene", "categories": ["air"], "amount": 3}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 156}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 156}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 156}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 156}]}, {"unit": "m3 air", "name": ["EDIP 2003 no LT", "human toxicity no LT", "via air no LT"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 10000000000}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 116280}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3333300}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3663000}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 10000000}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 31746000}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 50000000000}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 669340000}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 2000000000}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 20000000}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 38462000}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 10000000000}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 217390000}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 50000000000}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 250000000000}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 11111000000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 113640000000}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 833330}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 833330}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 34483000}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 100000000}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 1000000000}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 9523800}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 571430}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 10277000}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 141440000}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 250000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 28571000000000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1000000000}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 25253000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 916590}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 50000000}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 114290}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 28571}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 390620000}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 28571000}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 18622000}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 500000000}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12500000000}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1632700}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 1111100000}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 100000000000}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 2500000000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6666700000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 2544500}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 100000000}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 27211000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 66667000}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 8620700}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 100000000}, {"name": "Ozone", "categories": ["air", "urban air close to ground"], "amount": 50000000}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1351400000}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2000000000}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 33333000}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1515200000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 204080000}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 396950000}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1984100}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1000000}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1282100}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 500030000}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 18083000}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 2500000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 80600000}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 6666700}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 80645000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000000000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000000000}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 10000000000}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 116280}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116280}, {"name": "2-Propanol", "categories": ["air"], "amount": 116280}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3333300}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3333300}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3333300}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3663000}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3663000}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3663000}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000000}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000000}, {"name": "Acetic acid", "categories": ["air"], "amount": 10000000}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 31746000}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31746000}, {"name": "Acetone", "categories": ["air"], "amount": 31746000}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000000}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000000}, {"name": "Acrolein", "categories": ["air"], "amount": 50000000000}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 669340000}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 669340000}, {"name": "Acrylic acid", "categories": ["air"], "amount": 669340000}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000000}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000000}, {"name": "Aluminium III", "categories": ["air"], "amount": 2000000000}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000000}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000000}, {"name": "Antimony ion", "categories": ["air"], "amount": 20000000}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 38462000}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 38462000}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 38462000}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000000000}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000000000}, {"name": "Benzene", "categories": ["air"], "amount": 10000000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000000}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air"], "amount": 50000000000}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 250000000000}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 250000000000}, {"name": "Butadiene", "categories": ["air"], "amount": 250000000000}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 11111000000}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11111000000}, {"name": "Butanol", "categories": ["air"], "amount": 11111000000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 113640000000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 113640000000}, {"name": "Cadmium II", "categories": ["air"], "amount": 113640000000}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 833330}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 833330}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 833330}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 833330}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 833330}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 833330}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 34483000}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34483000}, {"name": "Chlorine", "categories": ["air"], "amount": 34483000}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 100000000}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100000000}, {"name": "Chloroform", "categories": ["air"], "amount": 100000000}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000000}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000000}, {"name": "Chromium III", "categories": ["air"], "amount": 1000000000}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9523800}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9523800}, {"name": "Cobalt II", "categories": ["air"], "amount": 9523800}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 571430}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 571430}, {"name": "Copper ion", "categories": ["air"], "amount": 571430}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10277000}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10277000}, {"name": "Cumene", "categories": ["air"], "amount": 10277000}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 141440000}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 141440000}, {"name": "Cyanide", "categories": ["air"], "amount": 141440000}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 250000000}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 250000000}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 250000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 28571000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28571000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 28571000000000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000000}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000000}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1000000000}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 25253000}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25253000}, {"name": "Ethane thiol", "categories": ["air"], "amount": 25253000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 916590}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 50000000}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 114290}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 114290}, {"name": "Ethanol", "categories": ["air"], "amount": 114290}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 28571}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28571}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["air"], "amount": 390620000}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 28571000}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18622000}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000000}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000000}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 500000000}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500000000}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500000000}, {"name": "Formaldehyde", "categories": ["air"], "amount": 12500000000}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1632700}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1632700}, {"name": "Hexane", "categories": ["air"], "amount": 1632700}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 1111100000}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 37106000}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37106000}, {"name": "Iron ion", "categories": ["air"], "amount": 37106000}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 100000000000}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100000000000}, {"name": "Lead II", "categories": ["air"], "amount": 100000000000}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000000}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000000}, {"name": "Manganese II", "categories": ["air"], "amount": 2500000000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["air"], "amount": 6666700000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2544500}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2544500}, {"name": "Methanol", "categories": ["air"], "amount": 2544500}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 100000000}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100000000}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 100000000}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27211000}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27211000}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 27211000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 66667000}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 66667000}, {"name": "Nickel II", "categories": ["air"], "amount": 66667000}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 100000000}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100000000}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 100000000}, {"name": "Ozone", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000}, {"name": "Ozone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000}, {"name": "Ozone", "categories": ["air"], "amount": 50000000}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1351400000}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1351400000}, {"name": "Phenol", "categories": ["air"], "amount": 1351400000}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000000}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000000}, {"name": "Propanal", "categories": ["air"], "amount": 2000000000}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 33333000}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33333000}, {"name": "Propylene oxide", "categories": ["air"], "amount": 33333000}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1515200000}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1515200000}, {"name": "Selenium IV", "categories": ["air"], "amount": 1515200000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 204080000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 204080000}, {"name": "Silver I", "categories": ["air"], "amount": 204080000}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 396950000}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 396950000}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 396950000}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 1984100}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1984100}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 1984100}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000}, {"name": "Styrene", "categories": ["air"], "amount": 1000000}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1282100}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1282100}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1282100}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 500030000}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500030000}, {"name": "Thallium I", "categories": ["air"], "amount": 500030000}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 18083000}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18083000}, {"name": "Titanium ion", "categories": ["air"], "amount": 18083000}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000}, {"name": "Toluene", "categories": ["air"], "amount": 2500000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 80600000}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80600000}, {"name": "Vanadium V", "categories": ["air"], "amount": 80600000}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6666700}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6666700}, {"name": "Xylene", "categories": ["air"], "amount": 6666700}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 80645000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80645000}, {"name": "Zinc II", "categories": ["air"], "amount": 80645000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["soil"], "amount": 6666700000}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 10000000000}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 10000000000}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 10000000000}, {"name": "Benzene", "categories": ["water"], "amount": 10000000000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 217390000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 217390000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 217390000}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 34483000}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 34483000}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 34483000}, {"name": "Chlorine", "categories": ["water"], "amount": 34483000}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 100000000}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 100000000}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 100000000}, {"name": "Chloroform", "categories": ["water"], "amount": 100000000}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 10277000}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 10277000}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 10277000}, {"name": "Cumene", "categories": ["water"], "amount": 10277000}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 141440000}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 141440000}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 141440000}, {"name": "Cyanide", "categories": ["water"], "amount": 141440000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 916590}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 28571}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 28571}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 28571}, {"name": "Ethylene", "categories": ["water"], "amount": 28571}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["water"], "amount": 390620000}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 28571000}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 18622000}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1632700}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1632700}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1632700}, {"name": "Hexane", "categories": ["water"], "amount": 1632700}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 1111100000}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["water"], "amount": 6666700000}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 6666700}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 6666700}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 6666700}, {"name": "m-Xylene", "categories": ["water"], "amount": 6666700}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 8620700}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 8620700}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 8620700}, {"name": "Nitrate", "categories": ["water"], "amount": 8620700}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 8620700}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 8620700}, {"name": "Nitrite", "categories": ["water"], "amount": 8620700}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 6666700}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 6666700}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 6666700}, {"name": "o-Xylene", "categories": ["water"], "amount": 6666700}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1000000}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1000000}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1000000}, {"name": "Styrene", "categories": ["water"], "amount": 1000000}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2500000}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2500000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2500000}, {"name": "Toluene", "categories": ["water"], "amount": 2500000}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6666700}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 6666700}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6666700}, {"name": "Xylene", "categories": ["water"], "amount": 6666700}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 37106000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5000000000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5000000000}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5000000000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 5000000000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 8333300}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 8333300}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 8333300}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 8333300}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2000000}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2000000}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 8620700}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 8620700}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8620700}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 8620700}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 66667000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 66667000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 66667000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 66667000}]}, {"unit": "m3 soil", "name": ["EDIP 2003 no LT", "human toxicity no LT", "via soil no LT"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 3.6673}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 2.8015}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 117.85}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.5807}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.1345}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 16.317}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 31.243}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 16960}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 41.659}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.8666}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 14453}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 46.007}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 2968.1}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 11.212}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 4480.4}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.0629}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 51.823}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 197}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 1124.5}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 169.19}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 4.0045}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 20.951}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 714.17}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 3.2849}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 7518.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 14390000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 8.898}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 0.039502}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.0173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 75.173}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.14776}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.10451}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3973.5}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 39.981}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.68699}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.212}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 5.7653}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.019067}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.9715}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 82.655}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 96.154}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 424.01}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 81295}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.31426}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1544.5}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.7664}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 117.54}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 2.928}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4912.8}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.20766}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 335.16}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 23.851}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 6851}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.1219}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 44.3}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 4240.1}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 446.38}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 10389}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 375.71}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.0048}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.77714}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 962.28}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.067288}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 12.536}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6673}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6673}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 3.6673}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8015}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8015}, {"name": "2-Propanol", "categories": ["air"], "amount": 2.8015}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 117.85}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117.85}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 117.85}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5807}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5807}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.5807}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1345}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1345}, {"name": "Acetone", "categories": ["air"], "amount": 4.1345}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.317}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.317}, {"name": "Acrylic acid", "categories": ["air"], "amount": 16.317}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.243}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31.243}, {"name": "Aluminium III", "categories": ["air"], "amount": 31.243}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 16960}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16960}, {"name": "Antimony ion", "categories": ["air"], "amount": 16960}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8666}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8666}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.8666}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 14453}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14453}, {"name": "Benzene", "categories": ["air"], "amount": 14453}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.1}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2968.1}, {"name": "Beryllium II", "categories": ["air"], "amount": 2968.1}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.212}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.212}, {"name": "Butanol", "categories": ["air"], "amount": 11.212}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4480.4}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4480.4}, {"name": "Cadmium II", "categories": ["air"], "amount": 4480.4}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.823}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.823}, {"name": "Chlorine", "categories": ["air"], "amount": 51.823}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 197}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 197}, {"name": "Chloroform", "categories": ["air"], "amount": 197}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1124.5}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1124.5}, {"name": "Chromium III", "categories": ["air"], "amount": 1124.5}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 169.19}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 169.19}, {"name": "Cobalt II", "categories": ["air"], "amount": 169.19}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0045}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0045}, {"name": "Copper ion", "categories": ["air"], "amount": 4.0045}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.951}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.951}, {"name": "Cumene", "categories": ["air"], "amount": 20.951}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 714.17}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 714.17}, {"name": "Cyanide", "categories": ["air"], "amount": 714.17}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 14390000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14390000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 14390000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.898}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.898}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 8.898}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.0173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 75.173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 75.173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 75.173}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14776}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14776}, {"name": "Ethanol", "categories": ["air"], "amount": 0.14776}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.10451}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3973.5}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 39.981}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68699}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.212}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.212}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.212}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7653}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7653}, {"name": "Formaldehyde", "categories": ["air"], "amount": 5.7653}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9715}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9715}, {"name": "Hexane", "categories": ["air"], "amount": 0.9715}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 770.93}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 770.93}, {"name": "Iron ion", "categories": ["air"], "amount": 770.93}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.655}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.655}, {"name": "Lead II", "categories": ["air"], "amount": 82.655}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 424.01}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 424.01}, {"name": "Manganese II", "categories": ["air"], "amount": 424.01}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 81295}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 81295}, {"name": "Mercury II", "categories": ["air"], "amount": 81295}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31426}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31426}, {"name": "Methanol", "categories": ["air"], "amount": 0.31426}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1544.5}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1544.5}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1544.5}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 117.54}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117.54}, {"name": "Nickel II", "categories": ["air"], "amount": 117.54}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4912.8}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4912.8}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 4912.8}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 6851}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6851}, {"name": "Propanal", "categories": ["air"], "amount": 6851}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1219}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1219}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.1219}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.3}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.3}, {"name": "Selenium IV", "categories": ["air"], "amount": 44.3}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4240.1}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4240.1}, {"name": "Silver I", "categories": ["air"], "amount": 4240.1}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 446.38}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 446.38}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 446.38}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 10389}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10389}, {"name": "Thallium I", "categories": ["air"], "amount": 10389}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 375.71}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 375.71}, {"name": "Titanium ion", "categories": ["air"], "amount": 375.71}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0048}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0048}, {"name": "Toluene", "categories": ["air"], "amount": 1.0048}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 962.28}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 962.28}, {"name": "Vanadium V", "categories": ["air"], "amount": 962.28}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067288}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067288}, {"name": "Xylene", "categories": ["air"], "amount": 0.067288}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.536}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.536}, {"name": "Zinc II", "categories": ["air"], "amount": 12.536}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 39.054}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 39.054}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 39.054}, {"name": "Aluminium III", "categories": ["soil"], "amount": 39.054}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 21201}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 21201}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 21201}, {"name": "Antimony ion", "categories": ["soil"], "amount": 21201}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3710.1}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3710.1}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3710.1}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3710.1}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 5600.5}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 5600.5}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 5600.5}, {"name": "Cadmium II", "categories": ["soil"], "amount": 5600.5}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1405.7}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1405.7}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1405.7}, {"name": "Chromium III", "categories": ["soil"], "amount": 1405.7}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 211.48}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 211.48}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 211.48}, {"name": "Cobalt II", "categories": ["soil"], "amount": 211.48}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.0056}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.0056}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.0056}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.0056}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1220}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1220}, {"name": "Fluoride", "categories": ["soil"], "amount": 1220}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.019067}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 963.66}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 963.66}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 963.66}, {"name": "Iron ion", "categories": ["soil"], "amount": 963.66}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 103.32}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 103.32}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 103.32}, {"name": "Lead II", "categories": ["soil"], "amount": 103.32}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 530.02}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 530.02}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 530.02}, {"name": "Manganese II", "categories": ["soil"], "amount": 530.02}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 81295}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 81295}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 81295}, {"name": "Mercury II", "categories": ["soil"], "amount": 81295}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1930.6}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1930.6}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1930.6}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1930.6}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 146.92}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 146.92}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 146.92}, {"name": "Nickel II", "categories": ["soil"], "amount": 146.92}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.20766}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.20766}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.20766}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 55.375}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 55.375}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 55.375}, {"name": "Selenium IV", "categories": ["soil"], "amount": 55.375}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 5300.2}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 5300.2}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 5300.2}, {"name": "Silver I", "categories": ["soil"], "amount": 5300.2}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 12986}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 12986}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 12986}, {"name": "Thallium I", "categories": ["soil"], "amount": 12986}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 469.63}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 469.63}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 469.63}, {"name": "Titanium ion", "categories": ["soil"], "amount": 469.63}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1202.8}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1202.8}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1202.8}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1202.8}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 15.67}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 15.67}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 15.67}, {"name": "Zinc II", "categories": ["soil"], "amount": 15.67}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 14453}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 14453}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 14453}, {"name": "Benzene", "categories": ["water"], "amount": 14453}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 46.007}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 46.007}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 46.007}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 51.823}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 51.823}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 51.823}, {"name": "Chlorine", "categories": ["water"], "amount": 51.823}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 197}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 197}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 197}, {"name": "Chloroform", "categories": ["water"], "amount": 197}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 20.951}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 20.951}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 20.951}, {"name": "Cumene", "categories": ["water"], "amount": 20.951}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 714.17}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 714.17}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 714.17}, {"name": "Cyanide", "categories": ["water"], "amount": 714.17}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 2.0173}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["water"], "amount": 0.10451}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["water"], "amount": 3973.5}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 39.981}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.68699}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.9715}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.9715}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.9715}, {"name": "Hexane", "categories": ["water"], "amount": 0.9715}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 81295}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 81295}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 81295}, {"name": "Mercury II", "categories": ["water"], "amount": 81295}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.067288}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.067288}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.067288}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.067288}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 2.928}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 2.928}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 2.928}, {"name": "Nitrate", "categories": ["water"], "amount": 2.928}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 2.928}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 2.928}, {"name": "Nitrite", "categories": ["water"], "amount": 2.928}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.067288}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.067288}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.067288}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.067288}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.0048}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.0048}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.0048}, {"name": "Toluene", "categories": ["water"], "amount": 1.0048}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.067288}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.067288}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.067288}, {"name": "Xylene", "categories": ["water"], "amount": 0.067288}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 770.93}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["air"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 12966}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 12966}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 12966}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 12966}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2676}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 6.9893}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 6.9893}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 6.9893}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 6.9893}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 2.928}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.928}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.928}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 2.928}]}, {"unit": "m3 water", "name": ["EDIP 2003 no LT", "human toxicity no LT", "via surface water no LT"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.028465}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0074667}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.6418}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0032788}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0085395}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.062684}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 0.39053}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 63600}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.38584}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2251.6}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 270.18}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 37.1}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.11257}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 559470}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2797300}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 0.13133}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 53.68}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3648.2}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 18241}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2.4733}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3353.8}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 16769}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 210.73}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 1.4641}, {"name": "Dichromate", "categories": ["water", "ground-"], "amount": 8782.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 216660000000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.1872}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.98564}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3.9175}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.00029073}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0020019}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 399.54}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 363.58}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.91071}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0088551}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.022148}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 336.8}, {"name": "Hypochlorite", "categories": ["water", "ground-"], "amount": 0.25764}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 48.182}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 52971}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 5.3}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 108710000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.2968}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.71}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.00742}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1290.4}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 19.787}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0029295}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 27687}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 265}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 1448.1}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 12986000}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 4.6962}, {"name": "Titanium ion", "categories": ["water", "ground-"], "amount": 23.481}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.9848}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 37.1}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 185.5}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.0929}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4130.5}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 20652}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028465}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028465}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.028465}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074667}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074667}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0074667}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6418}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6418}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.6418}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0032788}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0032788}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0032788}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0085395}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0085395}, {"name": "Acetone", "categories": ["air"], "amount": 0.0085395}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.062684}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.062684}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.062684}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39053}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39053}, {"name": "Aluminium III", "categories": ["air"], "amount": 0.39053}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 63600}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63600}, {"name": "Antimony ion", "categories": ["air"], "amount": 63600}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.38584}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.38584}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.38584}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2251.6}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2251.6}, {"name": "Benzene", "categories": ["air"], "amount": 2251.6}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.1}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37.1}, {"name": "Beryllium II", "categories": ["air"], "amount": 37.1}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11257}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11257}, {"name": "Butanol", "categories": ["air"], "amount": 0.11257}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 559470}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 559470}, {"name": "Cadmium II", "categories": ["air"], "amount": 559470}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["air"], "amount": 0.13133}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 53.68}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53.68}, {"name": "Chloroform", "categories": ["air"], "amount": 53.68}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3648.2}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3648.2}, {"name": "Chromium III", "categories": ["air"], "amount": 3648.2}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4733}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4733}, {"name": "Cobalt II", "categories": ["air"], "amount": 2.4733}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3353.8}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3353.8}, {"name": "Copper ion", "categories": ["air"], "amount": 3353.8}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 210.73}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 210.73}, {"name": "Cumene", "categories": ["air"], "amount": 210.73}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["air"], "amount": 1.4641}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 216660000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 216660000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 216660000000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1872}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1872}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.1872}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.98564}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.9175}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00029073}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00029073}, {"name": "Ethanol", "categories": ["air"], "amount": 0.00029073}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0020019}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["air"], "amount": 399.54}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 363.58}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.91071}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0088551}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0088551}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0088551}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022148}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022148}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.022148}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 336.8}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 336.8}, {"name": "Hexane", "categories": ["air"], "amount": 336.8}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6364}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6364}, {"name": "Iron ion", "categories": ["air"], "amount": 9.6364}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 52971}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 52971}, {"name": "Lead II", "categories": ["air"], "amount": 52971}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3}, {"name": "Manganese II", "categories": ["air"], "amount": 5.3}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 108710000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 108710000}, {"name": "Mercury II", "categories": ["air"], "amount": 108710000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2968}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2968}, {"name": "Methanol", "categories": ["air"], "amount": 0.2968}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 53}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 53}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.71}, {"name": "Nickel II", "categories": ["air"], "amount": 3.71}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1290.4}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1290.4}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1290.4}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.787}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.787}, {"name": "Propanal", "categories": ["air"], "amount": 19.787}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029295}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029295}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.0029295}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 27687}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27687}, {"name": "Selenium IV", "categories": ["air"], "amount": 27687}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 53}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53}, {"name": "Silver I", "categories": ["air"], "amount": 53}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1448.1}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1448.1}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 1448.1}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 12986000}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12986000}, {"name": "Thallium I", "categories": ["air"], "amount": 12986000}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6962}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6962}, {"name": "Titanium ion", "categories": ["air"], "amount": 4.6962}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9848}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9848}, {"name": "Toluene", "categories": ["air"], "amount": 3.9848}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.1}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37.1}, {"name": "Vanadium V", "categories": ["air"], "amount": 37.1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0929}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0929}, {"name": "Xylene", "categories": ["air"], "amount": 1.0929}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4130.5}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4130.5}, {"name": "Zinc II", "categories": ["air"], "amount": 4130.5}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 108710000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 108710000}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 108710000}, {"name": "Mercury II", "categories": ["soil"], "amount": 108710000}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.14233}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.14233}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.14233}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.14233}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.037334}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.037334}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.037334}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.037334}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 18.209}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 18.209}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 18.209}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 18.209}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.0070658}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0070658}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.0070658}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.0070658}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.016394}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.016394}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.016394}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.016394}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.042698}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.042698}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.042698}, {"name": "Acetone", "categories": ["water"], "amount": 0.042698}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.9526}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.9526}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.9526}, {"name": "Aluminium III", "categories": ["water"], "amount": 1.9526}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 318000}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 318000}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 318000}, {"name": "Antimony ion", "categories": ["water"], "amount": 318000}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2251.6}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 2251.6}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2251.6}, {"name": "Benzene", "categories": ["water"], "amount": 2251.6}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 270.18}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 270.18}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 270.18}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 185.5}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 185.5}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 185.5}, {"name": "Beryllium II", "categories": ["water"], "amount": 185.5}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.56286}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.56286}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.56286}, {"name": "Butanol", "categories": ["water"], "amount": 0.56286}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2797300}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2797300}, {"name": "Cadmium II", "categories": ["water"], "amount": 2797300}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["water"], "amount": 0.13133}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 53.68}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 53.68}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 53.68}, {"name": "Chloroform", "categories": ["water"], "amount": 53.68}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 18241}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 18241}, {"name": "Chromium III", "categories": ["water"], "amount": 18241}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 12.367}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 12.367}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 12.367}, {"name": "Cobalt II", "categories": ["water"], "amount": 12.367}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 16769}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 16769}, {"name": "Copper ion", "categories": ["water"], "amount": 16769}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 210.73}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 210.73}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 210.73}, {"name": "Cumene", "categories": ["water"], "amount": 210.73}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["water"], "amount": 1.4641}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 8782.6}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 8782.6}, {"name": "Dichromate", "categories": ["water"], "amount": 8782.6}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.0031428}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 0.0031428}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.0031428}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.0031428}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.98564}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 19.587}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 19.587}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 19.587}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 19.587}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0014537}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.0014537}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0014537}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0014537}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["water"], "amount": 0.0020019}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["water"], "amount": 399.54}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 363.58}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.91071}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.044275}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.044275}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.044275}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.044275}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 12.367}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 12.367}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 12.367}, {"name": "Fluoride", "categories": ["water"], "amount": 12.367}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.11074}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.11074}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.11074}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.11074}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 336.8}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 336.8}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 336.8}, {"name": "Hexane", "categories": ["water"], "amount": 336.8}, {"name": "Hypochlorite", "categories": ["water", "ocean"], "amount": 0.25764}, {"name": "Hypochlorite", "categories": ["water", "surface water"], "amount": 0.25764}, {"name": "Hypochlorite", "categories": ["water"], "amount": 0.25764}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 48.182}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 48.182}, {"name": "Iron ion", "categories": ["water"], "amount": 48.182}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 264850}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 264850}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 264850}, {"name": "Lead II", "categories": ["water"], "amount": 264850}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 26.5}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 26.5}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 26.5}, {"name": "Manganese II", "categories": ["water"], "amount": 26.5}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 108710000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 108710000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 108710000}, {"name": "Mercury II", "categories": ["water"], "amount": 108710000}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.484}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.484}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.484}, {"name": "Methanol", "categories": ["water"], "amount": 1.484}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 265}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 265}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 265}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 265}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.0929}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.0929}, {"name": "m-Xylene", "categories": ["water"], "amount": 1.0929}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 18.55}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 18.55}, {"name": "Nickel II", "categories": ["water"], "amount": 18.55}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.00742}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.00742}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.00742}, {"name": "Nitrate", "categories": ["water"], "amount": 0.00742}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.00742}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.00742}, {"name": "Nitrite", "categories": ["water"], "amount": 0.00742}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6452.2}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 6452.2}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6452.2}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6452.2}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 46375}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 46375}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 46375}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 46375}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.0929}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.0929}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.0929}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 34.256}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 34.256}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 34.256}, {"name": "Phenol", "categories": ["water"], "amount": 34.256}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 98.933}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 98.933}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 98.933}, {"name": "Propanal", "categories": ["water"], "amount": 98.933}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.014648}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.014648}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.014648}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.014648}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 138430}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 138430}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 138430}, {"name": "Selenium IV", "categories": ["water"], "amount": 138430}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 265}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 265}, {"name": "Silver I", "categories": ["water"], "amount": 265}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 64928000}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 64928000}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 64928000}, {"name": "Thallium I", "categories": ["water"], "amount": 64928000}, {"name": "Titanium ion", "categories": ["water", "ocean"], "amount": 23.481}, {"name": "Titanium ion", "categories": ["water", "surface water"], "amount": 23.481}, {"name": "Titanium ion", "categories": ["water"], "amount": 23.481}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.9848}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 3.9848}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.9848}, {"name": "Toluene", "categories": ["water"], "amount": 3.9848}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 185.5}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 185.5}, {"name": "Vanadium V", "categories": ["water"], "amount": 185.5}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.0929}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.0929}, {"name": "Xylene", "categories": ["water"], "amount": 1.0929}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 20652}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 20652}, {"name": "Zinc II", "categories": ["water"], "amount": 20652}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 9.6364}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 742}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 742}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 742}, {"name": "Arsenic ion", "categories": ["air"], "amount": 742}, {"name": "Arsenic ion", "categories": ["water"], "amount": 3710}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3710}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3710}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3710}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 365.77}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 365.77}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 365.77}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 365.77}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.00742}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00742}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00742}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.00742}]}, {"unit": "kg waste", "name": ["EDIP 2003 no LT", "land filling no LT", "bulk waste no LT"], "exchanges": [{"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 22500}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 16000}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 20000}]}, {"unit": "kg waste", "name": ["EDIP 2003 no LT", "land filling no LT", "hazardous waste no LT"], "exchanges": [{"name": "Volume occupied, underground deposit", "categories": ["natural resource", "in ground"], "amount": 1600}]}, {"unit": "kg waste", "name": ["EDIP 2003 no LT", "land filling no LT", "radioactive waste no LT"], "exchanges": [{"name": "Volume occupied, final repository for low-active radioactive waste", "categories": ["natural resource", "in ground"], "amount": 2500}, {"name": "Volume occupied, final repository for radioactive waste", "categories": ["natural resource", "in ground"], "amount": 5400}]}, {"unit": "kg waste", "name": ["EDIP 2003 no LT", "land filling no LT", "slag and ashes no LT"], "exchanges": [{"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 22500}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "aluminium no LT"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "antimony no LT"], "exchanges": [{"name": "Stibnite", "categories": ["natural resource", "in ground"], "amount": 0.717}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.717}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "brown coal no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "cadmium no LT"], "exchanges": [{"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "cerium no LT"], "exchanges": [{"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "coal no LT"], "exchanges": [{"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "cobalt no LT"], "exchanges": [{"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "copper no LT"], "exchanges": [{"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "gold no LT"], "exchanges": [{"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "iron no LT"], "exchanges": [{"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "lanthanum no LT"], "exchanges": [{"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "lead no LT"], "exchanges": [{"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "manganese no LT"], "exchanges": [{"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Pyrolusite", "categories": ["natural resource", "in ground"], "amount": 0.632}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "mercury no LT"], "exchanges": [{"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 0.862}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.862}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "molybdenum no LT"], "exchanges": [{"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "natural gas no LT"], "exchanges": [{"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.8}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.8}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "nickel no LT"], "exchanges": [{"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "oil no LT"], "exchanges": [{"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "palladium no LT"], "exchanges": [{"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "platinum no LT"], "exchanges": [{"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "silver no LT"], "exchanges": [{"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "tantalum no LT"], "exchanges": [{"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "tin no LT"], "exchanges": [{"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "zinc no LT"], "exchanges": [{"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "person.ppm.h", "name": ["EDIP 2003 no LT", "photochemical ozone formation no LT", "impacts on human health no LT"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 0.03894}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.0767}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.04425}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0295}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.03894}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0767}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.02655}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.118}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.02773}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0885}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.1298}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.004425}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.004425}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0004425}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.03894}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.01239}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.03953}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.1475}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.03776}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00059}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.01003}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.03245}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.02478}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0767}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0649}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.118}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.001357}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.01829}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.0649}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.1475}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.1003}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.0885}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0649}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.03894}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.1534}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 0.1298}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.124}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03894}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03894}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 0.03894}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.0767}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04425}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04425}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.04425}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.1121}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0295}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0295}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0295}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03894}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03894}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.03894}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.059}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.0767}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.059}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 0.000649}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02655}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02655}, {"name": "Acetone", "categories": ["air"], "amount": 0.02655}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.118}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.118}, {"name": "Acrolein", "categories": ["air"], "amount": 0.118}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.5}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02773}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02773}, {"name": "Benzene", "categories": ["air"], "amount": 0.02773}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0885}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0885}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0885}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.1121}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1298}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1298}, {"name": "Butadiene", "categories": ["air"], "amount": 0.1298}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Butane", "categories": ["air"], "amount": 0.059}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Butanol", "categories": ["air"], "amount": 0.059}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004425}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004425}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.004425}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004425}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004425}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.004425}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0004425}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0004425}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0004425}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0826}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0826}, {"name": "Cumene", "categories": ["air"], "amount": 0.0826}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.059}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03894}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03894}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.03894}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01239}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01239}, {"name": "Ethane", "categories": ["air"], "amount": 0.01239}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.059}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.000649}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03953}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03953}, {"name": "Ethanol", "categories": ["air"], "amount": 0.03953}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1475}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1475}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03776}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03776}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.03776}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00059}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00059}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00059}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01003}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01003}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03245}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03245}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.03245}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.059}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02478}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02478}, {"name": "Ethyne", "categories": ["air"], "amount": 0.02478}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.000649}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "Heptane", "categories": ["air"], "amount": 0.0767}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0649}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0649}, {"name": "Hexane", "categories": ["air"], "amount": 0.0649}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 0.059}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.1121}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.000649}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.118}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.118}, {"name": "Isoprene", "categories": ["air"], "amount": 0.118}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.029}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001357}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001357}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.001357}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.029}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.000649}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01829}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01829}, {"name": "Methanol", "categories": ["air"], "amount": 0.01829}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0649}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0649}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0649}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1475}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1475}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.1475}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.059}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1003}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1003}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.1003}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.1121}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Paraffins", "categories": ["air"], "amount": 0.059}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Pentane", "categories": ["air"], "amount": 0.059}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Phenol", "categories": ["air"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 0.1121}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0885}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0885}, {"name": "Propanal", "categories": ["air"], "amount": 0.0885}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0649}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0649}, {"name": "Propane", "categories": ["air"], "amount": 0.0649}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03894}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03894}, {"name": "Propanol", "categories": ["air"], "amount": 0.03894}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1534}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1534}, {"name": "Propene", "categories": ["air"], "amount": 0.1534}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.059}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Styrene", "categories": ["air"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.059}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1298}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1298}, {"name": "Terpenes", "categories": ["air"], "amount": 0.1298}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0826}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0826}, {"name": "Toluene", "categories": ["air"], "amount": 0.0826}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.124}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.124}, {"name": "Xylene", "categories": ["air"], "amount": 0.124}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Butene", "categories": ["air"], "amount": 0.1416}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1416}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1416}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.1416}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000649}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.12}]}, {"unit": "m2.ppm.h", "name": ["EDIP 2003 no LT", "photochemical ozone formation no LT", "impacts on vegetation no LT"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 481.8}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.3}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.9}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 949}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 547.5}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 365}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 481.8}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 949}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 328.5}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1460}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.3}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 343.1}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1095}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1606}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 54.75}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 54.75}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.475}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1022}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 481.8}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 153.3}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 489.1}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1825}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 467.2}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.3}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 124.1}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 401.5}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 306.6}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 949}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 803}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1460}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 16.79}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 360}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 360}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 226.3}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 803}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1825}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1241}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1095}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 803}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 481.8}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1898}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 1606}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1022}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1533}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 481.8}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 481.8}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 481.8}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.3}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.9}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 949}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 949}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 949}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 547.5}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 547.5}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 547.5}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1387}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "2-Propanol", "categories": ["air"], "amount": 365}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 481.8}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 481.8}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 481.8}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air"], "amount": 730}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 949}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 949}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 949}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Acetic acid", "categories": ["air"], "amount": 730}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 8.03}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 328.5}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 328.5}, {"name": "Acetone", "categories": ["air"], "amount": 328.5}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1460}, {"name": "Acrolein", "categories": ["air"], "amount": 1460}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.3}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 343.1}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 343.1}, {"name": "Benzene", "categories": ["air"], "amount": 343.1}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1095}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1095}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1387}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1606}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1606}, {"name": "Butadiene", "categories": ["air"], "amount": 1606}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Butane", "categories": ["air"], "amount": 730}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Butanol", "categories": ["air"], "amount": 730}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 54.75}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 54.75}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 54.75}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 54.75}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 54.75}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 54.75}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.475}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.475}, {"name": "Chloroform", "categories": ["air"], "amount": 5.475}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1022}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1022}, {"name": "Cumene", "categories": ["air"], "amount": 1022}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Cyclohexane", "categories": ["air"], "amount": 730}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 481.8}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 481.8}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 481.8}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 0.2}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 8.03}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 153.3}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 153.3}, {"name": "Ethane", "categories": ["air"], "amount": 153.3}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Ethane thiol", "categories": ["air"], "amount": 730}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 8.03}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 489.1}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 489.1}, {"name": "Ethanol", "categories": ["air"], "amount": 489.1}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1825}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1825}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 467.2}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 467.2}, {"name": "Chloroethylene", "categories": ["air"], "amount": 467.2}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.3}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 124.1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124.1}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 401.5}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 401.5}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 401.5}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 730}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 306.6}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306.6}, {"name": "Ethyne", "categories": ["air"], "amount": 306.6}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Formaldehyde", "categories": ["air"], "amount": 8.03}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 949}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 949}, {"name": "Heptane", "categories": ["air"], "amount": 949}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 803}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 803}, {"name": "Hexane", "categories": ["air"], "amount": 803}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 730}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1387}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 8.03}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1460}, {"name": "Isoprene", "categories": ["air"], "amount": 1460}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 360}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 360}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 360}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 8.03}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.79}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.79}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 16.79}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.03}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 360}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 360}, {"name": "Methane, fossil", "categories": ["air"], "amount": 360}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 8.03}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 8.03}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 226.3}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 226.3}, {"name": "Methanol", "categories": ["air"], "amount": 226.3}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.2}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 803}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 803}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 803}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.2}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1825}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1825}, {"name": "m-Xylene", "categories": ["air"], "amount": 1825}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 730}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1241}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1241}, {"name": "o-Xylene", "categories": ["air"], "amount": 1241}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1387}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Paraffins", "categories": ["air"], "amount": 730}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Pentane", "categories": ["air"], "amount": 730}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Phenol", "categories": ["air"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1387}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1095}, {"name": "Propanal", "categories": ["air"], "amount": 1095}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 803}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 803}, {"name": "Propane", "categories": ["air"], "amount": 803}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 481.8}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 481.8}, {"name": "Propanol", "categories": ["air"], "amount": 481.8}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1898}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1898}, {"name": "Propene", "categories": ["air"], "amount": 1898}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Propionic acid", "categories": ["air"], "amount": 730}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Styrene", "categories": ["air"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 730}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 1606}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1606}, {"name": "Terpenes", "categories": ["air"], "amount": 1606}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1022}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1022}, {"name": "Toluene", "categories": ["air"], "amount": 1022}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1533}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1533}, {"name": "Xylene", "categories": ["air"], "amount": 1533}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Butene", "categories": ["air"], "amount": 1752}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1752}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1752}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 1752}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 8.03}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1800}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1800}]}, {"unit": "cubic meter", "name": ["EDIP 2003 no LT", "renewable resources no LT", "wood no LT"], "exchanges": [{"name": "Wood, hard, standing", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Wood, primary forest, standing", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Wood, soft, standing", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Wood, unspecified, standing", "categories": ["natural resource", "biotic"], "amount": 1}]}, {"unit": "kg CFC-11-Eq", "name": ["EDIP 2003 no LT", "stratospheric ozone depletion no LT", "ODP total no LT"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.38}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.38}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 12}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.94}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.94}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "square meter", "name": ["EDIP 2003", "acidification", "acidification"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 23.1}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 62}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 113}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 33.2}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 17.7}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 11.5}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.1}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 23.1}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.1}, {"name": "Ammonia", "categories": ["air"], "amount": 23.1}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 62}, {"name": "Hydrochloric acid", "categories": ["air", "low population density, long-term"], "amount": 62}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 62}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 113}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 113}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 113}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 113}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.2}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 33.2}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33.2}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 33.2}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.7}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 17.7}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.7}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 17.7}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.5}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 11.5}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.5}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 11.5}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 8.6}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 8.6}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 8.6}]}, {"unit": "m3 water", "name": ["EDIP 2003", "ecotoxicity", "acute, in water"], "exchanges": [{"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 11765000}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1250000}, {"name": "Dichromate", "categories": ["water", "ground-"], "amount": 32099}, {"name": "Hypochlorite", "categories": ["water", "ground-"], "amount": 26667}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 5000000}, {"name": "Titanium ion", "categories": ["water", "ground-"], "amount": 13680}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 20000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 100000}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 34.483}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 34.483}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 34.483}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 34.483}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 34.483}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 126.58}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 126.58}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 126.58}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 126.58}, {"name": "2-Propanol", "categories": ["water"], "amount": 126.58}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 366.3}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 366.3}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 366.3}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 366.3}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 366.3}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 200}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 200}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 200}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 200}, {"name": "Acetic acid", "categories": ["water"], "amount": 200}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 10000}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Acetone", "categories": ["water"], "amount": 10000}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 66667}, {"name": "Aluminium III", "categories": ["water", "ground-, long-term"], "amount": 66667}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 66667}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 66667}, {"name": "Aluminium III", "categories": ["water"], "amount": 66667}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 188680}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 188680}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 188680}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 188680}, {"name": "Antimony ion", "categories": ["water"], "amount": 188680}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 10000}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Benzene", "categories": ["water"], "amount": 10000}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 100000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 100000}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4000}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 4000}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 4000}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4000}, {"name": "Beryllium II", "categories": ["water"], "amount": 4000}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 36.364}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 36.364}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 36.364}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 36.364}, {"name": "Butanol", "categories": ["water"], "amount": 36.364}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 11765000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 11765000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 11765000}, {"name": "Cadmium II", "categories": ["water"], "amount": 11765000}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 10000}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Chloroform", "categories": ["water"], "amount": 10000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 66667}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 66667}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 66667}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 66667}, {"name": "Chromium VI", "categories": ["water"], "amount": 66667}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 200000}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Cobalt II", "categories": ["water"], "amount": 200000}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1250000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1250000}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1250000}, {"name": "Copper ion", "categories": ["water"], "amount": 1250000}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 7142.9}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 7142.9}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 7142.9}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 7142.9}, {"name": "Cumene", "categories": ["water"], "amount": 7142.9}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 2000000}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Cyanide", "categories": ["water"], "amount": 2000000}, {"name": "Dichromate", "categories": ["water", "ground-, long-term"], "amount": 32099}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 32099}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 32099}, {"name": "Dichromate", "categories": ["water"], "amount": 32099}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 20}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 20}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 20}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 20}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 20}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 10000}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.6918}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.6918}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.6918}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.6918}, {"name": "Ethanol", "categories": ["water"], "amount": 2.6918}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 4545.5}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 4545.5}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 4545.5}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 4545.5}, {"name": "Ethylene", "categories": ["water"], "amount": 4545.5}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 10000}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 10000}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 207.25}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 207.25}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 207.25}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 207.25}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 207.25}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 59880}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 59880}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 59880}, {"name": "Formaldehyde", "categories": ["water"], "amount": 59880}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 73529}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 73529}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 73529}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 73529}, {"name": "Hexane", "categories": ["water"], "amount": 73529}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 3333300}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 3333300}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 3333300}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 3333300}, {"name": "Hypochlorite", "categories": ["water", "ocean"], "amount": 26667}, {"name": "Hypochlorite", "categories": ["water", "surface water"], "amount": 26667}, {"name": "Hypochlorite", "categories": ["water"], "amount": 26667}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Iron ion", "categories": ["water"], "amount": 10000}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Lead II", "categories": ["water"], "amount": 200000}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 35714}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 35714}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 35714}, {"name": "Manganese II", "categories": ["water"], "amount": 35714}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Mercury II", "categories": ["water"], "amount": 2000000}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 25}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 25}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 25}, {"name": "Methanol", "categories": ["water"], "amount": 25}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 200000}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "m-Xylene", "categories": ["water"], "amount": 10000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 66667}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 66667}, {"name": "Nickel II", "categories": ["water"], "amount": 66667}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Oils, unspecified", "categories": ["water", "ground-, long-term"], "amount": 200000}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 200000}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "o-Xylene", "categories": ["water"], "amount": 10000}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 22222}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 22222}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 22222}, {"name": "Phenol", "categories": ["water"], "amount": 22222}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1000}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 1000}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1000}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1000}, {"name": "Propanal", "categories": ["water"], "amount": 1000}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 588.24}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 588.24}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 588.24}, {"name": "Propylene oxide", "categories": ["water"], "amount": 588.24}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1428600}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1428600}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1428600}, {"name": "Selenium IV", "categories": ["water"], "amount": 1428600}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 5000000}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 5000000}, {"name": "Silver I", "categories": ["water"], "amount": 5000000}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 62500}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 62500}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 62500}, {"name": "Strontium", "categories": ["water"], "amount": 62500}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 40000}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 40000}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 40000}, {"name": "Styrene", "categories": ["water"], "amount": 40000}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 333330}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 333330}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 333330}, {"name": "Thallium I", "categories": ["water"], "amount": 333330}, {"name": "Titanium ion", "categories": ["water", "ocean"], "amount": 13680}, {"name": "Titanium ion", "categories": ["water", "surface water"], "amount": 13680}, {"name": "Titanium ion", "categories": ["water"], "amount": 13680}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Toluene", "categories": ["water"], "amount": 10000}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 20000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 20000}, {"name": "Vanadium V", "categories": ["water"], "amount": 20000}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Xylene", "categories": ["water"], "amount": 10000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Zinc II", "categories": ["water"], "amount": 100000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 192310}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 192310}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 192310}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 192310}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 192310}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 10000}]}, {"unit": "m3 soil", "name": ["EDIP 2003", "ecotoxicity", "chronic, in soil"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 95.515}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 461.7}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 789.88}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 11482}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 15232}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 782.2}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 6933.8}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 10036}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 19764}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 527990}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 218820}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 101260}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 27121}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3594}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 37807}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 212.76}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1244700}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 91.976}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1777.8}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3344.7}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2082}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 24963}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 10.667}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1508.3}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 36186}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 9095.8}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 17.778}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 83.098}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 7587200}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 6666.7}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 180590}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 68978}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4093200}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 60.654}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 35162000}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 75.244}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 11740000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 4481100}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 61023}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 10.262}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 8720.3}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1055.9}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 15096}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 468910}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 585.76}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 671890}, {"name": "Fenpropimorph", "categories": ["soil", "agricultural"], "amount": 22489}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 6452200}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 720920}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 249680}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 202910}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 155300}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2464.3}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 591340}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 707770}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 10.667}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 59170}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 613750}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 26698}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 1899.6}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2900600}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 20.375}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 5333.3}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 120870}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 254120}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 97.538}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 32141000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2625300}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 3875}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 3136.7}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 53.333}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 333.29}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 4857100000}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 152620}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 3121000}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 24465000}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2335500}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 39998}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 3066.8}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 164630}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 675480000}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 10765}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 91431}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 189420}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2486.3}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 106380}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 265950}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 4.2341}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 3324.4}, {"name": "Sulfosate", "categories": ["soil", "agricultural"], "amount": 553.58}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 4938.2}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 113250000}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 17730}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 17206}, {"name": "Thorium", "categories": ["air", "urban air close to ground"], "amount": 8865}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 727.63}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 968.76}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2006300}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 2999800}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 141470}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1587500}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 128430}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 344.9}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 400.47}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.3333}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 95.515}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 95.515}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 95.515}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 95.515}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 461.7}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 461.7}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 461.7}, {"name": "2-Propanol", "categories": ["air"], "amount": 461.7}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 789.88}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 789.88}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 789.88}, {"name": "Acetic acid", "categories": ["air"], "amount": 789.88}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 11482}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 11482}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11482}, {"name": "Acetone", "categories": ["air"], "amount": 11482}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 782.2}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 782.2}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 782.2}, {"name": "Aluminium III", "categories": ["air"], "amount": 782.2}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 10036}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 10036}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10036}, {"name": "Antimony ion", "categories": ["air"], "amount": 10036}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 27121}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 27121}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27121}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 27121}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3594}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 3594}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3594}, {"name": "Benzene", "categories": ["air"], "amount": 3594}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 212.76}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 212.76}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 212.76}, {"name": "Beryllium II", "categories": ["air"], "amount": 212.76}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.976}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 91.976}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.976}, {"name": "Butanol", "categories": ["air"], "amount": 91.976}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1777.8}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 1777.8}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1777.8}, {"name": "Cadmium II", "categories": ["air"], "amount": 1777.8}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 24963}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 24963}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24963}, {"name": "Chloroform", "categories": ["air"], "amount": 24963}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.667}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 10.667}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.667}, {"name": "Chromium VI", "categories": ["air"], "amount": 10.667}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9095.8}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 9095.8}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9095.8}, {"name": "Cobalt II", "categories": ["air"], "amount": 9095.8}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.778}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 17.778}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.778}, {"name": "Copper ion", "categories": ["air"], "amount": 17.778}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 83.098}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 83.098}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 83.098}, {"name": "Cumene", "categories": ["air"], "amount": 83.098}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7587200}, {"name": "Cyanide", "categories": ["air", "low population density, long-term"], "amount": 7587200}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7587200}, {"name": "Cyanide", "categories": ["air"], "amount": 7587200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11740000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 11740000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11740000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 11740000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 61023}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 61023}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 61023}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 61023}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.262}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 10.262}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.262}, {"name": "Ethanol", "categories": ["air"], "amount": 10.262}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8720.3}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1055.9}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 585.76}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 585.76}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 585.76}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 585.76}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 202910}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 202910}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 202910}, {"name": "Formaldehyde", "categories": ["air"], "amount": 202910}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2464.3}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2464.3}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2464.3}, {"name": "Hexane", "categories": ["air"], "amount": 2464.3}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 531.9}, {"name": "Iron ion", "categories": ["air", "low population density, long-term"], "amount": 531.9}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 531.9}, {"name": "Iron ion", "categories": ["air"], "amount": 531.9}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.667}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 10.667}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.667}, {"name": "Lead II", "categories": ["air"], "amount": 10.667}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1899.6}, {"name": "Manganese II", "categories": ["air", "low population density, long-term"], "amount": 1899.6}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1899.6}, {"name": "Manganese II", "categories": ["air"], "amount": 1899.6}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["air"], "amount": 5333.3}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.538}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 97.538}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 97.538}, {"name": "Methanol", "categories": ["air"], "amount": 97.538}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 3875}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 3875}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3875}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 3875}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 53.333}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 53.333}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53.333}, {"name": "Nickel II", "categories": ["air"], "amount": 53.333}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 3066.8}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 3066.8}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3066.8}, {"name": "Propanal", "categories": ["air"], "amount": 3066.8}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 10765}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 10765}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10765}, {"name": "Propylene oxide", "categories": ["air"], "amount": 10765}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 106380}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 106380}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 106380}, {"name": "Selenium IV", "categories": ["air"], "amount": 106380}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 265950}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 265950}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265950}, {"name": "Silver I", "categories": ["air"], "amount": 265950}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2341}, {"name": "Sodium dichromate", "categories": ["air", "low population density, long-term"], "amount": 4.2341}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2341}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 4.2341}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 3324.4}, {"name": "Strontium", "categories": ["air", "low population density, long-term"], "amount": 3324.4}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3324.4}, {"name": "Strontium", "categories": ["air"], "amount": 3324.4}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 17730}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 17730}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17730}, {"name": "Thallium I", "categories": ["air"], "amount": 17730}, {"name": "Thorium", "categories": ["air", "non-urban air or from high stacks"], "amount": 8865}, {"name": "Thorium", "categories": ["air", "low population density, long-term"], "amount": 8865}, {"name": "Thorium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8865}, {"name": "Thorium", "categories": ["air"], "amount": 8865}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 727.63}, {"name": "Titanium ion", "categories": ["air", "low population density, long-term"], "amount": 727.63}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 727.63}, {"name": "Titanium ion", "categories": ["air"], "amount": 727.63}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 968.76}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 968.76}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 968.76}, {"name": "Toluene", "categories": ["air"], "amount": 968.76}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 344.9}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 344.9}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 344.9}, {"name": "Vanadium V", "categories": ["air"], "amount": 344.9}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 400.47}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 400.47}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400.47}, {"name": "Xylene", "categories": ["air"], "amount": 400.47}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3333}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 5.3333}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3333}, {"name": "Zinc II", "categories": ["air"], "amount": 5.3333}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 977.75}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 977.75}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 977.75}, {"name": "Aluminium III", "categories": ["soil"], "amount": 977.75}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 12545}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 12545}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 12545}, {"name": "Antimony ion", "categories": ["soil"], "amount": 12545}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 265.95}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 265.95}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 265.95}, {"name": "Beryllium II", "categories": ["soil"], "amount": 265.95}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 2222.2}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2222.2}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2222.2}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2222.2}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 13.333}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 13.333}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 13.333}, {"name": "Chromium VI", "categories": ["soil"], "amount": 13.333}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 11370}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 11370}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 11370}, {"name": "Cobalt II", "categories": ["soil"], "amount": 11370}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 22.222}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 22.222}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 22.222}, {"name": "Copper ion", "categories": ["soil"], "amount": 22.222}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 155300}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 664.87}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 664.87}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 664.87}, {"name": "Iron ion", "categories": ["soil"], "amount": 664.87}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 13.333}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 13.333}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 13.333}, {"name": "Lead II", "categories": ["soil"], "amount": 13.333}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 2374.5}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 2374.5}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 2374.5}, {"name": "Manganese II", "categories": ["soil"], "amount": 2374.5}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["soil"], "amount": 5333.3}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 4843.7}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 4843.7}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4843.7}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 66.667}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 66.667}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 66.667}, {"name": "Nickel II", "categories": ["soil"], "amount": 66.667}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 333.29}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 333.29}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 333.29}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 132970}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 132970}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 132970}, {"name": "Selenium IV", "categories": ["soil"], "amount": 132970}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 332440}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 332440}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 332440}, {"name": "Silver I", "categories": ["soil"], "amount": 332440}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 4155.4}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 4155.4}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 4155.4}, {"name": "Strontium", "categories": ["soil"], "amount": 4155.4}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 22162}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 22162}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 22162}, {"name": "Thallium I", "categories": ["soil"], "amount": 22162}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 909.54}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 909.54}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 909.54}, {"name": "Titanium ion", "categories": ["soil"], "amount": 909.54}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 431.12}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 431.12}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 431.12}, {"name": "Vanadium V", "categories": ["soil"], "amount": 431.12}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 6.6667}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 6.6667}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 6.6667}, {"name": "Zinc II", "categories": ["soil"], "amount": 6.6667}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 3594}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 3594}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3594}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 3594}, {"name": "Benzene", "categories": ["water"], "amount": 3594}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 37807}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 37807}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 37807}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 37807}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 24963}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 24963}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 24963}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 24963}, {"name": "Chloroform", "categories": ["water"], "amount": 24963}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 83.098}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 83.098}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 83.098}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 83.098}, {"name": "Cumene", "categories": ["water"], "amount": 83.098}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 7587200}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 7587200}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 7587200}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 7587200}, {"name": "Cyanide", "categories": ["water"], "amount": 7587200}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["water"], "amount": 8720.3}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1055.9}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2464.3}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2464.3}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2464.3}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2464.3}, {"name": "Hexane", "categories": ["water"], "amount": 2464.3}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["water"], "amount": 5333.3}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 400.47}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 400.47}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 400.47}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 400.47}, {"name": "m-Xylene", "categories": ["water"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water"], "amount": 400.47}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 968.76}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 968.76}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 968.76}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 968.76}, {"name": "Toluene", "categories": ["water"], "amount": 968.76}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 400.47}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 400.47}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 400.47}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 400.47}, {"name": "Xylene", "categories": ["water"], "amount": 400.47}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 17232}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 531.9}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["air"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 333.33}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 333.33}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 333.33}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 333.33}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 150510}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 875000000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 492.91}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 492.91}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 492.91}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 492.91}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 492.91}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 114680}]}, {"unit": "m3 water", "name": ["EDIP 2003", "ecotoxicity", "chronic, in water"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 13.793}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 50.633}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 80}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1212.1}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 29412}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 377360}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 8888.9}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4000}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 8000}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 14.545}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 23529000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 117650000}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 133330}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 400000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2500000}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 12500000}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2857.1}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 800000}, {"name": "Dichromate", "categories": ["water", "ground-"], "amount": 320990}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 555560000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.0767}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1818.2}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 82.902}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 23952}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 147060}, {"name": "Hypochlorite", "categories": ["water", "ground-"], "amount": 266670}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 400000}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 71429}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 4000000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 400000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 133330}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 400}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1176.5}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 4000000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 10000000}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 50000000}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 52926}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 125000}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 666670}, {"name": "Thorium", "categories": ["air", "urban air close to ground"], "amount": 333330}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 27360}, {"name": "Titanium ion", "categories": ["water", "ground-"], "amount": 136800}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 4000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 40000}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 4000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 200000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1000000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.793}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 13.793}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.793}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 13.793}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.633}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 50.633}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.633}, {"name": "2-Propanol", "categories": ["air"], "amount": 50.633}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 80}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 80}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80}, {"name": "Acetic acid", "categories": ["air"], "amount": 80}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1212.1}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 1212.1}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1212.1}, {"name": "Acetone", "categories": ["air"], "amount": 1212.1}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 29412}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 29412}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29412}, {"name": "Aluminium III", "categories": ["air"], "amount": 29412}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 377360}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 377360}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 377360}, {"name": "Antimony ion", "categories": ["air"], "amount": 377360}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8888.9}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 8888.9}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8888.9}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 8888.9}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 4000}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000}, {"name": "Benzene", "categories": ["air"], "amount": 4000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8000}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 8000}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8000}, {"name": "Beryllium II", "categories": ["air"], "amount": 8000}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.545}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 14.545}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.545}, {"name": "Butanol", "categories": ["air"], "amount": 14.545}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 23529000}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 23529000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23529000}, {"name": "Cadmium II", "categories": ["air"], "amount": 23529000}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20000}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Chloroform", "categories": ["air"], "amount": 20000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 133330}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 133330}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 133330}, {"name": "Chromium VI", "categories": ["air"], "amount": 133330}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 400000}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 400000}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400000}, {"name": "Cobalt II", "categories": ["air"], "amount": 400000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 2500000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000}, {"name": "Copper ion", "categories": ["air"], "amount": 2500000}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2857.1}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 2857.1}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2857.1}, {"name": "Cumene", "categories": ["air"], "amount": 2857.1}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 800000}, {"name": "Cyanide", "categories": ["air", "low population density, long-term"], "amount": 800000}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 800000}, {"name": "Cyanide", "categories": ["air"], "amount": 800000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 555560000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 555560000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 555560000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 555560000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 20000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 20000}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0767}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 1.0767}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0767}, {"name": "Ethanol", "categories": ["air"], "amount": 1.0767}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1818.2}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 20000}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.902}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 82.902}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.902}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 82.902}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 23952}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 23952}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23952}, {"name": "Formaldehyde", "categories": ["air"], "amount": 23952}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 147060}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 147060}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 147060}, {"name": "Hexane", "categories": ["air"], "amount": 147060}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Iron ion", "categories": ["air", "low population density, long-term"], "amount": 20000}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Iron ion", "categories": ["air"], "amount": 20000}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 400000}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 400000}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400000}, {"name": "Lead II", "categories": ["air"], "amount": 400000}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 71429}, {"name": "Manganese II", "categories": ["air", "low population density, long-term"], "amount": 71429}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71429}, {"name": "Manganese II", "categories": ["air"], "amount": 71429}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000000}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 4000000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000000}, {"name": "Mercury II", "categories": ["air"], "amount": 4000000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Methanol", "categories": ["air"], "amount": 10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 400000}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 400000}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400000}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 400000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 133330}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 133330}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 133330}, {"name": "Nickel II", "categories": ["air"], "amount": 133330}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 400}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 400}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400}, {"name": "Propanal", "categories": ["air"], "amount": 400}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1176.5}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1176.5}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1176.5}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1176.5}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000000}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 4000000}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000000}, {"name": "Selenium IV", "categories": ["air"], "amount": 4000000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000000}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 10000000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000000}, {"name": "Silver I", "categories": ["air"], "amount": 10000000}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 52926}, {"name": "Sodium dichromate", "categories": ["air", "low population density, long-term"], "amount": 52926}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 52926}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 52926}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 125000}, {"name": "Strontium", "categories": ["air", "low population density, long-term"], "amount": 125000}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 125000}, {"name": "Strontium", "categories": ["air"], "amount": 125000}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 666670}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 666670}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 666670}, {"name": "Thallium I", "categories": ["air"], "amount": 666670}, {"name": "Thorium", "categories": ["air", "non-urban air or from high stacks"], "amount": 333330}, {"name": "Thorium", "categories": ["air", "low population density, long-term"], "amount": 333330}, {"name": "Thorium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 333330}, {"name": "Thorium", "categories": ["air"], "amount": 333330}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 27360}, {"name": "Titanium ion", "categories": ["air", "low population density, long-term"], "amount": 27360}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27360}, {"name": "Titanium ion", "categories": ["air"], "amount": 27360}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4000}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000}, {"name": "Toluene", "categories": ["air"], "amount": 4000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 40000}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 40000}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40000}, {"name": "Vanadium V", "categories": ["air"], "amount": 40000}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 4000}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000}, {"name": "Xylene", "categories": ["air"], "amount": 4000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 200000}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 200000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 200000}, {"name": "Zinc II", "categories": ["air"], "amount": 200000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 4000000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 4000000}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 4000000}, {"name": "Mercury II", "categories": ["soil"], "amount": 4000000}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 68.966}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 68.966}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 68.966}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 68.966}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 68.966}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 253.16}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 253.16}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 253.16}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 253.16}, {"name": "2-Propanol", "categories": ["water"], "amount": 253.16}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 732.6}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 732.6}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 732.6}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 732.6}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 732.6}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 400}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 400}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 400}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 400}, {"name": "Acetic acid", "categories": ["water"], "amount": 400}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 6060.6}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 6060.6}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 6060.6}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 6060.6}, {"name": "Acetone", "categories": ["water"], "amount": 6060.6}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 147060}, {"name": "Aluminium III", "categories": ["water", "ground-, long-term"], "amount": 147060}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 147060}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 147060}, {"name": "Aluminium III", "categories": ["water"], "amount": 147060}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 1886800}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 1886800}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1886800}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1886800}, {"name": "Antimony ion", "categories": ["water"], "amount": 1886800}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 4000}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "Benzene", "categories": ["water"], "amount": 4000}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 200000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 200000}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 40000}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 40000}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 40000}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 40000}, {"name": "Beryllium II", "categories": ["water"], "amount": 40000}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 72.727}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 72.727}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 72.727}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 72.727}, {"name": "Butanol", "categories": ["water"], "amount": 72.727}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 117650000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 117650000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 117650000}, {"name": "Cadmium II", "categories": ["water"], "amount": 117650000}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 20000}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 20000}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 20000}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 20000}, {"name": "Chloroform", "categories": ["water"], "amount": 20000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 666670}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 666670}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 666670}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 666670}, {"name": "Chromium VI", "categories": ["water"], "amount": 666670}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 2000000}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Cobalt II", "categories": ["water"], "amount": 2000000}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 12500000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 12500000}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 12500000}, {"name": "Copper ion", "categories": ["water"], "amount": 12500000}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2857.1}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 2857.1}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2857.1}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2857.1}, {"name": "Cumene", "categories": ["water"], "amount": 2857.1}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 800000}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 800000}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 800000}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 800000}, {"name": "Cyanide", "categories": ["water"], "amount": 800000}, {"name": "Dichromate", "categories": ["water", "ground-, long-term"], "amount": 320990}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 320990}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 320990}, {"name": "Dichromate", "categories": ["water"], "amount": 320990}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 29.412}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 29.412}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 29.412}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 29.412}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 29.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 100000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 100000}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 5.3836}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 5.3836}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3836}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 5.3836}, {"name": "Ethanol", "categories": ["water"], "amount": 5.3836}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["water"], "amount": 1818.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 20000}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 414.51}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 414.51}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 414.51}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 414.51}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 414.51}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 119760}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 119760}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 119760}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 119760}, {"name": "Formaldehyde", "categories": ["water"], "amount": 119760}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 147060}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 147060}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 147060}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 147060}, {"name": "Hexane", "categories": ["water"], "amount": 147060}, {"name": "Hypochlorite", "categories": ["water", "ground-, long-term"], "amount": 266670}, {"name": "Hypochlorite", "categories": ["water", "ocean"], "amount": 266670}, {"name": "Hypochlorite", "categories": ["water", "surface water"], "amount": 266670}, {"name": "Hypochlorite", "categories": ["water"], "amount": 266670}, {"name": "Iron ion", "categories": ["water", "ground-, long-term"], "amount": 100000}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Iron ion", "categories": ["water"], "amount": 100000}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 2000000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Lead II", "categories": ["water"], "amount": 2000000}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 357140}, {"name": "Manganese II", "categories": ["water", "ground-, long-term"], "amount": 357140}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 357140}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 357140}, {"name": "Manganese II", "categories": ["water"], "amount": 357140}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 4000000}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 4000000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 4000000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 4000000}, {"name": "Mercury II", "categories": ["water"], "amount": 4000000}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 50}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 50}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 50}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 50}, {"name": "Methanol", "categories": ["water"], "amount": 50}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2000000}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2000000}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 4000}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "m-Xylene", "categories": ["water"], "amount": 4000}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 666670}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 666670}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 666670}, {"name": "Nickel II", "categories": ["water"], "amount": 666670}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 1000000}, {"name": "Oils, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1000000}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 1000000}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 1000000}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1000000}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 4000}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "o-Xylene", "categories": ["water"], "amount": 4000}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 44444}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 44444}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 44444}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 44444}, {"name": "Phenol", "categories": ["water"], "amount": 44444}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 2000}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 2000}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 2000}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 2000}, {"name": "Propanal", "categories": ["water"], "amount": 2000}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 5882.4}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 5882.4}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 5882.4}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 5882.4}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5882.4}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 20000000}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 20000000}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 20000000}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 20000000}, {"name": "Selenium IV", "categories": ["water"], "amount": 20000000}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 50000000}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 50000000}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 50000000}, {"name": "Silver I", "categories": ["water"], "amount": 50000000}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 625000}, {"name": "Strontium", "categories": ["water", "ground-, long-term"], "amount": 625000}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 625000}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 625000}, {"name": "Strontium", "categories": ["water"], "amount": 625000}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3333300}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 3333300}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 3333300}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3333300}, {"name": "Thallium I", "categories": ["water"], "amount": 3333300}, {"name": "Titanium ion", "categories": ["water", "ground-, long-term"], "amount": 136800}, {"name": "Titanium ion", "categories": ["water", "ocean"], "amount": 136800}, {"name": "Titanium ion", "categories": ["water", "surface water"], "amount": 136800}, {"name": "Titanium ion", "categories": ["water"], "amount": 136800}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 4000}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "Toluene", "categories": ["water"], "amount": 4000}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 200000}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Vanadium V", "categories": ["water"], "amount": 200000}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 4000}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "Xylene", "categories": ["water"], "amount": 4000}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 1000000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1000000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1000000}, {"name": "Zinc II", "categories": ["water"], "amount": 1000000}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["air"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1923100}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1923100}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1923100}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1923100}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1923100}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 10000}]}, {"unit": "m3 waste water", "name": ["EDIP 2003", "ecotoxicity", "in sewage treatment plants"], "exchanges": [{"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5000000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 15000000}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 25000000}, {"name": "Dichromate", "categories": ["water", "ground-"], "amount": 482}, {"name": "Hypochlorite", "categories": ["water", "ground-"], "amount": 898000}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 6700}, {"name": "Titanium ion", "categories": ["water", "ground-"], "amount": 6800}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 290000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 44000}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 20}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 20}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 20}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 20}, {"name": "Acetic acid", "categories": ["water"], "amount": 20}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 500000000}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 500000000}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 500000000}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 500000000}, {"name": "Acetone", "categories": ["water"], "amount": 500000000}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 500000}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Benzene", "categories": ["water"], "amount": 500000}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5000000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5000000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5000000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5000000}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 15000000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 15000000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 15000000}, {"name": "Cadmium II", "categories": ["water"], "amount": 15000000}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 500000}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Chloroform", "categories": ["water"], "amount": 500000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1000}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 1000}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1000}, {"name": "Chromium VI", "categories": ["water"], "amount": 1000}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 120000}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 120000}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 120000}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 120000}, {"name": "Cobalt II", "categories": ["water"], "amount": 120000}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 25000000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 25000000}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 25000000}, {"name": "Copper ion", "categories": ["water"], "amount": 25000000}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1900}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1900}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1900}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1900}, {"name": "Cumene", "categories": ["water"], "amount": 1900}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 100000000}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 100000000}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 100000000}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 100000000}, {"name": "Cyanide", "categories": ["water"], "amount": 100000000}, {"name": "Dichromate", "categories": ["water", "ground-, long-term"], "amount": 482}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 482}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 482}, {"name": "Dichromate", "categories": ["water"], "amount": 482}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 500000}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3600}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 3600}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3600}, {"name": "Formaldehyde", "categories": ["water"], "amount": 3600}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 170000000}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 170000000}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 170000000}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 170000000}, {"name": "Hypochlorite", "categories": ["water", "ocean"], "amount": 898000}, {"name": "Hypochlorite", "categories": ["water", "surface water"], "amount": 898000}, {"name": "Hypochlorite", "categories": ["water"], "amount": 898000}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 6700}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 6700}, {"name": "Iron ion", "categories": ["water"], "amount": 6700}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5000000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 5000000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5000000}, {"name": "Lead II", "categories": ["water"], "amount": 5000000}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 130000}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 130000}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 130000}, {"name": "Manganese II", "categories": ["water"], "amount": 130000}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Mercury II", "categories": ["water"], "amount": 100000}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 8}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 8}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 8}, {"name": "Methanol", "categories": ["water"], "amount": 8}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 100000}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "m-Xylene", "categories": ["water"], "amount": 500000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 69000}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 69000}, {"name": "Nickel II", "categories": ["water"], "amount": 69000}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "o-Xylene", "categories": ["water"], "amount": 500000}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 780}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 780}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 780}, {"name": "Phenol", "categories": ["water"], "amount": 780}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 30}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 30}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 30}, {"name": "Propylene oxide", "categories": ["water"], "amount": 30}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 10000000}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 10000000}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 10000000}, {"name": "Selenium IV", "categories": ["water"], "amount": 10000000}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 5000000}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 5000000}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 5000000}, {"name": "Strontium", "categories": ["water"], "amount": 5000000}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 690}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 690}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 690}, {"name": "Styrene", "categories": ["water"], "amount": 690}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 1700000}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1700000}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 1700000}, {"name": "Thallium I", "categories": ["water"], "amount": 1700000}, {"name": "Titanium ion", "categories": ["water", "ocean"], "amount": 6800}, {"name": "Titanium ion", "categories": ["water", "surface water"], "amount": 6800}, {"name": "Titanium ion", "categories": ["water"], "amount": 6800}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Toluene", "categories": ["water"], "amount": 500000}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 290000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 290000}, {"name": "Vanadium V", "categories": ["water"], "amount": 290000}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Xylene", "categories": ["water"], "amount": 500000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 44000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 44000}, {"name": "Zinc II", "categories": ["water"], "amount": 44000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2500}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 2500}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2500}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 2500}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 2500}]}, {"unit": "kg NO3-", "name": ["EDIP 2003", "eutrophication", "combined potential"], "exchanges": [{"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.69002}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 3.64}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.4838}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 2.38}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.287}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.7965}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.3479}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 2.6137}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 9.196}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 32.03}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.2}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.2}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.5}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.64}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 3.64}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.64}, {"name": "Ammonia", "categories": ["air"], "amount": 3.64}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38}, {"name": "Cyanide", "categories": ["air", "low population density, long-term"], "amount": 2.38}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38}, {"name": "Cyanide", "categories": ["air"], "amount": 2.38}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air", "low population density, long-term"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.2}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrate", "categories": ["air"], "amount": 1}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.03}, {"name": "Phosphorus", "categories": ["air", "low population density, long-term"], "amount": 32.03}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32.03}, {"name": "Phosphorus", "categories": ["air"], "amount": 32.03}, {"name": "Nitrogen", "categories": ["soil", "forestry"], "amount": 2.3479}, {"name": "Nitrogen", "categories": ["soil", "industrial"], "amount": 2.3479}, {"name": "Nitrogen", "categories": ["soil"], "amount": 2.3479}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.627}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.627}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.627}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.627}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.69002}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.69002}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.69002}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.69002}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.4838}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 2.548}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.4838}, {"name": "Ammonium", "categories": ["water"], "amount": 0.4838}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4042}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 1.4042}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 1.666}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4042}, {"name": "Cyanide", "categories": ["water"], "amount": 1.4042}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 1.218}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 1.218}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 1.4451}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 1.218}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1.218}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.287}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 2.7134}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.287}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.287}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.59}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.59}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.7}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.59}, {"name": "Nitrate", "categories": ["water"], "amount": 0.59}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 0.7965}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.729}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.7965}, {"name": "Nitrite", "categories": ["water"], "amount": 0.7965}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.29796}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.29796}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.35351}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.29796}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.29796}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 2.6137}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 2.6137}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 3.101}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 2.6137}, {"name": "Nitrogen", "categories": ["water"], "amount": 2.6137}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 2.6137}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 3.101}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 2.6137}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 2.6137}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 9.196}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 10.45}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 9.196}, {"name": "Phosphate", "categories": ["water"], "amount": 9.196}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 28.186}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 28.186}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 32.03}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 28.186}, {"name": "Phosphorus", "categories": ["water"], "amount": 28.186}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.82}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 2.82}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.82}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.82}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.35}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.35}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.35}]}, {"unit": "kg N", "name": ["EDIP 2003", "eutrophication", "separate N potential"], "exchanges": [{"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.15576}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.82}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.4838}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 0.54}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 0.51625}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.23}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.177}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.53}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.59}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.82}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82}, {"name": "Ammonia", "categories": ["air"], "amount": 0.82}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.54}, {"name": "Cyanide", "categories": ["air", "low population density, long-term"], "amount": 0.54}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.54}, {"name": "Cyanide", "categories": ["air"], "amount": 0.54}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.23}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23}, {"name": "Nitrate", "categories": ["air"], "amount": 0.23}, {"name": "Nitrogen", "categories": ["soil", "forestry"], "amount": 0.53}, {"name": "Nitrogen", "categories": ["soil", "industrial"], "amount": 0.53}, {"name": "Nitrogen", "categories": ["soil"], "amount": 0.53}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.15576}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.15576}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.15576}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.15576}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.4838}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.574}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.4838}, {"name": "Ammonium", "categories": ["water"], "amount": 0.4838}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 0.3186}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 0.3186}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 0.378}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 0.3186}, {"name": "Cyanide", "categories": ["water"], "amount": 0.3186}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.27494}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.27494}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.3262}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.27494}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.27494}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 0.51625}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.6125}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 0.51625}, {"name": "Hydrazine", "categories": ["water"], "amount": 0.51625}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.1357}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.1357}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.161}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.1357}, {"name": "Nitrate", "categories": ["water"], "amount": 0.1357}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 0.177}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.162}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.177}, {"name": "Nitrite", "categories": ["water"], "amount": 0.177}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.06726}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.06726}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.0798}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.06726}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.06726}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.59}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 0.59}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.7}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.59}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.59}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 0.59}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 0.7}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.59}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.59}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.64}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.64}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.64}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.3}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.3}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.3}]}, {"unit": "kg P", "name": ["EDIP 2003", "eutrophication", "separate P potential"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.2904}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phosphorus", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phosphorus", "categories": ["air"], "amount": 1}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0198}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0198}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0198}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0198}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 0.2904}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.2904}, {"name": "Phosphate", "categories": ["water"], "amount": 0.2904}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 0.88}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 0.88}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 0.88}, {"name": "Phosphorus", "categories": ["water"], "amount": 0.88}]}, {"unit": "square meter", "name": ["EDIP 2003", "eutrophication", "terrestrial eutrophication"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 101}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 101}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 101}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101}, {"name": "Ammonia", "categories": ["air"], "amount": 101}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 25.4}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.4}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 25.4}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.4}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 25.4}]}, {"unit": "kg CO2-Eq", "name": ["EDIP 2003", "global warming", "GWP 100a"], "exchanges": [{"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 30}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 140}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4300}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 700}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 120}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2400}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 120}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 620}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3400}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 6900}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1700}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 14000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 210}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 550}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 23}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 16}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 23}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1800}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5700}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 22200}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentene", "categories": ["air"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetic acid", "categories": ["air"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 1}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetone", "categories": ["air"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acrolein", "categories": ["air"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene", "categories": ["air"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butadiene", "categories": ["air"], "amount": 3}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butane", "categories": ["air"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 30}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 30}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30}, {"name": "Chloroform", "categories": ["air"], "amount": 30}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Cumene", "categories": ["air"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethane", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 140}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4300}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 4300}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4300}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4300}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 700}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 700}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 700}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 700}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 120}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 120}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 120}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 120}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2400}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2400}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2400}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2400}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 120}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 120}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 120}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 120}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 620}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 620}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 620}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 620}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 11900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3400}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethanol", "categories": ["air"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethyne", "categories": ["air"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Formic acid", "categories": ["air"], "amount": 2}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Furan", "categories": ["air"], "amount": 2}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Heptane", "categories": ["air"], "amount": 3}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hexane", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Lactic acid", "categories": ["air"], "amount": 2}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 23}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 23}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 23}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1300}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1300}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 6900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 6900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 6900}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1700}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 14000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 14000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 14000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 10}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10600}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10600}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10600}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10600}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 210}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 210}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 210}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 210}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 550}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 550}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 550}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 550}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 23}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 23}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23}, {"name": "Methane, fossil", "categories": ["air"], "amount": 23}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 16}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 16}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 16}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1800}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1800}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5700}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 4600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12000}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 2}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanol", "categories": ["air"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl formate", "categories": ["air"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "m-Xylene", "categories": ["air"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "o-Xylene", "categories": ["air"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Paraffins", "categories": ["air"], "amount": 3}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Pentane", "categories": ["air"], "amount": 3}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol", "categories": ["air"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propanal", "categories": ["air"], "amount": 2}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propane", "categories": ["air"], "amount": 3}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propene", "categories": ["air"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propionic acid", "categories": ["air"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Sodium formate", "categories": ["air"], "amount": 2}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Styrene", "categories": ["air"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 22200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 22200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 22200}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 2}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Toluene", "categories": ["air"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Xylene", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9800}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9800}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9800}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9800}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9800}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6000}, {"name": "Butene", "categories": ["air"], "amount": 3}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 296}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 296}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 296}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 296}]}, {"unit": "kg CO2-Eq", "name": ["EDIP 2003", "global warming", "GWP 20a"], "exchanges": [{"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 100}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 3300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 450}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5500}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2100}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 410}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5200}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 390}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 4900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 5900}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 16}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 3600}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7900}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 4800}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 10000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 35}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 700}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1800}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 62}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 55}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 62}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 3900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6300}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 9400}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentene", "categories": ["air"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetic acid", "categories": ["air"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 1}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetone", "categories": ["air"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acrolein", "categories": ["air"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene", "categories": ["air"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butadiene", "categories": ["air"], "amount": 3}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butane", "categories": ["air"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 100}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 100}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100}, {"name": "Chloroform", "categories": ["air"], "amount": 100}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Cumene", "categories": ["air"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethane", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 3300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 3300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 450}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 450}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 450}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 450}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5500}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5500}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5500}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5500}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6100}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2100}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2100}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2100}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2100}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 410}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 410}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 410}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 410}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5200}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5200}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5200}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5200}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 390}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 390}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 390}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 4900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 4900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 4900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 5900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 5900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 5900}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethanol", "categories": ["air"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethyne", "categories": ["air"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Formic acid", "categories": ["air"], "amount": 2}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Furan", "categories": ["air"], "amount": 2}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Heptane", "categories": ["air"], "amount": 3}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hexane", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Lactic acid", "categories": ["air"], "amount": 2}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 62}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 62}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 62}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 62}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 16}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 16}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 16}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 3600}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 3600}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3600}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 3600}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7900}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 4800}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 4800}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4800}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 4800}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 10000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 10000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 35}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 700}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 1800}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1800}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 62}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 62}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 62}, {"name": "Methane, fossil", "categories": ["air"], "amount": 62}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 55}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 55}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 55}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2700}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2700}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2700}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 3900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 3900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 3900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6300}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 9400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 9400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 9400}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 2}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanol", "categories": ["air"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl formate", "categories": ["air"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "m-Xylene", "categories": ["air"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "o-Xylene", "categories": ["air"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Paraffins", "categories": ["air"], "amount": 3}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Pentane", "categories": ["air"], "amount": 3}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol", "categories": ["air"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propanal", "categories": ["air"], "amount": 2}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propane", "categories": ["air"], "amount": 3}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propene", "categories": ["air"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propionic acid", "categories": ["air"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Sodium formate", "categories": ["air"], "amount": 2}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Styrene", "categories": ["air"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 15100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 15100}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 2}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Toluene", "categories": ["air"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Xylene", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 7500}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7500}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 7500}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 7500}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6100}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6100}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6100}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 7500}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6100}, {"name": "Butene", "categories": ["air"], "amount": 3}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 275}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 275}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 275}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 275}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 275}]}, {"unit": "kg CO2-Eq", "name": ["EDIP 2003", "global warming", "GWP 500a"], "exchanges": [{"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 9}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 400}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 42}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 220}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 37}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 740}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 36}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 190}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 18000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1100}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 390}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 540}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16300}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 65}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 170}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 580}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 8900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10000}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 32400}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentene", "categories": ["air"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetic acid", "categories": ["air"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 1}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetone", "categories": ["air"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acrolein", "categories": ["air"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene", "categories": ["air"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butadiene", "categories": ["air"], "amount": 3}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butane", "categories": ["air"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 9}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9}, {"name": "Chloroform", "categories": ["air"], "amount": 9}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Cumene", "categories": ["air"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethane", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 400}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 400}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 400}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 42}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 42}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 42}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1600}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1600}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 2700}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 220}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 220}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 220}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 220}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 37}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 37}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 37}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 740}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 740}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 740}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 740}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 36}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 36}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 36}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 190}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 190}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 190}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 190}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 18000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 18000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 18000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1100}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethanol", "categories": ["air"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethyne", "categories": ["air"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Formic acid", "categories": ["air"], "amount": 2}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Furan", "categories": ["air"], "amount": 2}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Heptane", "categories": ["air"], "amount": 3}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hexane", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Lactic acid", "categories": ["air"], "amount": 2}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 390}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 390}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 390}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2700}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2700}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2700}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 540}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 540}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 540}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 540}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16300}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16300}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16300}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16300}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 5200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 5200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 65}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 65}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 65}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 65}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 170}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 170}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 170}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 170}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 7}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 580}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 580}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 580}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 580}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 8900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 8900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 8900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 10000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10000}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 2}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanol", "categories": ["air"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl formate", "categories": ["air"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "m-Xylene", "categories": ["air"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "o-Xylene", "categories": ["air"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Paraffins", "categories": ["air"], "amount": 3}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Pentane", "categories": ["air"], "amount": 3}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol", "categories": ["air"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propanal", "categories": ["air"], "amount": 2}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propane", "categories": ["air"], "amount": 3}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propene", "categories": ["air"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propionic acid", "categories": ["air"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Sodium formate", "categories": ["air"], "amount": 2}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Styrene", "categories": ["air"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 32400}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 32400}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32400}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 32400}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 2}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Toluene", "categories": ["air"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Xylene", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8700}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8700}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8700}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8700}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2700}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2700}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2700}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8700}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2700}, {"name": "Butene", "categories": ["air"], "amount": 3}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 156}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 156}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 156}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 156}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 156}]}, {"unit": "m3 air", "name": ["EDIP 2003", "human toxicity", "via air"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 10000000000}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 116280}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3333300}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3663000}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 10000000}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 31746000}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 50000000000}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 669340000}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 2000000000}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 20000000}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 38462000}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 10000000000}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 217390000}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 50000000000}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 250000000000}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 11111000000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 113640000000}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 833330}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 833330}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 34483000}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 100000000}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 1000000000}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 9523800}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 571430}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 10277000}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 141440000}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 250000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 28571000000000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1000000000}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 25253000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 916590}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 50000000}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 114290}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 28571}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 390620000}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 28571000}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 18622000}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 500000000}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12500000000}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1632700}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 1111100000}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 100000000000}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 2500000000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6666700000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 2544500}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 100000000}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 27211000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 66667000}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 8620700}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 100000000}, {"name": "Ozone", "categories": ["air", "urban air close to ground"], "amount": 50000000}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1351400000}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2000000000}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 33333000}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1515200000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 204080000}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 396950000}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1984100}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1000000}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1282100}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 500030000}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 18083000}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 2500000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 80600000}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 6666700}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 80645000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000000000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 10000000000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000000000}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 10000000000}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 116280}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 116280}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116280}, {"name": "2-Propanol", "categories": ["air"], "amount": 116280}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3333300}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3333300}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3333300}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3333300}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3663000}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3663000}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3663000}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3663000}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000000}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 10000000}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000000}, {"name": "Acetic acid", "categories": ["air"], "amount": 10000000}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 31746000}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 31746000}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31746000}, {"name": "Acetone", "categories": ["air"], "amount": 31746000}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000000}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 50000000000}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000000}, {"name": "Acrolein", "categories": ["air"], "amount": 50000000000}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 669340000}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 669340000}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 669340000}, {"name": "Acrylic acid", "categories": ["air"], "amount": 669340000}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000000}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 2000000000}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000000}, {"name": "Aluminium III", "categories": ["air"], "amount": 2000000000}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000000}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 20000000}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000000}, {"name": "Antimony ion", "categories": ["air"], "amount": 20000000}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 38462000}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 38462000}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 38462000}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 38462000}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000000000}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 10000000000}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000000000}, {"name": "Benzene", "categories": ["air"], "amount": 10000000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 50000000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000000}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air"], "amount": 50000000000}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 250000000000}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 250000000000}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 250000000000}, {"name": "Butadiene", "categories": ["air"], "amount": 250000000000}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 11111000000}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 11111000000}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11111000000}, {"name": "Butanol", "categories": ["air"], "amount": 11111000000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 113640000000}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 113640000000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 113640000000}, {"name": "Cadmium II", "categories": ["air"], "amount": 113640000000}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 833330}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 833330}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 833330}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 833330}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 833330}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 833330}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 833330}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 833330}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 34483000}, {"name": "Chlorine", "categories": ["air", "low population density, long-term"], "amount": 34483000}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34483000}, {"name": "Chlorine", "categories": ["air"], "amount": 34483000}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 100000000}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 100000000}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100000000}, {"name": "Chloroform", "categories": ["air"], "amount": 100000000}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000000}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1000000000}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000000}, {"name": "Chromium III", "categories": ["air"], "amount": 1000000000}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9523800}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 9523800}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9523800}, {"name": "Cobalt II", "categories": ["air"], "amount": 9523800}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 571430}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 571430}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 571430}, {"name": "Copper ion", "categories": ["air"], "amount": 571430}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10277000}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 10277000}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10277000}, {"name": "Cumene", "categories": ["air"], "amount": 10277000}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 141440000}, {"name": "Cyanide", "categories": ["air", "low population density, long-term"], "amount": 141440000}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 141440000}, {"name": "Cyanide", "categories": ["air"], "amount": 141440000}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 250000000}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 250000000}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 250000000}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 250000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 28571000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 28571000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28571000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 28571000000000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000000}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1000000000}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000000}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1000000000}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 25253000}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 25253000}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25253000}, {"name": "Ethane thiol", "categories": ["air"], "amount": 25253000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 916590}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 50000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 50000000}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 114290}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 114290}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 114290}, {"name": "Ethanol", "categories": ["air"], "amount": 114290}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 28571}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 28571}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28571}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["air"], "amount": 390620000}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 28571000}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18622000}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000000}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 500000000}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000000}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 500000000}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500000000}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 12500000000}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500000000}, {"name": "Formaldehyde", "categories": ["air"], "amount": 12500000000}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1632700}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1632700}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1632700}, {"name": "Hexane", "categories": ["air"], "amount": 1632700}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 1111100000}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 37106000}, {"name": "Iron ion", "categories": ["air", "low population density, long-term"], "amount": 37106000}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37106000}, {"name": "Iron ion", "categories": ["air"], "amount": 37106000}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 100000000000}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 100000000000}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100000000000}, {"name": "Lead II", "categories": ["air"], "amount": 100000000000}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000000}, {"name": "Manganese II", "categories": ["air", "low population density, long-term"], "amount": 2500000000}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000000}, {"name": "Manganese II", "categories": ["air"], "amount": 2500000000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["air"], "amount": 6666700000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2544500}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 2544500}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2544500}, {"name": "Methanol", "categories": ["air"], "amount": 2544500}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 100000000}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 100000000}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100000000}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 100000000}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27211000}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 27211000}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27211000}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 27211000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 66667000}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 66667000}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 66667000}, {"name": "Nickel II", "categories": ["air"], "amount": 66667000}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 100000000}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 100000000}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100000000}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 100000000}, {"name": "Ozone", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000}, {"name": "Ozone", "categories": ["air", "low population density, long-term"], "amount": 50000000}, {"name": "Ozone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000}, {"name": "Ozone", "categories": ["air"], "amount": 50000000}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1351400000}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1351400000}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1351400000}, {"name": "Phenol", "categories": ["air"], "amount": 1351400000}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000000}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 2000000000}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000000}, {"name": "Propanal", "categories": ["air"], "amount": 2000000000}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 33333000}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 33333000}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33333000}, {"name": "Propylene oxide", "categories": ["air"], "amount": 33333000}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1515200000}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 1515200000}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1515200000}, {"name": "Selenium IV", "categories": ["air"], "amount": 1515200000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 204080000}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 204080000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 204080000}, {"name": "Silver I", "categories": ["air"], "amount": 204080000}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 396950000}, {"name": "Sodium dichromate", "categories": ["air", "low population density, long-term"], "amount": 396950000}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 396950000}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 396950000}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 1984100}, {"name": "Sodium hypochlorite", "categories": ["air", "low population density, long-term"], "amount": 1984100}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1984100}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 1984100}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1000000}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000}, {"name": "Styrene", "categories": ["air"], "amount": 1000000}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1282100}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1282100}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1282100}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1282100}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 500030000}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 500030000}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500030000}, {"name": "Thallium I", "categories": ["air"], "amount": 500030000}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 18083000}, {"name": "Titanium ion", "categories": ["air", "low population density, long-term"], "amount": 18083000}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18083000}, {"name": "Titanium ion", "categories": ["air"], "amount": 18083000}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 2500000}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000}, {"name": "Toluene", "categories": ["air"], "amount": 2500000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 80600000}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 80600000}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80600000}, {"name": "Vanadium V", "categories": ["air"], "amount": 80600000}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6666700}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 6666700}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6666700}, {"name": "Xylene", "categories": ["air"], "amount": 6666700}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 80645000}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 80645000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80645000}, {"name": "Zinc II", "categories": ["air"], "amount": 80645000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["soil"], "amount": 6666700000}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 10000000000}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 10000000000}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 10000000000}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 10000000000}, {"name": "Benzene", "categories": ["water"], "amount": 10000000000}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 217390000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 217390000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 217390000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 217390000}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 34483000}, {"name": "Chlorine", "categories": ["water", "ground-, long-term"], "amount": 34483000}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 34483000}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 34483000}, {"name": "Chlorine", "categories": ["water"], "amount": 34483000}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 100000000}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 100000000}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 100000000}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 100000000}, {"name": "Chloroform", "categories": ["water"], "amount": 100000000}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 10277000}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 10277000}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 10277000}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 10277000}, {"name": "Cumene", "categories": ["water"], "amount": 10277000}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 141440000}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 141440000}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 141440000}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 141440000}, {"name": "Cyanide", "categories": ["water"], "amount": 141440000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 916590}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 28571}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 28571}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 28571}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 28571}, {"name": "Ethylene", "categories": ["water"], "amount": 28571}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["water"], "amount": 390620000}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 28571000}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 18622000}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1632700}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1632700}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1632700}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1632700}, {"name": "Hexane", "categories": ["water"], "amount": 1632700}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 1111100000}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["water"], "amount": 6666700000}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 6666700}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 6666700}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 6666700}, {"name": "m-Xylene", "categories": ["water"], "amount": 6666700}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 8620700}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 8620700}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 8620700}, {"name": "Nitrate", "categories": ["water"], "amount": 8620700}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 8620700}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 8620700}, {"name": "Nitrite", "categories": ["water"], "amount": 8620700}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 6666700}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 6666700}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 6666700}, {"name": "o-Xylene", "categories": ["water"], "amount": 6666700}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1000000}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1000000}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1000000}, {"name": "Styrene", "categories": ["water"], "amount": 1000000}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2500000}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2500000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2500000}, {"name": "Toluene", "categories": ["water"], "amount": 2500000}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6666700}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 6666700}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6666700}, {"name": "Xylene", "categories": ["water"], "amount": 6666700}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 37106000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5000000000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5000000000}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 5000000000}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5000000000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 5000000000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 8333300}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 8333300}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 8333300}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 8333300}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 8333300}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2000000}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 2000000}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2000000}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 8620700}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 8620700}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 8620700}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8620700}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 8620700}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 66667000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 66667000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 66667000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 66667000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 66667000}]}, {"unit": "m3 soil", "name": ["EDIP 2003", "human toxicity", "via soil"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 3.6673}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 2.8015}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 117.85}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.5807}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.1345}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 16.317}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 31.243}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 16960}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 41.659}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.8666}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 14453}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 46.007}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 2968.1}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 11.212}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 4480.4}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.0629}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 51.823}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 197}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 1124.5}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 169.19}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 4.0045}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 20.951}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 714.17}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 3.2849}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 7518.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 14390000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 8.898}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 0.039502}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.0173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 75.173}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.14776}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.10451}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3973.5}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 39.981}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.68699}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.212}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 5.7653}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.019067}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.9715}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 82.655}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 96.154}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 424.01}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 81295}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.31426}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1544.5}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.7664}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 117.54}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 2.928}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4912.8}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.20766}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 335.16}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 23.851}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 6851}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.1219}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 44.3}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 4240.1}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 446.38}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 10389}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 375.71}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.0048}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.77714}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 962.28}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.067288}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 12.536}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6673}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 3.6673}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6673}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 3.6673}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8015}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 2.8015}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8015}, {"name": "2-Propanol", "categories": ["air"], "amount": 2.8015}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 117.85}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 117.85}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117.85}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 117.85}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5807}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.5807}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5807}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.5807}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1345}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 4.1345}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1345}, {"name": "Acetone", "categories": ["air"], "amount": 4.1345}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.317}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 16.317}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.317}, {"name": "Acrylic acid", "categories": ["air"], "amount": 16.317}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.243}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 31.243}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31.243}, {"name": "Aluminium III", "categories": ["air"], "amount": 31.243}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 16960}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 16960}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16960}, {"name": "Antimony ion", "categories": ["air"], "amount": 16960}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8666}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.8666}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8666}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.8666}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 14453}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 14453}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14453}, {"name": "Benzene", "categories": ["air"], "amount": 14453}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.1}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 2968.1}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2968.1}, {"name": "Beryllium II", "categories": ["air"], "amount": 2968.1}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.212}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 11.212}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.212}, {"name": "Butanol", "categories": ["air"], "amount": 11.212}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4480.4}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 4480.4}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4480.4}, {"name": "Cadmium II", "categories": ["air"], "amount": 4480.4}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.823}, {"name": "Chlorine", "categories": ["air", "low population density, long-term"], "amount": 51.823}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.823}, {"name": "Chlorine", "categories": ["air"], "amount": 51.823}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 197}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 197}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 197}, {"name": "Chloroform", "categories": ["air"], "amount": 197}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1124.5}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1124.5}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1124.5}, {"name": "Chromium III", "categories": ["air"], "amount": 1124.5}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 169.19}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 169.19}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 169.19}, {"name": "Cobalt II", "categories": ["air"], "amount": 169.19}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0045}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 4.0045}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0045}, {"name": "Copper ion", "categories": ["air"], "amount": 4.0045}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.951}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 20.951}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.951}, {"name": "Cumene", "categories": ["air"], "amount": 20.951}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 714.17}, {"name": "Cyanide", "categories": ["air", "low population density, long-term"], "amount": 714.17}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 714.17}, {"name": "Cyanide", "categories": ["air"], "amount": 714.17}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 14390000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 14390000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14390000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 14390000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.898}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 8.898}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.898}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 8.898}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.0173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 75.173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 75.173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 75.173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 75.173}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14776}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.14776}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14776}, {"name": "Ethanol", "categories": ["air"], "amount": 0.14776}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.10451}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3973.5}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 39.981}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68699}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.212}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.212}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.212}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.212}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7653}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.7653}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7653}, {"name": "Formaldehyde", "categories": ["air"], "amount": 5.7653}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9715}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.9715}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9715}, {"name": "Hexane", "categories": ["air"], "amount": 0.9715}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 770.93}, {"name": "Iron ion", "categories": ["air", "low population density, long-term"], "amount": 770.93}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 770.93}, {"name": "Iron ion", "categories": ["air"], "amount": 770.93}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.655}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 82.655}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.655}, {"name": "Lead II", "categories": ["air"], "amount": 82.655}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 424.01}, {"name": "Manganese II", "categories": ["air", "low population density, long-term"], "amount": 424.01}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 424.01}, {"name": "Manganese II", "categories": ["air"], "amount": 424.01}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 81295}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 81295}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 81295}, {"name": "Mercury II", "categories": ["air"], "amount": 81295}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31426}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.31426}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31426}, {"name": "Methanol", "categories": ["air"], "amount": 0.31426}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1544.5}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1544.5}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1544.5}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1544.5}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 117.54}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 117.54}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117.54}, {"name": "Nickel II", "categories": ["air"], "amount": 117.54}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4912.8}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 4912.8}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4912.8}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 4912.8}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 6851}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 6851}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6851}, {"name": "Propanal", "categories": ["air"], "amount": 6851}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1219}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.1219}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1219}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.1219}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.3}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 44.3}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.3}, {"name": "Selenium IV", "categories": ["air"], "amount": 44.3}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4240.1}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 4240.1}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4240.1}, {"name": "Silver I", "categories": ["air"], "amount": 4240.1}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 446.38}, {"name": "Sodium dichromate", "categories": ["air", "low population density, long-term"], "amount": 446.38}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 446.38}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 446.38}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 10389}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 10389}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10389}, {"name": "Thallium I", "categories": ["air"], "amount": 10389}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 375.71}, {"name": "Titanium ion", "categories": ["air", "low population density, long-term"], "amount": 375.71}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 375.71}, {"name": "Titanium ion", "categories": ["air"], "amount": 375.71}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0048}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.0048}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0048}, {"name": "Toluene", "categories": ["air"], "amount": 1.0048}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 962.28}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 962.28}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 962.28}, {"name": "Vanadium V", "categories": ["air"], "amount": 962.28}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067288}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.067288}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067288}, {"name": "Xylene", "categories": ["air"], "amount": 0.067288}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.536}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 12.536}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.536}, {"name": "Zinc II", "categories": ["air"], "amount": 12.536}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 39.054}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 39.054}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 39.054}, {"name": "Aluminium III", "categories": ["soil"], "amount": 39.054}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 21201}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 21201}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 21201}, {"name": "Antimony ion", "categories": ["soil"], "amount": 21201}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3710.1}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3710.1}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3710.1}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3710.1}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 5600.5}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 5600.5}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 5600.5}, {"name": "Cadmium II", "categories": ["soil"], "amount": 5600.5}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1405.7}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1405.7}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1405.7}, {"name": "Chromium III", "categories": ["soil"], "amount": 1405.7}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 211.48}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 211.48}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 211.48}, {"name": "Cobalt II", "categories": ["soil"], "amount": 211.48}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.0056}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.0056}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.0056}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.0056}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1220}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1220}, {"name": "Fluoride", "categories": ["soil"], "amount": 1220}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.019067}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 963.66}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 963.66}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 963.66}, {"name": "Iron ion", "categories": ["soil"], "amount": 963.66}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 103.32}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 103.32}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 103.32}, {"name": "Lead II", "categories": ["soil"], "amount": 103.32}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 530.02}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 530.02}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 530.02}, {"name": "Manganese II", "categories": ["soil"], "amount": 530.02}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 81295}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 81295}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 81295}, {"name": "Mercury II", "categories": ["soil"], "amount": 81295}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1930.6}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1930.6}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1930.6}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1930.6}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 146.92}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 146.92}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 146.92}, {"name": "Nickel II", "categories": ["soil"], "amount": 146.92}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.20766}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.20766}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.20766}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 55.375}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 55.375}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 55.375}, {"name": "Selenium IV", "categories": ["soil"], "amount": 55.375}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 5300.2}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 5300.2}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 5300.2}, {"name": "Silver I", "categories": ["soil"], "amount": 5300.2}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 12986}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 12986}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 12986}, {"name": "Thallium I", "categories": ["soil"], "amount": 12986}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 469.63}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 469.63}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 469.63}, {"name": "Titanium ion", "categories": ["soil"], "amount": 469.63}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1202.8}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1202.8}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1202.8}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1202.8}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 15.67}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 15.67}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 15.67}, {"name": "Zinc II", "categories": ["soil"], "amount": 15.67}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 14453}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 14453}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 14453}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 14453}, {"name": "Benzene", "categories": ["water"], "amount": 14453}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 46.007}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 46.007}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 46.007}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 46.007}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 51.823}, {"name": "Chlorine", "categories": ["water", "ground-, long-term"], "amount": 51.823}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 51.823}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 51.823}, {"name": "Chlorine", "categories": ["water"], "amount": 51.823}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 197}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 197}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 197}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 197}, {"name": "Chloroform", "categories": ["water"], "amount": 197}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 20.951}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 20.951}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 20.951}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 20.951}, {"name": "Cumene", "categories": ["water"], "amount": 20.951}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 714.17}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 714.17}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 714.17}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 714.17}, {"name": "Cyanide", "categories": ["water"], "amount": 714.17}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 2.0173}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["water"], "amount": 0.10451}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["water"], "amount": 3973.5}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 39.981}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.68699}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.9715}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.9715}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.9715}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.9715}, {"name": "Hexane", "categories": ["water"], "amount": 0.9715}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 81295}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 81295}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 81295}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 81295}, {"name": "Mercury II", "categories": ["water"], "amount": 81295}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.067288}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.067288}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.067288}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.067288}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.067288}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 2.928}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 2.928}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 2.928}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 2.928}, {"name": "Nitrate", "categories": ["water"], "amount": 2.928}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 2.928}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 2.928}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 2.928}, {"name": "Nitrite", "categories": ["water"], "amount": 2.928}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.067288}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.067288}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.067288}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.067288}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.067288}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.0048}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 1.0048}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.0048}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.0048}, {"name": "Toluene", "categories": ["water"], "amount": 1.0048}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.067288}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.067288}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.067288}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.067288}, {"name": "Xylene", "categories": ["water"], "amount": 0.067288}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 770.93}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["air"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 12966}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 12966}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 12966}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 12966}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2676}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 6.9893}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 6.9893}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 6.9893}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 6.9893}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 6.9893}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 2.928}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.928}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 2.928}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.928}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 2.928}]}, {"unit": "m3 water", "name": ["EDIP 2003", "human toxicity", "via surface water"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.028465}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0074667}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.6418}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0032788}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0085395}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.062684}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 0.39053}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 63600}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.38584}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2251.6}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 270.18}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 37.1}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.11257}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 559470}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2797300}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 0.13133}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 53.68}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3648.2}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 18241}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2.4733}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3353.8}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 16769}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 210.73}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 1.4641}, {"name": "Dichromate", "categories": ["water", "ground-"], "amount": 8782.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 216660000000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.1872}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.98564}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3.9175}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.00029073}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0020019}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 399.54}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 363.58}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.91071}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0088551}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.022148}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 336.8}, {"name": "Hypochlorite", "categories": ["water", "ground-"], "amount": 0.25764}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 48.182}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 52971}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 5.3}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 108710000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.2968}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.71}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.00742}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1290.4}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 19.787}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0029295}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 27687}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 265}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 1448.1}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 12986000}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 4.6962}, {"name": "Titanium ion", "categories": ["water", "ground-"], "amount": 23.481}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.9848}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 37.1}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 185.5}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.0929}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4130.5}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 20652}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028465}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.028465}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028465}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.028465}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074667}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0074667}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074667}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0074667}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6418}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3.6418}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6418}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.6418}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0032788}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0032788}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0032788}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0032788}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0085395}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.0085395}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0085395}, {"name": "Acetone", "categories": ["air"], "amount": 0.0085395}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.062684}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.062684}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.062684}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.062684}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39053}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 0.39053}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39053}, {"name": "Aluminium III", "categories": ["air"], "amount": 0.39053}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 63600}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 63600}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63600}, {"name": "Antimony ion", "categories": ["air"], "amount": 63600}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.38584}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.38584}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.38584}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.38584}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2251.6}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2251.6}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2251.6}, {"name": "Benzene", "categories": ["air"], "amount": 2251.6}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.1}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 37.1}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37.1}, {"name": "Beryllium II", "categories": ["air"], "amount": 37.1}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11257}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.11257}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11257}, {"name": "Butanol", "categories": ["air"], "amount": 0.11257}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 559470}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 559470}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 559470}, {"name": "Cadmium II", "categories": ["air"], "amount": 559470}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["air", "low population density, long-term"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["air"], "amount": 0.13133}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 53.68}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 53.68}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53.68}, {"name": "Chloroform", "categories": ["air"], "amount": 53.68}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3648.2}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 3648.2}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3648.2}, {"name": "Chromium III", "categories": ["air"], "amount": 3648.2}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4733}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 2.4733}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4733}, {"name": "Cobalt II", "categories": ["air"], "amount": 2.4733}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3353.8}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 3353.8}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3353.8}, {"name": "Copper ion", "categories": ["air"], "amount": 3353.8}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 210.73}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 210.73}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 210.73}, {"name": "Cumene", "categories": ["air"], "amount": 210.73}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["air", "low population density, long-term"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["air"], "amount": 1.4641}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 216660000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 216660000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 216660000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 216660000000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1872}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1.1872}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1872}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.1872}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.98564}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 3.9175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.9175}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00029073}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.00029073}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00029073}, {"name": "Ethanol", "categories": ["air"], "amount": 0.00029073}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0020019}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["air"], "amount": 399.54}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 363.58}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.91071}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0088551}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0088551}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0088551}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0088551}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022148}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.022148}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022148}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.022148}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 336.8}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 336.8}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 336.8}, {"name": "Hexane", "categories": ["air"], "amount": 336.8}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6364}, {"name": "Iron ion", "categories": ["air", "low population density, long-term"], "amount": 9.6364}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6364}, {"name": "Iron ion", "categories": ["air"], "amount": 9.6364}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 52971}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 52971}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 52971}, {"name": "Lead II", "categories": ["air"], "amount": 52971}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3}, {"name": "Manganese II", "categories": ["air", "low population density, long-term"], "amount": 5.3}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3}, {"name": "Manganese II", "categories": ["air"], "amount": 5.3}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 108710000}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 108710000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 108710000}, {"name": "Mercury II", "categories": ["air"], "amount": 108710000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2968}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.2968}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2968}, {"name": "Methanol", "categories": ["air"], "amount": 0.2968}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 53}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 53}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 53}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 3.71}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.71}, {"name": "Nickel II", "categories": ["air"], "amount": 3.71}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1290.4}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 1290.4}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1290.4}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1290.4}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.787}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 19.787}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.787}, {"name": "Propanal", "categories": ["air"], "amount": 19.787}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029295}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.0029295}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029295}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.0029295}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 27687}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 27687}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27687}, {"name": "Selenium IV", "categories": ["air"], "amount": 27687}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 53}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 53}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53}, {"name": "Silver I", "categories": ["air"], "amount": 53}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1448.1}, {"name": "Sodium dichromate", "categories": ["air", "low population density, long-term"], "amount": 1448.1}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1448.1}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 1448.1}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 12986000}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 12986000}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12986000}, {"name": "Thallium I", "categories": ["air"], "amount": 12986000}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6962}, {"name": "Titanium ion", "categories": ["air", "low population density, long-term"], "amount": 4.6962}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6962}, {"name": "Titanium ion", "categories": ["air"], "amount": 4.6962}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9848}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3.9848}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9848}, {"name": "Toluene", "categories": ["air"], "amount": 3.9848}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.1}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 37.1}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37.1}, {"name": "Vanadium V", "categories": ["air"], "amount": 37.1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0929}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.0929}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0929}, {"name": "Xylene", "categories": ["air"], "amount": 1.0929}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4130.5}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 4130.5}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4130.5}, {"name": "Zinc II", "categories": ["air"], "amount": 4130.5}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 108710000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 108710000}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 108710000}, {"name": "Mercury II", "categories": ["soil"], "amount": 108710000}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.14233}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.14233}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.14233}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.14233}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.14233}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.037334}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.037334}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.037334}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.037334}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.037334}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 18.209}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 18.209}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 18.209}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 18.209}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 18.209}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.0070658}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.0070658}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0070658}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.0070658}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.0070658}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.016394}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.016394}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.016394}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.016394}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.016394}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.042698}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.042698}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.042698}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.042698}, {"name": "Acetone", "categories": ["water"], "amount": 0.042698}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.9526}, {"name": "Aluminium III", "categories": ["water", "ground-, long-term"], "amount": 1.9526}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.9526}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.9526}, {"name": "Aluminium III", "categories": ["water"], "amount": 1.9526}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 318000}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 318000}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 318000}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 318000}, {"name": "Antimony ion", "categories": ["water"], "amount": 318000}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2251.6}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 2251.6}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 2251.6}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2251.6}, {"name": "Benzene", "categories": ["water"], "amount": 2251.6}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 270.18}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 270.18}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 270.18}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 270.18}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 185.5}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 185.5}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 185.5}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 185.5}, {"name": "Beryllium II", "categories": ["water"], "amount": 185.5}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.56286}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.56286}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.56286}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.56286}, {"name": "Butanol", "categories": ["water"], "amount": 0.56286}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 2797300}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2797300}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2797300}, {"name": "Cadmium II", "categories": ["water"], "amount": 2797300}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["water", "ground-, long-term"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["water"], "amount": 0.13133}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 53.68}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 53.68}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 53.68}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 53.68}, {"name": "Chloroform", "categories": ["water"], "amount": 53.68}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 18241}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 18241}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 18241}, {"name": "Chromium III", "categories": ["water"], "amount": 18241}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 12.367}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 12.367}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 12.367}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 12.367}, {"name": "Cobalt II", "categories": ["water"], "amount": 12.367}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 16769}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 16769}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 16769}, {"name": "Copper ion", "categories": ["water"], "amount": 16769}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 210.73}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 210.73}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 210.73}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 210.73}, {"name": "Cumene", "categories": ["water"], "amount": 210.73}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["water"], "amount": 1.4641}, {"name": "Dichromate", "categories": ["water", "ground-, long-term"], "amount": 8782.6}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 8782.6}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 8782.6}, {"name": "Dichromate", "categories": ["water"], "amount": 8782.6}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.0031428}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.0031428}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 0.0031428}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.0031428}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.0031428}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.98564}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 19.587}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 19.587}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 19.587}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 19.587}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 19.587}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0014537}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.0014537}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.0014537}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0014537}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0014537}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["water"], "amount": 0.0020019}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["water"], "amount": 399.54}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 363.58}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.91071}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.044275}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.044275}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.044275}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.044275}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.044275}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 12.367}, {"name": "Fluoride", "categories": ["water", "ground-, long-term"], "amount": 12.367}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 12.367}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 12.367}, {"name": "Fluoride", "categories": ["water"], "amount": 12.367}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.11074}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.11074}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.11074}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.11074}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.11074}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 336.8}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 336.8}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 336.8}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 336.8}, {"name": "Hexane", "categories": ["water"], "amount": 336.8}, {"name": "Hypochlorite", "categories": ["water", "ground-, long-term"], "amount": 0.25764}, {"name": "Hypochlorite", "categories": ["water", "ocean"], "amount": 0.25764}, {"name": "Hypochlorite", "categories": ["water", "surface water"], "amount": 0.25764}, {"name": "Hypochlorite", "categories": ["water"], "amount": 0.25764}, {"name": "Iron ion", "categories": ["water", "ground-, long-term"], "amount": 48.182}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 48.182}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 48.182}, {"name": "Iron ion", "categories": ["water"], "amount": 48.182}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 264850}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 264850}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 264850}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 264850}, {"name": "Lead II", "categories": ["water"], "amount": 264850}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 26.5}, {"name": "Manganese II", "categories": ["water", "ground-, long-term"], "amount": 26.5}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 26.5}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 26.5}, {"name": "Manganese II", "categories": ["water"], "amount": 26.5}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 108710000}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 108710000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 108710000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 108710000}, {"name": "Mercury II", "categories": ["water"], "amount": 108710000}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.484}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 1.484}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.484}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.484}, {"name": "Methanol", "categories": ["water"], "amount": 1.484}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 265}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 265}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 265}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 265}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 265}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.0929}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.0929}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.0929}, {"name": "m-Xylene", "categories": ["water"], "amount": 1.0929}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 18.55}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 18.55}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 18.55}, {"name": "Nickel II", "categories": ["water"], "amount": 18.55}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.00742}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.00742}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.00742}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.00742}, {"name": "Nitrate", "categories": ["water"], "amount": 0.00742}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 0.00742}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.00742}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.00742}, {"name": "Nitrite", "categories": ["water"], "amount": 0.00742}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6452.2}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 6452.2}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 6452.2}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6452.2}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6452.2}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 46375}, {"name": "Oils, unspecified", "categories": ["water", "ground-, long-term"], "amount": 46375}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 46375}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 46375}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 46375}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.0929}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.0929}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.0929}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.0929}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 34.256}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 34.256}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 34.256}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 34.256}, {"name": "Phenol", "categories": ["water"], "amount": 34.256}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 98.933}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 98.933}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 98.933}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 98.933}, {"name": "Propanal", "categories": ["water"], "amount": 98.933}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.014648}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.014648}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.014648}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.014648}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.014648}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 138430}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 138430}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 138430}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 138430}, {"name": "Selenium IV", "categories": ["water"], "amount": 138430}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 265}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 265}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 265}, {"name": "Silver I", "categories": ["water"], "amount": 265}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 64928000}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 64928000}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 64928000}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 64928000}, {"name": "Thallium I", "categories": ["water"], "amount": 64928000}, {"name": "Titanium ion", "categories": ["water", "ground-, long-term"], "amount": 23.481}, {"name": "Titanium ion", "categories": ["water", "ocean"], "amount": 23.481}, {"name": "Titanium ion", "categories": ["water", "surface water"], "amount": 23.481}, {"name": "Titanium ion", "categories": ["water"], "amount": 23.481}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.9848}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 3.9848}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 3.9848}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.9848}, {"name": "Toluene", "categories": ["water"], "amount": 3.9848}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 185.5}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 185.5}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 185.5}, {"name": "Vanadium V", "categories": ["water"], "amount": 185.5}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.0929}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.0929}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.0929}, {"name": "Xylene", "categories": ["water"], "amount": 1.0929}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 20652}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 20652}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 20652}, {"name": "Zinc II", "categories": ["water"], "amount": 20652}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 9.6364}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 742}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 742}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 742}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 742}, {"name": "Arsenic ion", "categories": ["air"], "amount": 742}, {"name": "Arsenic ion", "categories": ["water"], "amount": 3710}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3710}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3710}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 3710}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3710}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 365.77}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 365.77}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 365.77}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 365.77}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 365.77}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.00742}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00742}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.00742}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00742}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.00742}]}, {"unit": "kg waste", "name": ["EDIP 2003", "land filling", "bulk waste"], "exchanges": [{"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 22500}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 16000}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 20000}]}, {"unit": "kg waste", "name": ["EDIP 2003", "land filling", "hazardous waste"], "exchanges": [{"name": "Volume occupied, underground deposit", "categories": ["natural resource", "in ground"], "amount": 1600}]}, {"unit": "kg waste", "name": ["EDIP 2003", "land filling", "radioactive waste"], "exchanges": [{"name": "Volume occupied, final repository for low-active radioactive waste", "categories": ["natural resource", "in ground"], "amount": 2500}, {"name": "Volume occupied, final repository for radioactive waste", "categories": ["natural resource", "in ground"], "amount": 5400}]}, {"unit": "kg waste", "name": ["EDIP 2003", "land filling", "slag and ashes"], "exchanges": [{"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 22500}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "aluminium"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "antimony"], "exchanges": [{"name": "Stibnite", "categories": ["natural resource", "in ground"], "amount": 0.717}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.717}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "brown coal"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "cadmium"], "exchanges": [{"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "cerium"], "exchanges": [{"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "coal"], "exchanges": [{"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "cobalt"], "exchanges": [{"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "copper"], "exchanges": [{"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "gold"], "exchanges": [{"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "iron"], "exchanges": [{"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "lanthanum"], "exchanges": [{"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "lead"], "exchanges": [{"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "manganese"], "exchanges": [{"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Pyrolusite", "categories": ["natural resource", "in ground"], "amount": 0.632}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "mercury"], "exchanges": [{"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 0.862}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.862}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "molybdenum"], "exchanges": [{"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "natural gas"], "exchanges": [{"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.8}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.8}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "nickel"], "exchanges": [{"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "oil"], "exchanges": [{"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "palladium"], "exchanges": [{"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "platinum"], "exchanges": [{"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "silver"], "exchanges": [{"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "tantalum"], "exchanges": [{"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "tin"], "exchanges": [{"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "zinc"], "exchanges": [{"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "person.ppm.h", "name": ["EDIP 2003", "photochemical ozone formation", "impacts on human health"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 0.03894}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.0767}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.04425}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0295}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.03894}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0767}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.02655}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.118}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.02773}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0885}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.1298}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.004425}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.004425}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0004425}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.03894}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.01239}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.03953}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.1475}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.03776}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00059}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.01003}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.03245}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.02478}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0767}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0649}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.118}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.001357}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.01829}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.0649}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.1475}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.1003}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.0885}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0649}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.03894}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.1534}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 0.1298}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.124}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03894}, {"name": "1,4-Butanediol", "categories": ["air", "low population density, long-term"], "amount": 0.03894}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03894}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 0.03894}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.0767}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.0767}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04425}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.04425}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04425}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.04425}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.1121}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.1121}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0295}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0295}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0295}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0295}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03894}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.03894}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03894}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.03894}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.059}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0767}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.0767}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.059}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 0.000649}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02655}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.02655}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02655}, {"name": "Acetone", "categories": ["air"], "amount": 0.02655}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.118}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 0.118}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.118}, {"name": "Acrolein", "categories": ["air"], "amount": 0.118}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.5}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02773}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.02773}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02773}, {"name": "Benzene", "categories": ["air"], "amount": 0.02773}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0885}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.0885}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0885}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0885}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.1121}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.1121}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1298}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.1298}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1298}, {"name": "Butadiene", "categories": ["air"], "amount": 0.1298}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Butane", "categories": ["air"], "amount": 0.059}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Butanol", "categories": ["air"], "amount": 0.059}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004425}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.004425}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004425}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.004425}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004425}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.004425}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004425}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.004425}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0004425}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0004425}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0004425}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0004425}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0826}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.0826}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0826}, {"name": "Cumene", "categories": ["air"], "amount": 0.0826}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.059}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03894}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 0.03894}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03894}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.03894}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01239}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.01239}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01239}, {"name": "Ethane", "categories": ["air"], "amount": 0.01239}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.059}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.000649}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03953}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.03953}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03953}, {"name": "Ethanol", "categories": ["air"], "amount": 0.03953}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1475}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.1475}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1475}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03776}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.03776}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03776}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.03776}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00059}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.00059}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00059}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00059}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01003}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.01003}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01003}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03245}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.03245}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03245}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.03245}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.059}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02478}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.02478}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02478}, {"name": "Ethyne", "categories": ["air"], "amount": 0.02478}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.000649}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 0.0767}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "Heptane", "categories": ["air"], "amount": 0.0767}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0649}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.0649}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0649}, {"name": "Hexane", "categories": ["air"], "amount": 0.0649}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 0.059}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.1121}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.1121}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.000649}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.118}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.118}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.118}, {"name": "Isoprene", "categories": ["air"], "amount": 0.118}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.029}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.029}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001357}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.001357}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001357}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.001357}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.029}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.029}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.000649}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01829}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.01829}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01829}, {"name": "Methanol", "categories": ["air"], "amount": 0.01829}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0649}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.0649}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0649}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0649}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1475}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.1475}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1475}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.1475}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.059}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1003}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.1003}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1003}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.1003}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.1121}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.1121}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Paraffins", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Paraffins", "categories": ["air"], "amount": 0.059}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Pentane", "categories": ["air"], "amount": 0.059}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.1121}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Phenol", "categories": ["air"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 0.1121}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0885}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.0885}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0885}, {"name": "Propanal", "categories": ["air"], "amount": 0.0885}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0649}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.0649}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0649}, {"name": "Propane", "categories": ["air"], "amount": 0.0649}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03894}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.03894}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03894}, {"name": "Propanol", "categories": ["air"], "amount": 0.03894}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1534}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.1534}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1534}, {"name": "Propene", "categories": ["air"], "amount": 0.1534}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.059}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Styrene", "categories": ["air"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.059}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1298}, {"name": "Terpenes", "categories": ["air", "low population density, long-term"], "amount": 0.1298}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1298}, {"name": "Terpenes", "categories": ["air"], "amount": 0.1298}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0826}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.0826}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0826}, {"name": "Toluene", "categories": ["air"], "amount": 0.0826}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.124}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.124}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.124}, {"name": "Xylene", "categories": ["air"], "amount": 0.124}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Butene", "categories": ["air"], "amount": 0.1416}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1416}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.1416}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1416}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.1416}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000649}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.12}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.12}]}, {"unit": "m2.ppm.h", "name": ["EDIP 2003", "photochemical ozone formation", "impacts on vegetation"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 481.8}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.3}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.9}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 949}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 547.5}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 365}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 481.8}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 949}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 328.5}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1460}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.3}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 343.1}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1095}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1606}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 54.75}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 54.75}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.475}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1022}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 481.8}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 153.3}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 489.1}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1825}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 467.2}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.3}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 124.1}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 401.5}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 306.6}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 949}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 803}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1460}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 16.79}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 360}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 360}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 226.3}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 803}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1825}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1241}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1095}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 803}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 481.8}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1898}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 1606}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1022}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1533}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 481.8}, {"name": "1,4-Butanediol", "categories": ["air", "low population density, long-term"], "amount": 481.8}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 481.8}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 481.8}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.3}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.3}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.9}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.9}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 949}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 949}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 949}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 949}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 547.5}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 547.5}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 547.5}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 547.5}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 1387}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1387}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 365}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "2-Propanol", "categories": ["air"], "amount": 365}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 481.8}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 481.8}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 481.8}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 481.8}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air"], "amount": 730}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 949}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 949}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 949}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 949}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Acetic acid", "categories": ["air"], "amount": 730}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 8.03}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 328.5}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 328.5}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 328.5}, {"name": "Acetone", "categories": ["air"], "amount": 328.5}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 1460}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1460}, {"name": "Acrolein", "categories": ["air"], "amount": 1460}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.3}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 343.1}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 343.1}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 343.1}, {"name": "Benzene", "categories": ["air"], "amount": 343.1}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1095}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1095}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1095}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1387}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1387}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1606}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1606}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1606}, {"name": "Butadiene", "categories": ["air"], "amount": 1606}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Butane", "categories": ["air"], "amount": 730}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Butanol", "categories": ["air"], "amount": 730}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 54.75}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 54.75}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 54.75}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 54.75}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 54.75}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 54.75}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 54.75}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 54.75}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.475}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.475}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.475}, {"name": "Chloroform", "categories": ["air"], "amount": 5.475}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1022}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 1022}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1022}, {"name": "Cumene", "categories": ["air"], "amount": 1022}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Cyclohexane", "categories": ["air"], "amount": 730}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 481.8}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 481.8}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 481.8}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 481.8}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air", "low population density, long-term"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 0.2}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 8.03}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 153.3}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 153.3}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 153.3}, {"name": "Ethane", "categories": ["air"], "amount": 153.3}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Ethane thiol", "categories": ["air"], "amount": 730}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 8.03}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 489.1}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 489.1}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 489.1}, {"name": "Ethanol", "categories": ["air"], "amount": 489.1}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1825}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1825}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1825}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 467.2}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 467.2}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 467.2}, {"name": "Chloroethylene", "categories": ["air"], "amount": 467.2}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 7.3}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.3}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 124.1}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 124.1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124.1}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 401.5}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 401.5}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 401.5}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 401.5}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 730}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 306.6}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 306.6}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306.6}, {"name": "Ethyne", "categories": ["air"], "amount": 306.6}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Formaldehyde", "categories": ["air"], "amount": 8.03}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 949}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 949}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 949}, {"name": "Heptane", "categories": ["air"], "amount": 949}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 803}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 803}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 803}, {"name": "Hexane", "categories": ["air"], "amount": 803}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 730}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1387}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1387}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 8.03}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1460}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1460}, {"name": "Isoprene", "categories": ["air"], "amount": 1460}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 360}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 360}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 360}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 360}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 8.03}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.79}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 16.79}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.79}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 16.79}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.03}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 360}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 360}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 360}, {"name": "Methane, fossil", "categories": ["air"], "amount": 360}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 8.03}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 8.03}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 226.3}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 226.3}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 226.3}, {"name": "Methanol", "categories": ["air"], "amount": 226.3}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.2}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 803}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 803}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 803}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 803}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.2}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1825}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1825}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1825}, {"name": "m-Xylene", "categories": ["air"], "amount": 1825}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 730}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1241}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1241}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1241}, {"name": "o-Xylene", "categories": ["air"], "amount": 1241}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 1387}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1387}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Paraffins", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Paraffins", "categories": ["air"], "amount": 730}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Pentane", "categories": ["air"], "amount": 730}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1387}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Phenol", "categories": ["air"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1387}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1095}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1095}, {"name": "Propanal", "categories": ["air"], "amount": 1095}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 803}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 803}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 803}, {"name": "Propane", "categories": ["air"], "amount": 803}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 481.8}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 481.8}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 481.8}, {"name": "Propanol", "categories": ["air"], "amount": 481.8}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1898}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 1898}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1898}, {"name": "Propene", "categories": ["air"], "amount": 1898}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Propionic acid", "categories": ["air"], "amount": 730}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Styrene", "categories": ["air"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 730}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 1606}, {"name": "Terpenes", "categories": ["air", "low population density, long-term"], "amount": 1606}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1606}, {"name": "Terpenes", "categories": ["air"], "amount": 1606}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1022}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1022}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1022}, {"name": "Toluene", "categories": ["air"], "amount": 1022}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1533}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1533}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1533}, {"name": "Xylene", "categories": ["air"], "amount": 1533}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Butene", "categories": ["air"], "amount": 1752}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1752}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 1752}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1752}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 1752}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 8.03}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1800}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1800}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1800}]}, {"unit": "cubic meter", "name": ["EDIP 2003", "renewable resources", "wood"], "exchanges": [{"name": "Wood, hard, standing", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Wood, primary forest, standing", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Wood, soft, standing", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Wood, unspecified, standing", "categories": ["natural resource", "biotic"], "amount": 1}]}, {"unit": "kg CFC-11-Eq", "name": ["EDIP 2003", "stratospheric ozone depletion", "ODP total"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.38}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.38}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 12}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.94}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.94}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "mol H+-Eq", "name": ["EF v3.0 no LT", "acidification no LT", "accumulated exceedance (AE) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 3.02}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.13467}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1.31}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.04821}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0 no LT", "climate change no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Chloroform", "categories": ["air"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 938}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9620}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2350}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 96}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 635}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8520}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3690}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7150}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2110}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 179}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 817}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 15}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 34}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2020}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 712}, {"name": "Methyl formate", "categories": ["air"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 712}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17900}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26100}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.23}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0 no LT", "climate change: biogenic no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 34}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0 no LT", "climate change: fossil no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Chloroform", "categories": ["air"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 938}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9620}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2350}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 96}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 635}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8520}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3690}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7150}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2110}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 179}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 817}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 15}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2020}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 712}, {"name": "Methyl formate", "categories": ["air"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 712}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17900}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26100}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.23}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0 no LT", "climate change: land use and land use change no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 36.8}]}, {"unit": "CTUe", "name": ["EF v3.0 no LT", "ecotoxicity: freshwater no LT", "comparative toxic unit for ecosystems (CTUe) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 4646.7}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 2.6713}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 30.733}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 112.29}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 68612}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 11624}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 31.157}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 912.29}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 4.1368}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 500.56}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 31.457}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 21.639}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 14.072}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 1845.1}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4860.6}, {"name": "Abamectin", "categories": ["air"], "amount": 8802.3}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Abamectin", "categories": ["water"], "amount": 332160}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6887.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 2139.3}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 96.503}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 325900}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 599.66}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 2.8788}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 4.6517}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 7669.3}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 194540}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water"], "amount": 9541}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1999.7}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Allyl chloride", "categories": ["water"], "amount": 52.64}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 58369000}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air"], "amount": 188000}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil"], "amount": 276000}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.43e-15}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water"], "amount": 204500}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 883.04}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 1246.7}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 52.283}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 9.2245}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 487460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air"], "amount": 43.05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 43}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 122}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 8.22e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 122}, {"name": "Antimony ion", "categories": ["water"], "amount": 61}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air"], "amount": 557}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 803}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.27e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2015}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsine", "categories": ["air"], "amount": 557}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 424730}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 228780}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 161.08}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090}, {"name": "Barium II", "categories": ["air"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1090}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1570}, {"name": "Barium II", "categories": ["soil"], "amount": 1570}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3140}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 9.34e-16}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3140}, {"name": "Barium II", "categories": ["water"], "amount": 1570}, {"name": "Barium sulfide", "categories": ["water"], "amount": 76094}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4382.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 395.82}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 894.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 839.26}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 171240}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 27977}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 28141}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 8173300}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 35.132}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 527}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 527}, {"name": "Beryllium II", "categories": ["air"], "amount": 526}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 525}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil"], "amount": 760}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.55e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water"], "amount": 690}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 814760000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 229740000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2192.2}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 11.793}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 10.242}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 78.497}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 78.497}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 1305.4}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 204.3}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 73.451}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 369.26}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 161.63}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 199.08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air"], "amount": 80800}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 80700}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 116000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.39e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water"], "amount": 114500}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 3800}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 6.38e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 3800}, {"name": "Caesium", "categories": ["water"], "amount": 1900}, {"name": "Calcium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.495}, {"name": "Calcium", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.495}, {"name": "Calcium", "categories": ["air"], "amount": 36.247}, {"name": "Calcium", "categories": ["air", "urban air close to ground"], "amount": 36.998}, {"name": "Calcium", "categories": ["soil", "agricultural"], "amount": 47.27}, {"name": "Calcium", "categories": ["soil", "forestry"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil", "industrial"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil"], "amount": 47.27}, {"name": "Calcium II", "categories": ["water", "ground-"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water", "ocean"], "amount": 7.00649e-45}, {"name": "Calcium II", "categories": ["water", "surface water"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water"], "amount": 109.18}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 3143400}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1158.7}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 23347}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 51145}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 56094}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2518800}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water"], "amount": 150.72}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 150.72}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 150.72}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1705.9}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 970.45}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 37438}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 5964.1}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 16856}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 59379}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 66.766}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 349.64}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 32.609}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 33.571}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 794680}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 196830000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium III", "categories": ["air"], "amount": 364.5}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium III", "categories": ["soil"], "amount": 524}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 809}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.73e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 809}, {"name": "Chromium III", "categories": ["water"], "amount": 404.5}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium VI", "categories": ["air"], "amount": 364.5}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil"], "amount": 524}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.82e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water"], "amount": 520}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 752.52}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air"], "amount": 4490}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4480}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil"], "amount": 6470}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.43e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water"], "amount": 6150}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36500}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 36500}, {"name": "Copper ion", "categories": ["air"], "amount": 36400}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 36300}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil"], "amount": 52400}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 99200}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 9.25e-18}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 99200}, {"name": "Copper ion", "categories": ["water"], "amount": 49600}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 1864.5}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 50458}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 1219.5}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 13400}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1831.5}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 50934000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 88371}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1531.8}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 691.93}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 458.02}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4759}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1234700}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 77330000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2138.6}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 146.75}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 14.079}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 41.875}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 400.44}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 660.23}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 15.723}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 15766000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2241.9}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 513.86}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 27842}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 98085}, {"name": "Dodecanol", "categories": ["water"], "amount": 11313}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 121.22}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 332160}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 617.76}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1129700}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 1864.5}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 248.51}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 25.382}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3140.2}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 18.445}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 61.443}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 890.24}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 68.044}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1361.3}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 6.4334}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 40.121}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 62713000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 73646}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 378860}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 632570}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 3010900}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.5426}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 10.203}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 168290}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2125.4}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 3.4488}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 42.924}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 0.010218}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 50458}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 1020.7}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 7308.6}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 542.27}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 20956}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 0.0014233}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 37438}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 149.48}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 29553}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 11097}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 150.72}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 29.36}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 44670}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 127290}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 480290}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 119590}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.0267}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 332160}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 187.68}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air"], "amount": 50.6}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 50.5}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil"], "amount": 73.2}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 134}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 6.44e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 134}, {"name": "Iron ion", "categories": ["water"], "amount": 67}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 401.31}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water"], "amount": 516.89}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2012700000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 1117.3}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.2}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.2}, {"name": "Lead II", "categories": ["air"], "amount": 28.05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.9}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil"], "amount": 40.7}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.9}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.9e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.9}, {"name": "Lead II", "categories": ["water"], "amount": 34.45}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 0.58961}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 246.66}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 1084900}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air"], "amount": 63.35}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 63.2}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil"], "amount": 91.7}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese II", "categories": ["water"], "amount": 82}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese-55", "categories": ["water"], "amount": 82}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Mercury II", "categories": ["air"], "amount": 1065}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil"], "amount": 1560}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2210}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.54e-18}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2210}, {"name": "Mercury II", "categories": ["water"], "amount": 1105}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 196520}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1281.6}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 70.831}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3241.7}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 2.9582}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 413980}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 110530}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 13.777}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 1981.4}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 107.85}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 15.753}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 88.346}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 111700}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 61309}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.59e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.475}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 70.066}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 659.25}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10700}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 10700}, {"name": "Nickel II", "categories": ["air"], "amount": 10650}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil"], "amount": 15400}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 29800}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.91e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 29800}, {"name": "Nickel II", "categories": ["water"], "amount": 14900}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1789.6}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 13362}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 119590}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 64.453}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 1959600}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 8672}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 5.3621}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.0177}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 31.882}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 6827.4}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 10.486}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 18660}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 7569.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 371.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 50.201}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 22357}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 230.06}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 8.2417}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 96.402}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 148630}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 452.5}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 2674.4}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 62.688}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 18324}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 518980}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2138.6}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 15062000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2138.6}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 433890}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 190510}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2138.6}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air"], "amount": 25.65}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 25.6}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.74e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water"], "amount": 36.6}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water"], "amount": 2.3463}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7030}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7030}, {"name": "Silver I", "categories": ["air"], "amount": 7020}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7010}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 10100}, {"name": "Silver I", "categories": ["soil"], "amount": 10100}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 19400}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.09e-17}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 19400}, {"name": "Silver I", "categories": ["water"], "amount": 9700}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 333470}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 7.6306}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 21.339}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5380}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5380}, {"name": "Strontium", "categories": ["air"], "amount": 5375}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 5370}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 7730}, {"name": "Strontium", "categories": ["soil"], "amount": 7730}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 15400}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.39e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 15400}, {"name": "Strontium", "categories": ["water"], "amount": 7700}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 1322.6}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 210090}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 79836}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil"], "amount": 20911}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 133650}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 153.76}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 133650}, {"name": "Sulfur", "categories": ["water"], "amount": 66901}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 6585.4}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 150700}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21179}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 26919000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 630.38}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230}, {"name": "Thallium I", "categories": ["air"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1230}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil"], "amount": 1760}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3530}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 9.5e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3530}, {"name": "Thallium I", "categories": ["water"], "amount": 1765}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 46196}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 213220}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 385460}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 12129}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 385290}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 119}, {"name": "Tin ion", "categories": ["air"], "amount": 118.5}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 118}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 171}, {"name": "Tin ion", "categories": ["soil"], "amount": 171}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 298}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 3.75e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 298}, {"name": "Tin ion", "categories": ["water"], "amount": 149}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 486.61}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1641.4}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 134.85}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 7.6657}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.25304}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 50458}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 688260000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 831270}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 63.058}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 40.263}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 1.4769}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 181}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 404}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 404}, {"name": "Vanadium V", "categories": ["air"], "amount": 403.5}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 403}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil"], "amount": 581}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 337.41}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 506}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 506}, {"name": "Zinc II", "categories": ["air"], "amount": 504.5}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 503}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 730}, {"name": "Zinc II", "categories": ["soil"], "amount": 730}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1330}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.05e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1330}, {"name": "Zinc II", "categories": ["water"], "amount": 665}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 531.29}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 801.31}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 21.977}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 3022.8}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "CTUe", "name": ["EF v3.0 no LT", "ecotoxicity: freshwater, inorganics no LT", "comparative toxic unit for ecosystems (CTUe) no LT"], "exchanges": [{"name": "Allyl chloride", "categories": ["water"], "amount": 52.64}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 883.04}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 1246.7}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 52.283}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsine", "categories": ["air"], "amount": 557}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 161.08}, {"name": "Barium sulfide", "categories": ["water"], "amount": 76094}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 10.242}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 78.497}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 78.497}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 1305.4}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 56094}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water"], "amount": 150.72}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 150.72}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 150.72}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 5964.1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 33.571}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 13400}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.5426}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 10.203}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 29553}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 150.72}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 29.36}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 44670}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 187.68}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 5.3621}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.0177}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 31.882}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 6827.4}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 10.486}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 7.6306}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 6585.4}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 7.6657}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}]}, {"unit": "CTUe", "name": ["EF v3.0 no LT", "ecotoxicity: freshwater, metals no LT", "comparative toxic unit for ecosystems (CTUe) no LT"], "exchanges": [{"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air"], "amount": 188000}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil"], "amount": 276000}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.43e-15}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water"], "amount": 204500}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air"], "amount": 43.05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 43}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 122}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 8.22e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 122}, {"name": "Antimony ion", "categories": ["water"], "amount": 61}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air"], "amount": 557}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 803}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.27e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2015}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090}, {"name": "Barium II", "categories": ["air"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1090}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1570}, {"name": "Barium II", "categories": ["soil"], "amount": 1570}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3140}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 9.34e-16}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3140}, {"name": "Barium II", "categories": ["water"], "amount": 1570}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 527}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 527}, {"name": "Beryllium II", "categories": ["air"], "amount": 526}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 525}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil"], "amount": 760}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.55e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water"], "amount": 690}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 11.793}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air"], "amount": 80800}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 80700}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 116000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.39e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water"], "amount": 114500}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 3800}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 6.38e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 3800}, {"name": "Caesium", "categories": ["water"], "amount": 1900}, {"name": "Calcium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.495}, {"name": "Calcium", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.495}, {"name": "Calcium", "categories": ["air"], "amount": 36.247}, {"name": "Calcium", "categories": ["air", "urban air close to ground"], "amount": 36.998}, {"name": "Calcium", "categories": ["soil", "agricultural"], "amount": 47.27}, {"name": "Calcium", "categories": ["soil", "forestry"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil", "industrial"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil"], "amount": 47.27}, {"name": "Calcium II", "categories": ["water", "ground-"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water", "ocean"], "amount": 7.00649e-45}, {"name": "Calcium II", "categories": ["water", "surface water"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water"], "amount": 109.18}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium III", "categories": ["air"], "amount": 364.5}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium III", "categories": ["soil"], "amount": 524}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 809}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.73e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 809}, {"name": "Chromium III", "categories": ["water"], "amount": 404.5}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium VI", "categories": ["air"], "amount": 364.5}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil"], "amount": 524}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.82e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water"], "amount": 520}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air"], "amount": 4490}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4480}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil"], "amount": 6470}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.43e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water"], "amount": 6150}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36500}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 36500}, {"name": "Copper ion", "categories": ["air"], "amount": 36400}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 36300}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil"], "amount": 52400}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 99200}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 9.25e-18}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 99200}, {"name": "Copper ion", "categories": ["water"], "amount": 49600}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air"], "amount": 50.6}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 50.5}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil"], "amount": 73.2}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 134}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 6.44e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 134}, {"name": "Iron ion", "categories": ["water"], "amount": 67}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.2}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.2}, {"name": "Lead II", "categories": ["air"], "amount": 28.05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.9}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil"], "amount": 40.7}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.9}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.9e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.9}, {"name": "Lead II", "categories": ["water"], "amount": 34.45}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 0.58961}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air"], "amount": 63.35}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 63.2}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil"], "amount": 91.7}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese II", "categories": ["water"], "amount": 82}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese-55", "categories": ["water"], "amount": 82}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Mercury II", "categories": ["air"], "amount": 1065}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil"], "amount": 1560}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2210}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.54e-18}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2210}, {"name": "Mercury II", "categories": ["water"], "amount": 1105}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.59e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.475}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10700}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 10700}, {"name": "Nickel II", "categories": ["air"], "amount": 10650}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil"], "amount": 15400}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 29800}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.91e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 29800}, {"name": "Nickel II", "categories": ["water"], "amount": 14900}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air"], "amount": 25.65}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 25.6}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.74e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water"], "amount": 36.6}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water"], "amount": 2.3463}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7030}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7030}, {"name": "Silver I", "categories": ["air"], "amount": 7020}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7010}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 10100}, {"name": "Silver I", "categories": ["soil"], "amount": 10100}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 19400}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.09e-17}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 19400}, {"name": "Silver I", "categories": ["water"], "amount": 9700}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5380}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5380}, {"name": "Strontium", "categories": ["air"], "amount": 5375}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 5370}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 7730}, {"name": "Strontium", "categories": ["soil"], "amount": 7730}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 15400}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.39e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 15400}, {"name": "Strontium", "categories": ["water"], "amount": 7700}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil"], "amount": 20911}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 133650}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 153.76}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 133650}, {"name": "Sulfur", "categories": ["water"], "amount": 66901}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230}, {"name": "Thallium I", "categories": ["air"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1230}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil"], "amount": 1760}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3530}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 9.5e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3530}, {"name": "Thallium I", "categories": ["water"], "amount": 1765}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 119}, {"name": "Tin ion", "categories": ["air"], "amount": 118.5}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 118}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 171}, {"name": "Tin ion", "categories": ["soil"], "amount": 171}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 298}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 3.75e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 298}, {"name": "Tin ion", "categories": ["water"], "amount": 149}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 40.263}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 404}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 404}, {"name": "Vanadium V", "categories": ["air"], "amount": 403.5}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 403}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil"], "amount": 581}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 506}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 506}, {"name": "Zinc II", "categories": ["air"], "amount": 504.5}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 503}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 730}, {"name": "Zinc II", "categories": ["soil"], "amount": 730}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1330}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.05e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1330}, {"name": "Zinc II", "categories": ["water"], "amount": 665}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}]}, {"unit": "CTUe", "name": ["EF v3.0 no LT", "ecotoxicity: freshwater, organics no LT", "comparative toxic unit for ecosystems (CTUe) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 4646.7}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 2.6713}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 30.733}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 112.29}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 68612}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 11624}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 31.157}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 912.29}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 4.1368}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 500.56}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 31.457}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 21.639}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 14.072}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 1845.1}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4860.6}, {"name": "Abamectin", "categories": ["air"], "amount": 8802.3}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Abamectin", "categories": ["water"], "amount": 332160}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6887.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 2139.3}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 96.503}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 325900}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 599.66}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 2.8788}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 4.6517}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 7669.3}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 194540}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water"], "amount": 9541}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1999.7}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 58369000}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 9.2245}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 487460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 424730}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 228780}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4382.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 395.82}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 894.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 839.26}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 171240}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 27977}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 28141}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 8173300}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 35.132}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 814760000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 229740000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2192.2}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 204.3}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 73.451}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 369.26}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 161.63}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 199.08}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 3143400}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1158.7}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 23347}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 51145}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2518800}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1705.9}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 970.45}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 37438}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 16856}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 59379}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 66.766}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 349.64}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 32.609}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 794680}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 196830000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 752.52}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 1864.5}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 50458}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 1219.5}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1831.5}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 50934000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 88371}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1531.8}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 691.93}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 458.02}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4759}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1234700}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 77330000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2138.6}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 146.75}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 14.079}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 41.875}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 400.44}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 660.23}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 15.723}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 15766000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2241.9}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 513.86}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 27842}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 98085}, {"name": "Dodecanol", "categories": ["water"], "amount": 11313}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 121.22}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 332160}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 617.76}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1129700}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 1864.5}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 248.51}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 25.382}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3140.2}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 18.445}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 61.443}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 890.24}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 68.044}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1361.3}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 6.4334}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 40.121}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 62713000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 73646}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 378860}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 632570}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 3010900}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 168290}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2125.4}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 3.4488}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 42.924}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 0.010218}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 50458}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 1020.7}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 7308.6}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 542.27}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 20956}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 0.0014233}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 37438}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 149.48}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 11097}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 127290}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 480290}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 119590}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.0267}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 332160}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 401.31}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water"], "amount": 516.89}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2012700000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 1117.3}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 246.66}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 1084900}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 196520}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1281.6}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 70.831}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3241.7}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 2.9582}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 413980}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 110530}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 13.777}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 1981.4}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 107.85}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 15.753}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 88.346}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 111700}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 61309}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 70.066}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 659.25}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1789.6}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 13362}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 119590}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 64.453}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 1959600}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 8672}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 18660}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 7569.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 371.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 50.201}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 22357}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 230.06}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 8.2417}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 96.402}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 148630}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 452.5}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 2674.4}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 62.688}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 18324}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 518980}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2138.6}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 15062000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2138.6}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 433890}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 190510}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2138.6}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 333470}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 21.339}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 1322.6}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 210090}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 79836}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 150700}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21179}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 26919000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 630.38}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 46196}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 213220}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 385460}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 12129}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 385290}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 486.61}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1641.4}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 134.85}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.25304}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 50458}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 688260000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 831270}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 63.058}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 1.4769}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 181}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 337.41}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 531.29}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 801.31}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 21.977}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 3022.8}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "MJ, net calorific value", "name": ["EF v3.0 no LT", "energy resources: non-renewable no LT", "abiotic depletion potential (ADP): fossil fuels no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.76}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}]}, {"unit": "kg P-Eq", "name": ["EF v3.0 no LT", "eutrophication: freshwater no LT", "fraction of nutrients reaching freshwater end compartment (P) no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["EF v3.0 no LT", "eutrophication: marine no LT", "fraction of nutrients reaching marine end compartment (N) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.092}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water"], "amount": 0.778}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.028}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water"], "amount": 0.226}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.596}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water"], "amount": 0.304}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 1}, {"name": "Nitrogen", "categories": ["water"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.389}]}, {"unit": "mol N-Eq", "name": ["EF v3.0 no LT", "eutrophication: terrestrial no LT", "accumulated exceedance (AE) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 13.47}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 3.16065}, {"name": "Nitric oxide", "categories": ["air"], "amount": 6.532}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 4.26}]}, {"unit": "CTUh", "name": ["EF v3.0 no LT", "human toxicity: carcinogenic no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.0 no LT", "human toxicity: carcinogenic, inorganics no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}]}, {"unit": "CTUh", "name": ["EF v3.0 no LT", "human toxicity: carcinogenic, metals no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}]}, {"unit": "CTUh", "name": ["EF v3.0 no LT", "human toxicity: carcinogenic, organics no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.0 no LT", "human toxicity: non-carcinogenic no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3303e-06}, {"name": "Abamectin", "categories": ["air"], "amount": 1.1734e-05}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Abamectin", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 2.2099e-08}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil"], "amount": 1.5387e-08}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6728e-06}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 6.9773e-08}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air"], "amount": 0.00012953}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 0.00013055}, {"name": "Chlorine", "categories": ["soil"], "amount": 0.0001235}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 1.1282e-05}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water"], "amount": 5.5583e-05}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.261e-06}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.261e-06}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 3.1857e-08}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 1.2368e-08}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 3.3487e-07}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 4.3917e-07}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 4.3512e-07}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 8.1969e-10}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil"], "amount": 6.6691e-10}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 2.188e-11}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water"], "amount": 5.5205e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "CTUh", "name": ["EF v3.0 no LT", "human toxicity: non-carcinogenic, inorganics no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 2.2099e-08}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil"], "amount": 1.5387e-08}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air"], "amount": 0.00012953}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 0.00013055}, {"name": "Chlorine", "categories": ["soil"], "amount": 0.0001235}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 1.1282e-05}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water"], "amount": 5.5583e-05}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 3.3487e-07}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 4.3917e-07}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}]}, {"unit": "CTUh", "name": ["EF v3.0 no LT", "human toxicity: non-carcinogenic, metals no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 8.1969e-10}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil"], "amount": 6.6691e-10}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 2.188e-11}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water"], "amount": 5.5205e-10}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}]}, {"unit": "CTUh", "name": ["EF v3.0 no LT", "human toxicity: non-carcinogenic, organics no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3303e-06}, {"name": "Abamectin", "categories": ["air"], "amount": 1.1734e-05}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Abamectin", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6728e-06}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 6.9773e-08}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.261e-06}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.261e-06}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 3.1857e-08}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 1.2368e-08}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 4.3512e-07}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "kBq U235-Eq", "name": ["EF v3.0 no LT", "ionising radiation: human health no LT", "human exposure efficiency relative to u235 no LT"], "exchanges": [{"name": "Americium-241", "categories": ["water", "ground-"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water"], "amount": 1.5}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0386}, {"name": "Antimony-125", "categories": ["water", "ground-"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water"], "amount": 0.0007}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water"], "amount": 6.79}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water"], "amount": 7.86}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Carbon-14", "categories": ["air"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.0557}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00193}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0186}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.29e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.14e-05}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 4.8}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water"], "amount": 4.71}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0236}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000443}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 6.64e-06}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.015}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 3.14}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water"], "amount": 0.00607}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.00679}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0236}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.000193}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 2.14}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.114}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-235", "categories": ["air"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.107}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 6.71e-06}]}, {"unit": "dimensionless", "name": ["EF v3.0 no LT", "land use no LT", "soil quality index no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 39.581}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 36.405}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 51.699}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 105.24}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 18.128}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 33.964}, {"name": "Occupation, forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 11.459}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 11.488}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 21.463}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 48.218}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 139.1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 38.973}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 58.117}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 17.602}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 138.81}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 121.55}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 161.52}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 69.262}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 28.288}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 165.22}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 116.16}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 48.764}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 138.72}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Transformation, from annual crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": -395.81}, {"name": "Transformation, from annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": -364.05}, {"name": "Transformation, from annual crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from arable land, unspecified use", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from bare area (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -516.99}, {"name": "Transformation, from dump site", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, slag compartment", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from forest, extensive", "categories": ["natural resource", "land"], "amount": -181.28}, {"name": "Transformation, from forest, intensive", "categories": ["natural resource", "land"], "amount": -339.64}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": -114.59}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -114.88}, {"name": "Transformation, from forest, unspecified", "categories": ["natural resource", "land"], "amount": -214.63}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": -482.18}, {"name": "Transformation, from industrial area", "categories": ["natural resource", "land"], "amount": -5911.8}, {"name": "Transformation, from mineral extraction site", "categories": ["natural resource", "land"], "amount": -4708.4}, {"name": "Transformation, from pasture, man made", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": -389.73}, {"name": "Transformation, from pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": -581.17}, {"name": "Transformation, from permanent crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -176.02}, {"name": "Transformation, from snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from traffic area, rail network", "categories": ["natural resource", "land"], "amount": -5899.2}, {"name": "Transformation, from traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": -5165.9}, {"name": "Transformation, from traffic area, road network", "categories": ["natural resource", "land"], "amount": -6864.8}, {"name": "Transformation, from unknown", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -282.88}, {"name": "Transformation, from urban, continuously built", "categories": ["natural resource", "land"], "amount": -7021.9}, {"name": "Transformation, from urban, discontinuously built", "categories": ["natural resource", "land"], "amount": -4937}, {"name": "Transformation, from urban, green area", "categories": ["natural resource", "land"], "amount": -2072.5}, {"name": "Transformation, from urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": -5895.4}, {"name": "Transformation, from wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, to annual crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 395.81}, {"name": "Transformation, to annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 364.05}, {"name": "Transformation, to annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to bare area (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 516.99}, {"name": "Transformation, to dump site", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to forest, extensive", "categories": ["natural resource", "land"], "amount": 181.28}, {"name": "Transformation, to forest, intensive", "categories": ["natural resource", "land"], "amount": 339.64}, {"name": "Transformation, to forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 114.59}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 114.88}, {"name": "Transformation, to forest, unspecified", "categories": ["natural resource", "land"], "amount": 214.63}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 482.18}, {"name": "Transformation, to industrial area", "categories": ["natural resource", "land"], "amount": 5911.8}, {"name": "Transformation, to mineral extraction site", "categories": ["natural resource", "land"], "amount": 4708.4}, {"name": "Transformation, to pasture, man made", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 389.73}, {"name": "Transformation, to pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 581.17}, {"name": "Transformation, to permanent crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 176.02}, {"name": "Transformation, to snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to traffic area, rail network", "categories": ["natural resource", "land"], "amount": 5899.2}, {"name": "Transformation, to traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 5165.9}, {"name": "Transformation, to traffic area, road network", "categories": ["natural resource", "land"], "amount": 6864.8}, {"name": "Transformation, to unknown", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 282.88}, {"name": "Transformation, to urban, continuously built", "categories": ["natural resource", "land"], "amount": 7021.9}, {"name": "Transformation, to urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 4937}, {"name": "Transformation, to urban, green area", "categories": ["natural resource", "land"], "amount": 2072.5}, {"name": "Transformation, to urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 5895.4}, {"name": "Transformation, to wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}]}, {"unit": "kg Sb-Eq", "name": ["EF v3.0 no LT", "material resources: metals/minerals no LT", "abiotic depletion potential (ADP): elements (ultimate reserves) no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 4.545212805030338e-05}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.00297}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 6.04e-06}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 1.26e-05}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.0411}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 0.0004841517197042984}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.00427}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 5.343572902983674e-10}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 0.000673718497616036}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 6.544113975666994e-12}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 2.66249274670687e-10}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 6.52e-07}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 3.594003392114496e-05}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.308918482603777e-10}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 4.471605694701393e-05}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 5.823075919490471e-10}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 2.02e-09}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.0922}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.93e-05}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 1.6e-08}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 0.000103180813387238}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 0.194}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1.4e-11}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 5.5e-08}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 1.646069875295716e-05}, {"name": "Sodium nitrate", "categories": ["natural resource", "in ground"], "amount": 1.487682357320205e-08}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 4.358140883174752e-05}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.290510533131037e-07}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 7.07e-07}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.000193}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 1.289527155951242e-05}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 3.92505016360851e-10}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.43e-05}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 2.79e-08}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 0.00452}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 0.0005695419030770708}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 7.7e-07}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 5.69e-07}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}]}, {"unit": "kg CFC-11-Eq", "name": ["EF v3.0 no LT", "ozone depletion no LT", "ozone depletion potential (ODP) no LT"], "exchanges": [{"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.81}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.057}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.26}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.57}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 15.2}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.034}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.72}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "disease incidence", "name": ["EF v3.0 no LT", "particulate matter formation no LT", "impact on human health no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.6e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01757e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000238497}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.94042e-07}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 5.48544e-05}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}]}, {"unit": "kg NMVOC-Eq", "name": ["EF v3.0 no LT", "photochemical oxidant formation: human health no LT", "tropospheric ozone concentration increase no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 1.65}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.608}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1.42}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.709}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.318}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.731}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.828}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Acetone", "categories": ["air"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.155}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Benzene", "categories": ["air"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.23}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.595}, {"name": "Butane", "categories": ["air"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.595}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05}, {"name": "Butanol", "categories": ["air"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.454}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0389}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.845}, {"name": "Cumene", "categories": ["air"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.845}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.752}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.0422}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.319}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.208}, {"name": "Ethane", "categories": ["air"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.208}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0152}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.674}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.353}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.69}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.652}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.144}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.877}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.834}, {"name": "Heptane", "categories": ["air"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.834}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Hexane", "categories": ["air"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.814}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.519}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.115}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00845}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.236}, {"name": "Methanol", "categories": ["air"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.236}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0997}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.63}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.667}, {"name": "Pentane", "categories": ["air"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.667}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Propanal", "categories": ["air"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.35}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "Propane", "categories": ["air"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.948}, {"name": "Propanol", "categories": ["air"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.948}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9}, {"name": "Propene", "categories": ["air"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.9}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.253}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Styrene", "categories": ["air"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.049}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Toluene", "categories": ["air"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.549}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.235}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.78}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.296}]}, {"unit": "m3 world eq. deprived", "name": ["EF v3.0 no LT", "water use no LT", "user deprivation potential (deprivation-weighted water consumption) no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.95}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.95}, {"name": "Water", "categories": ["air"], "amount": 42.95}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 42.95}]}, {"unit": "mol H+-Eq", "name": ["EF v3.0", "acidification", "accumulated exceedance (AE)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 3.02}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.13467}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1.31}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.04821}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Chloroform", "categories": ["air"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 938}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9620}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2350}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 96}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 635}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8520}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3690}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7150}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2110}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 179}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 817}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 15}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 34}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2020}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 712}, {"name": "Methyl formate", "categories": ["air"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 712}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17900}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26100}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.23}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0", "climate change: biogenic", "global warming potential (GWP100)"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 34}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0", "climate change: fossil", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Chloroform", "categories": ["air"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 938}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9620}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2350}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 96}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 635}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8520}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3690}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7150}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2110}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 179}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 817}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 15}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2020}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 712}, {"name": "Methyl formate", "categories": ["air"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 712}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17900}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26100}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.23}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0", "climate change: land use and land use change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 36.8}]}, {"unit": "CTUe", "name": ["EF v3.0", "ecotoxicity: freshwater", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 4646.7}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 2.6713}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 30.733}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 112.29}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 68612}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 11624}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 31.157}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 912.29}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 4.1368}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 500.56}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 31.457}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 21.639}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 14.072}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 1845.1}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4860.6}, {"name": "Abamectin", "categories": ["air"], "amount": 8802.3}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Abamectin", "categories": ["water"], "amount": 332160}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6887.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 2139.3}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 96.503}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 325900}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 599.66}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 2.8788}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 4.6517}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 7669.3}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 194540}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water"], "amount": 9541}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1999.7}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Allyl chloride", "categories": ["water"], "amount": 52.64}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 58369000}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air"], "amount": 188000}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil"], "amount": 276000}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.43e-15}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water"], "amount": 204500}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 883.04}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 1246.7}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 52.283}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 9.2245}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 487460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air"], "amount": 43.05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 43}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 122}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 8.22e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 122}, {"name": "Antimony ion", "categories": ["water"], "amount": 61}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air"], "amount": 557}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 803}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.27e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2015}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsine", "categories": ["air"], "amount": 557}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 424730}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 228780}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 161.08}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090}, {"name": "Barium II", "categories": ["air"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1090}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1570}, {"name": "Barium II", "categories": ["soil"], "amount": 1570}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3140}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 9.34e-16}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3140}, {"name": "Barium II", "categories": ["water"], "amount": 1570}, {"name": "Barium sulfide", "categories": ["water"], "amount": 76094}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4382.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 395.82}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 894.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 839.26}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 171240}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 27977}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 28141}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 8173300}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 35.132}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 527}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 527}, {"name": "Beryllium II", "categories": ["air"], "amount": 526}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 525}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil"], "amount": 760}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.55e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water"], "amount": 690}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 814760000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 229740000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2192.2}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 11.793}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 10.242}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 78.497}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 78.497}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 1305.4}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 204.3}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 73.451}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 369.26}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 161.63}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 199.08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air"], "amount": 80800}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 80700}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 116000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.39e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water"], "amount": 114500}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 3800}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 6.38e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 3800}, {"name": "Caesium", "categories": ["water"], "amount": 1900}, {"name": "Calcium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.495}, {"name": "Calcium", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.495}, {"name": "Calcium", "categories": ["air"], "amount": 36.247}, {"name": "Calcium", "categories": ["air", "urban air close to ground"], "amount": 36.998}, {"name": "Calcium", "categories": ["soil", "agricultural"], "amount": 47.27}, {"name": "Calcium", "categories": ["soil", "forestry"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil", "industrial"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil"], "amount": 47.27}, {"name": "Calcium II", "categories": ["water", "ground-"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water", "ocean"], "amount": 7.00649e-45}, {"name": "Calcium II", "categories": ["water", "surface water"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water"], "amount": 109.18}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 3143400}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1158.7}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 23347}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 51145}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 56094}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2518800}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water"], "amount": 150.72}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 150.72}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 150.72}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1705.9}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 970.45}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 37438}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 5964.1}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 16856}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 59379}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 66.766}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 349.64}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 32.609}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 33.571}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 794680}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 196830000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium III", "categories": ["air"], "amount": 364.5}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium III", "categories": ["soil"], "amount": 524}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 809}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.73e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 809}, {"name": "Chromium III", "categories": ["water"], "amount": 404.5}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium VI", "categories": ["air"], "amount": 364.5}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil"], "amount": 524}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.82e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water"], "amount": 520}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 752.52}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air"], "amount": 4490}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4480}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil"], "amount": 6470}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.43e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water"], "amount": 6150}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36500}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 36500}, {"name": "Copper ion", "categories": ["air"], "amount": 36400}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 36300}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil"], "amount": 52400}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 99200}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 9.25e-18}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 99200}, {"name": "Copper ion", "categories": ["water"], "amount": 49600}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 1864.5}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 50458}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 1219.5}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 13400}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1831.5}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 50934000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 88371}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1531.8}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 691.93}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 458.02}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4759}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1234700}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 77330000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2138.6}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 146.75}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 14.079}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 41.875}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 400.44}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 660.23}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 15.723}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 15766000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2241.9}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 513.86}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 27842}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 98085}, {"name": "Dodecanol", "categories": ["water"], "amount": 11313}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 121.22}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 332160}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 617.76}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1129700}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 1864.5}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 248.51}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 25.382}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3140.2}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 18.445}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 61.443}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 890.24}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 68.044}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1361.3}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 6.4334}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 40.121}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 62713000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 73646}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 378860}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 632570}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 3010900}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.5426}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 10.203}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 168290}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2125.4}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 3.4488}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 42.924}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 0.010218}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 50458}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 1020.7}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 7308.6}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 542.27}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 20956}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 0.0014233}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 37438}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 149.48}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 29553}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 11097}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 150.72}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 29.36}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 44670}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 127290}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 480290}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 119590}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.0267}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 332160}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 187.68}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air"], "amount": 50.6}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 50.5}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil"], "amount": 73.2}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 134}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 6.44e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 134}, {"name": "Iron ion", "categories": ["water"], "amount": 67}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 401.31}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water"], "amount": 516.89}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2012700000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 1117.3}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.2}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.2}, {"name": "Lead II", "categories": ["air"], "amount": 28.05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.9}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil"], "amount": 40.7}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.9}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.9e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.9}, {"name": "Lead II", "categories": ["water"], "amount": 34.45}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 0.58961}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 246.66}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 1084900}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air"], "amount": 63.35}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 63.2}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil"], "amount": 91.7}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese II", "categories": ["water"], "amount": 82}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese-55", "categories": ["water"], "amount": 82}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Mercury II", "categories": ["air"], "amount": 1065}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil"], "amount": 1560}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2210}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.54e-18}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2210}, {"name": "Mercury II", "categories": ["water"], "amount": 1105}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 196520}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1281.6}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 70.831}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3241.7}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 2.9582}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 413980}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 110530}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 13.777}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 1981.4}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 107.85}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 15.753}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 88.346}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 111700}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 61309}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.59e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.475}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 70.066}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 659.25}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10700}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 10700}, {"name": "Nickel II", "categories": ["air"], "amount": 10650}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil"], "amount": 15400}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 29800}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.91e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 29800}, {"name": "Nickel II", "categories": ["water"], "amount": 14900}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1789.6}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 13362}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 119590}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 64.453}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 1959600}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 8672}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 5.3621}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.0177}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 31.882}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 6827.4}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 10.486}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 18660}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 7569.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 371.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 50.201}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 22357}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 230.06}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 8.2417}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 96.402}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 148630}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 452.5}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 2674.4}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 62.688}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 18324}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 518980}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2138.6}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 15062000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2138.6}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 433890}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 190510}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2138.6}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air"], "amount": 25.65}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 25.6}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.74e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water"], "amount": 36.6}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water"], "amount": 2.3463}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7030}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7030}, {"name": "Silver I", "categories": ["air"], "amount": 7020}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7010}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 10100}, {"name": "Silver I", "categories": ["soil"], "amount": 10100}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 19400}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.09e-17}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 19400}, {"name": "Silver I", "categories": ["water"], "amount": 9700}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 333470}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 7.6306}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 21.339}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5380}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5380}, {"name": "Strontium", "categories": ["air"], "amount": 5375}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 5370}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 7730}, {"name": "Strontium", "categories": ["soil"], "amount": 7730}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 15400}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.39e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 15400}, {"name": "Strontium", "categories": ["water"], "amount": 7700}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 1322.6}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 210090}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 79836}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil"], "amount": 20911}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 133650}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 153.76}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 133650}, {"name": "Sulfur", "categories": ["water"], "amount": 66901}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 6585.4}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 150700}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21179}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 26919000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 630.38}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230}, {"name": "Thallium I", "categories": ["air"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1230}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil"], "amount": 1760}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3530}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 9.5e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3530}, {"name": "Thallium I", "categories": ["water"], "amount": 1765}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 46196}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 213220}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 385460}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 12129}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 385290}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 119}, {"name": "Tin ion", "categories": ["air"], "amount": 118.5}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 118}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 171}, {"name": "Tin ion", "categories": ["soil"], "amount": 171}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 298}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 3.75e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 298}, {"name": "Tin ion", "categories": ["water"], "amount": 149}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 486.61}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1641.4}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 134.85}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 7.6657}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.25304}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 50458}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 688260000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 831270}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 63.058}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 40.263}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 1.4769}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 181}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 404}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 404}, {"name": "Vanadium V", "categories": ["air"], "amount": 403.5}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 403}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil"], "amount": 581}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 337.41}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 506}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 506}, {"name": "Zinc II", "categories": ["air"], "amount": 504.5}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 503}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 730}, {"name": "Zinc II", "categories": ["soil"], "amount": 730}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1330}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.05e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1330}, {"name": "Zinc II", "categories": ["water"], "amount": 665}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 531.29}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 801.31}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 21.977}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 3022.8}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "CTUe", "name": ["EF v3.0", "ecotoxicity: freshwater, inorganics", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "Allyl chloride", "categories": ["water"], "amount": 52.64}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 883.04}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 1246.7}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 52.283}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsine", "categories": ["air"], "amount": 557}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 161.08}, {"name": "Barium sulfide", "categories": ["water"], "amount": 76094}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 10.242}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 78.497}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 78.497}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 1305.4}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 56094}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water"], "amount": 150.72}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 150.72}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 150.72}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 5964.1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 33.571}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 13400}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.5426}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 10.203}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 29553}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 150.72}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 29.36}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 44670}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 187.68}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 5.3621}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.0177}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 31.882}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 6827.4}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 10.486}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 7.6306}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 6585.4}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 7.6657}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}]}, {"unit": "CTUe", "name": ["EF v3.0", "ecotoxicity: freshwater, metals", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air"], "amount": 188000}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil"], "amount": 276000}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.43e-15}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water"], "amount": 204500}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air"], "amount": 43.05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 43}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 122}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 8.22e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 122}, {"name": "Antimony ion", "categories": ["water"], "amount": 61}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air"], "amount": 557}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 803}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.27e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2015}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090}, {"name": "Barium II", "categories": ["air"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1090}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1570}, {"name": "Barium II", "categories": ["soil"], "amount": 1570}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3140}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 9.34e-16}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3140}, {"name": "Barium II", "categories": ["water"], "amount": 1570}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 527}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 527}, {"name": "Beryllium II", "categories": ["air"], "amount": 526}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 525}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil"], "amount": 760}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.55e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water"], "amount": 690}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 11.793}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air"], "amount": 80800}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 80700}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 116000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.39e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water"], "amount": 114500}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 3800}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 6.38e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 3800}, {"name": "Caesium", "categories": ["water"], "amount": 1900}, {"name": "Calcium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.495}, {"name": "Calcium", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.495}, {"name": "Calcium", "categories": ["air"], "amount": 36.247}, {"name": "Calcium", "categories": ["air", "urban air close to ground"], "amount": 36.998}, {"name": "Calcium", "categories": ["soil", "agricultural"], "amount": 47.27}, {"name": "Calcium", "categories": ["soil", "forestry"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil", "industrial"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil"], "amount": 47.27}, {"name": "Calcium II", "categories": ["water", "ground-"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water", "ocean"], "amount": 7.00649e-45}, {"name": "Calcium II", "categories": ["water", "surface water"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water"], "amount": 109.18}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium III", "categories": ["air"], "amount": 364.5}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium III", "categories": ["soil"], "amount": 524}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 809}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.73e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 809}, {"name": "Chromium III", "categories": ["water"], "amount": 404.5}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium VI", "categories": ["air"], "amount": 364.5}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil"], "amount": 524}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.82e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water"], "amount": 520}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air"], "amount": 4490}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4480}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil"], "amount": 6470}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.43e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water"], "amount": 6150}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36500}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 36500}, {"name": "Copper ion", "categories": ["air"], "amount": 36400}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 36300}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil"], "amount": 52400}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 99200}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 9.25e-18}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 99200}, {"name": "Copper ion", "categories": ["water"], "amount": 49600}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air"], "amount": 50.6}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 50.5}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil"], "amount": 73.2}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 134}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 6.44e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 134}, {"name": "Iron ion", "categories": ["water"], "amount": 67}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.2}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.2}, {"name": "Lead II", "categories": ["air"], "amount": 28.05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.9}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil"], "amount": 40.7}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.9}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.9e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.9}, {"name": "Lead II", "categories": ["water"], "amount": 34.45}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 0.58961}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air"], "amount": 63.35}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 63.2}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil"], "amount": 91.7}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese II", "categories": ["water"], "amount": 82}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese-55", "categories": ["water"], "amount": 82}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Mercury II", "categories": ["air"], "amount": 1065}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil"], "amount": 1560}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2210}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.54e-18}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2210}, {"name": "Mercury II", "categories": ["water"], "amount": 1105}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.59e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.475}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10700}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 10700}, {"name": "Nickel II", "categories": ["air"], "amount": 10650}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil"], "amount": 15400}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 29800}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.91e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 29800}, {"name": "Nickel II", "categories": ["water"], "amount": 14900}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air"], "amount": 25.65}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 25.6}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.74e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water"], "amount": 36.6}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water"], "amount": 2.3463}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7030}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7030}, {"name": "Silver I", "categories": ["air"], "amount": 7020}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7010}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 10100}, {"name": "Silver I", "categories": ["soil"], "amount": 10100}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 19400}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.09e-17}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 19400}, {"name": "Silver I", "categories": ["water"], "amount": 9700}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5380}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5380}, {"name": "Strontium", "categories": ["air"], "amount": 5375}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 5370}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 7730}, {"name": "Strontium", "categories": ["soil"], "amount": 7730}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 15400}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.39e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 15400}, {"name": "Strontium", "categories": ["water"], "amount": 7700}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil"], "amount": 20911}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 133650}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 153.76}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 133650}, {"name": "Sulfur", "categories": ["water"], "amount": 66901}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230}, {"name": "Thallium I", "categories": ["air"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1230}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil"], "amount": 1760}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3530}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 9.5e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3530}, {"name": "Thallium I", "categories": ["water"], "amount": 1765}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 119}, {"name": "Tin ion", "categories": ["air"], "amount": 118.5}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 118}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 171}, {"name": "Tin ion", "categories": ["soil"], "amount": 171}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 298}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 3.75e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 298}, {"name": "Tin ion", "categories": ["water"], "amount": 149}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 40.263}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 404}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 404}, {"name": "Vanadium V", "categories": ["air"], "amount": 403.5}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 403}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil"], "amount": 581}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 506}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 506}, {"name": "Zinc II", "categories": ["air"], "amount": 504.5}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 503}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 730}, {"name": "Zinc II", "categories": ["soil"], "amount": 730}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1330}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.05e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1330}, {"name": "Zinc II", "categories": ["water"], "amount": 665}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}]}, {"unit": "CTUe", "name": ["EF v3.0", "ecotoxicity: freshwater, organics", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 4646.7}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 2.6713}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 30.733}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 112.29}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 68612}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 11624}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 31.157}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 912.29}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 4.1368}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 500.56}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 31.457}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 21.639}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 14.072}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 1845.1}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4860.6}, {"name": "Abamectin", "categories": ["air"], "amount": 8802.3}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Abamectin", "categories": ["water"], "amount": 332160}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6887.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 2139.3}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 96.503}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 325900}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 599.66}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 2.8788}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 4.6517}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 7669.3}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 194540}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water"], "amount": 9541}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1999.7}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 58369000}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 9.2245}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 487460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 424730}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 228780}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4382.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 395.82}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 894.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 839.26}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 171240}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 27977}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 28141}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 8173300}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 35.132}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 814760000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 229740000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2192.2}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 204.3}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 73.451}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 369.26}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 161.63}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 199.08}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 3143400}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1158.7}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 23347}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 51145}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2518800}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1705.9}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 970.45}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 37438}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 16856}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 59379}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 66.766}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 349.64}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 32.609}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 794680}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 196830000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 752.52}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 1864.5}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 50458}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 1219.5}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1831.5}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 50934000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 88371}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1531.8}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 691.93}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 458.02}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4759}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1234700}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 77330000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2138.6}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 146.75}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 14.079}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 41.875}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 400.44}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 660.23}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 15.723}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 15766000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2241.9}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 513.86}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 27842}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 98085}, {"name": "Dodecanol", "categories": ["water"], "amount": 11313}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 121.22}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 332160}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 617.76}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1129700}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 1864.5}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 248.51}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 25.382}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3140.2}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 18.445}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 61.443}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 890.24}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 68.044}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1361.3}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 6.4334}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 40.121}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 62713000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 73646}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 378860}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 632570}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 3010900}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 168290}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2125.4}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 3.4488}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 42.924}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 0.010218}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 50458}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 1020.7}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 7308.6}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 542.27}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 20956}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 0.0014233}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 37438}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 149.48}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 11097}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 127290}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 480290}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 119590}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.0267}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 332160}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 401.31}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water"], "amount": 516.89}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2012700000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 1117.3}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 246.66}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 1084900}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 196520}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1281.6}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 70.831}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3241.7}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 2.9582}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 413980}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 110530}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 13.777}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 1981.4}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 107.85}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 15.753}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 88.346}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 111700}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 61309}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 70.066}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 659.25}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1789.6}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 13362}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 119590}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 64.453}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 1959600}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 8672}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 18660}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 7569.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 371.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 50.201}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 22357}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 230.06}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 8.2417}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 96.402}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 148630}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 452.5}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 2674.4}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 62.688}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 18324}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 518980}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2138.6}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 15062000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2138.6}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 433890}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 190510}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2138.6}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 333470}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 21.339}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 1322.6}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 210090}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 79836}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 150700}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21179}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 26919000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 630.38}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 46196}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 213220}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 385460}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 12129}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 385290}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 486.61}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1641.4}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 134.85}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.25304}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 50458}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 688260000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 831270}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 63.058}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 1.4769}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 181}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 337.41}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 531.29}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 801.31}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 21.977}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 3022.8}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "MJ, net calorific value", "name": ["EF v3.0", "energy resources: non-renewable", "abiotic depletion potential (ADP): fossil fuels"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.76}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}]}, {"unit": "kg P-Eq", "name": ["EF v3.0", "eutrophication: freshwater", "fraction of nutrients reaching freshwater end compartment (P)"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["EF v3.0", "eutrophication: marine", "fraction of nutrients reaching marine end compartment (N)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.092}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water"], "amount": 0.778}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.028}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water"], "amount": 0.226}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.596}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water"], "amount": 0.304}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 1}, {"name": "Nitrogen", "categories": ["water"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.389}]}, {"unit": "mol N-Eq", "name": ["EF v3.0", "eutrophication: terrestrial", "accumulated exceedance (AE)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 13.47}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 3.16065}, {"name": "Nitric oxide", "categories": ["air"], "amount": 6.532}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 4.26}]}, {"unit": "CTUh", "name": ["EF v3.0", "human toxicity: carcinogenic", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.0", "human toxicity: carcinogenic, inorganics", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}]}, {"unit": "CTUh", "name": ["EF v3.0", "human toxicity: carcinogenic, metals", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}]}, {"unit": "CTUh", "name": ["EF v3.0", "human toxicity: carcinogenic, organics", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.0", "human toxicity: non-carcinogenic", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3303e-06}, {"name": "Abamectin", "categories": ["air"], "amount": 1.1734e-05}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Abamectin", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 2.2099e-08}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil"], "amount": 1.5387e-08}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6728e-06}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 6.9773e-08}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air"], "amount": 0.00012953}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 0.00013055}, {"name": "Chlorine", "categories": ["soil"], "amount": 0.0001235}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 1.1282e-05}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water"], "amount": 5.5583e-05}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.261e-06}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.261e-06}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 3.1857e-08}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 1.2368e-08}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 3.3487e-07}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 4.3917e-07}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 4.3512e-07}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 8.1969e-10}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil"], "amount": 6.6691e-10}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 2.188e-11}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water"], "amount": 5.5205e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "CTUh", "name": ["EF v3.0", "human toxicity: non-carcinogenic, inorganics", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 2.2099e-08}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil"], "amount": 1.5387e-08}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air"], "amount": 0.00012953}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 0.00013055}, {"name": "Chlorine", "categories": ["soil"], "amount": 0.0001235}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 1.1282e-05}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water"], "amount": 5.5583e-05}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 3.3487e-07}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 4.3917e-07}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}]}, {"unit": "CTUh", "name": ["EF v3.0", "human toxicity: non-carcinogenic, metals", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 8.1969e-10}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil"], "amount": 6.6691e-10}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 2.188e-11}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water"], "amount": 5.5205e-10}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}]}, {"unit": "CTUh", "name": ["EF v3.0", "human toxicity: non-carcinogenic, organics", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3303e-06}, {"name": "Abamectin", "categories": ["air"], "amount": 1.1734e-05}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Abamectin", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6728e-06}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 6.9773e-08}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.261e-06}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.261e-06}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 3.1857e-08}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 1.2368e-08}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 4.3512e-07}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "kBq U235-Eq", "name": ["EF v3.0", "ionising radiation: human health", "human exposure efficiency relative to u235"], "exchanges": [{"name": "Americium-241", "categories": ["water", "ground-"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water"], "amount": 1.5}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0386}, {"name": "Antimony-125", "categories": ["water", "ground-"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ground-, long-term"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water"], "amount": 0.0007}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water"], "amount": 6.79}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water"], "amount": 7.86}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Carbon-14", "categories": ["air"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.0557}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00193}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0186}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.29e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.14e-05}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 4.8}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water"], "amount": 4.71}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0236}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000443}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 6.64e-06}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.015}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 3.14}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ground-, long-term"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water"], "amount": 0.00607}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.00679}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0236}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.000193}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 2.14}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ground-, long-term"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.114}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-235", "categories": ["air"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.107}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 6.71e-06}]}, {"unit": "dimensionless", "name": ["EF v3.0", "land use", "soil quality index"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 39.581}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 36.405}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 51.699}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 105.24}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 18.128}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 33.964}, {"name": "Occupation, forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 11.459}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 11.488}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 21.463}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 48.218}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 139.1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 38.973}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 58.117}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 17.602}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 138.81}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 121.55}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 161.52}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 69.262}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 28.288}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 165.22}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 116.16}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 48.764}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 138.72}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Transformation, from annual crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": -395.81}, {"name": "Transformation, from annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": -364.05}, {"name": "Transformation, from annual crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from arable land, unspecified use", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from bare area (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -516.99}, {"name": "Transformation, from dump site", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, slag compartment", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from forest, extensive", "categories": ["natural resource", "land"], "amount": -181.28}, {"name": "Transformation, from forest, intensive", "categories": ["natural resource", "land"], "amount": -339.64}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": -114.59}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -114.88}, {"name": "Transformation, from forest, unspecified", "categories": ["natural resource", "land"], "amount": -214.63}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": -482.18}, {"name": "Transformation, from industrial area", "categories": ["natural resource", "land"], "amount": -5911.8}, {"name": "Transformation, from mineral extraction site", "categories": ["natural resource", "land"], "amount": -4708.4}, {"name": "Transformation, from pasture, man made", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": -389.73}, {"name": "Transformation, from pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": -581.17}, {"name": "Transformation, from permanent crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -176.02}, {"name": "Transformation, from snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from traffic area, rail network", "categories": ["natural resource", "land"], "amount": -5899.2}, {"name": "Transformation, from traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": -5165.9}, {"name": "Transformation, from traffic area, road network", "categories": ["natural resource", "land"], "amount": -6864.8}, {"name": "Transformation, from unknown", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -282.88}, {"name": "Transformation, from urban, continuously built", "categories": ["natural resource", "land"], "amount": -7021.9}, {"name": "Transformation, from urban, discontinuously built", "categories": ["natural resource", "land"], "amount": -4937}, {"name": "Transformation, from urban, green area", "categories": ["natural resource", "land"], "amount": -2072.5}, {"name": "Transformation, from urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": -5895.4}, {"name": "Transformation, from wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, to annual crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 395.81}, {"name": "Transformation, to annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 364.05}, {"name": "Transformation, to annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to bare area (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 516.99}, {"name": "Transformation, to dump site", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to forest, extensive", "categories": ["natural resource", "land"], "amount": 181.28}, {"name": "Transformation, to forest, intensive", "categories": ["natural resource", "land"], "amount": 339.64}, {"name": "Transformation, to forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 114.59}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 114.88}, {"name": "Transformation, to forest, unspecified", "categories": ["natural resource", "land"], "amount": 214.63}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 482.18}, {"name": "Transformation, to industrial area", "categories": ["natural resource", "land"], "amount": 5911.8}, {"name": "Transformation, to mineral extraction site", "categories": ["natural resource", "land"], "amount": 4708.4}, {"name": "Transformation, to pasture, man made", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 389.73}, {"name": "Transformation, to pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 581.17}, {"name": "Transformation, to permanent crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 176.02}, {"name": "Transformation, to snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to traffic area, rail network", "categories": ["natural resource", "land"], "amount": 5899.2}, {"name": "Transformation, to traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 5165.9}, {"name": "Transformation, to traffic area, road network", "categories": ["natural resource", "land"], "amount": 6864.8}, {"name": "Transformation, to unknown", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 282.88}, {"name": "Transformation, to urban, continuously built", "categories": ["natural resource", "land"], "amount": 7021.9}, {"name": "Transformation, to urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 4937}, {"name": "Transformation, to urban, green area", "categories": ["natural resource", "land"], "amount": 2072.5}, {"name": "Transformation, to urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 5895.4}, {"name": "Transformation, to wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}]}, {"unit": "kg Sb-Eq", "name": ["EF v3.0", "material resources: metals/minerals", "abiotic depletion potential (ADP): elements (ultimate reserves)"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 4.545212805030338e-05}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.00297}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 6.04e-06}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 1.26e-05}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.0411}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 0.0004841517197042984}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.00427}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 5.343572902983674e-10}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 0.000673718497616036}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 6.544113975666994e-12}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 2.66249274670687e-10}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 6.52e-07}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 3.594003392114496e-05}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.308918482603777e-10}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 4.471605694701393e-05}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 5.823075919490471e-10}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 2.02e-09}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.0922}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.93e-05}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 1.6e-08}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 0.000103180813387238}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 0.194}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1.4e-11}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 5.5e-08}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 1.646069875295716e-05}, {"name": "Sodium nitrate", "categories": ["natural resource", "in ground"], "amount": 1.487682357320205e-08}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 4.358140883174752e-05}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.290510533131037e-07}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 7.07e-07}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.000193}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 1.289527155951242e-05}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 3.92505016360851e-10}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.43e-05}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 2.79e-08}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 0.00452}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 0.0005695419030770708}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 7.7e-07}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 5.69e-07}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}]}, {"unit": "kg CFC-11-Eq", "name": ["EF v3.0", "ozone depletion", "ozone depletion potential (ODP)"], "exchanges": [{"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.81}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.057}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.26}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.57}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 15.2}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.034}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.72}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "disease incidence", "name": ["EF v3.0", "particulate matter formation", "impact on human health"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.6e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01757e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000238497}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.94042e-07}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 5.48544e-05}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}]}, {"unit": "kg NMVOC-Eq", "name": ["EF v3.0", "photochemical oxidant formation: human health", "tropospheric ozone concentration increase"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 1.65}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.608}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1.42}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.709}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.318}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.731}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.828}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Acetone", "categories": ["air"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.155}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Benzene", "categories": ["air"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.23}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.595}, {"name": "Butane", "categories": ["air"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.595}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05}, {"name": "Butanol", "categories": ["air"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.454}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0389}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.845}, {"name": "Cumene", "categories": ["air"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.845}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.752}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.0422}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.319}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.208}, {"name": "Ethane", "categories": ["air"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.208}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0152}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.674}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.353}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.69}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.652}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.144}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.877}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.834}, {"name": "Heptane", "categories": ["air"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.834}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Hexane", "categories": ["air"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.814}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.519}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.115}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00845}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.236}, {"name": "Methanol", "categories": ["air"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.236}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0997}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.63}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.667}, {"name": "Pentane", "categories": ["air"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.667}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Propanal", "categories": ["air"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.35}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "Propane", "categories": ["air"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.948}, {"name": "Propanol", "categories": ["air"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.948}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9}, {"name": "Propene", "categories": ["air"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.9}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.253}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Styrene", "categories": ["air"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.049}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Toluene", "categories": ["air"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.549}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.235}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.78}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.296}]}, {"unit": "m3 world eq. deprived", "name": ["EF v3.0", "water use", "user deprivation potential (deprivation-weighted water consumption)"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 42.95}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.95}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.95}, {"name": "Water", "categories": ["air"], "amount": 42.95}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 42.95}]}, {"unit": "mol H+-Eq", "name": ["EF v3.1 no LT", "acidification no LT", "accumulated exceedance (AE) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 3.02}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.13467}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1.31}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.04821}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1 no LT", "climate change no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1 no LT", "climate change: biogenic no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1 no LT", "climate change: fossil no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1 no LT", "climate change: land use and land use change no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}]}, {"unit": "CTUe", "name": ["EF v3.1 no LT", "ecotoxicity: freshwater no LT", "comparative toxic unit for ecosystems (CTUe) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9276}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 5.3426}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 61.45}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 224.58}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 137220}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 23240}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 62.294}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1824.6}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 8.2702}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 1001.1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 62.9}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 28.139}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 3689.2}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 315487.19221037}, {"name": "Abamectin", "categories": ["air"], "amount": 554148.578559852}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Abamectin", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 13773}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 4278.6}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 192.93}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 651800}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 1199.3}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 5.7469}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.2823}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15337}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 389000}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 19082}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 19082}, {"name": "Acrylate", "categories": ["water"], "amount": 19082}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3981.3}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Allyl chloride", "categories": ["water"], "amount": 105.28}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 116730000}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air"], "amount": 2002.745979017675}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 1991.389605163728}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.524933039988502e-17}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water"], "amount": 4351.936148782046}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1766.1}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 2493.2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 104.57}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 18.449}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 974460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air"], "amount": 3936.160566162338}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3932.23811982149}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.513617476334719e-17}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water"], "amount": 11236.40165143179}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.674241505374748e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4740.144065793249}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 849450}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 457560}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 322.16}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air"], "amount": 1285.034232822078}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1283.954063979948}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.099193197912493e-15}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water"], "amount": 3697.562482913057}, {"name": "Barium sulfide", "categories": ["water"], "amount": 152190}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 8762.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 791.57}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1787.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 1678.5}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 341750}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 55563}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 56281}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 16347000}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 70.262}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air"], "amount": 618.9529355888297}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 617.3705322217661}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 6.526234802747784e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water"], "amount": 1626.068806336683}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1629500000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 459480000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 4384.3}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 23.585}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 20.458}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 156.99}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 2607.6}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 408.5}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 146.86}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 738.53}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 323.15}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 398.15}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air"], "amount": 238177.2238474309}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 237902.7122128598}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 7.053900825124722e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water"], "amount": 674494.7621301207}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 7.47862628024277e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water"], "amount": 4470.250219771267}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 6286700}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2314.6}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 46693}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 102290}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 111310}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 5037700}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 1.3453e-19}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water"], "amount": 4.7248}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 301.44}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 301.44}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 55559.1411080776}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 70300.9604413129}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 11918}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 33711}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 118620}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 133.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 696.98}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 65.209}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 67.142}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1588300}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 393650000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.208875862910647e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water"], "amount": 952.2972968312423}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.489493252663161e-17}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water"], "amount": 12274.01347021746}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 1505}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air"], "amount": 2014.507718479836}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2010.987520873756}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.400122046360835e-17}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water"], "amount": 5530.110188853351}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air"], "amount": 17.0387771287493}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 17.00696037116091}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.332001250025555e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water"], "amount": 46.47592828149169}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 157664.999993603}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 2439}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 26453}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3663.1}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 101870000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 176740}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3063.7}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1383.9}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0036901}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0036787}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 916.03}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4.9517}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 2469400}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 154660000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 293.47}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 28.15}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 83.707}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 800.87}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 1320.5}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 31.193}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 31479000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 4483.1}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 1027.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 55683}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 196170}, {"name": "Dodecanol", "categories": ["water"], "amount": 22624}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 242.45}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1233.9}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 2259400}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 157664.999993603}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 495.88}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.1505}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 50.686}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 6258.5}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 36.878}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 122.76}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 1780.5}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 136.09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2722.6}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 12.866}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 80.053}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 125430000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 147290}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 757720}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1265100}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 6021800}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 3.0851}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 20.361}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 336590}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4250.7}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 6.8977}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 85.847}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 64.3102104356947}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2041.4}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 14617}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 1084.5}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 41912}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 25.8706937761006}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 298.96}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 59003}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 22194}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 301.44}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 58.72}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 89339}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 254580}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 960570}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 239130}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 2276.4422267126}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 375.32}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air"], "amount": 795.7333426635905}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 793.8224567056676}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 7.574304470573605e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water"], "amount": 158.0383373682407}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 802.63}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ground-"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water", "surface water"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water"], "amount": 1033.8}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 4025200000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 2234.5}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air"], "amount": 27.80611908286212}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.70215524027599}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.886357418817773e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water"], "amount": 68.25546277139645}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 1.1792}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 493.32}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 2169700}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air"], "amount": 19.94318085460731}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 19.88727144657841}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air"], "amount": 15972.69526442819}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 15871.61649678753}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.31875727413759e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water"], "amount": 33175.97305971487}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 393040}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2563.2}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 141.6}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 6459.6}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 5.9133}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 827960}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 221060}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 27.506}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 3961.6}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 215.57}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 31.451}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 176.69}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 223410}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 122620}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.3442680085561654}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.3439346651696575}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.197321478927571e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.9841866365016807}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 140.06}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1318.5}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air"], "amount": 9671.490845144066}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9658.017917373805}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.452235344870308e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water"], "amount": 27049.47608091963}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 3579.2}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 26696}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 239130}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 128.91}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 3919100}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 17344}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 10.724}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 2.0314}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 63.728}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 13653}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 20.943}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 37320}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 15139}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 742.46}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 100.4}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 44637}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 459.99}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 16.477}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 192.8}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 297260}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 904.99}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 5348.7}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 125.14}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 36647}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 1038000}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 30124000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 867770}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 381030}, {"name": "Saflufenacil", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air"], "amount": 30.16996657803469}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 30.13959371908529}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 2.042628203989072e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water"], "amount": 86.08008602421901}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water"], "amount": 4.6927}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air"], "amount": 64053.54859244861}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 63950.19866656793}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.906840719972556e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water"], "amount": 177087.2896818751}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 666940}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 15.261}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 42.676}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air"], "amount": 6317.818728103488}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 6311.78472154855}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.98284211011834e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water"], "amount": 18073.40979134071}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 2645.2}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 420180}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 159670}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 13171}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 301390}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 42358}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 53839000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1260.2}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air"], "amount": 1442.57764721605}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1441.342024998017}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.117103489229396e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water"], "amount": 4147.520198066774}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 92391}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 426440}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 770900}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 24258}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 770570}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air"], "amount": 203.8836811879324}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 203.2079983047431}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 6.470692433736435e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water"], "amount": 513.1042026334452}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 973.2}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 3281.6}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 269.69}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 15.307}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 101.88}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.50608}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 1376500000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 1661800}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 126.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 80.527}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 2.9538}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 361.96}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air"], "amount": 1710.725551638173}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1708.278576231147}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2464.904813447571}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 674.82}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air"], "amount": 628.4971011469244}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 626.9476836185197}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.305118122386737e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water"], "amount": 1659.512213981416}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 1062.6}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 1602.6}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 43.94}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 6045.4}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "CTUe", "name": ["EF v3.1 no LT", "ecotoxicity: freshwater, inorganics no LT", "comparative toxic unit for ecosystems (CTUe) no LT"], "exchanges": [{"name": "Allyl chloride", "categories": ["water"], "amount": 105.28}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air"], "amount": 2002.745979017675}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 1991.389605163728}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.524933039988502e-17}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water"], "amount": 4351.936148782046}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1766.1}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 2493.2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 104.57}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air"], "amount": 3936.160566162338}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3932.23811982149}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.513617476334719e-17}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water"], "amount": 11236.40165143179}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.674241505374748e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4740.144065793249}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 322.16}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air"], "amount": 1285.034232822078}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1283.954063979948}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.099193197912493e-15}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water"], "amount": 3697.562482913057}, {"name": "Barium sulfide", "categories": ["water"], "amount": 152190}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air"], "amount": 618.9529355888297}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 617.3705322217661}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 6.526234802747784e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water"], "amount": 1626.068806336683}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 23.585}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 20.458}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 156.99}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 2607.6}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air"], "amount": 238177.2238474309}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 237902.7122128598}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 7.053900825124722e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water"], "amount": 674494.7621301207}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 7.47862628024277e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water"], "amount": 4470.250219771267}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 111310}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 1.3453e-19}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water"], "amount": 4.7248}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 301.44}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 301.44}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 11918}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 67.142}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.208875862910647e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water"], "amount": 952.2972968312423}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.489493252663161e-17}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water"], "amount": 12274.01347021746}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air"], "amount": 2014.507718479836}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2010.987520873756}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.400122046360835e-17}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water"], "amount": 5530.110188853351}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air"], "amount": 17.0387771287493}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 17.00696037116091}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.332001250025555e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water"], "amount": 46.47592828149169}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 26453}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 3.0851}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 20.361}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 59003}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 301.44}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 58.72}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 89339}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 375.32}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air"], "amount": 795.7333426635905}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 793.8224567056676}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 7.574304470573605e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water"], "amount": 158.0383373682407}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air"], "amount": 27.80611908286212}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.70215524027599}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.886357418817773e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water"], "amount": 68.25546277139645}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 1.1792}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air"], "amount": 19.94318085460731}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 19.88727144657841}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air"], "amount": 15972.69526442819}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 15871.61649678753}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.31875727413759e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water"], "amount": 33175.97305971487}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.3442680085561654}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.3439346651696575}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.197321478927571e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.9841866365016807}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air"], "amount": 9671.490845144066}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9658.017917373805}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.452235344870308e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water"], "amount": 27049.47608091963}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 10.724}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 2.0314}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 63.728}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 13653}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 20.943}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air"], "amount": 30.16996657803469}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 30.13959371908529}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 2.042628203989072e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water"], "amount": 86.08008602421901}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water"], "amount": 4.6927}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air"], "amount": 64053.54859244861}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 63950.19866656793}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.906840719972556e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water"], "amount": 177087.2896818751}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 15.261}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air"], "amount": 6317.818728103488}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 6311.78472154855}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.98284211011834e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water"], "amount": 18073.40979134071}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 13171}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air"], "amount": 1442.57764721605}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1441.342024998017}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.117103489229396e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water"], "amount": 4147.520198066774}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air"], "amount": 203.8836811879324}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 203.2079983047431}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 6.470692433736435e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water"], "amount": 513.1042026334452}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 15.307}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 80.527}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air"], "amount": 1710.725551638173}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1708.278576231147}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2464.904813447571}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air"], "amount": 628.4971011469244}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 626.9476836185197}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.305118122386737e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water"], "amount": 1659.512213981416}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}]}, {"unit": "CTUe", "name": ["EF v3.1 no LT", "ecotoxicity: freshwater, organics no LT", "comparative toxic unit for ecosystems (CTUe) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9276}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 5.3426}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 61.45}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 224.58}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 137220}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 23240}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 62.294}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1824.6}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 8.2702}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 1001.1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 62.9}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 28.139}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 3689.2}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 315487.19221037}, {"name": "Abamectin", "categories": ["air"], "amount": 554148.578559852}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Abamectin", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 13773}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 4278.6}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 192.93}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 651800}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 1199.3}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 5.7469}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.2823}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15337}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 389000}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 19082}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 19082}, {"name": "Acrylate", "categories": ["water"], "amount": 19082}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3981.3}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 116730000}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 18.449}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 974460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 849450}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 457560}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 8762.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 791.57}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1787.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 1678.5}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 341750}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 55563}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 56281}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 16347000}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 70.262}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1629500000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 459480000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 4384.3}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 408.5}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 146.86}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 738.53}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 323.15}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 398.15}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 6286700}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2314.6}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 46693}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 102290}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 5037700}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 55559.1411080776}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 70300.9604413129}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 33711}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 118620}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 133.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 696.98}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 65.209}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1588300}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 393650000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 1505}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 157664.999993603}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 2439}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3663.1}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 101870000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 176740}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3063.7}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1383.9}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0036901}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0036787}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 916.03}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4.9517}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 2469400}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 154660000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 293.47}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 28.15}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 83.707}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 800.87}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 1320.5}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 31.193}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 31479000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 4483.1}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 1027.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 55683}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 196170}, {"name": "Dodecanol", "categories": ["water"], "amount": 22624}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 242.45}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1233.9}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 2259400}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 157664.999993603}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 495.88}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.1505}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 50.686}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 6258.5}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 36.878}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 122.76}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 1780.5}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 136.09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2722.6}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 12.866}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 80.053}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 125430000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 147290}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 757720}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1265100}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 6021800}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 336590}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4250.7}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 6.8977}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 85.847}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 64.3102104356947}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2041.4}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 14617}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 1084.5}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 41912}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 25.8706937761006}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 298.96}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 22194}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 254580}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 960570}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 239130}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 2276.4422267126}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 802.63}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ground-"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water", "surface water"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water"], "amount": 1033.8}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 4025200000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 2234.5}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 493.32}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 2169700}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 393040}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2563.2}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 141.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 6459.6}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 5.9133}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 827960}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 221060}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 27.506}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 3961.6}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 215.57}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 31.451}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 176.69}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 223410}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 122620}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 140.06}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1318.5}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 3579.2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 26696}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 239130}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 128.91}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 3919100}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 17344}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 37320}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 15139}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 742.46}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 100.4}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 44637}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 459.99}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 16.477}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 192.8}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 297260}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 904.99}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 5348.7}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 125.14}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 36647}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 1038000}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 30124000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 867770}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 381030}, {"name": "Saflufenacil", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 666940}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 42.676}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 2645.2}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 420180}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 159670}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 301390}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 42358}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 53839000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1260.2}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 92391}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 426440}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 770900}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 24258}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 770570}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 973.2}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 3281.6}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 269.69}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 101.88}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.50608}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 1376500000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 1661800}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 126.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 2.9538}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 361.96}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 674.82}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 1062.6}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 1602.6}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 43.94}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 6045.4}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "MJ, net calorific value", "name": ["EF v3.1 no LT", "energy resources: non-renewable no LT", "abiotic depletion potential (ADP): fossil fuels no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.76}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}]}, {"unit": "kg P-Eq", "name": ["EF v3.1 no LT", "eutrophication: freshwater no LT", "fraction of nutrients reaching freshwater end compartment (P) no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["EF v3.1 no LT", "eutrophication: marine no LT", "fraction of nutrients reaching marine end compartment (N) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.092}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water"], "amount": 0.778}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.028}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water"], "amount": 0.226}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.596}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water"], "amount": 0.304}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 1}, {"name": "Nitrogen", "categories": ["water"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.389}]}, {"unit": "mol N-Eq", "name": ["EF v3.1 no LT", "eutrophication: terrestrial no LT", "accumulated exceedance (AE) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 13.47}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 3.16065}, {"name": "Nitric oxide", "categories": ["air"], "amount": 6.532}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 4.26}]}, {"unit": "CTUh", "name": ["EF v3.1 no LT", "human toxicity: carcinogenic no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 8.1867e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.1 no LT", "human toxicity: carcinogenic, inorganics no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}]}, {"unit": "CTUh", "name": ["EF v3.1 no LT", "human toxicity: carcinogenic, organics no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 8.1867e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.1 no LT", "human toxicity: non-carcinogenic no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.80160167313958e-05}, {"name": "Abamectin", "categories": ["air"], "amount": 0.000472506721099211}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Abamectin", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.50356882299721e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 2.53019085248595e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.3238e-10}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.1964e-10}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.00025564}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 1.18650289222135e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 9.59587362857198e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.57199659305063e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ground-"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water", "surface water"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "CTUh", "name": ["EF v3.1 no LT", "human toxicity: non-carcinogenic, inorganics no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}]}, {"unit": "CTUh", "name": ["EF v3.1 no LT", "human toxicity: non-carcinogenic, organics no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.80160167313958e-05}, {"name": "Abamectin", "categories": ["air"], "amount": 0.000472506721099211}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Abamectin", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.50356882299721e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 2.53019085248595e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.3238e-10}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.1964e-10}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.00025564}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 1.18650289222135e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 9.59587362857198e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.57199659305063e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ground-"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water", "surface water"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "kBq U235-Eq", "name": ["EF v3.1 no LT", "ionising radiation: human health no LT", "human exposure efficiency relative to u235 no LT"], "exchanges": [{"name": "Americium-241", "categories": ["water", "ground-"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water"], "amount": 1.5}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0386}, {"name": "Antimony-125", "categories": ["water", "ground-"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water"], "amount": 0.0007}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water"], "amount": 6.79}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water"], "amount": 7.86}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Carbon-14", "categories": ["air"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.0557}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00193}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0186}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.29e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.14e-05}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 4.8}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water"], "amount": 4.71}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0236}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000443}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 6.64e-06}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.015}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 3.14}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water"], "amount": 0.00607}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.00679}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0236}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.000193}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 2.14}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.114}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-235", "categories": ["air"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.107}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 6.71e-06}]}, {"unit": "dimensionless", "name": ["EF v3.1 no LT", "land use no LT", "soil quality index no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 39.581}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 36.405}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 51.699}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 105.24}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 18.128}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 33.964}, {"name": "Occupation, forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 11.459}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 11.488}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 21.463}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 48.218}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 139.1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 38.973}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 58.117}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 17.602}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 138.81}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 121.55}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 161.52}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 69.262}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 28.288}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 165.22}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 116.16}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 48.764}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 138.72}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Transformation, from annual crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": -395.81}, {"name": "Transformation, from annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": -364.05}, {"name": "Transformation, from annual crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from arable land, unspecified use", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from bare area (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -516.99}, {"name": "Transformation, from dump site", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, slag compartment", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from forest, extensive", "categories": ["natural resource", "land"], "amount": -181.28}, {"name": "Transformation, from forest, intensive", "categories": ["natural resource", "land"], "amount": -339.64}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": -114.59}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -114.88}, {"name": "Transformation, from forest, unspecified", "categories": ["natural resource", "land"], "amount": -214.63}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": -482.18}, {"name": "Transformation, from industrial area", "categories": ["natural resource", "land"], "amount": -5911.8}, {"name": "Transformation, from mineral extraction site", "categories": ["natural resource", "land"], "amount": -4708.4}, {"name": "Transformation, from pasture, man made", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": -389.73}, {"name": "Transformation, from pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": -581.17}, {"name": "Transformation, from permanent crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -176.02}, {"name": "Transformation, from snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from traffic area, rail network", "categories": ["natural resource", "land"], "amount": -5899.2}, {"name": "Transformation, from traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": -5165.9}, {"name": "Transformation, from traffic area, road network", "categories": ["natural resource", "land"], "amount": -6864.8}, {"name": "Transformation, from unknown", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -282.88}, {"name": "Transformation, from urban, continuously built", "categories": ["natural resource", "land"], "amount": -7021.9}, {"name": "Transformation, from urban, discontinuously built", "categories": ["natural resource", "land"], "amount": -4937}, {"name": "Transformation, from urban, green area", "categories": ["natural resource", "land"], "amount": -2072.5}, {"name": "Transformation, from urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": -5895.4}, {"name": "Transformation, from wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, to annual crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 395.81}, {"name": "Transformation, to annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 364.05}, {"name": "Transformation, to annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to bare area (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 516.99}, {"name": "Transformation, to dump site", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to forest, extensive", "categories": ["natural resource", "land"], "amount": 181.28}, {"name": "Transformation, to forest, intensive", "categories": ["natural resource", "land"], "amount": 339.64}, {"name": "Transformation, to forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 114.59}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 114.88}, {"name": "Transformation, to forest, unspecified", "categories": ["natural resource", "land"], "amount": 214.63}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 482.18}, {"name": "Transformation, to industrial area", "categories": ["natural resource", "land"], "amount": 5911.8}, {"name": "Transformation, to mineral extraction site", "categories": ["natural resource", "land"], "amount": 4708.4}, {"name": "Transformation, to pasture, man made", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 389.73}, {"name": "Transformation, to pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 581.17}, {"name": "Transformation, to permanent crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 176.02}, {"name": "Transformation, to snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to traffic area, rail network", "categories": ["natural resource", "land"], "amount": 5899.2}, {"name": "Transformation, to traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 5165.9}, {"name": "Transformation, to traffic area, road network", "categories": ["natural resource", "land"], "amount": 6864.8}, {"name": "Transformation, to unknown", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 282.88}, {"name": "Transformation, to urban, continuously built", "categories": ["natural resource", "land"], "amount": 7021.9}, {"name": "Transformation, to urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 4937}, {"name": "Transformation, to urban, green area", "categories": ["natural resource", "land"], "amount": 2072.5}, {"name": "Transformation, to urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 5895.4}, {"name": "Transformation, to wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}]}, {"unit": "kg Sb-Eq", "name": ["EF v3.1 no LT", "material resources: metals/minerals no LT", "abiotic depletion potential (ADP): elements (ultimate reserves) no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 4.545212805030338e-05}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.00297}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 6.04e-06}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 1.26e-05}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.0411}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 0.0004841517197042984}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.00427}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 5.343572902983674e-10}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 0.000673718497616036}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 6.544113975666994e-12}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 2.66249274670687e-10}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 6.52e-07}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 3.594003392114496e-05}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.308918482603777e-10}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 4.471605694701393e-05}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 5.823075919490471e-10}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 2.02e-09}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.0922}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.93e-05}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 1.6e-08}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 0.000103180813387238}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 0.194}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1.4e-11}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 5.5e-08}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 1.646069875295716e-05}, {"name": "Sodium nitrate", "categories": ["natural resource", "in ground"], "amount": 1.487682357320205e-08}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 4.358140883174752e-05}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.290510533131037e-07}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 7.07e-07}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.000193}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 1.289527155951242e-05}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 3.92505016360851e-10}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.43e-05}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 2.79e-08}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 0.00452}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 0.0005695419030770708}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 7.7e-07}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 5.69e-07}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}]}, {"unit": "kg CFC-11-Eq", "name": ["EF v3.1 no LT", "ozone depletion no LT", "ozone depletion potential (ODP) no LT"], "exchanges": [{"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.81}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.057}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.26}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.57}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 15.2}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.034}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.72}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "disease incidence", "name": ["EF v3.1 no LT", "particulate matter formation no LT", "impact on human health no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.6e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01757e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000238497}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.94042e-07}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 5.48544e-05}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}]}, {"unit": "kg NMVOC-Eq", "name": ["EF v3.1 no LT", "photochemical oxidant formation: human health no LT", "tropospheric ozone concentration increase no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 1.65}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.608}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1.42}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.709}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.318}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.731}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.828}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Acetone", "categories": ["air"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.155}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Benzene", "categories": ["air"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.23}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.595}, {"name": "Butane", "categories": ["air"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.595}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05}, {"name": "Butanol", "categories": ["air"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.454}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0389}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.845}, {"name": "Cumene", "categories": ["air"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.845}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.752}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.0422}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.319}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.208}, {"name": "Ethane", "categories": ["air"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.208}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0152}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.674}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.353}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.69}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.652}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.144}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.877}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.834}, {"name": "Heptane", "categories": ["air"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.834}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Hexane", "categories": ["air"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.814}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.519}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.115}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00845}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.236}, {"name": "Methanol", "categories": ["air"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.236}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0997}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.63}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.667}, {"name": "Pentane", "categories": ["air"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.667}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Propanal", "categories": ["air"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.35}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "Propane", "categories": ["air"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.948}, {"name": "Propanol", "categories": ["air"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.948}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9}, {"name": "Propene", "categories": ["air"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.9}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.253}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Styrene", "categories": ["air"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.049}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Toluene", "categories": ["air"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.549}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.235}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.78}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.296}]}, {"unit": "m3 world eq. deprived", "name": ["EF v3.1 no LT", "water use no LT", "user deprivation potential (deprivation-weighted water consumption) no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.95}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.95}, {"name": "Water", "categories": ["air"], "amount": 42.95}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 42.95}]}, {"unit": "mol H+-Eq", "name": ["EF v3.1", "acidification", "accumulated exceedance (AE)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 3.02}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.13467}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1.31}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.04821}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1", "climate change: biogenic", "global warming potential (GWP100)"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1", "climate change: fossil", "global warming potential (GWP100)"], "exchanges": [{"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1", "climate change: land use and land use change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}]}, {"unit": "CTUe", "name": ["EF v3.1", "ecotoxicity: freshwater", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9276}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 5.3426}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 61.45}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 224.58}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 137220}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 23240}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 62.294}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1824.6}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 8.2702}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 1001.1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 62.9}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 28.139}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 3689.2}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 315487.19221037}, {"name": "Abamectin", "categories": ["air"], "amount": 554148.578559852}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Abamectin", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 13773}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 4278.6}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 192.93}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 651800}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 1199.3}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 5.7469}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.2823}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15337}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 389000}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 19082}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 19082}, {"name": "Acrylate", "categories": ["water"], "amount": 19082}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3981.3}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Allyl chloride", "categories": ["water"], "amount": 105.28}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 116730000}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air"], "amount": 2002.745979017675}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 1991.389605163728}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.524933039988502e-17}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water"], "amount": 4351.936148782046}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1766.1}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 2493.2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 104.57}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 18.449}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 974460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air"], "amount": 3936.160566162338}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3932.23811982149}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.513617476334719e-17}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water"], "amount": 11236.40165143179}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.674241505374748e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4740.144065793249}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 849450}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 457560}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 322.16}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air"], "amount": 1285.034232822078}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1283.954063979948}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.099193197912493e-15}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water"], "amount": 3697.562482913057}, {"name": "Barium sulfide", "categories": ["water"], "amount": 152190}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 8762.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 791.57}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1787.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 1678.5}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 341750}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 55563}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 56281}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 16347000}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 70.262}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air"], "amount": 618.9529355888297}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 617.3705322217661}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 6.526234802747784e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water"], "amount": 1626.068806336683}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1629500000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 459480000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 4384.3}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 23.585}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 20.458}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 156.99}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 2607.6}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 408.5}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 146.86}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 738.53}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 323.15}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 398.15}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air"], "amount": 238177.2238474309}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 237902.7122128598}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 7.053900825124722e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water"], "amount": 674494.7621301207}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 7.47862628024277e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water"], "amount": 4470.250219771267}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 6286700}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2314.6}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 46693}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 102290}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 111310}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 5037700}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 1.3453e-19}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water"], "amount": 4.7248}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 301.44}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 301.44}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 55559.1411080776}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 70300.9604413129}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 11918}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 33711}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 118620}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 133.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 696.98}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 65.209}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 67.142}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1588300}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 393650000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.208875862910647e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water"], "amount": 952.2972968312423}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.489493252663161e-17}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water"], "amount": 12274.01347021746}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 1505}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air"], "amount": 2014.507718479836}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2010.987520873756}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.400122046360835e-17}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water"], "amount": 5530.110188853351}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air"], "amount": 17.0387771287493}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 17.00696037116091}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.332001250025555e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water"], "amount": 46.47592828149169}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 157664.999993603}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 2439}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 26453}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3663.1}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 101870000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 176740}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3063.7}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1383.9}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0036901}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0036787}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 916.03}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4.9517}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 2469400}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 154660000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 293.47}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 28.15}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 83.707}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 800.87}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 1320.5}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 31.193}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 31479000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 4483.1}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 1027.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 55683}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 196170}, {"name": "Dodecanol", "categories": ["water"], "amount": 22624}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 242.45}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1233.9}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 2259400}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 157664.999993603}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 495.88}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.1505}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 50.686}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 6258.5}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 36.878}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 122.76}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 1780.5}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 136.09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2722.6}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 12.866}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 80.053}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 125430000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 147290}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 757720}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1265100}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 6021800}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 3.0851}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 20.361}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 336590}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4250.7}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 6.8977}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 85.847}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 64.3102104356947}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2041.4}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 14617}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 1084.5}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 41912}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 25.8706937761006}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 298.96}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 59003}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 22194}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 301.44}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 58.72}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 89339}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 254580}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 960570}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 239130}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 2276.4422267126}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 375.32}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air"], "amount": 795.7333426635905}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 793.8224567056676}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 7.574304470573605e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water"], "amount": 158.0383373682407}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 802.63}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ground-"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water", "surface water"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water"], "amount": 1033.8}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 4025200000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 2234.5}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air"], "amount": 27.80611908286212}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.70215524027599}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.886357418817773e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water"], "amount": 68.25546277139645}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 1.1792}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 493.32}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 2169700}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air"], "amount": 19.94318085460731}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 19.88727144657841}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air"], "amount": 15972.69526442819}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 15871.61649678753}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.31875727413759e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water"], "amount": 33175.97305971487}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 393040}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2563.2}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 141.6}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 6459.6}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 5.9133}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 827960}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 221060}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 27.506}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 3961.6}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 215.57}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 31.451}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 176.69}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 223410}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 122620}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.3442680085561654}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.3439346651696575}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.197321478927571e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.9841866365016807}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 140.06}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1318.5}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air"], "amount": 9671.490845144066}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9658.017917373805}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.452235344870308e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water"], "amount": 27049.47608091963}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 3579.2}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 26696}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 239130}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 128.91}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 3919100}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 17344}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 10.724}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 2.0314}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 63.728}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 13653}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 20.943}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 37320}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 15139}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 742.46}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 100.4}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 44637}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 459.99}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 16.477}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 192.8}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 297260}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 904.99}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 5348.7}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 125.14}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 36647}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 1038000}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 30124000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 867770}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 381030}, {"name": "Saflufenacil", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air"], "amount": 30.16996657803469}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 30.13959371908529}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 2.042628203989072e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water"], "amount": 86.08008602421901}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water"], "amount": 4.6927}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air"], "amount": 64053.54859244861}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 63950.19866656793}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.906840719972556e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water"], "amount": 177087.2896818751}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 666940}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 15.261}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 42.676}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air"], "amount": 6317.818728103488}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 6311.78472154855}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.98284211011834e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water"], "amount": 18073.40979134071}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 2645.2}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 420180}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 159670}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 13171}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 301390}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 42358}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 53839000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1260.2}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air"], "amount": 1442.57764721605}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1441.342024998017}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.117103489229396e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water"], "amount": 4147.520198066774}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 92391}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 426440}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 770900}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 24258}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 770570}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air"], "amount": 203.8836811879324}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 203.2079983047431}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 6.470692433736435e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water"], "amount": 513.1042026334452}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 973.2}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 3281.6}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 269.69}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 15.307}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 101.88}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.50608}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 1376500000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 1661800}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 126.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 80.527}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 2.9538}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 361.96}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air"], "amount": 1710.725551638173}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1708.278576231147}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2464.904813447571}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 674.82}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air"], "amount": 628.4971011469244}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 626.9476836185197}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.305118122386737e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water"], "amount": 1659.512213981416}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 1062.6}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 1602.6}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 43.94}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 6045.4}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "CTUe", "name": ["EF v3.1", "ecotoxicity: freshwater, inorganics", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "Allyl chloride", "categories": ["water"], "amount": 105.28}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air"], "amount": 2002.745979017675}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 1991.389605163728}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.524933039988502e-17}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water"], "amount": 4351.936148782046}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1766.1}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 2493.2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 104.57}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air"], "amount": 3936.160566162338}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3932.23811982149}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.513617476334719e-17}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water"], "amount": 11236.40165143179}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.674241505374748e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4740.144065793249}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 322.16}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air"], "amount": 1285.034232822078}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1283.954063979948}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.099193197912493e-15}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water"], "amount": 3697.562482913057}, {"name": "Barium sulfide", "categories": ["water"], "amount": 152190}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air"], "amount": 618.9529355888297}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 617.3705322217661}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 6.526234802747784e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water"], "amount": 1626.068806336683}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 23.585}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 20.458}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 156.99}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 2607.6}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air"], "amount": 238177.2238474309}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 237902.7122128598}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 7.053900825124722e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water"], "amount": 674494.7621301207}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 7.47862628024277e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water"], "amount": 4470.250219771267}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 111310}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 1.3453e-19}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water"], "amount": 4.7248}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 301.44}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 301.44}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 11918}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 67.142}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.208875862910647e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water"], "amount": 952.2972968312423}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.489493252663161e-17}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water"], "amount": 12274.01347021746}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air"], "amount": 2014.507718479836}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2010.987520873756}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.400122046360835e-17}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water"], "amount": 5530.110188853351}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air"], "amount": 17.0387771287493}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 17.00696037116091}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.332001250025555e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water"], "amount": 46.47592828149169}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 26453}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 3.0851}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 20.361}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 59003}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 301.44}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 58.72}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 89339}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 375.32}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air"], "amount": 795.7333426635905}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 793.8224567056676}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 7.574304470573605e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water"], "amount": 158.0383373682407}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air"], "amount": 27.80611908286212}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.70215524027599}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.886357418817773e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water"], "amount": 68.25546277139645}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 1.1792}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air"], "amount": 19.94318085460731}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 19.88727144657841}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air"], "amount": 15972.69526442819}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 15871.61649678753}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.31875727413759e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water"], "amount": 33175.97305971487}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.3442680085561654}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.3439346651696575}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.197321478927571e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.9841866365016807}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air"], "amount": 9671.490845144066}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9658.017917373805}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.452235344870308e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water"], "amount": 27049.47608091963}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 10.724}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 2.0314}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 63.728}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 13653}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 20.943}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air"], "amount": 30.16996657803469}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 30.13959371908529}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 2.042628203989072e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water"], "amount": 86.08008602421901}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water"], "amount": 4.6927}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air"], "amount": 64053.54859244861}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 63950.19866656793}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.906840719972556e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water"], "amount": 177087.2896818751}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 15.261}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air"], "amount": 6317.818728103488}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 6311.78472154855}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.98284211011834e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water"], "amount": 18073.40979134071}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 13171}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air"], "amount": 1442.57764721605}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1441.342024998017}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.117103489229396e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water"], "amount": 4147.520198066774}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air"], "amount": 203.8836811879324}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 203.2079983047431}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 6.470692433736435e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water"], "amount": 513.1042026334452}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 15.307}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 80.527}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air"], "amount": 1710.725551638173}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1708.278576231147}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2464.904813447571}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air"], "amount": 628.4971011469244}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 626.9476836185197}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.305118122386737e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water"], "amount": 1659.512213981416}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}]}, {"unit": "CTUe", "name": ["EF v3.1", "ecotoxicity: freshwater, organics", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9276}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 5.3426}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 61.45}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 224.58}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 137220}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 23240}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 62.294}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1824.6}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 8.2702}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 1001.1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 62.9}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 28.139}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 3689.2}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 315487.19221037}, {"name": "Abamectin", "categories": ["air"], "amount": 554148.578559852}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Abamectin", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 13773}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 4278.6}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 192.93}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 651800}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 1199.3}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 5.7469}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.2823}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15337}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 389000}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 19082}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 19082}, {"name": "Acrylate", "categories": ["water"], "amount": 19082}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3981.3}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 116730000}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 18.449}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 974460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 849450}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 457560}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 8762.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 791.57}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1787.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 1678.5}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 341750}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 55563}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 56281}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 16347000}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 70.262}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1629500000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 459480000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 4384.3}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 408.5}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 146.86}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 738.53}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 323.15}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 398.15}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 6286700}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2314.6}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 46693}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 102290}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 5037700}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 55559.1411080776}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 70300.9604413129}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 33711}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 118620}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 133.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 696.98}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 65.209}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1588300}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 393650000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 1505}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 157664.999993603}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 2439}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3663.1}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 101870000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 176740}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3063.7}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1383.9}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0036901}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0036787}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 916.03}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4.9517}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 2469400}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 154660000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 293.47}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 28.15}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 83.707}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 800.87}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 1320.5}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 31.193}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 31479000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 4483.1}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 1027.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 55683}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 196170}, {"name": "Dodecanol", "categories": ["water"], "amount": 22624}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 242.45}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1233.9}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 2259400}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 157664.999993603}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 495.88}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.1505}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 50.686}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 6258.5}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 36.878}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 122.76}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 1780.5}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 136.09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2722.6}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 12.866}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 80.053}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 125430000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 147290}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 757720}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1265100}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 6021800}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 336590}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4250.7}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 6.8977}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 85.847}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 64.3102104356947}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2041.4}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 14617}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 1084.5}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 41912}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 25.8706937761006}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 298.96}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 22194}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 254580}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 960570}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 239130}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 2276.4422267126}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 802.63}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ground-"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water", "surface water"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water"], "amount": 1033.8}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 4025200000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 2234.5}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 493.32}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 2169700}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 393040}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2563.2}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 141.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 6459.6}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 5.9133}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 827960}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 221060}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 27.506}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 3961.6}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 215.57}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 31.451}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 176.69}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 223410}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 122620}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 140.06}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1318.5}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 3579.2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 26696}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 239130}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 128.91}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 3919100}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 17344}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 37320}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 15139}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 742.46}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 100.4}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 44637}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 459.99}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 16.477}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 192.8}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 297260}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 904.99}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 5348.7}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 125.14}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 36647}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 1038000}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 30124000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 867770}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 381030}, {"name": "Saflufenacil", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 666940}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 42.676}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 2645.2}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 420180}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 159670}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 301390}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 42358}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 53839000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1260.2}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 92391}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 426440}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 770900}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 24258}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 770570}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 973.2}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 3281.6}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 269.69}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 101.88}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.50608}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 1376500000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 1661800}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 126.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 2.9538}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 361.96}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 674.82}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 1062.6}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 1602.6}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 43.94}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 6045.4}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "MJ, net calorific value", "name": ["EF v3.1", "energy resources: non-renewable", "abiotic depletion potential (ADP): fossil fuels"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.76}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}]}, {"unit": "kg P-Eq", "name": ["EF v3.1", "eutrophication: freshwater", "fraction of nutrients reaching freshwater end compartment (P)"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["EF v3.1", "eutrophication: marine", "fraction of nutrients reaching marine end compartment (N)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.092}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water"], "amount": 0.778}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.028}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water"], "amount": 0.226}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.596}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water"], "amount": 0.304}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 1}, {"name": "Nitrogen", "categories": ["water"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.389}]}, {"unit": "mol N-Eq", "name": ["EF v3.1", "eutrophication: terrestrial", "accumulated exceedance (AE)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 13.47}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 3.16065}, {"name": "Nitric oxide", "categories": ["air"], "amount": 6.532}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 4.26}]}, {"unit": "CTUh", "name": ["EF v3.1", "human toxicity: carcinogenic", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 8.1867e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.1", "human toxicity: carcinogenic, inorganics", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}]}, {"unit": "CTUh", "name": ["EF v3.1", "human toxicity: carcinogenic, organics", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 8.1867e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.1", "human toxicity: non-carcinogenic", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.80160167313958e-05}, {"name": "Abamectin", "categories": ["air"], "amount": 0.000472506721099211}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Abamectin", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.50356882299721e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 2.53019085248595e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.3238e-10}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.1964e-10}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.00025564}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 1.18650289222135e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 9.59587362857198e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.57199659305063e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ground-"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water", "surface water"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "CTUh", "name": ["EF v3.1", "human toxicity: non-carcinogenic, inorganics", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}]}, {"unit": "CTUh", "name": ["EF v3.1", "human toxicity: non-carcinogenic, organics", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.80160167313958e-05}, {"name": "Abamectin", "categories": ["air"], "amount": 0.000472506721099211}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Abamectin", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.50356882299721e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 2.53019085248595e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.3238e-10}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.1964e-10}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.00025564}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 1.18650289222135e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 9.59587362857198e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.57199659305063e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ground-"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water", "surface water"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "kBq U235-Eq", "name": ["EF v3.1", "ionising radiation: human health", "human exposure efficiency relative to u235"], "exchanges": [{"name": "Americium-241", "categories": ["water", "ground-"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water"], "amount": 1.5}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0386}, {"name": "Antimony-125", "categories": ["water", "ground-"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ground-, long-term"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water"], "amount": 0.0007}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water"], "amount": 6.79}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water"], "amount": 7.86}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Carbon-14", "categories": ["air"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.0557}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00193}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0186}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.29e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.14e-05}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 4.8}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water"], "amount": 4.71}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0236}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000443}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 6.64e-06}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.015}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 3.14}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ground-, long-term"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water"], "amount": 0.00607}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.00679}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0236}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.000193}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 2.14}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ground-, long-term"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.114}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-235", "categories": ["air"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.107}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 6.71e-06}]}, {"unit": "dimensionless", "name": ["EF v3.1", "land use", "soil quality index"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 39.581}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 36.405}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 51.699}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 105.24}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 18.128}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 33.964}, {"name": "Occupation, forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 11.459}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 11.488}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 21.463}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 48.218}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 139.1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 38.973}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 58.117}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 17.602}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 138.81}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 121.55}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 161.52}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 69.262}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 28.288}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 165.22}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 116.16}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 48.764}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 138.72}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Transformation, from annual crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": -395.81}, {"name": "Transformation, from annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": -364.05}, {"name": "Transformation, from annual crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from arable land, unspecified use", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from bare area (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -516.99}, {"name": "Transformation, from dump site", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, slag compartment", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from forest, extensive", "categories": ["natural resource", "land"], "amount": -181.28}, {"name": "Transformation, from forest, intensive", "categories": ["natural resource", "land"], "amount": -339.64}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": -114.59}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -114.88}, {"name": "Transformation, from forest, unspecified", "categories": ["natural resource", "land"], "amount": -214.63}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": -482.18}, {"name": "Transformation, from industrial area", "categories": ["natural resource", "land"], "amount": -5911.8}, {"name": "Transformation, from mineral extraction site", "categories": ["natural resource", "land"], "amount": -4708.4}, {"name": "Transformation, from pasture, man made", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": -389.73}, {"name": "Transformation, from pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": -581.17}, {"name": "Transformation, from permanent crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -176.02}, {"name": "Transformation, from snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from traffic area, rail network", "categories": ["natural resource", "land"], "amount": -5899.2}, {"name": "Transformation, from traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": -5165.9}, {"name": "Transformation, from traffic area, road network", "categories": ["natural resource", "land"], "amount": -6864.8}, {"name": "Transformation, from unknown", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -282.88}, {"name": "Transformation, from urban, continuously built", "categories": ["natural resource", "land"], "amount": -7021.9}, {"name": "Transformation, from urban, discontinuously built", "categories": ["natural resource", "land"], "amount": -4937}, {"name": "Transformation, from urban, green area", "categories": ["natural resource", "land"], "amount": -2072.5}, {"name": "Transformation, from urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": -5895.4}, {"name": "Transformation, from wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, to annual crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 395.81}, {"name": "Transformation, to annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 364.05}, {"name": "Transformation, to annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to bare area (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 516.99}, {"name": "Transformation, to dump site", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to forest, extensive", "categories": ["natural resource", "land"], "amount": 181.28}, {"name": "Transformation, to forest, intensive", "categories": ["natural resource", "land"], "amount": 339.64}, {"name": "Transformation, to forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 114.59}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 114.88}, {"name": "Transformation, to forest, unspecified", "categories": ["natural resource", "land"], "amount": 214.63}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 482.18}, {"name": "Transformation, to industrial area", "categories": ["natural resource", "land"], "amount": 5911.8}, {"name": "Transformation, to mineral extraction site", "categories": ["natural resource", "land"], "amount": 4708.4}, {"name": "Transformation, to pasture, man made", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 389.73}, {"name": "Transformation, to pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 581.17}, {"name": "Transformation, to permanent crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 176.02}, {"name": "Transformation, to snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to traffic area, rail network", "categories": ["natural resource", "land"], "amount": 5899.2}, {"name": "Transformation, to traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 5165.9}, {"name": "Transformation, to traffic area, road network", "categories": ["natural resource", "land"], "amount": 6864.8}, {"name": "Transformation, to unknown", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 282.88}, {"name": "Transformation, to urban, continuously built", "categories": ["natural resource", "land"], "amount": 7021.9}, {"name": "Transformation, to urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 4937}, {"name": "Transformation, to urban, green area", "categories": ["natural resource", "land"], "amount": 2072.5}, {"name": "Transformation, to urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 5895.4}, {"name": "Transformation, to wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}]}, {"unit": "kg Sb-Eq", "name": ["EF v3.1", "material resources: metals/minerals", "abiotic depletion potential (ADP): elements (ultimate reserves)"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 4.545212805030338e-05}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.00297}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 6.04e-06}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 1.26e-05}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.0411}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 0.0004841517197042984}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.00427}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 5.343572902983674e-10}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 0.000673718497616036}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 6.544113975666994e-12}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 2.66249274670687e-10}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 6.52e-07}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 3.594003392114496e-05}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.308918482603777e-10}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 4.471605694701393e-05}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 5.823075919490471e-10}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 2.02e-09}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.0922}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.93e-05}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 1.6e-08}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 0.000103180813387238}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 0.194}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1.4e-11}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 5.5e-08}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 1.646069875295716e-05}, {"name": "Sodium nitrate", "categories": ["natural resource", "in ground"], "amount": 1.487682357320205e-08}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 4.358140883174752e-05}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.290510533131037e-07}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 7.07e-07}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.000193}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 1.289527155951242e-05}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 3.92505016360851e-10}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.43e-05}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 2.79e-08}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 0.00452}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 0.0005695419030770708}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 7.7e-07}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 5.69e-07}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}]}, {"unit": "kg CFC-11-Eq", "name": ["EF v3.1", "ozone depletion", "ozone depletion potential (ODP)"], "exchanges": [{"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.81}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.057}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.26}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.57}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 15.2}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.034}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.72}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "disease incidence", "name": ["EF v3.1", "particulate matter formation", "impact on human health"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.6e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01757e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000238497}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.94042e-07}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 5.48544e-05}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}]}, {"unit": "kg NMVOC-Eq", "name": ["EF v3.1", "photochemical oxidant formation: human health", "tropospheric ozone concentration increase"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 1.65}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.608}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1.42}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.709}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.318}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.731}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.828}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Acetone", "categories": ["air"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.155}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Benzene", "categories": ["air"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.23}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.595}, {"name": "Butane", "categories": ["air"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.595}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05}, {"name": "Butanol", "categories": ["air"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.454}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0389}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.845}, {"name": "Cumene", "categories": ["air"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.845}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.752}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.0422}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.319}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.208}, {"name": "Ethane", "categories": ["air"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.208}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0152}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.674}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.353}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.69}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.652}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.144}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.877}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.834}, {"name": "Heptane", "categories": ["air"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.834}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Hexane", "categories": ["air"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.814}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.519}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.115}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00845}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.236}, {"name": "Methanol", "categories": ["air"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.236}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0997}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.63}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.667}, {"name": "Pentane", "categories": ["air"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.667}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Propanal", "categories": ["air"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.35}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "Propane", "categories": ["air"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.948}, {"name": "Propanol", "categories": ["air"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.948}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9}, {"name": "Propene", "categories": ["air"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.9}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.253}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Styrene", "categories": ["air"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.049}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Toluene", "categories": ["air"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.549}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.235}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.78}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.296}]}, {"unit": "m3 world eq. deprived", "name": ["EF v3.1", "water use", "user deprivation potential (deprivation-weighted water consumption)"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 42.95}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.95}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.95}, {"name": "Water", "categories": ["air"], "amount": 42.95}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 42.95}]}, {"unit": "EUR 2018", "name": ["EPS 2020d no LT", "emissions to air no LT", "monetary impact value no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2.98}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 9.29}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.82}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 9.26}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.17}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.749}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.54}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2.36}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": -43.4}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 38.4}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 39.5}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 39.8}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.62}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.22}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.93}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 27.3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.64}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 343}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.56}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 444}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1580}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 271}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 47.9}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.936}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 674}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 28.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 183}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 2450}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 3580}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 9.36}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.32}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.43}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.95}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.16}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.07}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.387}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.65}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.71}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": -6.8}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": -6.64}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": -19.7}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.55e-07}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.000514}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.000128}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 749}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2400}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 605}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 201}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 4450}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3330}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 52.2}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 234}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.46}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 595}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 1810}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3970}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 8.62}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.61}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.89}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 8.44}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.46}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 5130}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.01}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 39.7}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 4.83}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.56}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.000128}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.13}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 9.49}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.07}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.983}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 7.71e-05}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.93e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 2.47}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": -8.45}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 7480}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 0.00385}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 39.3}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 0.00103}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.0008990000000000001}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air"], "amount": 2.98}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 9.29}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.82}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air"], "amount": 9.26}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.17}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.85}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.749}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54}, {"name": "Acetone", "categories": ["air"], "amount": 1.54}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air"], "amount": 2.36}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air"], "amount": -43.4}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 38.4}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.5}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.5}, {"name": "Benzene", "categories": ["air"], "amount": 39.5}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 39.8}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air"], "amount": 2.62}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22}, {"name": "Butane", "categories": ["air"], "amount": 2.22}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.93}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.93}, {"name": "Butanol", "categories": ["air"], "amount": 9.93}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air"], "amount": 27.3}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 0.288}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.08}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.0109}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air"], "amount": 4.64}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 343}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 343}, {"name": "Chromium III", "categories": ["air"], "amount": 343}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.56}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.64}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5}, {"name": "Ethane", "categories": ["air"], "amount": 1.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 444}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1580}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 271}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 47.9}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.936}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 674}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 28.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 183}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 2450}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 3580}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1060}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air"], "amount": 9.36}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.32}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.95}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 9.16}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air"], "amount": 1.84}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.07}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air"], "amount": 0.387}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.65}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.65}, {"name": "Heptane", "categories": ["air"], "amount": 2.65}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71}, {"name": "Hexane", "categories": ["air"], "amount": 2.71}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": -6.8}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -6.8}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": -6.64}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": -19.7}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.55e-07}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.000514}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air"], "amount": 2.57e-07}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air"], "amount": 0.000128}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 8.21}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 12}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 749}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2400}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 605}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 201}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 4450}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3330}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 52.2}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 234}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air"], "amount": 8.21}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.46}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 595}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 1810}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1550}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3970}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62}, {"name": "Methanol", "categories": ["air"], "amount": 8.62}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air"], "amount": 8.61}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.89}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air"], "amount": 8.44}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.46}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air"], "amount": 40.2}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 5130}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 9.01}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air"], "amount": 39.7}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 4.83}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.56}, {"name": "Pentane", "categories": ["air"], "amount": 2.56}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.000128}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.13}, {"name": "Propanal", "categories": ["air"], "amount": 2.13}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Propane", "categories": ["air"], "amount": 1.96}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49}, {"name": "Propanol", "categories": ["air"], "amount": 9.49}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.07}, {"name": "Propene", "categories": ["air"], "amount": 3.07}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.983}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air"], "amount": 7.71e-05}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air"], "amount": 1.93e-06}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47}, {"name": "Styrene", "categories": ["air"], "amount": 2.47}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": -8.45}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 7480}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.64}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air"], "amount": 0.00385}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.3}, {"name": "Toluene", "categories": ["air"], "amount": 39.3}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air"], "amount": 0.00103}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.0008990000000000001}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.56}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 8.21}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Sulfur oxides", "categories": ["air"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": -8.45}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 0.288}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 0.288}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.35}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 0.288}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.43}, {"name": "Nitric oxide", "categories": ["air"], "amount": -26.4}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene", "categories": ["air"], "amount": 3}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": -6.8}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2780}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1910}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2780}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1910}, {"name": "Butene", "categories": ["air"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3.05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air"], "amount": 325}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 9.01}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 76.7}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": -26.4}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 232}]}, {"unit": "EUR 2018", "name": ["EPS 2020d no LT", "emissions to soil no LT", "monetary impact value no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.856}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.348}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 344}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.319}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 6.55}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.69}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.88}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 39.9}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.481}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.238}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.271}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.28}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.318}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.37}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.84}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Diclofop", "categories": ["soil", "agricultural"], "amount": 0.57}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.467}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 0.887}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.19}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 124}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.543}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 12.8}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.01}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.228}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 3.68}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 4.85}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 187}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 208}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 4.91}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 1.69}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1.14}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 0.981}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.955}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 21.6}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.182}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.4}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 3.64}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.461}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.474}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.348}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.481}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.274}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 0.488}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.3}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 16}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.02}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.176}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 53.3}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 5.91}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 25.4}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.643}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.6}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.232}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.214}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 0.643}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 247}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 16.3}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.273}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.672}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 0.346}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.76}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.454}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 0.496}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 3.72}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 4.89}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 22.1}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.217}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.396}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Furathiocarb", "categories": ["soil", "agricultural"], "amount": 7.63}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 4.05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 0.541}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.461}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 0.973}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.239}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 0.471}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 1.04}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.349}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.28}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 1.14}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 1.3}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 197}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.575}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 6.76}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 2.39}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.344}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 4.25}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 13.6}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.33}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.43}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.43}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 65.4}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 0.834}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 4.28}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.95}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 9.24}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Cupric hydroxide", "categories": ["soil", "agricultural"], "amount": 85.6}, {"name": "Tetraconazole", "categories": ["soil", "agricultural"], "amount": 1.43}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.192}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.324}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 78.3}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 0.973}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.318}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 29.3}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4.89}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 4.91}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.4}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.55}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 0.224}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 4.05}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 78.3}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 0.526}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.526}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.856}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.64}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 1.79}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.672}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.214}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.05}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 18.8}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.192}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.714}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.714}]}, {"unit": "EUR 2018", "name": ["EPS 2020d no LT", "emissions to water no LT", "monetary impact value no LT"], "exchanges": [{"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.00032}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 23800}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.00032}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 0.00032}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 23800}, {"name": "Cadmium II", "categories": ["water"], "amount": 23800}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 395}, {"name": "Mercury II", "categories": ["water"], "amount": 395}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.00545}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.00218}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water"], "amount": 0.0414}, {"name": "Arsenic ion", "categories": ["water"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 7300}]}, {"unit": "EUR 2018", "name": ["EPS 2020d no LT", "energy resources: non-renewable, fossil no LT", "monetary impact value no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.076}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.258}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.56875}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.56875}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.727}]}, {"unit": "EUR 2018", "name": ["EPS 2020d no LT", "land use no LT", "monetary impact value no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.6}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.00026}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.00138}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 9.45}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.568}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 9.57}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.61}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.61}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.6}]}, {"unit": "EUR 2018", "name": ["EPS 2020d no LT", "material resources: metals no LT", "monetary impact value no LT"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 53400}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 81.8}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 39.1}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5950}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1380}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 175}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 4.55}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.09}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.258}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 202}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 737}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 13100000}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1160}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.182}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 5240000}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 635}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 205}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 10}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 53400}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 5.09}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 78200}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 49.1}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 26200}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 8730}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 40300}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 9.09}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 81.8}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 2280}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 5950}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 1380}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 3270}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 903}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 6550}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 238000000}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 175}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 4.55}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 16400}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 202}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 436}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 105000000}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 737}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 13100000}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 175000000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 1160}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 374}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 45.5}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 5240000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 8180}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Thorium", "categories": ["natural resource", "in ground"], "amount": 1870}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 15900}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 2380}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 238}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 205}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 489}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.181}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 39.1}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.909}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 635}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 709}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.45}]}, {"unit": "EUR 2018", "name": ["EPS 2020d no LT", "total no LT", "monetary impact value no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2.98}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.856}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 9.29}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.82}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 9.26}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.17}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.749}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.54}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2.36}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.348}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 344}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": -43.4}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.319}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 38.4}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 39.5}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 39.8}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 6.55}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.00032}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.69}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.88}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.62}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.22}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.93}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 27.3}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 53400}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 23800}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 39.9}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 81.8}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.481}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.64}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 343}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 39.1}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.238}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.076}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.258}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.56}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.271}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.28}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.318}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.37}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.84}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Diclofop", "categories": ["soil", "agricultural"], "amount": 0.57}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.467}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 0.887}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.19}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 124}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.543}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 12.8}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.01}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.228}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 3.68}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 444}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1580}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 271}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 47.9}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.936}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 674}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 28.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 183}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 2450}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 3580}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 9.36}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.32}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.43}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.95}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.16}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5950}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 4.85}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 187}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 208}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 4.91}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 1.69}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1.14}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 0.981}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.07}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.387}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.955}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1380}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.65}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.71}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": -6.8}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": -6.64}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": -19.7}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.55e-07}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.000514}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 21.6}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.182}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.4}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 175}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.000128}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 3.64}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 4.55}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.461}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.474}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.348}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.481}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.274}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.258}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 0.488}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 749}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2400}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 605}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 201}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 4450}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3330}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 52.2}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 234}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.46}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 595}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 1810}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3970}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 8.62}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 16}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.61}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.89}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 8.44}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.02}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.46}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 202}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 5130}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.01}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.6}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.00026}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.00138}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 9.45}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.568}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 9.57}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.61}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.61}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.6}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.176}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 53.3}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 5.91}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 39.7}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 4.83}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 25.4}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.56}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.643}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.6}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.000128}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 737}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.13}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.232}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 9.49}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.07}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.214}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.983}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 7.71e-05}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.93e-06}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 13100000}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1160}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 0.643}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 2.47}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": -8.45}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 7480}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.182}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 247}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 16.3}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 5240000}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.273}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.672}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 0.00385}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 635}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 39.3}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 0.346}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.76}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.454}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 0.496}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 0.00103}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.0008990000000000001}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air"], "amount": 2.98}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 9.29}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.82}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air"], "amount": 9.26}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.17}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.85}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.749}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54}, {"name": "Acetone", "categories": ["air"], "amount": 1.54}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air"], "amount": 2.36}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air"], "amount": -43.4}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 38.4}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.5}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.5}, {"name": "Benzene", "categories": ["air"], "amount": 39.5}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 39.8}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air"], "amount": 2.62}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22}, {"name": "Butane", "categories": ["air"], "amount": 2.22}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.93}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.93}, {"name": "Butanol", "categories": ["air"], "amount": 9.93}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air"], "amount": 27.3}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 0.288}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.08}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.0109}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air"], "amount": 4.64}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 343}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 343}, {"name": "Chromium III", "categories": ["air"], "amount": 343}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.56}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.64}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5}, {"name": "Ethane", "categories": ["air"], "amount": 1.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 444}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1580}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 271}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 47.9}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.936}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 674}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 28.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 183}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 2450}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 3580}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1060}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air"], "amount": 9.36}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.32}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.95}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 9.16}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air"], "amount": 1.84}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.07}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air"], "amount": 0.387}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.65}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.65}, {"name": "Heptane", "categories": ["air"], "amount": 2.65}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71}, {"name": "Hexane", "categories": ["air"], "amount": 2.71}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": -6.8}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -6.8}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": -6.64}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": -19.7}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.55e-07}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.000514}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air"], "amount": 2.57e-07}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air"], "amount": 0.000128}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 8.21}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 12}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 749}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2400}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 605}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 201}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 4450}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3330}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 52.2}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 234}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air"], "amount": 8.21}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.46}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 595}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 1810}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1550}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3970}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62}, {"name": "Methanol", "categories": ["air"], "amount": 8.62}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air"], "amount": 8.61}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.89}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air"], "amount": 8.44}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.46}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air"], "amount": 40.2}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 5130}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 9.01}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air"], "amount": 39.7}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 4.83}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.56}, {"name": "Pentane", "categories": ["air"], "amount": 2.56}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.000128}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.13}, {"name": "Propanal", "categories": ["air"], "amount": 2.13}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Propane", "categories": ["air"], "amount": 1.96}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49}, {"name": "Propanol", "categories": ["air"], "amount": 9.49}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.07}, {"name": "Propene", "categories": ["air"], "amount": 3.07}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.983}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air"], "amount": 7.71e-05}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air"], "amount": 1.93e-06}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47}, {"name": "Styrene", "categories": ["air"], "amount": 2.47}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": -8.45}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 7480}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.64}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air"], "amount": 0.00385}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.3}, {"name": "Toluene", "categories": ["air"], "amount": 39.3}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air"], "amount": 0.00103}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.0008990000000000001}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.00032}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 0.00032}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 23800}, {"name": "Cadmium II", "categories": ["water"], "amount": 23800}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 395}, {"name": "Mercury II", "categories": ["water"], "amount": 395}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.00545}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.00218}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water"], "amount": 0.0414}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 3.72}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 4.89}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 22.1}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.217}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.396}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Furathiocarb", "categories": ["soil", "agricultural"], "amount": 7.63}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 4.05}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.56}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 0.541}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 8.21}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Sulfur oxides", "categories": ["air"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": -8.45}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 0.288}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 0.288}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.35}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 0.288}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 205}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.461}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 0.973}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.43}, {"name": "Nitric oxide", "categories": ["air"], "amount": -26.4}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.239}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 0.471}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 1.04}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.349}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.28}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 1.14}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 1.3}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 197}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.575}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 6.76}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 2.39}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.344}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 4.25}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 13.6}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.33}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.43}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.43}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 65.4}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 0.834}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 4.28}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.95}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 9.24}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 10}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 53400}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 5.09}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 78200}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 49.1}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 26200}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 8730}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 40300}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 9.09}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 81.8}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 2280}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 5950}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 1380}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 3270}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 903}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 6550}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 238000000}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 175}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 4.55}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 16400}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 202}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 436}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 105000000}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 737}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 13100000}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 175000000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 1160}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 374}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 45.5}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 5240000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 8180}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Thorium", "categories": ["natural resource", "in ground"], "amount": 1870}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 15900}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 2380}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 238}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 205}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 489}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.181}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 39.1}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.909}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 635}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Cupric hydroxide", "categories": ["soil", "agricultural"], "amount": 85.6}, {"name": "Tetraconazole", "categories": ["soil", "agricultural"], "amount": 1.43}, {"name": "Ethylene", "categories": ["air"], "amount": 3}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 709}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": -6.8}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2780}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1910}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.192}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2780}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1910}, {"name": "Butene", "categories": ["air"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3.05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air"], "amount": 325}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 9.01}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.324}, {"name": "Arsenic ion", "categories": ["water"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 7300}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 78.3}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 0.973}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.318}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 29.3}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4.89}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 4.91}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.4}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.55}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 0.224}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 4.05}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 78.3}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 0.526}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.526}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.856}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.64}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 1.79}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.672}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.214}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.05}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 18.8}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.192}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.05}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.56875}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.714}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.714}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 76.7}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": -26.4}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.56875}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.727}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 232}]}, {"unit": "EUR 2018", "name": ["EPS 2020d", "emissions to air", "monetary impact value"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2.98}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 9.29}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.82}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 9.26}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.17}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.749}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.54}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2.36}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": -43.4}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 38.4}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 39.5}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 39.8}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.62}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.22}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.93}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 27.3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.64}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 343}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.56}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 444}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1580}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 271}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 47.9}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.936}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 674}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 28.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 183}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 2450}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 3580}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 9.36}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.32}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.43}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.95}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.16}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.07}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.387}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.65}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.71}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": -6.8}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": -6.64}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": -19.7}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.55e-07}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.000514}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.000128}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 749}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2400}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 605}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 201}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 4450}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3330}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 52.2}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 234}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.46}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 595}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 1810}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3970}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 8.62}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.61}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.89}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 8.44}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.46}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 5130}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.01}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 39.7}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 4.83}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.56}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.000128}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.13}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 9.49}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.07}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.983}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 7.71e-05}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.93e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 2.47}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": -8.45}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 7480}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 0.00385}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 39.3}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 0.00103}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.0008990000000000001}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air"], "amount": 2.98}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 9.29}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.82}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air"], "amount": 9.26}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.17}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.85}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.749}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 1.54}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54}, {"name": "Acetone", "categories": ["air"], "amount": 1.54}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air"], "amount": 2.36}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air"], "amount": -43.4}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 38.4}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.5}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 39.5}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.5}, {"name": "Benzene", "categories": ["air"], "amount": 39.5}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 39.8}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air"], "amount": 2.62}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.22}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22}, {"name": "Butane", "categories": ["air"], "amount": 2.22}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.93}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 9.93}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.93}, {"name": "Butanol", "categories": ["air"], "amount": 9.93}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air"], "amount": 27.3}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 0.288}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.08}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.0109}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air"], "amount": 4.64}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 343}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 343}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 343}, {"name": "Chromium III", "categories": ["air"], "amount": 343}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.56}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.64}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1.5}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5}, {"name": "Ethane", "categories": ["air"], "amount": 1.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 444}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1580}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 271}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 47.9}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.936}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 674}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 28.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 183}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 2450}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 3580}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1060}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air"], "amount": 9.36}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.32}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.43}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.95}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 9.16}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air"], "amount": 1.84}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.07}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air"], "amount": 0.387}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.65}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 2.65}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.65}, {"name": "Heptane", "categories": ["air"], "amount": 2.65}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.71}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71}, {"name": "Hexane", "categories": ["air"], "amount": 2.71}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": -6.8}, {"name": "Hydrochloric acid", "categories": ["air", "low population density, long-term"], "amount": -6.8}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -6.8}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": -6.64}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": -19.7}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.55e-07}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.000514}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air"], "amount": 2.57e-07}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air"], "amount": 0.000128}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 8.21}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 12}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 749}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2400}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 605}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 201}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 4450}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3330}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 52.2}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 234}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air"], "amount": 8.21}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.46}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 595}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 1810}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1550}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3970}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 8.62}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62}, {"name": "Methanol", "categories": ["air"], "amount": 8.62}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air"], "amount": 8.61}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.89}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air"], "amount": 8.44}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.46}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air"], "amount": 40.2}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 5130}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 9.01}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air"], "amount": 39.7}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 4.83}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.56}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.56}, {"name": "Pentane", "categories": ["air"], "amount": 2.56}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.000128}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.13}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 2.13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.13}, {"name": "Propanal", "categories": ["air"], "amount": 2.13}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.96}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Propane", "categories": ["air"], "amount": 1.96}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 9.49}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49}, {"name": "Propanol", "categories": ["air"], "amount": 9.49}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.07}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.07}, {"name": "Propene", "categories": ["air"], "amount": 3.07}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.983}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air"], "amount": 7.71e-05}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air"], "amount": 1.93e-06}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 2.47}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47}, {"name": "Styrene", "categories": ["air"], "amount": 2.47}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": -8.45}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 7480}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.64}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air"], "amount": 0.00385}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.3}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 39.3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.3}, {"name": "Toluene", "categories": ["air"], "amount": 39.3}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air"], "amount": 0.00103}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.0008990000000000001}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.56}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 8.21}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.288}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 8.21}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Sulfur oxides", "categories": ["air"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": -8.45}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 0.288}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 0.288}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 9.35}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 0.288}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.43}, {"name": "Nitric oxide", "categories": ["air"], "amount": -26.4}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene", "categories": ["air"], "amount": 3}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": -6.8}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2780}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1910}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2780}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1910}, {"name": "Butene", "categories": ["air"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3.05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air"], "amount": 325}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 9.01}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 76.7}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": -26.4}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 232}]}, {"unit": "EUR 2018", "name": ["EPS 2020d", "emissions to soil", "monetary impact value"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.856}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.348}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 344}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.319}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 6.55}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.69}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.88}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 39.9}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.481}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.238}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.271}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.28}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.318}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.37}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.84}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Diclofop", "categories": ["soil", "agricultural"], "amount": 0.57}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.467}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 0.887}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.19}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 124}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.543}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 12.8}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.01}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.228}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 3.68}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 4.85}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 187}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 208}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 4.91}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 1.69}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1.14}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 0.981}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.955}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 21.6}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.182}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.4}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 3.64}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.461}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.474}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.348}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.481}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.274}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 0.488}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.3}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 16}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.02}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.176}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 53.3}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 5.91}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 25.4}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.643}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.6}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.232}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.214}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 0.643}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 247}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 16.3}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.273}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.672}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 0.346}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.76}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.454}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 0.496}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 3.72}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 4.89}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 22.1}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.217}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.396}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Furathiocarb", "categories": ["soil", "agricultural"], "amount": 7.63}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 4.05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 0.541}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.461}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 0.973}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.239}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 0.471}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 1.04}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.349}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.28}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 1.14}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 1.3}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 197}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.575}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 6.76}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 2.39}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.344}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 4.25}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 13.6}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.33}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.43}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.43}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 65.4}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 0.834}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 4.28}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.95}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 9.24}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Cupric hydroxide", "categories": ["soil", "agricultural"], "amount": 85.6}, {"name": "Tetraconazole", "categories": ["soil", "agricultural"], "amount": 1.43}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.192}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.324}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 78.3}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 0.973}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.318}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 29.3}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4.89}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 4.91}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.4}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.55}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 0.224}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 4.05}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 78.3}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 0.526}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.526}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.856}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.64}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 1.79}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.672}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.214}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.05}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 18.8}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.192}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.714}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.714}]}, {"unit": "EUR 2018", "name": ["EPS 2020d", "emissions to water", "monetary impact value"], "exchanges": [{"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.00032}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 23800}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-, long-term"], "amount": 0.00032}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.00032}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 0.00032}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 23800}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 23800}, {"name": "Cadmium II", "categories": ["water"], "amount": 23800}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 395}, {"name": "Mercury II", "categories": ["water"], "amount": 395}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.00545}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.00218}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water"], "amount": 0.0414}, {"name": "Arsenic ion", "categories": ["water"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 7300}]}, {"unit": "EUR 2018", "name": ["EPS 2020d", "energy resources: non-renewable, fossil", "monetary impact value"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.076}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.258}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.56875}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.56875}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.727}]}, {"unit": "EUR 2018", "name": ["EPS 2020d", "land use", "monetary impact value"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.6}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.00026}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.00138}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 9.45}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.568}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 9.57}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.61}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.61}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.6}]}, {"unit": "EUR 2018", "name": ["EPS 2020d", "material resources: metals", "monetary impact value"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 53400}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 81.8}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 39.1}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5950}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1380}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 175}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 4.55}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.09}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.258}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 202}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 737}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 13100000}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1160}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.182}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 5240000}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 635}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 205}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 10}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 53400}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 5.09}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 78200}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 49.1}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 26200}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 8730}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 40300}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 9.09}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 81.8}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 2280}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 5950}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 1380}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 3270}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 903}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 6550}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 238000000}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 175}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 4.55}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 16400}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 202}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 436}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 105000000}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 737}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 13100000}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 175000000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 1160}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 374}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 45.5}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 5240000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 8180}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Thorium", "categories": ["natural resource", "in ground"], "amount": 1870}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 15900}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 2380}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 238}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 205}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 489}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.181}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 39.1}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.909}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 635}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 709}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.45}]}, {"unit": "EUR 2018", "name": ["EPS 2020d", "total", "monetary impact value"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2.98}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.856}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 9.29}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.82}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 9.26}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.17}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.749}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.54}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2.36}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.348}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 344}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": -43.4}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.319}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 38.4}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 39.5}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 39.8}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 6.55}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.00032}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.69}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.88}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.62}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.22}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.93}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 27.3}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 53400}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 23800}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 39.9}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 81.8}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.481}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.64}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 343}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 39.1}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.238}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.076}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.258}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.56}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.271}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.28}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.318}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.37}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.84}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Diclofop", "categories": ["soil", "agricultural"], "amount": 0.57}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.467}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 0.887}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.19}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 124}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.543}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 12.8}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.01}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.228}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 3.68}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 444}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1580}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 271}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 47.9}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.936}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 674}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 28.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 183}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 2450}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 3580}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 9.36}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.32}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.43}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.95}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.16}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5950}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 4.85}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 187}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 208}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 4.91}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 1.69}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1.14}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 0.981}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.07}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.387}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.955}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1380}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.65}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.71}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": -6.8}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": -6.64}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": -19.7}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.55e-07}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.000514}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 21.6}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.182}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.4}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 175}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.000128}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 3.64}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 4.55}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.461}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.474}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.348}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.481}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.274}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.258}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 0.488}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 749}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2400}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 605}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 201}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 4450}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3330}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 52.2}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 234}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.46}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 595}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 1810}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3970}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 8.62}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 16}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.61}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.89}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 8.44}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.02}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.46}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 202}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 5130}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.01}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.6}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.00026}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.00138}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 9.45}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.568}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 9.57}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.61}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.61}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.6}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.176}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 53.3}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 5.91}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 39.7}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 4.83}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 25.4}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.56}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.643}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.6}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.000128}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 737}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.13}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.232}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 9.49}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.07}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.214}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.983}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 7.71e-05}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.93e-06}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 13100000}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1160}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 0.643}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 2.47}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": -8.45}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 7480}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.182}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 247}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 16.3}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 5240000}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.273}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.672}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 0.00385}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 635}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 39.3}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 0.346}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.76}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.454}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 0.496}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 0.00103}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.0008990000000000001}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air"], "amount": 2.98}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 9.29}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.82}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air"], "amount": 9.26}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.17}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.85}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.749}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 1.54}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54}, {"name": "Acetone", "categories": ["air"], "amount": 1.54}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air"], "amount": 2.36}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air"], "amount": -43.4}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 38.4}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.5}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 39.5}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.5}, {"name": "Benzene", "categories": ["air"], "amount": 39.5}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 39.8}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air"], "amount": 2.62}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.22}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22}, {"name": "Butane", "categories": ["air"], "amount": 2.22}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.93}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 9.93}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.93}, {"name": "Butanol", "categories": ["air"], "amount": 9.93}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air"], "amount": 27.3}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 0.288}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.08}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.0109}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air"], "amount": 4.64}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 343}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 343}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 343}, {"name": "Chromium III", "categories": ["air"], "amount": 343}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.56}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.64}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1.5}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5}, {"name": "Ethane", "categories": ["air"], "amount": 1.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 444}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1580}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 271}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 47.9}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.936}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 674}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 28.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 183}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 2450}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 3580}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1060}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air"], "amount": 9.36}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.32}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.43}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.95}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 9.16}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air"], "amount": 1.84}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.07}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air"], "amount": 0.387}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.65}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 2.65}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.65}, {"name": "Heptane", "categories": ["air"], "amount": 2.65}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.71}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71}, {"name": "Hexane", "categories": ["air"], "amount": 2.71}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": -6.8}, {"name": "Hydrochloric acid", "categories": ["air", "low population density, long-term"], "amount": -6.8}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -6.8}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": -6.64}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": -19.7}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.55e-07}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.000514}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air"], "amount": 2.57e-07}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air"], "amount": 0.000128}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 8.21}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 12}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 749}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2400}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 605}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 201}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 4450}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3330}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 52.2}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 234}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air"], "amount": 8.21}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.46}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 595}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 1810}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1550}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3970}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 8.62}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62}, {"name": "Methanol", "categories": ["air"], "amount": 8.62}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air"], "amount": 8.61}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.89}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air"], "amount": 8.44}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.46}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air"], "amount": 40.2}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 5130}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 9.01}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air"], "amount": 39.7}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 4.83}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.56}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.56}, {"name": "Pentane", "categories": ["air"], "amount": 2.56}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.000128}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.13}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 2.13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.13}, {"name": "Propanal", "categories": ["air"], "amount": 2.13}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.96}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Propane", "categories": ["air"], "amount": 1.96}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 9.49}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49}, {"name": "Propanol", "categories": ["air"], "amount": 9.49}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.07}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.07}, {"name": "Propene", "categories": ["air"], "amount": 3.07}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.983}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air"], "amount": 7.71e-05}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air"], "amount": 1.93e-06}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 2.47}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47}, {"name": "Styrene", "categories": ["air"], "amount": 2.47}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": -8.45}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 7480}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.64}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air"], "amount": 0.00385}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.3}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 39.3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.3}, {"name": "Toluene", "categories": ["air"], "amount": 39.3}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air"], "amount": 0.00103}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.0008990000000000001}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-, long-term"], "amount": 0.00032}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.00032}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 0.00032}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 23800}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 23800}, {"name": "Cadmium II", "categories": ["water"], "amount": 23800}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 395}, {"name": "Mercury II", "categories": ["water"], "amount": 395}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.00545}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.00218}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water"], "amount": 0.0414}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 3.72}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 4.89}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 22.1}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.217}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.396}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Furathiocarb", "categories": ["soil", "agricultural"], "amount": 7.63}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 4.05}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.56}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 0.541}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 8.21}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.288}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 8.21}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Sulfur oxides", "categories": ["air"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": -8.45}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 0.288}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 0.288}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 9.35}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 0.288}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 205}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.461}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 0.973}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.43}, {"name": "Nitric oxide", "categories": ["air"], "amount": -26.4}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.239}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 0.471}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 1.04}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.349}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.28}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 1.14}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 1.3}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 197}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.575}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 6.76}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 2.39}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.344}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 4.25}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 13.6}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.33}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.43}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.43}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 65.4}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 0.834}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 4.28}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.95}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 9.24}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 10}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 53400}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 5.09}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 78200}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 49.1}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 26200}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 8730}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 40300}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 9.09}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 81.8}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 2280}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 5950}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 1380}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 3270}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 903}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 6550}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 238000000}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 175}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 4.55}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 16400}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 202}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 436}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 105000000}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 737}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 13100000}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 175000000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 1160}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 374}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 45.5}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 5240000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 8180}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Thorium", "categories": ["natural resource", "in ground"], "amount": 1870}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 15900}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 2380}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 238}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 205}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 489}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.181}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 39.1}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.909}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 635}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Cupric hydroxide", "categories": ["soil", "agricultural"], "amount": 85.6}, {"name": "Tetraconazole", "categories": ["soil", "agricultural"], "amount": 1.43}, {"name": "Ethylene", "categories": ["air"], "amount": 3}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 709}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": -6.8}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2780}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1910}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.192}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2780}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1910}, {"name": "Butene", "categories": ["air"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3.05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air"], "amount": 325}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 9.01}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.324}, {"name": "Arsenic ion", "categories": ["water"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 7300}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 78.3}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 0.973}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.318}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 29.3}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4.89}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 4.91}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.4}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.55}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 0.224}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 4.05}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 78.3}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 0.526}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.526}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.856}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.64}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 1.79}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.672}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.214}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.05}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 18.8}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.192}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.05}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.56875}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.714}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.714}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 76.7}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": -26.4}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.56875}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.727}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 232}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "climate change", "climate change"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0001005}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00015779}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.00090452}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.040201}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.1608}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.022111}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.0037186}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.074372}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.0036181}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.019095}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.99497}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.809}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.11055}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.0001005}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.039196}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.27136}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.054271}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1.6382}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.00030151}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.52261}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.0065327}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.017085}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00070352}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00050251}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00070352}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.058291}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.89447}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.1608}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 1.005}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 3.2563}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001005}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0001005}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001005}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 0.0001005}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00015779}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00015779}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00015779}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.00015779}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00090452}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.00090452}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00090452}, {"name": "Chloroform", "categories": ["air"], "amount": 0.00090452}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.040201}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.040201}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.040201}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.040201}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1608}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.1608}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1608}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.1608}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.27136}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022111}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.022111}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022111}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.022111}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037186}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 0.0037186}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0037186}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.0037186}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.074372}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.074372}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.074372}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.074372}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036181}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.0036181}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036181}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.0036181}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.019095}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.019095}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.019095}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.019095}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.99497}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.99497}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.99497}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.99497}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.809}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 1.809}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.809}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.809}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11055}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.11055}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11055}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.11055}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00070352}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00070352}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00070352}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.00070352}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001005}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.0001005}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001005}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.0001005}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.039196}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.039196}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.039196}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.039196}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27136}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.27136}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27136}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.27136}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.054271}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.054271}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.054271}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.054271}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6382}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 1.6382}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6382}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1.6382}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00030151}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.00030151}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00030151}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.00030151}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.52261}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.52261}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.52261}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.52261}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0065327}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.0065327}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0065327}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.0065327}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017085}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.017085}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017085}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.017085}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00070352}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00070352}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00070352}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.00070352}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00050251}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.00050251}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00050251}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00050251}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.058291}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.058291}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.058291}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.058291}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.89447}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.89447}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.89447}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.89447}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1608}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 0.1608}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1608}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.1608}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.005}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 1.005}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.005}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 1.005}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2563}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 3.2563}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2563}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 3.2563}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 0.0001005}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.0001005}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001005}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001005}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0001005}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.87437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.87437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.87437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.87437}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.27136}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27136}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27136}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.87437}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.27136}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.015678}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015678}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.015678}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.015678}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.015678}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "climate change", "total"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0001005}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00015779}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.00090452}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.040201}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.1608}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.022111}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.0037186}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.074372}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.0036181}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.019095}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.99497}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.809}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.11055}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.0001005}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.039196}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.27136}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.054271}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1.6382}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.00030151}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.52261}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.0065327}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.017085}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00070352}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00050251}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00070352}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.058291}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.89447}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.1608}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 1.005}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 3.2563}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001005}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0001005}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001005}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 0.0001005}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00015779}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00015779}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00015779}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.00015779}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00090452}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.00090452}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00090452}, {"name": "Chloroform", "categories": ["air"], "amount": 0.00090452}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.040201}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.040201}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.040201}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.040201}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1608}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.1608}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1608}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.1608}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.27136}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022111}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.022111}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022111}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.022111}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037186}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 0.0037186}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0037186}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.0037186}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.074372}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.074372}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.074372}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.074372}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036181}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.0036181}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036181}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.0036181}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.019095}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.019095}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.019095}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.019095}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.99497}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.99497}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.99497}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.99497}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.809}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 1.809}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.809}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.809}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11055}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.11055}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11055}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.11055}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00070352}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00070352}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00070352}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.00070352}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001005}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.0001005}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001005}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.0001005}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.039196}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.039196}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.039196}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.039196}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27136}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.27136}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27136}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.27136}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.054271}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.054271}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.054271}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.054271}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6382}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 1.6382}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6382}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1.6382}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00030151}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.00030151}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00030151}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.00030151}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.52261}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.52261}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.52261}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.52261}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0065327}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.0065327}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0065327}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.0065327}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017085}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.017085}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017085}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.017085}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00070352}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00070352}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00070352}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.00070352}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00050251}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.00050251}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00050251}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00050251}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.058291}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.058291}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.058291}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.058291}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.89447}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.89447}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.89447}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.89447}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1608}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 0.1608}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1608}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.1608}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.005}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 1.005}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.005}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 1.005}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2563}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 3.2563}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2563}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 3.2563}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 0.0001005}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.0001005}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001005}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001005}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0001005}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.87437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.87437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.87437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.87437}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.27136}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27136}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27136}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.87437}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.27136}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.015678}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015678}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.015678}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.015678}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.015678}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "ecosystem quality", "aquatic ecotoxicity"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 8.0085e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.9351e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 2.3083e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.6403e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.4229e-08}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 1.5008e-10}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 7.3426e-06}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2.7622e-10}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 3.3033e-06}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 2.8409e-06}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 0.00038132}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.003553}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 0.001808}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 0.00017757}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.4297e-08}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.0010865}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0852e-14}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.0037402}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 0.00027003}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3.008e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.1558e-05}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.5789e-05}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.1584e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 1.4066e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 8.939e-11}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.0591e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.0154e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.9129e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 9.1442e-05}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.0626e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 1.6831e-06}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00012984}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 9.9002e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.3302e-12}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.3641e-11}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0015668}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.0182e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.703e-05}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.00059259}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.094e-06}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 7.9189e-05}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.00016817}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 7.9517e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 9.2654e-09}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 3.2414e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 6.1536e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.00024571}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 4.0334e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 0.0019835}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 0.010777}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.00011954}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 9.7757e-06}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 1.5334e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 3.5158e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 9.7567e-07}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 6.8414e-05}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.5039e-05}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 4.7323e-13}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.0049896}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.2091e-05}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 8.5648e-07}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.7736e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 8.0319e-06}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1.2839e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.4602e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 7.115e-06}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 4.1991e-05}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.0956e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.00024365}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 1.0884e-06}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.9732e-09}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.0046077}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 0.0014421}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.00012948}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.2527e-05}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.0258e-06}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7738e-08}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 8.3885e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 2.5263e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.0763e-08}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 8.3045e-10}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.3258e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2.818e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 7.6945e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 9.8962e-09}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.8346e-10}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 5.5096e-09}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 7.0727e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 2.637e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 4.793e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 6.7852e-12}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.9872e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.4669e-09}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.7377e-10}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 6.0845e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 1.493e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.00010835}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 1.6947e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.00012209}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.7842e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.798e-05}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 0.00093343}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.00036819}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.4544e-06}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 1.1155e-05}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 8.8786e-06}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 2.1013e-05}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 5.743e-06}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.8584e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.1055e-09}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 4.5951e-06}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 5.9077e-05}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 3.1077e-14}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.2921e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.2121e-05}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 1.2183e-05}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 6.6326e-07}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 2.731e-05}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.00024}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.2311e-05}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.3331e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 0.00017598}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00014683}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.0020458}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 3.0784e-05}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.0039e-06}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 1.6617e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 9.2936e-06}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.2001e-06}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 4.7963e-07}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 2.1853e-06}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0028818}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.1905e-07}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 4.6036e-07}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 6.0125e-06}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.00028476}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 9.1053e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.4124e-07}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2.3737e-09}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2.692e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 3.4335e-11}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 1.3964e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 7.8539e-10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.0826e-09}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1.5136e-09}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 2.1425e-09}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.5908e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.1433e-08}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 1.4363e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.2435e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.7857e-10}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.7422e-08}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.0029173}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 5.129e-10}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.00025942}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 6.2966e-08}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.8868e-06}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 7.4661e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 7.6434e-05}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 3.451e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.00065491}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7067e-05}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 2.2662e-05}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 3.9525e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 1.328e-05}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 7.7604e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3.2121e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 2.2189e-05}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 5.8864e-05}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.8819e-11}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 2.3465e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.2153e-12}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 3.5811e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.135e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.9198e-05}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 2.7303e-06}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 2.4446e-05}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 0.00018133}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.00039845}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 4.1412e-06}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 6.8829e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.7906e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 2.0646e-06}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.2621e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.3019e-12}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.00012518}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 9.8238e-05}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3.6719e-07}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 1.0686e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.8876e-08}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 4.7729e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 7.7279e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.5706e-05}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.0017501}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.0488e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 2.3549e-05}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.7074e-10}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 4.2541e-05}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 1.6638e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.2268e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 0.00038016}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.3183e-07}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.6107e-05}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 4.7601e-06}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.0011308}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1.3741e-06}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.00031999}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.2249e-07}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.00069504}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.9687e-10}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 6.7956e-07}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 9.0261e-07}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2.794e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.1545e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.00015614}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 2.0458e-08}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.98e-06}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9835e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2683e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.5208e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.2566e-10}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.00074758}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9351e-07}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 5.9351e-07}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.9351e-07}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6403e-09}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.6403e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.6403e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4229e-08}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.4229e-08}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.4229e-08}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5008e-10}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 1.5008e-10}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 1.5008e-10}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7622e-10}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.7622e-10}, {"name": "Acetone", "categories": ["air"], "amount": 2.7622e-10}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3033e-06}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 3.3033e-06}, {"name": "Acrolein", "categories": ["air"], "amount": 3.3033e-06}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001808}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 0.001808}, {"name": "Aluminium III", "categories": ["air"], "amount": 0.001808}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4297e-08}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 1.4297e-08}, {"name": "Ammonia", "categories": ["air"], "amount": 1.4297e-08}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010865}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.0010865}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.0010865}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1558e-05}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 4.1558e-05}, {"name": "Barium II", "categories": ["air"], "amount": 4.1558e-05}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.939e-11}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 8.939e-11}, {"name": "Benzene", "categories": ["air"], "amount": 8.939e-11}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0591e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 4.0591e-10}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.0591e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0154e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 3.0154e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 3.0154e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9129e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.9129e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1.9129e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1442e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 9.1442e-05}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 9.1442e-05}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3302e-12}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 6.3302e-12}, {"name": "Butadiene", "categories": ["air"], "amount": 6.3302e-12}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3641e-11}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.3641e-11}, {"name": "Butane", "categories": ["air"], "amount": 2.3641e-11}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015668}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.0015668}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0015668}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.2654e-09}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 9.2654e-09}, {"name": "Chloroform", "categories": ["air"], "amount": 9.2654e-09}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00024571}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.00024571}, {"name": "Chromium III", "categories": ["air"], "amount": 0.00024571}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0019835}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 0.0019835}, {"name": "Cobalt II", "categories": ["air"], "amount": 0.0019835}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.010777}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 0.010777}, {"name": "Copper ion", "categories": ["air"], "amount": 0.010777}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9732e-09}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.9732e-09}, {"name": "Dimethylamine", "categories": ["air"], "amount": 2.9732e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0014421}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 0.0014421}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 0.0014421}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5263e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 2.5263e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 2.5263e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0763e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 2.0763e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.0763e-08}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3045e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 8.3045e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 8.3045e-10}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3258e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.3258e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.3258e-08}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 7.7704e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.818e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2.818e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2.818e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6945e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 7.6945e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 7.6945e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8962e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 9.8962e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 9.8962e-09}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8346e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2.8346e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.8346e-10}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.5096e-09}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 5.5096e-09}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 5.5096e-09}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.0727e-10}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 7.0727e-10}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 7.0727e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.637e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 2.637e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 2.637e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.793e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.793e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 4.793e-10}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7852e-12}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 6.7852e-12}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9872e-11}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 5.9872e-11}, {"name": "Chloroethylene", "categories": ["air"], "amount": 5.9872e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4669e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 4.4669e-09}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 4.4669e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7377e-10}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 5.7377e-10}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6947e-11}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 1.6947e-11}, {"name": "Ethyne", "categories": ["air"], "amount": 1.6947e-11}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1055e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.1055e-09}, {"name": "Formaldehyde", "categories": ["air"], "amount": 6.1055e-09}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1077e-14}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 3.1077e-14}, {"name": "Heptane", "categories": ["air"], "amount": 3.1077e-14}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2921e-13}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.2921e-13}, {"name": "Hexane", "categories": ["air"], "amount": 2.2921e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2121e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 3.2121e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.2121e-05}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014683}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.00014683}, {"name": "Lead II", "categories": ["air"], "amount": 0.00014683}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028818}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.0028818}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0028818}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4124e-07}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.4124e-07}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.4124e-07}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3737e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2.3737e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2.3737e-09}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.692e-09}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2.692e-09}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2.692e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4335e-11}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 3.4335e-11}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 3.4335e-11}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3964e-10}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 1.3964e-10}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 1.3964e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8539e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 7.8539e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 7.8539e-10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0826e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 3.0826e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.0826e-09}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5136e-09}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 1.5136e-09}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1.5136e-09}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-09}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 2.1425e-09}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 2.1425e-09}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5908e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2.5908e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.5908e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1433e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.1433e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.1433e-08}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4363e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 1.4363e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 1.4363e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2435e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1.2435e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.2435e-08}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7857e-10}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 3.7857e-10}, {"name": "Methanol", "categories": ["air"], "amount": 3.7857e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.129e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 5.129e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 5.129e-10}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4661e-10}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 7.4661e-10}, {"name": "m-Xylene", "categories": ["air"], "amount": 7.4661e-10}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00065491}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.00065491}, {"name": "Nickel II", "categories": ["air"], "amount": 0.00065491}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7604e-10}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 7.7604e-10}, {"name": "o-Xylene", "categories": ["air"], "amount": 7.7604e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2121e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 3.2121e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3.2121e-05}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8819e-11}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.8819e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.8819e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5811e-09}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.5811e-09}, {"name": "Phenol", "categories": ["air"], "amount": 3.5811e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.135e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.135e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 4.135e-05}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8829e-10}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 6.8829e-10}, {"name": "Propanal", "categories": ["air"], "amount": 6.8829e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7906e-11}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.7906e-11}, {"name": "Propane", "categories": ["air"], "amount": 1.7906e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3019e-12}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 1.3019e-12}, {"name": "Propene", "categories": ["air"], "amount": 1.3019e-12}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017501}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 0.0017501}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.0017501}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7074e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.7074e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.7074e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2268e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.2268e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.2268e-09}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9687e-10}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.9687e-10}, {"name": "Toluene", "categories": ["air"], "amount": 1.9687e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2566e-10}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.2566e-10}, {"name": "Xylene", "categories": ["air"], "amount": 2.2566e-10}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00074758}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.00074758}, {"name": "Zinc II", "categories": ["air"], "amount": 0.00074758}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 0.012813}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 0.012813}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 0.012813}, {"name": "Aluminium III", "categories": ["soil"], "amount": 0.012813}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.0077026}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.0077026}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.0077026}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.0077026}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.00029499}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.00029499}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.00029499}, {"name": "Barium II", "categories": ["soil"], "amount": 0.00029499}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.010677}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.010677}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.010677}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.010677}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.001645}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.001645}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.001645}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.001645}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.014062}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.014062}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.014062}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.014062}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.074913}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.074913}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.074913}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.074913}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 4.5951e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0009664}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0009664}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0009664}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0009664}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.057877}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.057877}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.057877}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.057877}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.004633}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.004633}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.004633}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.004633}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.012431}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.012431}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.012431}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.012431}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0051158}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.0051158}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.0051158}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.0051158}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.0005446}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.0005446}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 3.4018e-05}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.4018e-05}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.3772e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 8.3772e-07}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 7.4043e-07}, {"name": "Acetic acid", "categories": ["water"], "amount": 7.4043e-07}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.1599e-08}, {"name": "Acetone", "categories": ["water"], "amount": 3.1599e-08}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 0.013181}, {"name": "Aluminium III", "categories": ["water"], "amount": 0.013181}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.0077083}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.0077083}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 0.00029513}, {"name": "Barium II", "categories": ["water"], "amount": 0.00029513}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 3.9653e-06}, {"name": "Benzene", "categories": ["water"], "amount": 3.9653e-06}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.00011207}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.00011207}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.7782e-05}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.7782e-05}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 2.226e-07}, {"name": "Butyl acetate", "categories": ["water"], "amount": 2.226e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.010687}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.010687}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.3557e-05}, {"name": "Chloroform", "categories": ["water"], "amount": 1.3557e-05}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.0016604}, {"name": "Chromium III", "categories": ["water"], "amount": 0.0016604}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 0.014162}, {"name": "Cobalt II", "categories": ["water"], "amount": 0.014162}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 0.0753086147582}, {"name": "Copper ion", "categories": ["water"], "amount": 0.0753086147582}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1.6401e-06}, {"name": "Dimethylamine", "categories": ["water"], "amount": 1.6401e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.2901e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.2901e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.6839e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.6839e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.00041527}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.00041527}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 5.5935e-08}, {"name": "Ethanol", "categories": ["water"], "amount": 5.5935e-08}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 5.8306e-06}, {"name": "Ethylene", "categories": ["water"], "amount": 5.8306e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 5.3579e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 5.3579e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 7.8113e-05}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.8113e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.1408e-05}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.1408e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.3946e-06}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.3946e-06}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 2.2848e-05}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 2.2848e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 3.3548e-06}, {"name": "Hexane", "categories": ["water"], "amount": 3.3548e-06}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 0.00025329}, {"name": "Hydrazine", "categories": ["water"], "amount": 0.00025329}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0035468}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0035468}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.00096644}, {"name": "Lead II", "categories": ["water"], "amount": 0.00096644}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.057882}, {"name": "Mercury II", "categories": ["water"], "amount": 0.057882}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 3.7254e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 3.7254e-06}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "surface water"], "amount": 1.7159e-06}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water"], "amount": 1.7159e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.583e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.583e-05}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.7446e-08}, {"name": "Methanol", "categories": ["water"], "amount": 2.7446e-08}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 4.658e-05}, {"name": "m-Xylene", "categories": ["water"], "amount": 4.658e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.00466}, {"name": "Nickel II", "categories": ["water"], "amount": 0.00466}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.4991e-05}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.4991e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.0035468}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.0035468}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.258e-07}, {"name": "Phenol", "categories": ["water"], "amount": 6.258e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.00012479}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.00012479}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.00015576}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.00015576}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.3635e-06}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 2.3635e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 4.1561e-05}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 4.1561e-05}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.4848e-06}, {"name": "Propanal", "categories": ["water"], "amount": 1.4848e-06}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 3.3341e-06}, {"name": "Propene", "categories": ["water"], "amount": 3.3341e-06}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 0.012471}, {"name": "Selenium IV", "categories": ["water"], "amount": 0.012471}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.1849e-05}, {"name": "Styrene", "categories": ["water"], "amount": 1.1849e-05}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.5602e-06}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.5602e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.0919e-05}, {"name": "Toluene", "categories": ["water"], "amount": 1.0919e-05}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.6649e-09}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.6649e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.0189e-05}, {"name": "Xylene", "categories": ["water"], "amount": 1.0189e-05}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00514}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00514}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 3.2001e-05}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 8.3199e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 7.7704e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7704e-07}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 3.9514e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 7.7704e-07}, {"name": "Butene", "categories": ["water"], "amount": 9.7756e-06}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 9.7756e-06}, {"name": "Butene", "categories": ["air"], "amount": 4.9618e-12}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 4.9618e-12}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9618e-12}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.9618e-12}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.000201}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 2.5671e-08}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000201}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.000201}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.000201}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0014201}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0014201}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0014201}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0014201}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0014221}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0014221}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 4.031e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.547e-05}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2.2616e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 2.8309e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.3322e-05}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 7.4452e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4452e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 7.4452e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 7.4452e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.00014446}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.00014446}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.7133e-07}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "ecosystem quality", "land occupation"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 8.0305e-06}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 8.0305e-06}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 8.0305e-06}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 7.4465e-05}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 7.4465e-05}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 8.2495e-05}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 8.0305e-06}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 7.0085e-05}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 7.0085e-05}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "ecosystem quality", "terrestrial acidification & nutrification"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.0011365}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 7.5985e-05}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011365}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.0011365}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011365}, {"name": "Ammonia", "categories": ["air"], "amount": 0.0011365}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5985e-05}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 7.5985e-05}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5985e-05}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 7.5985e-05}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 6.0752e-05}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 6.0752e-05}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0752e-05}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 6.0752e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.00041701}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00041701}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.00041701}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00041701}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.00041701}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "ecosystem quality", "terrestrial ecotoxicity"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.8876e-05}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 6.8208e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.000214}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.3626e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.1087e-05}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.702e-08}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 0.00077259}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 7.9759e-09}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 5.1063e-05}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.00029563}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 0.13595}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.17077}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 0.072988}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 0.001034}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 5.6563e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.011625}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.9812e-08}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.0022932}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 0.14922}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.0011813}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.0002902}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0052167}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 3.9045e-05}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 4.5115e-05}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.7247e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.1841e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.9691e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.7242e-06}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1.3986e-05}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 6.8716e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 0.00014842}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00010597}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.0010614}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 9.0658e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 5.1555e-09}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.52613}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.01027}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.0069265}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.04945}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.0022099}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 0.020646}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.0052571}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.00010471}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.9934e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.0053725}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.00028722}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.22028}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.00044883}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 0.12212}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 0.68301}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0036821}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 0.0017767}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.0063614}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.0013154}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.00010668}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 5.8596e-05}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 0.0001268}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 2.1278e-07}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.0054069}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.00028418}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.7847e-05}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 2.1559e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 7.823e-05}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.01596}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.4999e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00073678}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 0.0053602}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 0.0013456}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.061976}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.00012188}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.5855e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.0031769}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 0.00014952}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.010214}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 0.00057699}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.0001546}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.9184e-06}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 1.6277e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.8942e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.3895e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1.3438e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.6379e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1.3349e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 3.5355e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.614e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.97e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 3.5748e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.5678e-07}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6.3527e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 7.6597e-09}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 4.2323e-09}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 8.6062e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2596e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4579e-08}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.00076496}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.00016479}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.0016334}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 7.7139e-09}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.00028176}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 0.00056881}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.00012569}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 0.012916}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0092599}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 0.00014887}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 0.0011824}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 0.0010989}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.0025173}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.001595}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 3.0025e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.4649e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.0023555}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.025557}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 7.7149e-13}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 9.1654e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 4.3922e-06}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 0.0039993}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.00072313}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 5.4721e-05}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.0095307}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.0039452}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 0.00048591}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 0.00056586}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.07538}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.014918}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.0020986}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.00065517}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.00022337}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.0092629}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 7.5292e-06}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 5.8085e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0028923}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 2.2161}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.00011568}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.00023469}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.002173}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0076356}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.011984}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.4996e-05}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 5.058e-07}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2.3404e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0692e-07}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 3.6807e-08}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 2.606e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.8649e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5.2985e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1.9348e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1.3691e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 6.2405e-07}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6.0427e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.5067e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.5796e-08}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 0.00014902}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.10337}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.3441e-08}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.017585}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.5669e-06}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 0.00022369}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.1551e-09}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 0.029504}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.2786e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.3247}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 0.0021128}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.016737}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.00097732}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.00015525}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 4.8353e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 4.3922e-06}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.011198}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 0.002383}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.2659e-05}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.1474e-09}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.7417e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 5.9829e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.9031e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.0174e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.005717}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.0010347}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.0045301}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 8.6529e-05}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.00071912}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.00015578}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.3882e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 9.5883e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.00021137}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.5617e-05}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.264e-10}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.00012358}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 0.00014278}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 0.00045015}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 5.1157e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 5.5494e-06}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 0.0016859}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.00058047}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 0.014252}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.00538}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.4726e-06}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.0010055}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.1631e-09}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 0.011237}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 0.0040554}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.02e-08}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 0.0025693}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 4.9519e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 0.00015954}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00044865}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.003793}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.00067945}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.034824}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.4811e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.13853}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 2.3994e-09}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.4907e-05}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 9.8832e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 0.0061144}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 1.1667e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.084938}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 3.4511e-05}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.1767e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 5.1886e-05}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.00033946}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.00026589}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9359e-10}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.58377}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8208e-07}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 6.8208e-07}, {"name": "Acenaphthene", "categories": ["air"], "amount": 6.8208e-07}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3626e-08}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 4.3626e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.3626e-08}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1087e-05}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.1087e-05}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.1087e-05}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.702e-08}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 8.702e-08}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 8.702e-08}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9759e-09}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 7.9759e-09}, {"name": "Acetone", "categories": ["air"], "amount": 7.9759e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1063e-05}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.1063e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 5.1063e-05}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072988}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 0.072988}, {"name": "Aluminium III", "categories": ["air"], "amount": 0.072988}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6563e-06}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 5.6563e-06}, {"name": "Ammonia", "categories": ["air"], "amount": 5.6563e-06}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011625}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.011625}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.011625}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002902}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.0002902}, {"name": "Barium II", "categories": ["air"], "amount": 0.0002902}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7247e-09}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.7247e-09}, {"name": "Benzene", "categories": ["air"], "amount": 2.7247e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1841e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.1841e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.1841e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9691e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.9691e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.9691e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7242e-06}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 9.7242e-06}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 9.7242e-06}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3986e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1.3986e-05}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1.3986e-05}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0658e-10}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 9.0658e-10}, {"name": "Butadiene", "categories": ["air"], "amount": 9.0658e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1555e-09}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 5.1555e-09}, {"name": "Butane", "categories": ["air"], "amount": 5.1555e-09}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.52613}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.52613}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.52613}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9934e-07}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 3.9934e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 3.9934e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22028}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.22028}, {"name": "Chromium III", "categories": ["air"], "amount": 0.22028}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12212}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 0.12212}, {"name": "Cobalt II", "categories": ["air"], "amount": 0.12212}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68301}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 0.68301}, {"name": "Copper ion", "categories": ["air"], "amount": 0.68301}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.5855e-07}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 5.5855e-07}, {"name": "Dimethylamine", "categories": ["air"], "amount": 5.5855e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014952}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 0.00014952}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 0.00014952}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8942e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4.8942e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.8942e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3895e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 7.3895e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.3895e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3438e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1.3438e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1.3438e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6379e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 7.6379e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 7.6379e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 7.0379e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3349e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 1.3349e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1.3349e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5355e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 3.5355e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 3.5355e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.614e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.614e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.614e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.97e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2.97e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.97e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5748e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 3.5748e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.5748e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5678e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1.5678e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.5678e-07}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3527e-07}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6.3527e-07}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6.3527e-07}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6597e-09}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 7.6597e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 7.6597e-09}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2323e-09}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 4.2323e-09}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6062e-09}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.6062e-09}, {"name": "Chloroethylene", "categories": ["air"], "amount": 8.6062e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2596e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.2596e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.2596e-07}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4579e-08}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.4579e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7139e-09}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 7.7139e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 7.7139e-09}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4649e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.4649e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.4649e-06}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7149e-13}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 7.7149e-13}, {"name": "Heptane", "categories": ["air"], "amount": 7.7149e-13}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1654e-12}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 9.1654e-12}, {"name": "Hexane", "categories": ["air"], "amount": 9.1654e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3922e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.3922e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 4.3922e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07538}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.07538}, {"name": "Lead II", "categories": ["air"], "amount": 0.07538}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2161}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2.2161}, {"name": "Mercury II", "categories": ["air"], "amount": 2.2161}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4996e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.4996e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.4996e-05}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.058e-07}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 5.058e-07}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 5.058e-07}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3404e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2.3404e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2.3404e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0692e-07}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1.0692e-07}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0692e-07}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6807e-08}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 3.6807e-08}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 3.6807e-08}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.606e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 2.606e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 2.606e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8649e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.8649e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.8649e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2985e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 5.2985e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5.2985e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9348e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 1.9348e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1.9348e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3691e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 1.3691e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1.3691e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2405e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 6.2405e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 6.2405e-07}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0427e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 6.0427e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6.0427e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5067e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1.5067e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.5067e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5796e-08}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 3.5796e-08}, {"name": "Methanol", "categories": ["air"], "amount": 3.5796e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3441e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 1.3441e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.3441e-08}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1551e-09}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 5.1551e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 5.1551e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3247}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.3247}, {"name": "Nickel II", "categories": ["air"], "amount": 0.3247}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8353e-09}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 4.8353e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 4.8353e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3922e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 4.3922e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 4.3922e-06}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1474e-09}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.1474e-09}, {"name": "Pentane", "categories": ["air"], "amount": 2.1474e-09}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9031e-06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1.9031e-06}, {"name": "Phenol", "categories": ["air"], "amount": 1.9031e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.0174e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 7.0174e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 7.0174e-06}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3882e-08}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.3882e-08}, {"name": "Propanal", "categories": ["air"], "amount": 1.3882e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5883e-09}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 9.5883e-09}, {"name": "Propane", "categories": ["air"], "amount": 9.5883e-09}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.264e-10}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.264e-10}, {"name": "Propene", "categories": ["air"], "amount": 3.264e-10}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00538}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 0.00538}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.00538}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1631e-09}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.1631e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.1631e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.02e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.02e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3994e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 2.3994e-09}, {"name": "Toluene", "categories": ["air"], "amount": 2.3994e-09}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.9359e-10}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.9359e-10}, {"name": "Xylene", "categories": ["air"], "amount": 8.9359e-10}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.58377}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.58377}, {"name": "Zinc II", "categories": ["air"], "amount": 0.58377}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 0.43756}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 0.43756}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 0.43756}, {"name": "Aluminium III", "categories": ["soil"], "amount": 0.43756}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.067289}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.067289}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.067289}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.067289}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.0016781}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.0016781}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.0016781}, {"name": "Barium II", "categories": ["soil"], "amount": 0.0016781}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 3.0475}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 3.0475}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 3.0475}, {"name": "Cadmium II", "categories": ["soil"], "amount": 3.0475}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.2964}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.2964}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.2964}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.2964}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.71639}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.71639}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.71639}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.71639}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.9959}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 3.9959}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 3.9959}, {"name": "Copper ion", "categories": ["soil"], "amount": 3.9959}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.0023555}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.43496}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.43496}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.43496}, {"name": "Lead II", "categories": ["soil"], "amount": 0.43496}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 15.317}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 15.317}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 15.317}, {"name": "Mercury II", "categories": ["soil"], "amount": 15.317}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.9026}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.9026}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.9026}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.9026}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.031343}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.031343}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.031343}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.031343}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 3.4118}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 3.4118}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 3.4118}, {"name": "Zinc II", "categories": ["soil"], "amount": 3.4118}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.8877e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.8877e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 5.8912e-10}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 5.8912e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.9395e-09}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.9395e-09}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 2.5128e-11}, {"name": "Acetic acid", "categories": ["water"], "amount": 2.5128e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 4.709e-10}, {"name": "Acetone", "categories": ["water"], "amount": 4.709e-10}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.3114e-14}, {"name": "Aluminium III", "categories": ["water"], "amount": 1.3114e-14}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 7.0456e-16}, {"name": "Antimony ion", "categories": ["water"], "amount": 7.0456e-16}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 8.8183e-17}, {"name": "Barium II", "categories": ["water"], "amount": 8.8183e-17}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 3.9066e-10}, {"name": "Benzene", "categories": ["water"], "amount": 3.9066e-10}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.1422e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.1422e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1.046e-09}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 1.046e-09}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.2024e-09}, {"name": "Butyl acetate", "categories": ["water"], "amount": 1.2024e-09}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 8.7907e-16}, {"name": "Cadmium II", "categories": ["water"], "amount": 8.7907e-16}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.341e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.341e-07}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 6.6805e-16}, {"name": "Cobalt II", "categories": ["water"], "amount": 6.6805e-16}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 3.391e-09}, {"name": "Dimethylamine", "categories": ["water"], "amount": 3.391e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 5.7544e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 5.7544e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.7478e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 2.7478e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.2913e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.2913e-06}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 1.3621e-10}, {"name": "Ethanol", "categories": ["water"], "amount": 1.3621e-10}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 1.3296e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.3296e-09}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 3.1323e-09}, {"name": "Chloroethylene", "categories": ["water"], "amount": 3.1323e-09}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 3.8057e-08}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.8057e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.6081e-09}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 4.6081e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.4297e-09}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.4297e-09}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 3.9404e-08}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 3.9404e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 3.1181e-12}, {"name": "Hexane", "categories": ["water"], "amount": 3.1181e-12}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.5951e-07}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.5951e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.4255e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.4255e-07}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.999e-14}, {"name": "Mercury II", "categories": ["water"], "amount": 3.999e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.746e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.746e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "surface water"], "amount": 4.5236e-08}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water"], "amount": 4.5236e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.5571e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3.5571e-07}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.8261e-10}, {"name": "Methanol", "categories": ["water"], "amount": 3.8261e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.6928e-09}, {"name": "m-Xylene", "categories": ["water"], "amount": 1.6928e-09}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.5865e-09}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.5865e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.4255e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.4255e-07}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 4.9953e-10}, {"name": "Phenol", "categories": ["water"], "amount": 4.9953e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 2.4769e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.4769e-09}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 3.5976e-09}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.5976e-09}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.7345e-09}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 2.7345e-09}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.1498e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.1498e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 5.845e-10}, {"name": "Propanal", "categories": ["water"], "amount": 5.845e-10}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 7.8363e-11}, {"name": "Propene", "categories": ["water"], "amount": 7.8363e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.5455e-10}, {"name": "Styrene", "categories": ["water"], "amount": 1.5455e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 2.0397e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.0397e-08}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.1029e-10}, {"name": "Toluene", "categories": ["water"], "amount": 8.1029e-10}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 2.2214e-14}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 2.2214e-14}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.4383e-10}, {"name": "Xylene", "categories": ["water"], "amount": 2.4383e-10}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.00058656}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 8.5709e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 7.0379e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.0379e-05}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.92e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 7.0379e-05}, {"name": "Butene", "categories": ["water"], "amount": 5.7874e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 5.7874e-11}, {"name": "Butene", "categories": ["air"], "amount": 6.1126e-10}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 6.1126e-10}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1126e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.1126e-10}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.24159}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 8.4991e-06}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24159}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.24159}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.24159}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.4032}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.4032}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.4032}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.4032}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.00036786}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.001507}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.6526e-05}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.6751e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 0.00040141}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.6765e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6765e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 3.6765e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.6765e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.0902e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.0902e-07}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.00020812}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "ecosystem quality", "total"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.967685e-05}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.27559e-06}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.0002163083}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.52663e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.1101229e-05}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.717008e-08}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 0.0007799326}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.25212e-09}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 5.43663e-05}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.0002984709}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 0.13633132}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.174323}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 0.074796}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 0.00121157}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.001142170597}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.0127115}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.9812010852e-08}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.0060334}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 0.14949003}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.001184308}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.000331758}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.005232489}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 3.926084e-05}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 4.65216e-05}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.81409e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.59001e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.9845e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.88532e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000105428}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 6.97786e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 0.0001501031}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00023581}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.0010713002}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 9.129102e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 5.179141e-09}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.5276968}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.0102740182}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.00695353}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.05004259}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.002213994}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 0.020725189}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.00542527}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.000104789517}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.086054e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.005404914}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.0002933736}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.22052571}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.0004528634}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 0.1241035}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 0.693787}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.00380164}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 0.0017864757}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.006376734}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.001350558}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.00010765567}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 0.00012701}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 0.000141839}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 2.1278047323e-07}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.0103965}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.000296271}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.870348e-05}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 2.173636e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 8.62619e-05}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.015972839}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.574502e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.000743895}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 0.005402191}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 0.0013466956}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.06221965}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.0001229684}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.615232e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.0077846}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 0.00159162}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.01034348}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 0.000589517}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.0001556258}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.986138e-06}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 1.711585e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.919463e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.59713e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1.34463045e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.07048e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1.36308e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 3.5431945e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.712962e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.9728346e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 3.629896e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.5748727e-07}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6.37907e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.139e-09}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 4.2390852e-09}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 8.666072e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.304269e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.515277e-08}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.00076556845}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.000166283}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.00174175}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 7.730847e-09}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.00040385}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 0.0005755942}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.00016367}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 0.01384943}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.00962809}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 0.0001503244}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 0.001193555}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 0.0011077786}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.002538313}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.001600743}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 3.031084e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.4710055e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.0023600951}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.025616077}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 8.02567e-13}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 9.39461e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.65132e-05}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 0.004011483}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.00072379326}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 8.2031e-05}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.0097707}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.003977511}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 0.0004872431}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 0.00074184}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.07552683}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.0169638}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.002129384}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.0006561739}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.00022353617}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.0092721936}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 8.7293e-06}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 6.28813e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0028944853}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 2.2189818}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.00011589905}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.00023515036}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.0021790125}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.00792036}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.0119931053}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.523724e-05}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 5.081737e-07}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2.343092e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.06954335e-07}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 3.694664e-08}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 2.60678539e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.895726e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5.313636e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1.956225e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1.36935908e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 6.35483e-07}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6.04284363e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.519135e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.617457e-08}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 0.000149057422}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.1062873}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.39539e-08}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.01784442}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.629866e-06}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 0.0002255768}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.90171e-09}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 0.029580434}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.282051e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.32535491}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 0.002129867}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 8.0305e-06}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 8.0305e-06}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 8.0305e-06}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 7.4465e-05}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 7.4465e-05}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 8.2495e-05}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 8.0305e-06}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 7.0085e-05}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 7.0085e-05}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.016759662}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.0009812725}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.00016853}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.61134e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3.65132e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.011220189}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 0.002441864}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.38065e-05}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.176219e-09}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.97635e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 5.9841153e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.9066811e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.83674e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.005756198}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.0010374303}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.004554546}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 0.000267859}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.00111757}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.0001599212}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.457029e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 9.606206e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.0002134346}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.604321e-05}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.277019e-10}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.00024876}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 0.000241018}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 0.00045051719}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 5.22256e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 5.578276e-06}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 0.0016906729}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.000657749}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 0.014287706}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.0071301}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.69606e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.001029049}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.33384e-09}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 0.011279541}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 0.004072038}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 7.5985e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.14268e-08}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 0.00294946}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.005083e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 0.000195647}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.0004534101}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.0049238}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.0006808241}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.03514399}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.513349e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.13922504}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 2.59627e-09}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.558656e-05}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 9.973461e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 0.00614234}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.3212e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.08509414}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 3.4531458e-05}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.8747e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 5.238435e-05}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.0003407283}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.0002684108}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.11925e-09}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.58451758}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27559e-06}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.27559e-06}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.27559e-06}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.52663e-08}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 4.52663e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.52663e-08}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1101229e-05}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.1101229e-05}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.1101229e-05}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.717008e-08}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 8.717008e-08}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 8.717008e-08}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.25212e-09}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 8.25212e-09}, {"name": "Acetone", "categories": ["air"], "amount": 8.25212e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43663e-05}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.43663e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 5.43663e-05}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.074796}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 0.074796}, {"name": "Aluminium III", "categories": ["air"], "amount": 0.074796}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001142170597}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.001142170597}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011365}, {"name": "Ammonia", "categories": ["air"], "amount": 0.001142170597}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0127115}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.0127115}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.0127115}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000331758}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.000331758}, {"name": "Barium II", "categories": ["air"], "amount": 0.000331758}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.81409e-09}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.81409e-09}, {"name": "Benzene", "categories": ["air"], "amount": 2.81409e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59001e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.59001e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.59001e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9845e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.9845e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 4.9845e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.88532e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.88532e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.88532e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000105428}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.000105428}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000105428}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.129102e-10}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 9.129102e-10}, {"name": "Butadiene", "categories": ["air"], "amount": 9.129102e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.179141e-09}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 5.179141e-09}, {"name": "Butane", "categories": ["air"], "amount": 5.179141e-09}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5276968}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.5276968}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.5276968}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.086054e-07}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.086054e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 4.086054e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22052571}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.22052571}, {"name": "Chromium III", "categories": ["air"], "amount": 0.22052571}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1241035}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 0.1241035}, {"name": "Cobalt II", "categories": ["air"], "amount": 0.1241035}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.693787}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 0.693787}, {"name": "Copper ion", "categories": ["air"], "amount": 0.693787}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.615232e-07}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 5.615232e-07}, {"name": "Dimethylamine", "categories": ["air"], "amount": 5.615232e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00159162}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 0.00159162}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 0.00159162}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.919463e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4.919463e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.919463e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.59713e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 7.59713e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.59713e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34463045e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1.34463045e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1.34463045e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.07048e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 8.07048e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 8.07048e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 7.115604e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36308e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 1.36308e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1.36308e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5431945e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 3.5431945e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 3.5431945e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.712962e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.712962e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.712962e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9728346e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2.9728346e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.9728346e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.629896e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 3.629896e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.629896e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5748727e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1.5748727e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.5748727e-07}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.37907e-07}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6.37907e-07}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6.37907e-07}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.139e-09}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 8.139e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 8.139e-09}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2390852e-09}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 4.2390852e-09}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.666072e-09}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.666072e-09}, {"name": "Chloroethylene", "categories": ["air"], "amount": 8.666072e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.304269e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.304269e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.304269e-07}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.515277e-08}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.515277e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.730847e-09}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 7.730847e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 7.730847e-09}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4710055e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.4710055e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.4710055e-06}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.02567e-13}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 8.02567e-13}, {"name": "Heptane", "categories": ["air"], "amount": 8.02567e-13}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.39461e-12}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 9.39461e-12}, {"name": "Hexane", "categories": ["air"], "amount": 9.39461e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.65132e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 3.65132e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.65132e-05}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07552683}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.07552683}, {"name": "Lead II", "categories": ["air"], "amount": 0.07552683}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2189818}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2.2189818}, {"name": "Mercury II", "categories": ["air"], "amount": 2.2189818}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.523724e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.523724e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.523724e-05}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.081737e-07}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 5.081737e-07}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 5.081737e-07}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.343092e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2.343092e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2.343092e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06954335e-07}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1.06954335e-07}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.06954335e-07}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.694664e-08}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 3.694664e-08}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 3.694664e-08}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.60678539e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 2.60678539e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 2.60678539e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.895726e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.895726e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.895726e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.313636e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 5.313636e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5.313636e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.956225e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 1.956225e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1.956225e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36935908e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 1.36935908e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1.36935908e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.35483e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 6.35483e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 6.35483e-07}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04284363e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 6.04284363e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6.04284363e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.519135e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1.519135e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.519135e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.617457e-08}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 3.617457e-08}, {"name": "Methanol", "categories": ["air"], "amount": 3.617457e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39539e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 1.39539e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.39539e-08}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.90171e-09}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 5.90171e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 5.90171e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.32535491}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.32535491}, {"name": "Nickel II", "categories": ["air"], "amount": 0.32535491}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.61134e-09}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 5.61134e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.61134e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.65132e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 3.65132e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3.65132e-05}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.176219e-09}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.176219e-09}, {"name": "Pentane", "categories": ["air"], "amount": 2.176219e-09}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9066811e-06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1.9066811e-06}, {"name": "Phenol", "categories": ["air"], "amount": 1.9066811e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83674e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.83674e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 4.83674e-05}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.457029e-08}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.457029e-08}, {"name": "Propanal", "categories": ["air"], "amount": 1.457029e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.606206e-09}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 9.606206e-09}, {"name": "Propane", "categories": ["air"], "amount": 9.606206e-09}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.277019e-10}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.277019e-10}, {"name": "Propene", "categories": ["air"], "amount": 3.277019e-10}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0071301}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 0.0071301}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.0071301}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33384e-09}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.33384e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.33384e-09}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5985e-05}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 7.5985e-05}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5985e-05}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 7.5985e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14268e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.14268e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.14268e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.59627e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 2.59627e-09}, {"name": "Toluene", "categories": ["air"], "amount": 2.59627e-09}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.11925e-09}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.11925e-09}, {"name": "Xylene", "categories": ["air"], "amount": 1.11925e-09}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.58451758}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.58451758}, {"name": "Zinc II", "categories": ["air"], "amount": 0.58451758}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 0.450373}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 0.450373}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 0.450373}, {"name": "Aluminium III", "categories": ["soil"], "amount": 0.450373}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.0749916}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.0749916}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.0749916}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.0749916}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.00197309}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.00197309}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.00197309}, {"name": "Barium II", "categories": ["soil"], "amount": 0.00197309}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 3.058177}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 3.058177}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 3.058177}, {"name": "Cadmium II", "categories": ["soil"], "amount": 3.058177}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.298045}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.298045}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.298045}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.298045}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.730452}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.730452}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.730452}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.730452}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 4.070813}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.070813}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.070813}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.070813}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.0023600951}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.4359264}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.4359264}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.4359264}, {"name": "Lead II", "categories": ["soil"], "amount": 0.4359264}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 15.374877}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 15.374877}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 15.374877}, {"name": "Mercury II", "categories": ["soil"], "amount": 15.374877}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.907233}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.907233}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.907233}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.907233}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.043774}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.043774}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.043774}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.043774}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 3.4169158}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 3.4169158}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 3.4169158}, {"name": "Zinc II", "categories": ["soil"], "amount": 3.4169158}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.00054478877}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.00054478877}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 3.401858912e-05}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.401858912e-05}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.396595e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 8.396595e-07}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 7.40455128e-07}, {"name": "Acetic acid", "categories": ["water"], "amount": 7.40455128e-07}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.20699e-08}, {"name": "Acetone", "categories": ["water"], "amount": 3.20699e-08}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 0.013181}, {"name": "Aluminium III", "categories": ["water"], "amount": 0.013181}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.0077083}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.0077083}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 0.00029513}, {"name": "Barium II", "categories": ["water"], "amount": 0.00029513}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 3.96569066e-06}, {"name": "Benzene", "categories": ["water"], "amount": 3.96569066e-06}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.00011218422}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.00011218422}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.7783046e-05}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.7783046e-05}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 2.238024e-07}, {"name": "Butyl acetate", "categories": ["water"], "amount": 2.238024e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.010687}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.010687}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.37911e-05}, {"name": "Chloroform", "categories": ["water"], "amount": 1.37911e-05}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.0016604}, {"name": "Chromium III", "categories": ["water"], "amount": 0.0016604}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 0.014162}, {"name": "Cobalt II", "categories": ["water"], "amount": 0.014162}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 0.0753086147582}, {"name": "Copper ion", "categories": ["water"], "amount": 0.0753086147582}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1.643491e-06}, {"name": "Dimethylamine", "categories": ["water"], "amount": 1.643491e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.347644e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.347644e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.95868e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.95868e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0004175613}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0004175613}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 5.607121e-08}, {"name": "Ethanol", "categories": ["water"], "amount": 5.607121e-08}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 5.8319296e-06}, {"name": "Ethylene", "categories": ["water"], "amount": 5.8319296e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 5.3610323e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 5.3610323e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 7.8151057e-05}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.8151057e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.14126081e-05}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.14126081e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.3970297e-06}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.3970297e-06}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 2.2887404e-05}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 2.2887404e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 3.3548031181e-06}, {"name": "Hexane", "categories": ["water"], "amount": 3.3548031181e-06}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 0.00025354951}, {"name": "Hydrazine", "categories": ["water"], "amount": 0.00025354951}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.00354704255}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.00354704255}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.00096644}, {"name": "Lead II", "categories": ["water"], "amount": 0.00096644}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.057882}, {"name": "Mercury II", "categories": ["water"], "amount": 0.057882}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 3.9e-06}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "surface water"], "amount": 1.761136e-06}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water"], "amount": 1.761136e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.618571e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.618571e-05}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.782861e-08}, {"name": "Methanol", "categories": ["water"], "amount": 2.782861e-08}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 4.65816928e-05}, {"name": "m-Xylene", "categories": ["water"], "amount": 4.65816928e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.00466}, {"name": "Nickel II", "categories": ["water"], "amount": 0.00466}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.49925865e-05}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.49925865e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.00354704255}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.00354704255}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.2629953e-07}, {"name": "Phenol", "categories": ["water"], "amount": 6.2629953e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.0001247924769}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.0001247924769}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.0001557635976}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.0001557635976}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.3662345e-06}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 2.3662345e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 4.156181498e-05}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 4.156181498e-05}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.4853845e-06}, {"name": "Propanal", "categories": ["water"], "amount": 1.4853845e-06}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 3.334178363e-06}, {"name": "Propene", "categories": ["water"], "amount": 3.334178363e-06}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 0.012471}, {"name": "Selenium IV", "categories": ["water"], "amount": 0.012471}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.184915455e-05}, {"name": "Styrene", "categories": ["water"], "amount": 1.184915455e-05}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.580597e-06}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.580597e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.091981029e-05}, {"name": "Toluene", "categories": ["water"], "amount": 1.091981029e-05}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.664922214e-09}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.664922214e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.018924383e-05}, {"name": "Xylene", "categories": ["water"], "amount": 1.018924383e-05}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00514}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00514}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 6.0752e-05}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 6.0752e-05}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0752e-05}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 6.0752e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.000618561}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.68908e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 7.115604e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.115604e-05}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.9239514e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 7.115604e-05}, {"name": "Butene", "categories": ["water"], "amount": 9.775657874e-06}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 9.775657874e-06}, {"name": "Butene", "categories": ["air"], "amount": 6.162218e-10}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 6.162218e-10}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.162218e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.162218e-10}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.241791}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 8.524771e-06}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.241791}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.241791}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.241791}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.4046201}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.4046201}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.4046201}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.4046201}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0014221}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0014221}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.000371891}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.00157247}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.675216e-05}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.95819e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 0.000434732}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.42102e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.42102e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 4.42102e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.42102e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.00014466902}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.00014466902}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.00041701}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00041701}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.00041701}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00041701}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.00041701}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.00020849133}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "human health", "human toxicity"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.00023413}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.9152e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3.0492e-06}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.011806}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.3147e-05}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.3772e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 0.00024595}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.5468e-06}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.7376e-05}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.010733}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00040399}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.00015503}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 0.0072443}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 1.4999}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 0.00019202}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 0.00079932}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.0161e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00061335}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.063893}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.0551e-11}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.0082718}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.0029812}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0038197}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.7901e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.7047e-05}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.1964e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0029289}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 8.851e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 28.795}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0029555}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 13.972}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.024088}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 0.010069}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00042394}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1593e-05}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 4.7556e-07}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.23054}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.00034343}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.024367}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 0.0016167}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.6146e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 5.1993e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.00089314}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.00048079}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 3.5635e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.055147}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.049225}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 0.00080644}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.1146e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.0016767}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4.6268e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.068699}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.0033791}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.8377e-10}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 7.0193e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 7.055e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 8.5223e-05}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.18748}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 7.6134e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.15919}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 4114700}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.0027758}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 0.00077694}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.9784e-06}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.0028291}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 8.3209e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.4257e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.00042411}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 9.6153e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.00098621}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 4.9849e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.7121e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00042348}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.2585e-05}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.057e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 5.3741e-05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.9582e-06}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00098862}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.00083282}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.00043527}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 0.00071454}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 5.3437e-06}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0016478}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 3.0591e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 7.1862e-06}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.1696e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.036468}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.9255e-05}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 0.00012035}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.5478e-05}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 1.0657e-05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0010281}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.11494}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.028358}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 6.2373e-05}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 1.121e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.1328e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.00025489}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 5.0677e-06}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.00023977}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.47e-07}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.15066}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.3022e-05}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.0049473}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.0087252}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 3.1922e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 8.4578e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.4293e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8.9255e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.015386}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.2639e-07}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.6738e-06}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.00084231}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 9.4136e-08}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 5.9448e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.0723e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.0036591}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 65.318}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.363e-05}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 0.00056611}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 2.5387e-07}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.0035042}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.7857e-05}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 9.36e-05}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.00014099}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.0038714}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.036468}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 4.0602e-05}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.00016103}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.9162e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.9611e-13}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.4356e-06}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.0037131}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.062879}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.00059605}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.9589e-05}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 3.5256e-05}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 0.0097183}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.00025318}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.0064285}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.00074339}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 3.7148e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 1.7925e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00047093}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.0078483}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.071131}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.7684e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.00034582}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.2587e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.2221e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.00013375}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.0021539}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.3076e-06}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.342e-06}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 4.6699e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.4054e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 0.000406}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.0011956}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.0018767}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 7.7233e-05}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.0070213}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.00016395}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.3177e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.03663}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9152e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.9152e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.9152e-07}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0492e-06}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3.0492e-06}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3.0492e-06}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3147e-05}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.3147e-05}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3.3147e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5468e-06}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 4.5468e-06}, {"name": "Acetone", "categories": ["air"], "amount": 4.5468e-06}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7376e-05}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.7376e-05}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.7376e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.010733}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 0.010733}, {"name": "Acrolein", "categories": ["air"], "amount": 0.010733}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00040399}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00040399}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.00040399}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019202}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 0.00019202}, {"name": "Aluminium III", "categories": ["air"], "amount": 0.00019202}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0161e-05}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 2.0161e-05}, {"name": "Ammonia", "categories": ["air"], "amount": 2.0161e-05}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00061335}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00061335}, {"name": "Aniline", "categories": ["air"], "amount": 0.00061335}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.063893}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.063893}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.063893}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029812}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.0029812}, {"name": "Barium II", "categories": ["air"], "amount": 0.0029812}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1964e-08}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.1964e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 6.1964e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029289}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.0029289}, {"name": "Benzene", "categories": ["air"], "amount": 0.0029289}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.851e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 8.851e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 8.851e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.795}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 28.795}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 28.795}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029555}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0029555}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.0029555}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.972}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 13.972}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 13.972}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024088}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.024088}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.024088}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1593e-05}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1.1593e-05}, {"name": "Butadiene", "categories": ["air"], "amount": 1.1593e-05}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7556e-07}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 4.7556e-07}, {"name": "Butanol", "categories": ["air"], "amount": 4.7556e-07}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23054}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.23054}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.23054}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6146e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.6146e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.6146e-05}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00089314}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.00089314}, {"name": "Chloroform", "categories": ["air"], "amount": 0.00089314}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.055147}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.055147}, {"name": "Chromium III", "categories": ["air"], "amount": 0.055147}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049225}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.049225}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.049225}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00080644}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 0.00080644}, {"name": "Copper ion", "categories": ["air"], "amount": 0.00080644}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1146e-07}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 1.1146e-07}, {"name": "Cumene", "categories": ["air"], "amount": 1.1146e-07}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8377e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 8.8377e-10}, {"name": "Diethyl ether", "categories": ["air"], "amount": 8.8377e-10}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.0193e-05}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 7.0193e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 7.0193e-05}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6134e-07}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 7.6134e-07}, {"name": "Dimethylamine", "categories": ["air"], "amount": 7.6134e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4114700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 4114700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 4114700}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028291}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.0028291}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.0028291}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4257e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.4257e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.4257e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00042411}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.00042411}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.00042411}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 2.3644e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6153e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 9.6153e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 9.6153e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00098621}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.00098621}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.00098621}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9849e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 4.9849e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 4.9849e-07}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7121e-07}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 2.7121e-07}, {"name": "Ethanol", "categories": ["air"], "amount": 2.7121e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00042348}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.00042348}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.00042348}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2585e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 5.2585e-05}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.2585e-05}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.057e-05}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.057e-05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9582e-06}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.9582e-06}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.9582e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00098862}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.00098862}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.00098862}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0016478}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0016478}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0016478}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0591e-06}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 3.0591e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.0591e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1696e-06}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.1696e-06}, {"name": "Hexane", "categories": ["air"], "amount": 1.1696e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.036468}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.036468}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.036468}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9255e-05}, {"name": "Hydrogen peroxide", "categories": ["air", "low population density, long-term"], "amount": 1.9255e-05}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 1.9255e-05}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012035}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 0.00012035}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 0.00012035}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010281}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.0010281}, {"name": "Lead II", "categories": ["air"], "amount": 0.0010281}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.15066}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.15066}, {"name": "Mercury II", "categories": ["air"], "amount": 0.15066}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0087252}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.0087252}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.0087252}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1922e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 3.1922e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 3.1922e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4578e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 8.4578e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 8.4578e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.4293e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 9.4293e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.4293e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.9255e-08}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 8.9255e-08}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8.9255e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015386}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.015386}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.015386}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2639e-07}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1.2639e-07}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.2639e-07}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6738e-06}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1.6738e-06}, {"name": "Methanol", "categories": ["air"], "amount": 1.6738e-06}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.4136e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 9.4136e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 9.4136e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 65.318}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 65.318}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 65.318}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.363e-05}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 3.363e-05}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.363e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035042}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.0035042}, {"name": "Nickel II", "categories": ["air"], "amount": 0.0035042}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7857e-05}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.7857e-05}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.7857e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.036468}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.036468}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.036468}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4356e-06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.4356e-06}, {"name": "Phenol", "categories": ["air"], "amount": 2.4356e-06}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037131}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.0037131}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.0037131}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.062879}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.062879}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 0.062879}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5256e-05}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 3.5256e-05}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 3.5256e-05}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00047093}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.00047093}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.00047093}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.071131}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 0.071131}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.071131}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2587e-05}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 5.2587e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.2587e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2221e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.2221e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.2221e-07}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.342e-06}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.342e-06}, {"name": "Toluene", "categories": ["air"], "amount": 1.342e-06}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6699e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 4.6699e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 4.6699e-07}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3177e-06}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.3177e-06}, {"name": "Xylene", "categories": ["air"], "amount": 3.3177e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03663}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.03663}, {"name": "Zinc II", "categories": ["air"], "amount": 0.03663}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 0.0038216}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 0.0014447}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 0.0014447}, {"name": "Aluminium III", "categories": ["soil"], "amount": 0.0014447}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.0782}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.47882}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.47882}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.47882}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.022224}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.020054}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.020054}, {"name": "Barium II", "categories": ["soil"], "amount": 0.020054}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.011294}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.0068685}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.0068685}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.0068685}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.0824}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.7411}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.7411}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.7411}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.0045247}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.002233}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.002233}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.002233}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.0026678}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.0013166}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.0013166}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.0013166}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.024165}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.0064154}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.0064154}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.0064154}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 7.1862e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.013768}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0062447}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0062447}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0062447}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.51408}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.35507}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.35507}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.35507}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2471.4}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 538.58}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 538.58}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 538.58}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.047193}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.013495}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.013495}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.013495}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.75044}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.4172}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.4172}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.4172}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.2117}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.29426}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.29426}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.29426}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 4.5458e-07}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 4.5458e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.4516e-05}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.4516e-05}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 7.9015e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 7.9015e-06}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.4734e-06}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.4734e-06}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 2.5824e-06}, {"name": "Acetone", "categories": ["water"], "amount": 2.5824e-06}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 3.9481e-05}, {"name": "Acetonitrile", "categories": ["water"], "amount": 3.9481e-05}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.0008591}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.0008591}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 0.00080984}, {"name": "Aluminium III", "categories": ["water"], "amount": 0.00080984}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.00010504}, {"name": "Aniline", "categories": ["water"], "amount": 0.00010504}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.31389}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.31389}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 0.019702}, {"name": "Barium II", "categories": ["water"], "amount": 0.019702}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00058246}, {"name": "Benzene", "categories": ["water"], "amount": 0.00058246}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.00016815}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.00016815}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.746e-05}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.746e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 0.0063253}, {"name": "Beryllium II", "categories": ["water"], "amount": 0.0063253}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.9921e-06}, {"name": "Butanol", "categories": ["water"], "amount": 1.9921e-06}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 2.6831e-07}, {"name": "Butyl acetate", "categories": ["water"], "amount": 2.6831e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.28194}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.28194}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.5756e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.5756e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.00064196}, {"name": "Chloroform", "categories": ["water"], "amount": 0.00064196}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0010504}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0010504}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.0017815}, {"name": "Chromium III", "categories": ["water"], "amount": 0.0017815}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 0.0016305}, {"name": "Copper ion", "categories": ["water"], "amount": 0.0016305}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 9.1579e-06}, {"name": "Cumene", "categories": ["water"], "amount": 9.1579e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.0744e-06}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.0744e-06}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 7.3095e-06}, {"name": "Dimethylamine", "categories": ["water"], "amount": 7.3095e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.005082}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.005082}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0026575}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0026575}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 5.483e-07}, {"name": "Ethanol", "categories": ["water"], "amount": 5.483e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 0.0034243}, {"name": "Chloroethylene", "categories": ["water"], "amount": 0.0034243}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.00038382}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.00038382}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.4522e-05}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.4522e-05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.9572e-06}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 1.9572e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.00020736}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.00020736}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 8.1879e-06}, {"name": "Formaldehyde", "categories": ["water"], "amount": 8.1879e-06}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 3.9742e-07}, {"name": "Hexane", "categories": ["water"], "amount": 3.9742e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 0.0032731}, {"name": "Hydrazine", "categories": ["water"], "amount": 0.0032731}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0027477}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0027477}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 6.769e-07}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 6.769e-07}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 5.535e-05}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 5.535e-05}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.0042432}, {"name": "Lead II", "categories": ["water"], "amount": 0.0042432}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.31395}, {"name": "Mercury II", "categories": ["water"], "amount": 0.31395}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.00018212}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.00018212}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.012829}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.012829}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.2495e-07}, {"name": "Methanol", "categories": ["water"], "amount": 3.2495e-07}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.4114}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.4114}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.1147e-05}, {"name": "Monochloroethane", "categories": ["water"], "amount": 2.1147e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.0043219}, {"name": "Nickel II", "categories": ["water"], "amount": 0.0043219}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.0064276}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.0064276}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.0027477}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.0027477}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 3.0323e-07}, {"name": "Phenol", "categories": ["water"], "amount": 3.0323e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.131e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 5.131e-06}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.6059e-06}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 6.6059e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.00013057}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.00013057}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.00052324}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.00052324}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 0.36927}, {"name": "Selenium IV", "categories": ["water"], "amount": 0.36927}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.1546e-06}, {"name": "Styrene", "categories": ["water"], "amount": 7.1546e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 2.3638e-05}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3638e-05}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.2085e-05}, {"name": "Toluene", "categories": ["water"], "amount": 3.2085e-05}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3.565e-05}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 3.565e-05}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.3748e-06}, {"name": "Xylene", "categories": ["water"], "amount": 2.3748e-06}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.052684}, {"name": "Zinc II", "categories": ["water"], "amount": 0.052684}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.00013914}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.0011046}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 6.3836e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 6.3836e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2.3644e-08}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3644e-08}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2.3644e-08}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.4232}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4232}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 5.4232}, {"name": "Arsenic ion", "categories": ["air"], "amount": 5.4232}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 185.34}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 43.795}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 43.795}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 43.795}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.4677}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.4677}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 3.0558e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.0010192}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 8.0343e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 0.037163}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.2537e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2537e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 3.2537e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.2537e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.1779e-05}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.1779e-05}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.8712e-06}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "human health", "ionising radiation"], "exchanges": [{"name": "Antimony-124", "categories": ["air", "urban air close to ground"], "amount": 0.063893}, {"name": "Antimony-125", "categories": ["air", "urban air close to ground"], "amount": 0.063893}, {"name": "Barium-140", "categories": ["air", "urban air close to ground"], "amount": 0.0029812}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 2.9577e-05}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 6.0563e-08}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.9718e-09}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.00013239}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 2.2535e-08}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 1.3239e-09}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 1.9718e-11}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0010281}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 9.4366e-06}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 1.169e-05}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 2.1127e-07}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 1.2817e-07}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 3.3803e-09}, {"name": "Uranium", "categories": ["air", "urban air close to ground"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 1.1549e-06}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 1.3662e-05}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 2.9577e-06}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 1.1549e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 1.9718e-11}, {"name": "Zinc-65", "categories": ["air", "urban air close to ground"], "amount": 0.03663}, {"name": "Antimony-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.063893}, {"name": "Antimony-124", "categories": ["air", "low population density, long-term"], "amount": 0.063893}, {"name": "Antimony-124", "categories": ["air"], "amount": 0.063893}, {"name": "Antimony-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.063893}, {"name": "Antimony-125", "categories": ["air", "low population density, long-term"], "amount": 0.063893}, {"name": "Antimony-125", "categories": ["air"], "amount": 0.063893}, {"name": "Barium-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029812}, {"name": "Barium-140", "categories": ["air", "low population density, long-term"], "amount": 0.0029812}, {"name": "Barium-140", "categories": ["air"], "amount": 0.0029812}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9577e-05}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 2.9577e-05}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9577e-05}, {"name": "Carbon-14", "categories": ["air"], "amount": 2.9577e-05}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0563e-08}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 6.0563e-08}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0563e-08}, {"name": "Cobalt-58", "categories": ["air"], "amount": 6.0563e-08}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9718e-09}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 1.9718e-09}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9718e-09}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.9718e-09}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00013239}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 0.00013239}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00013239}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.00013239}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2535e-08}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 2.2535e-08}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2535e-08}, {"name": "Iodine-131", "categories": ["air"], "amount": 2.2535e-08}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3239e-09}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 1.3239e-09}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3239e-09}, {"name": "Iodine-133", "categories": ["air"], "amount": 1.3239e-09}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9718e-11}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 1.9718e-11}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9718e-11}, {"name": "Krypton-85", "categories": ["air"], "amount": 1.9718e-11}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010281}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.0010281}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0010281}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.4366e-06}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 9.4366e-06}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.4366e-06}, {"name": "Plutonium-238", "categories": ["air"], "amount": 9.4366e-06}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.169e-05}, {"name": "Plutonium-alpha", "categories": ["air", "low population density, long-term"], "amount": 1.169e-05}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.169e-05}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 1.169e-05}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1127e-07}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 2.1127e-07}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1127e-07}, {"name": "Polonium-210", "categories": ["air"], "amount": 2.1127e-07}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2817e-07}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 1.2817e-07}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2817e-07}, {"name": "Radium-226", "categories": ["air"], "amount": 1.2817e-07}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3803e-09}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 3.3803e-09}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3803e-09}, {"name": "Radon-222", "categories": ["air"], "amount": 3.3803e-09}, {"name": "Uranium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1549e-06}, {"name": "Uranium", "categories": ["air", "low population density, long-term"], "amount": 1.1549e-06}, {"name": "Uranium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1549e-06}, {"name": "Uranium", "categories": ["air"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air", "low population density, long-term"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air"], "amount": 1.1549e-06}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3662e-05}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 1.3662e-05}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3662e-05}, {"name": "Uranium-234", "categories": ["air"], "amount": 1.3662e-05}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9577e-06}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 2.9577e-06}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9577e-06}, {"name": "Uranium-235", "categories": ["air"], "amount": 2.9577e-06}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1549e-06}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 1.1549e-06}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1549e-06}, {"name": "Uranium-238", "categories": ["air"], "amount": 1.1549e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9718e-11}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 1.9718e-11}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9718e-11}, {"name": "Xenon-133", "categories": ["air"], "amount": 1.9718e-11}, {"name": "Zinc-65", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03663}, {"name": "Zinc-65", "categories": ["air", "low population density, long-term"], "amount": 0.03663}, {"name": "Zinc-65", "categories": ["air"], "amount": 0.03663}, {"name": "Antimony-122", "categories": ["water", "surface water"], "amount": 0.31389}, {"name": "Antimony-122", "categories": ["water"], "amount": 0.31389}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.31389}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.31389}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 0.31389}, {"name": "Antimony-125", "categories": ["water"], "amount": 0.31389}, {"name": "Barium-140", "categories": ["water", "surface water"], "amount": 0.019702}, {"name": "Barium-140", "categories": ["water"], "amount": 0.019702}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 5.7746e-09}, {"name": "Cobalt-58", "categories": ["water"], "amount": 5.7746e-09}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 6.338e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 6.338e-11}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 7.0423e-08}, {"name": "Iodine-131", "categories": ["water"], "amount": 7.0423e-08}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 4.3662e-08}, {"name": "Manganese-54", "categories": ["water"], "amount": 4.3662e-08}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 1.831e-08}, {"name": "Radium-226", "categories": ["water"], "amount": 1.831e-08}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 7.1831e-08}, {"name": "Silver-110", "categories": ["water"], "amount": 7.1831e-08}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 3.3803e-07}, {"name": "Uranium-234", "categories": ["water"], "amount": 3.3803e-07}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 3.2394e-07}, {"name": "Uranium-235", "categories": ["water"], "amount": 3.2394e-07}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 3.2394e-07}, {"name": "Uranium-238", "categories": ["water"], "amount": 3.2394e-07}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 1.6901e-06}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.831e-06}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6901e-06}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 1.6901e-06}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6901e-06}, {"name": "Caesium-134", "categories": ["air"], "amount": 1.6901e-06}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.831e-06}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 1.831e-06}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.831e-06}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.831e-06}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.9718e-05}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.9718e-05}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 2.3944e-05}, {"name": "Caesium-137", "categories": ["water"], "amount": 2.3944e-05}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "human health", "ozone layer depletion"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.017746}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.017746}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.010352}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0029577}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.06507}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.056197}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.88732}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 1.7746}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0073944}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 0.0029577}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.14789}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.14789}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.0059155}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.0029577}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.10796}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.14789}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017746}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.017746}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017746}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.017746}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.14789}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017746}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.017746}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017746}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.017746}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.010352}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.010352}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.010352}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.010352}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029577}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.0029577}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029577}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0029577}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06507}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.06507}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06507}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.06507}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.056197}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.056197}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.056197}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.056197}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.88732}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.88732}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.88732}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.88732}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7746}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 1.7746}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7746}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 1.7746}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0073944}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.0073944}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0073944}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0073944}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029577}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 0.0029577}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029577}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 0.0029577}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14789}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.14789}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14789}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.14789}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14789}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.14789}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14789}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.14789}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0059155}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.0059155}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0059155}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.0059155}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029577}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.0029577}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029577}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.0029577}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.10796}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.10796}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.10796}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14789}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 0.14789}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14789}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.14789}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.13901}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13901}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.13901}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13901}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.14789}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14789}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14789}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.13901}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.14789}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "human health", "photochemical oxidation"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.0003}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.00014366}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00011394}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.00025211}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 4.1972e-05}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.00011986}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.00014366}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00019155}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 3e-05}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2.8732e-05}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.00019718}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 6.5915e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.00021549}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.00026338}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.00010662}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.0003831}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 6.9577e-06}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.00015634}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 8.7465e-05}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00014366}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 3.7183e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.7606e-06}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.00011746}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0003}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 8.7465e-06}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.831e-05}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.3099e-05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00011746}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.6338e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00015634}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.7042e-06}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.00015634}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.00014366}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.00010563}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.00029577}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 4.9296e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.00033521}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.0423e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.8028e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.5634e-06}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.8028e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.9577e-05}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.4366e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.00011394}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.00033521}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.00018028}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.00032394}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.00029577}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00011986}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.00023944}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 5.3944e-05}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00016761}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00033521}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.6761e-05}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.00019155}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.00031127}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.0003}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.0003}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014366}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.00014366}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.00014366}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011394}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.00011394}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.00011394}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00025211}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.00025211}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.00025211}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1972e-05}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 4.1972e-05}, {"name": "2-Propanol", "categories": ["air"], "amount": 4.1972e-05}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011986}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.00011986}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.00011986}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014366}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.00014366}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.00014366}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019155}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00019155}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.00019155}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3e-05}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 3e-05}, {"name": "Acetic acid", "categories": ["air"], "amount": 3e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8732e-05}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.8732e-05}, {"name": "Acetone", "categories": ["air"], "amount": 2.8732e-05}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019718}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.00019718}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.00019718}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5915e-05}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 6.5915e-05}, {"name": "Benzene", "categories": ["air"], "amount": 6.5915e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00021549}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.00021549}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.00021549}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00026338}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.00026338}, {"name": "Butadiene", "categories": ["air"], "amount": 0.00026338}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010662}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.00010662}, {"name": "Butane", "categories": ["air"], "amount": 0.00010662}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003831}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.0003831}, {"name": "Butanol", "categories": ["air"], "amount": 0.0003831}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9577e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 6.9577e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 6.9577e-06}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00015634}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.00015634}, {"name": "Cumene", "categories": ["air"], "amount": 0.00015634}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.7465e-05}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 8.7465e-05}, {"name": "Cyclohexane", "categories": ["air"], "amount": 8.7465e-05}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014366}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00014366}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00014366}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7183e-05}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 3.7183e-05}, {"name": "Ethane", "categories": ["air"], "amount": 3.7183e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7606e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 2.7606e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.7606e-06}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011746}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.00011746}, {"name": "Ethanol", "categories": ["air"], "amount": 0.00011746}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0003}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.7465e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.7465e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 8.7465e-06}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.831e-05}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 9.831e-05}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3099e-05}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 7.3099e-05}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 7.3099e-05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011746}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00011746}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.00011746}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6338e-05}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 2.6338e-05}, {"name": "Ethyne", "categories": ["air"], "amount": 2.6338e-05}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00015634}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00015634}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.00015634}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7042e-06}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 9.7042e-06}, {"name": "Formic acid", "categories": ["air"], "amount": 9.7042e-06}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00015634}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 0.00015634}, {"name": "Heptane", "categories": ["air"], "amount": 0.00015634}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014366}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.00014366}, {"name": "Hexane", "categories": ["air"], "amount": 0.00014366}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.00010563}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00029577}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.00029577}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.00029577}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9296e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 4.9296e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 4.9296e-05}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00033521}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.00033521}, {"name": "Isoprene", "categories": ["air"], "amount": 0.00033521}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8028e-06}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.8028e-06}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1.8028e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0423e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.0423e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.0423e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8028e-06}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.8028e-06}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.8028e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5634e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.5634e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.5634e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9577e-05}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 3.9577e-05}, {"name": "Methanol", "categories": ["air"], "amount": 3.9577e-05}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4366e-05}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.4366e-05}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.4366e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011394}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.00011394}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.00011394}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.007e-05}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 1.007e-05}, {"name": "Methyl formate", "categories": ["air"], "amount": 1.007e-05}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00033521}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.00033521}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.00033521}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018028}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.00018028}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.00018028}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00032394}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.00032394}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.00032394}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00029577}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.00029577}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.00029577}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011986}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.00011986}, {"name": "Pentane", "categories": ["air"], "amount": 0.00011986}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023944}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.00023944}, {"name": "Propanal", "categories": ["air"], "amount": 0.00023944}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3944e-05}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 5.3944e-05}, {"name": "Propane", "categories": ["air"], "amount": 5.3944e-05}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00016761}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.00016761}, {"name": "Propanol", "categories": ["air"], "amount": 0.00016761}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00033521}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.00033521}, {"name": "Propene", "categories": ["air"], "amount": 0.00033521}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6761e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.6761e-05}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.6761e-05}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019155}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.00019155}, {"name": "Toluene", "categories": ["air"], "amount": 0.00019155}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00031127}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.00031127}, {"name": "Xylene", "categories": ["air"], "amount": 0.00031127}, {"name": "Butene", "categories": ["air"], "amount": 0.00034789}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.00034789}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034789}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.00034789}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "human health", "respiratory effects (inorganics)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.011972}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00010296}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00010296}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0076901}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011972}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.011972}, {"name": "Ammonia", "categories": ["air"], "amount": 0.011972}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010296}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00010296}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.00010296}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010296}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00010296}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.00010296}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0076901}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0076901}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.0076901}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0061549}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0061549}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061549}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.0061549}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.012549}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.012549}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.012549}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.012549}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.098592}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.098592}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.098592}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.098592}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "human health", "total"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.0003}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.00023413}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.00014366}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00011413152}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.00025211}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 4.1972e-05}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.00011986}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.00014366}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3.0492e-06}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.011806}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000224697}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.3772e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 3e-05}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 0.00024595}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.32788e-05}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.7376e-05}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.010733}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00040399}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.00015503}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.00019718}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 0.0072443}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 1.4999}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 0.00019202}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 0.00079932}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.011992161}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00061335}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.063893}, {"name": "Antimony-124", "categories": ["air", "urban air close to ground"], "amount": 0.063893}, {"name": "Antimony-125", "categories": ["air", "urban air close to ground"], "amount": 0.063893}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.0551e-11}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.0082718}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.0029812}, {"name": "Barium-140", "categories": ["air", "urban air close to ground"], "amount": 0.0029812}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0038197}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.7901e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.7047e-05}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.1964e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.002994815}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.00021557851}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 28.795}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0029555}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 13.972}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.024088}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 0.010069}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00042394}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.000274973}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.00010662}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.00038357556}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.23054}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.00034343}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.024367}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 0.0016167}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.6146e-05}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00010296}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00010296}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 2.9577e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 5.1993e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0009000977}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.00048079}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 3.5635e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.055147}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.049225}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 6.0563e-08}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 0.00080644}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.00015645146}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 8.7465e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.0016767}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4.6268e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.068699}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.0033791}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00014366088377}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 7.0193e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 7.055e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 8.5223e-05}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.18748}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 7.6134e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.15919}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 4114700}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.0027758}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 0.00077694}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.9784e-06}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.0028291}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 8.3209e-05}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 3.7183e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.4257e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0177487606}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.00042411}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.017746}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 9.6153e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.00098621}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.01035249849}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0029577}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.06507}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.00011773121}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0003}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00042348}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.13315e-05}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00011888}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 5.3741e-05}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.3099e-05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0001194182}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00098862}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.6338e-05}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.00083282}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.00043527}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 0.00071454}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 5.3437e-06}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00180414}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.7042e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 3.0591e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 7.1862e-06}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.00015634}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0001448296}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.00010563}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.03676377}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 4.9296e-05}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.9255e-05}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 0.00012035}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.9718e-09}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.5478e-05}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.00013239}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 2.2535e-08}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 1.3239e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.00033521}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 1.9718e-11}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 1.0657e-05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0010281}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0010281}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.11494}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.028358}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 6.2373e-05}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 1.121e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.1328e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.00025489}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 5.0677e-06}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.00023977}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.47e-07}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.15066}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.3022e-05}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.0049473}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.0649222}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.88732}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 1.7746}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0073975922}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 0.003042278}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.14789}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.000114716}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.147890089255}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.0059155}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.8028e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.0029592634}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.8028e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.123346}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.14789012639}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.12508e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.00084231}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.4366e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.000114034136}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 5.9448e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.0723e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.0036591}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 65.318}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.363e-05}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.00033521}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 0.00056611}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 2.5387e-07}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.0035042}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.7857e-05}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.00018028}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 9.36e-05}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.00014099}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.0038714}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.00032394}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.03676377}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 4.0602e-05}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.00016103}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00011986}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.9162e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.9611e-13}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.4356e-06}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.0037131}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.062879}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.00059605}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.9589e-05}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 3.5256e-05}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 9.4366e-06}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 1.169e-05}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 2.1127e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 0.0097183}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.00025318}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.0064285}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.00023944}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 5.3944e-05}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.00074339}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00016761}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 3.7148e-06}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00033521}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 1.7925e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00047093}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.0078483}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 1.2817e-07}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 3.3803e-09}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.071131}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.7684e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.00034582}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.2587e-05}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0076901}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.728321e-05}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.00013375}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.0021539}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.3076e-06}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000192892}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 4.6699e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.4054e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 0.000406}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.0011956}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.0018767}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 7.7233e-05}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.0070213}, {"name": "Uranium", "categories": ["air", "urban air close to ground"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 1.1549e-06}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 1.3662e-05}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 2.9577e-06}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 1.1549e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.00016395}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 1.9718e-11}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0003145877}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.03663}, {"name": "Zinc-65", "categories": ["air", "urban air close to ground"], "amount": 0.03663}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.0003}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.0003}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014366}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.00014366}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.00014366}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011413152}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.00011413152}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.00011413152}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00025211}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.00025211}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.00025211}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1972e-05}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 4.1972e-05}, {"name": "2-Propanol", "categories": ["air"], "amount": 4.1972e-05}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011986}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.00011986}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.00011986}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014366}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.00014366}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.00014366}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0492e-06}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3.0492e-06}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3.0492e-06}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000224697}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.000224697}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.000224697}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3e-05}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 3e-05}, {"name": "Acetic acid", "categories": ["air"], "amount": 3e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32788e-05}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 3.32788e-05}, {"name": "Acetone", "categories": ["air"], "amount": 3.32788e-05}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7376e-05}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.7376e-05}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.7376e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.010733}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 0.010733}, {"name": "Acrolein", "categories": ["air"], "amount": 0.010733}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00040399}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00040399}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.00040399}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019718}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.00019718}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.00019718}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019202}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 0.00019202}, {"name": "Aluminium III", "categories": ["air"], "amount": 0.00019202}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011992161}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.011992161}, {"name": "Ammonia", "categories": ["air"], "amount": 0.011992161}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00061335}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00061335}, {"name": "Aniline", "categories": ["air"], "amount": 0.00061335}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.063893}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.063893}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.063893}, {"name": "Antimony-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.063893}, {"name": "Antimony-124", "categories": ["air", "low population density, long-term"], "amount": 0.063893}, {"name": "Antimony-124", "categories": ["air"], "amount": 0.063893}, {"name": "Antimony-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.063893}, {"name": "Antimony-125", "categories": ["air", "low population density, long-term"], "amount": 0.063893}, {"name": "Antimony-125", "categories": ["air"], "amount": 0.063893}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029812}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.0029812}, {"name": "Barium II", "categories": ["air"], "amount": 0.0029812}, {"name": "Barium-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029812}, {"name": "Barium-140", "categories": ["air", "low population density, long-term"], "amount": 0.0029812}, {"name": "Barium-140", "categories": ["air"], "amount": 0.0029812}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1964e-08}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.1964e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 6.1964e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002994815}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.002994815}, {"name": "Benzene", "categories": ["air"], "amount": 0.002994815}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00021557851}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.00021557851}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.00021557851}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.795}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 28.795}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 28.795}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029555}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0029555}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.0029555}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.972}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 13.972}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 13.972}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024088}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.024088}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.024088}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000274973}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.000274973}, {"name": "Butadiene", "categories": ["air"], "amount": 0.000274973}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010662}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.00010662}, {"name": "Butane", "categories": ["air"], "amount": 0.00010662}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00038357556}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.00038357556}, {"name": "Butanol", "categories": ["air"], "amount": 0.00038357556}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23054}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.23054}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.23054}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6146e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.6146e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.6146e-05}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010296}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00010296}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.00010296}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010296}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00010296}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.00010296}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9577e-05}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 2.9577e-05}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9577e-05}, {"name": "Carbon-14", "categories": ["air"], "amount": 2.9577e-05}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0009000977}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0009000977}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0009000977}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.055147}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.055147}, {"name": "Chromium III", "categories": ["air"], "amount": 0.055147}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049225}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.049225}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.049225}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0563e-08}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 6.0563e-08}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0563e-08}, {"name": "Cobalt-58", "categories": ["air"], "amount": 6.0563e-08}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00080644}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 0.00080644}, {"name": "Copper ion", "categories": ["air"], "amount": 0.00080644}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00015645146}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.00015645146}, {"name": "Cumene", "categories": ["air"], "amount": 0.00015645146}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.7465e-05}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 8.7465e-05}, {"name": "Cyclohexane", "categories": ["air"], "amount": 8.7465e-05}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014366088377}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00014366088377}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00014366088377}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.0193e-05}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 7.0193e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 7.0193e-05}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6134e-07}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 7.6134e-07}, {"name": "Dimethylamine", "categories": ["air"], "amount": 7.6134e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4114700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 4114700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 4114700}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028291}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.0028291}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.0028291}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7183e-05}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 3.7183e-05}, {"name": "Ethane", "categories": ["air"], "amount": 3.7183e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4257e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.4257e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.4257e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0177487606}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0177487606}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017746}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0177487606}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00042411}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.00042411}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.00042411}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.147890023644}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017746}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.017746}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017746}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.017746}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6153e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 9.6153e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 9.6153e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00098621}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.00098621}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.00098621}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01035249849}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.01035249849}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.010352}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.01035249849}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029577}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.0029577}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029577}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0029577}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06507}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.06507}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06507}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.06507}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011773121}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.00011773121}, {"name": "Ethanol", "categories": ["air"], "amount": 0.00011773121}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0003}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00042348}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.00042348}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.00042348}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13315e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.13315e-05}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.13315e-05}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011888}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.00011888}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3099e-05}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 7.3099e-05}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 7.3099e-05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001194182}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0001194182}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.0001194182}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00098862}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.00098862}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.00098862}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6338e-05}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 2.6338e-05}, {"name": "Ethyne", "categories": ["air"], "amount": 2.6338e-05}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00180414}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00180414}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.00180414}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7042e-06}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 9.7042e-06}, {"name": "Formic acid", "categories": ["air"], "amount": 9.7042e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0591e-06}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 3.0591e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.0591e-06}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00015634}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 0.00015634}, {"name": "Heptane", "categories": ["air"], "amount": 0.00015634}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001448296}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.0001448296}, {"name": "Hexane", "categories": ["air"], "amount": 0.0001448296}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.00010563}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03676377}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.03676377}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.03676377}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9296e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 4.9296e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 4.9296e-05}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9255e-05}, {"name": "Hydrogen peroxide", "categories": ["air", "low population density, long-term"], "amount": 1.9255e-05}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 1.9255e-05}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012035}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 0.00012035}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 0.00012035}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9718e-09}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 1.9718e-09}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9718e-09}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.9718e-09}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00013239}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 0.00013239}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00013239}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.00013239}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2535e-08}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 2.2535e-08}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2535e-08}, {"name": "Iodine-131", "categories": ["air"], "amount": 2.2535e-08}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3239e-09}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 1.3239e-09}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3239e-09}, {"name": "Iodine-133", "categories": ["air"], "amount": 1.3239e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00033521}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.00033521}, {"name": "Isoprene", "categories": ["air"], "amount": 0.00033521}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9718e-11}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 1.9718e-11}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9718e-11}, {"name": "Krypton-85", "categories": ["air"], "amount": 1.9718e-11}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010281}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.0010281}, {"name": "Lead II", "categories": ["air"], "amount": 0.0010281}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010281}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.0010281}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0010281}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.15066}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.15066}, {"name": "Mercury II", "categories": ["air"], "amount": 0.15066}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8028e-06}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.8028e-06}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1.8028e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0649222}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.0649222}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.056197}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.0649222}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.88732}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.88732}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.88732}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.88732}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7746}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 1.7746}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7746}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 1.7746}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0073975922}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.0073975922}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0073944}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0073975922}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003042278}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 0.003042278}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029577}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 0.003042278}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14789}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.14789}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14789}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.14789}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114716}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.000114716}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.000114716}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.147890089255}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.147890089255}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14789}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.147890089255}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0059155}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.0059155}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0059155}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.0059155}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8028e-06}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.8028e-06}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.8028e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029592634}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.0029592634}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029577}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.0029592634}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123346}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.123346}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.123346}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14789012639}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 0.14789012639}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14789}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.14789012639}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.12508e-05}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 4.12508e-05}, {"name": "Methanol", "categories": ["air"], "amount": 4.12508e-05}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4366e-05}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.4366e-05}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.4366e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114034136}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.000114034136}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.000114034136}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.007e-05}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 1.007e-05}, {"name": "Methyl formate", "categories": ["air"], "amount": 1.007e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 65.318}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 65.318}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 65.318}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.363e-05}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 3.363e-05}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.363e-05}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00033521}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.00033521}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.00033521}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035042}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.0035042}, {"name": "Nickel II", "categories": ["air"], "amount": 0.0035042}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7857e-05}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.7857e-05}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.7857e-05}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018028}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.00018028}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.00018028}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00032394}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.00032394}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.00032394}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03676377}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.03676377}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.03676377}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011986}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.00011986}, {"name": "Pentane", "categories": ["air"], "amount": 0.00011986}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4356e-06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.4356e-06}, {"name": "Phenol", "categories": ["air"], "amount": 2.4356e-06}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037131}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.0037131}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.0037131}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.062879}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.062879}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 0.062879}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5256e-05}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 3.5256e-05}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 3.5256e-05}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.4366e-06}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 9.4366e-06}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.4366e-06}, {"name": "Plutonium-238", "categories": ["air"], "amount": 9.4366e-06}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.169e-05}, {"name": "Plutonium-alpha", "categories": ["air", "low population density, long-term"], "amount": 1.169e-05}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.169e-05}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 1.169e-05}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1127e-07}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 2.1127e-07}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1127e-07}, {"name": "Polonium-210", "categories": ["air"], "amount": 2.1127e-07}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023944}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.00023944}, {"name": "Propanal", "categories": ["air"], "amount": 0.00023944}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3944e-05}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 5.3944e-05}, {"name": "Propane", "categories": ["air"], "amount": 5.3944e-05}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00016761}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.00016761}, {"name": "Propanol", "categories": ["air"], "amount": 0.00016761}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00033521}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.00033521}, {"name": "Propene", "categories": ["air"], "amount": 0.00033521}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00047093}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.00047093}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.00047093}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2817e-07}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 1.2817e-07}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2817e-07}, {"name": "Radium-226", "categories": ["air"], "amount": 1.2817e-07}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3803e-09}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 3.3803e-09}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3803e-09}, {"name": "Radon-222", "categories": ["air"], "amount": 3.3803e-09}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.071131}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 0.071131}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.071131}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2587e-05}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 5.2587e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.2587e-05}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0076901}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0076901}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.0076901}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.728321e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.728321e-05}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.728321e-05}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000192892}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.000192892}, {"name": "Toluene", "categories": ["air"], "amount": 0.000192892}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6699e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 4.6699e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 4.6699e-07}, {"name": "Uranium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1549e-06}, {"name": "Uranium", "categories": ["air", "low population density, long-term"], "amount": 1.1549e-06}, {"name": "Uranium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1549e-06}, {"name": "Uranium", "categories": ["air"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air", "low population density, long-term"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air"], "amount": 1.1549e-06}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3662e-05}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 1.3662e-05}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3662e-05}, {"name": "Uranium-234", "categories": ["air"], "amount": 1.3662e-05}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9577e-06}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 2.9577e-06}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9577e-06}, {"name": "Uranium-235", "categories": ["air"], "amount": 2.9577e-06}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1549e-06}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 1.1549e-06}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1549e-06}, {"name": "Uranium-238", "categories": ["air"], "amount": 1.1549e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9718e-11}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 1.9718e-11}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9718e-11}, {"name": "Xenon-133", "categories": ["air"], "amount": 1.9718e-11}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003145877}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0003145877}, {"name": "Xylene", "categories": ["air"], "amount": 0.0003145877}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03663}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.03663}, {"name": "Zinc II", "categories": ["air"], "amount": 0.03663}, {"name": "Zinc-65", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03663}, {"name": "Zinc-65", "categories": ["air", "low population density, long-term"], "amount": 0.03663}, {"name": "Zinc-65", "categories": ["air"], "amount": 0.03663}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 0.0038216}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 0.0014447}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 0.0014447}, {"name": "Aluminium III", "categories": ["soil"], "amount": 0.0014447}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.0782}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.47882}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.47882}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.47882}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.022224}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.020054}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.020054}, {"name": "Barium II", "categories": ["soil"], "amount": 0.020054}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.011294}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.0068685}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.0068685}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.0068685}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.0824}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.7411}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.7411}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.7411}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.0045247}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.002233}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.002233}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.002233}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.0026678}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.0013166}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.0013166}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.0013166}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.024165}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.0064154}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.0064154}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.0064154}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 7.1862e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.013768}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0062447}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0062447}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0062447}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.51408}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.35507}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.35507}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.35507}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2471.4}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 538.58}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 538.58}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 538.58}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.047193}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.013495}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.013495}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.013495}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.75044}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.4172}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.4172}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.4172}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.2117}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.29426}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.29426}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.29426}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 4.5458e-07}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 4.5458e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.4516e-05}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.4516e-05}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 7.9015e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 7.9015e-06}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.4734e-06}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.4734e-06}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 2.5824e-06}, {"name": "Acetone", "categories": ["water"], "amount": 2.5824e-06}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 3.9481e-05}, {"name": "Acetonitrile", "categories": ["water"], "amount": 3.9481e-05}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.0008591}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.0008591}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 0.00080984}, {"name": "Aluminium III", "categories": ["water"], "amount": 0.00080984}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.00010504}, {"name": "Aniline", "categories": ["water"], "amount": 0.00010504}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.31389}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.31389}, {"name": "Antimony-122", "categories": ["water", "surface water"], "amount": 0.31389}, {"name": "Antimony-122", "categories": ["water"], "amount": 0.31389}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.31389}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.31389}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 0.31389}, {"name": "Antimony-125", "categories": ["water"], "amount": 0.31389}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 0.019702}, {"name": "Barium II", "categories": ["water"], "amount": 0.019702}, {"name": "Barium-140", "categories": ["water", "surface water"], "amount": 0.019702}, {"name": "Barium-140", "categories": ["water"], "amount": 0.019702}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00058246}, {"name": "Benzene", "categories": ["water"], "amount": 0.00058246}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.00016815}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.00016815}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.746e-05}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.746e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 0.0063253}, {"name": "Beryllium II", "categories": ["water"], "amount": 0.0063253}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.9921e-06}, {"name": "Butanol", "categories": ["water"], "amount": 1.9921e-06}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 2.6831e-07}, {"name": "Butyl acetate", "categories": ["water"], "amount": 2.6831e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.28194}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.28194}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.5756e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.5756e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.00064196}, {"name": "Chloroform", "categories": ["water"], "amount": 0.00064196}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0010504}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0010504}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.0017815}, {"name": "Chromium III", "categories": ["water"], "amount": 0.0017815}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 5.7746e-09}, {"name": "Cobalt-58", "categories": ["water"], "amount": 5.7746e-09}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 0.0016305}, {"name": "Copper ion", "categories": ["water"], "amount": 0.0016305}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 9.1579e-06}, {"name": "Cumene", "categories": ["water"], "amount": 9.1579e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.0744e-06}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.0744e-06}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 7.3095e-06}, {"name": "Dimethylamine", "categories": ["water"], "amount": 7.3095e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.005082}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.005082}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0026575}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0026575}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 5.483e-07}, {"name": "Ethanol", "categories": ["water"], "amount": 5.483e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 0.0034243}, {"name": "Chloroethylene", "categories": ["water"], "amount": 0.0034243}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.00038382}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.00038382}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.4522e-05}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.4522e-05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.9572e-06}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 1.9572e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.00020736}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.00020736}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 8.1879e-06}, {"name": "Formaldehyde", "categories": ["water"], "amount": 8.1879e-06}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 3.9742e-07}, {"name": "Hexane", "categories": ["water"], "amount": 3.9742e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 0.0032731}, {"name": "Hydrazine", "categories": ["water"], "amount": 0.0032731}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0027477}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0027477}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 6.769e-07}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 6.769e-07}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 5.535e-05}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 5.535e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 6.338e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 6.338e-11}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 7.0423e-08}, {"name": "Iodine-131", "categories": ["water"], "amount": 7.0423e-08}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.0042432}, {"name": "Lead II", "categories": ["water"], "amount": 0.0042432}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 4.3662e-08}, {"name": "Manganese-54", "categories": ["water"], "amount": 4.3662e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.31395}, {"name": "Mercury II", "categories": ["water"], "amount": 0.31395}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.00018212}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.00018212}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.012829}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.012829}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.2495e-07}, {"name": "Methanol", "categories": ["water"], "amount": 3.2495e-07}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.4114}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.4114}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.1147e-05}, {"name": "Monochloroethane", "categories": ["water"], "amount": 2.1147e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.0043219}, {"name": "Nickel II", "categories": ["water"], "amount": 0.0043219}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.0064276}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.0064276}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.0027477}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.0027477}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 3.0323e-07}, {"name": "Phenol", "categories": ["water"], "amount": 3.0323e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.131e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 5.131e-06}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.6059e-06}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 6.6059e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.00013057}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.00013057}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.00052324}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.00052324}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 1.831e-08}, {"name": "Radium-226", "categories": ["water"], "amount": 1.831e-08}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 0.36927}, {"name": "Selenium IV", "categories": ["water"], "amount": 0.36927}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 7.1831e-08}, {"name": "Silver-110", "categories": ["water"], "amount": 7.1831e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.1546e-06}, {"name": "Styrene", "categories": ["water"], "amount": 7.1546e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 2.3638e-05}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3638e-05}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.2085e-05}, {"name": "Toluene", "categories": ["water"], "amount": 3.2085e-05}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3.565e-05}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 3.565e-05}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 3.3803e-07}, {"name": "Uranium-234", "categories": ["water"], "amount": 3.3803e-07}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 3.2394e-07}, {"name": "Uranium-235", "categories": ["water"], "amount": 3.2394e-07}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 3.2394e-07}, {"name": "Uranium-238", "categories": ["water"], "amount": 3.2394e-07}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.3748e-06}, {"name": "Xylene", "categories": ["water"], "amount": 2.3748e-06}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.052684}, {"name": "Zinc II", "categories": ["water"], "amount": 0.052684}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0061549}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0061549}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061549}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.0061549}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.00013914}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.0011046}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 6.3836e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 6.3836e-07}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.13901}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13901}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.13901}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13901}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.147890023644}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14789}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.147890023644}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.13901}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.147890023644}, {"name": "Butene", "categories": ["air"], "amount": 0.00034789}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.00034789}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034789}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.00034789}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.4232}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4232}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 5.4232}, {"name": "Arsenic ion", "categories": ["air"], "amount": 5.4232}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 185.34}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 43.795}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 43.795}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 43.795}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.4677}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.4677}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 3.0558e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.0010192}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 8.0343e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 0.037163}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.2537e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2537e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 3.2537e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.2537e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.1779e-05}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.1779e-05}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 1.6901e-06}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.831e-06}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6901e-06}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 1.6901e-06}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6901e-06}, {"name": "Caesium-134", "categories": ["air"], "amount": 1.6901e-06}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.831e-06}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 1.831e-06}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.831e-06}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.831e-06}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.9718e-05}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.9718e-05}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 2.3944e-05}, {"name": "Caesium-137", "categories": ["water"], "amount": 2.3944e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.012549}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.012549}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.012549}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.012549}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.8712e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.098592}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.098592}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.098592}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.098592}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "resources", "mineral extraction"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.5658e-05}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.0296e-06}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 0.0010888}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.3553e-07}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 4.8355e-05}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.0592e-06}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00010737}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00010737}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00010737}, {"name": "Pyrolusite", "categories": ["natural resource", "in ground"], "amount": 2.0592e-06}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0039474}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.2401e-05}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4.8355e-05}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.2401e-05}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 1.2401e-05}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 4.8355e-05}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.0592e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.0010888}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.5658e-05}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 3.3553e-07}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 6.0296e-06}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.00010737}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.0039474}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "resources", "non-renewable energy"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 6.5132e-05}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00012566}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 6.5132e-05}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 3.6842}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.00026513}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.00026513}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.00030132}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "resources", "total"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.5658e-05}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.0296e-06}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 0.0010888}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 6.5132e-05}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00012566}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.3553e-07}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 4.8355e-05}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.0592e-06}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00010737}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00010737}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00010737}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 6.5132e-05}, {"name": "Pyrolusite", "categories": ["natural resource", "in ground"], "amount": 2.0592e-06}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0039474}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.2401e-05}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4.8355e-05}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.2401e-05}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 1.2401e-05}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 4.8355e-05}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.0592e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.0010888}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 3.6842}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.5658e-05}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 3.3553e-07}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 6.0296e-06}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.00010737}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.0039474}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.00026513}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.00026513}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.00030132}]}, {"unit": "kg SO2-Eq", "name": ["IMPACT 2002+ (Midpoint)", "ecosystem quality", "aquatic acidification"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.88}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 0.88}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.6}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 1.88}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 0.98}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 1.88}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "Ammonia", "categories": ["air"], "amount": 1.88}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.88}, {"name": "Hydrochloric acid", "categories": ["air", "low population density, long-term"], "amount": 0.88}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.88}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 1.6}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.6}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 1.88}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.98}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 0.98}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.98}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 0.98}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.65}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 1.88}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.7}]}, {"unit": "kg PO4-Eq", "name": ["IMPACT 2002+ (Midpoint)", "ecosystem quality", "aquatic eutrophication"], "exchanges": [{"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 0.97}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 3.06}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.97}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 0.97}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.97}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 0.97}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["air", "low population density, long-term"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["air"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil"], "amount": 3.06}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.022}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 0.022}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.022}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 0.022}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphate", "categories": ["water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["water"], "amount": 3.06}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2013 no LT", "climate change no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.3864}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.26099103}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 2504.54117161}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 111.36886022}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 19.01534578}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.12375371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 355.70904262}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 10.96555186}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 73.67421685}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8977.01466873}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 13455.63285373}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 967.40161765}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.32489627}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 296.86626879}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 4167.51900477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 261.70622477}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15922.81568973}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.22891799}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8448.35132681}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 20.42224025}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 94.49366841}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.699999999999999}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.68197775}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.3}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 479.24856328}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 8038.40372143}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2335.19186209}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12708.85603515}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18118.78539979}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 28214.80930274}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.3864}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.9578}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26099103}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26099103}, {"name": "Chloroform", "categories": ["air"], "amount": 2.26099103}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2504.54117161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2504.54117161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 2504.54117161}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 111.36886022}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 111.36886022}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 111.36886022}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.01534578}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.01534578}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 19.01534578}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12375371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12375371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.12375371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 355.70904262}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 355.70904262}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 355.70904262}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.96555186}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.96555186}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 10.96555186}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 73.67421685}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 73.67421685}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 73.67421685}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8977.01466873}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8977.01466873}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8977.01466873}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 13455.63285373}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13455.63285373}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 13455.63285373}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 967.40161765}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 967.40161765}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 967.40161765}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.32489627}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.32489627}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.32489627}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 296.86626879}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 296.86626879}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 296.86626879}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 4167.51900477}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4167.51900477}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 4167.51900477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.70622477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.70622477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 261.70622477}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15922.81568973}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15922.81568973}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15922.81568973}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22891799}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22891799}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.22891799}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8448.35132681}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8448.35132681}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8448.35132681}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.42224025}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.42224025}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 20.42224025}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 94.49366841}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94.49366841}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 94.49366841}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.699999999999999}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.699999999999999}, {"name": "Methane, fossil", "categories": ["air"], "amount": 5.699999999999999}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68197775}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68197775}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.68197775}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 479.24856328}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 479.24856328}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 479.24856328}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 8038.40372143}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8038.40372143}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 8038.40372143}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2335.19186209}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2335.19186209}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2335.19186209}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12708.85603515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12708.85603515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12708.85603515}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18118.78539979}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18118.78539979}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18118.78539979}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 28214.80930274}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28214.80930274}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 28214.80930274}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 10284.28180003}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.699999999999999}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.699999999999999}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.9578}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 5.699999999999999}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.699999999999999}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Nitric oxide", "categories": ["air"], "amount": -2.8}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8553.18565655}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8553.18565655}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8553.18565655}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 4473.62844371}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4473.62844371}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4473.62844371}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8553.18565655}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 4473.62844371}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.66}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 234.2}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 234.2}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 234.2}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 234.2}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2013 no LT", "climate change no LT", "global temperature change potential (GTP20) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.4714}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.9}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 18.24837414}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 6957.14306684}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 174.39608796}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.9747162}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 4393.45390921}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 98.08200817}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1115.61822832}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 6314.35359241}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8876.75317735}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 5797.34335077}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.73872249}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 3949.60813155}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7986.04106265}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 4196.41323495}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 11683.35721739}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.90392379}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11266.32205517}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 192.19782135}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1361.718525}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 68.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 14.51076012}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 67.5}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3278.12858556}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5272.10470425}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6889.13353303}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 11523.75388112}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13722.57941308}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18904.21083067}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 4.9}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4714}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4714}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 6.4714}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 18.24837414}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18.24837414}, {"name": "Chloroform", "categories": ["air"], "amount": 18.24837414}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 6957.14306684}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6957.14306684}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 6957.14306684}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 174.39608796}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 174.39608796}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 174.39608796}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9747162}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9747162}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.9747162}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4393.45390921}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4393.45390921}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 4393.45390921}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 98.08200817}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 98.08200817}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 98.08200817}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1115.61822832}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1115.61822832}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1115.61822832}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 6314.35359241}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6314.35359241}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 6314.35359241}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8876.75317735}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8876.75317735}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8876.75317735}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 5797.34335077}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5797.34335077}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 5797.34335077}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.5}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67.5}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 67.5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.73872249}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.73872249}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.73872249}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 3949.60813155}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3949.60813155}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 3949.60813155}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7986.04106265}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7986.04106265}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7986.04106265}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 4196.41323495}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4196.41323495}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 4196.41323495}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 11683.35721739}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11683.35721739}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 11683.35721739}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.90392379}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.90392379}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.90392379}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 11266.32205517}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11266.32205517}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11266.32205517}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 192.19782135}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 192.19782135}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 192.19782135}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1361.718525}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1361.718525}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1361.718525}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 68.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 68.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.51076012}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.51076012}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 14.51076012}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3278.12858556}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3278.12858556}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3278.12858556}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5272.10470425}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5272.10470425}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5272.10470425}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6889.13353303}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6889.13353303}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6889.13353303}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 11523.75388112}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11523.75388112}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 11523.75388112}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13722.57941308}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13722.57941308}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13722.57941308}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18904.21083067}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18904.21083067}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18904.21083067}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6856.19412664}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 68.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 6.4714}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 68.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 6.4714}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4714}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4714}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 68.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Nitric oxide", "categories": ["air"], "amount": -86.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8186.32416562}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8186.32416562}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8186.32416562}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6731.10248487}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6731.10248487}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6731.10248487}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8186.32416562}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6731.10248487}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 7.5}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 276.9}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 276.9}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 276.9}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 276.9}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2013 no LT", "climate change no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 16.40180896}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4804.43907777}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 782.03725986}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 137.56020393}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.89826217}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1982.03546266}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 79.36717675}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 526.54777691}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7665.36131656}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11123.49391992}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3169.25517622}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.3545465}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1746.48198701}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 6291.62957595}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1764.62950881}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 13893.35260104}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.9151946}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10239.23459918}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 147.66224518}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 676.80778461}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 12.18322764}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 28.5}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1728.47068126}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6625.78042077}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4662.93699438}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12397.60343847}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 16069.99763401}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 23506.81999316}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 2.491}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 4.0624}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.40180896}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.40180896}, {"name": "Chloroform", "categories": ["air"], "amount": 16.40180896}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4804.43907777}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4804.43907777}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4804.43907777}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 782.03725986}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 782.03725986}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 782.03725986}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 137.56020393}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 137.56020393}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 137.56020393}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.89826217}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.89826217}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.89826217}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1982.03546266}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1982.03546266}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1982.03546266}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.36717675}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.36717675}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 79.36717675}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 526.54777691}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 526.54777691}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 526.54777691}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7665.36131656}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7665.36131656}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7665.36131656}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11123.49391992}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11123.49391992}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11123.49391992}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3169.25517622}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3169.25517622}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3169.25517622}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.5}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.5}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 28.5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3545465}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3545465}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.3545465}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1746.48198701}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1746.48198701}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1746.48198701}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 6291.62957595}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6291.62957595}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 6291.62957595}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1764.62950881}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1764.62950881}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1764.62950881}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 13893.35260104}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13893.35260104}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 13893.35260104}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.9151946}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.9151946}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.9151946}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10239.23459918}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10239.23459918}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10239.23459918}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 147.66224518}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 147.66224518}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 147.66224518}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 676.80778461}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 676.80778461}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 676.80778461}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.7}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.18322764}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.18322764}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 12.18322764}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1728.47068126}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1728.47068126}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1728.47068126}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6625.78042077}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6625.78042077}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6625.78042077}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4662.93699438}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4662.93699438}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4662.93699438}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12397.60343847}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12397.60343847}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12397.60343847}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 16069.99763401}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16069.99763401}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 16069.99763401}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 23506.81999316}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23506.81999316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 23506.81999316}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8546.70453046}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.7}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Nitric oxide", "categories": ["air"], "amount": -10.8}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8592.20208449}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8592.20208449}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8592.20208449}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5823.72618701}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5823.72618701}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5823.72618701}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8592.20208449}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5823.72618701}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.5}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 264.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.8}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 264.8}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2013 no LT", "climate change no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 60.29647382}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 6941.44823395}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 505.69920794}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3.30219927}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5023.56183413}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 291.77024983}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1870.43870156}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 5859.04711178}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8211.20366114}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6094.03667874}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.65580448}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4589.80812159}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7800.9561974}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5280.10704552}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 10863.17056314}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 32.7741165}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10794.23514189}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 542.83301944}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2434.93685948}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 84.60000000000001}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 44.78808811}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 83.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3484.29927629}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 4875.44842707}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6898.42980647}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10826.80979255}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 12778.94210066}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 17499.90776451}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 7.65}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 60.29647382}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 60.29647382}, {"name": "Chloroform", "categories": ["air"], "amount": 60.29647382}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 6941.44823395}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6941.44823395}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 6941.44823395}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 505.69920794}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 505.69920794}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 505.69920794}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.30219927}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.30219927}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.30219927}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5023.56183413}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5023.56183413}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5023.56183413}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 291.77024983}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 291.77024983}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 291.77024983}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1870.43870156}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1870.43870156}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1870.43870156}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 5859.04711178}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5859.04711178}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 5859.04711178}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8211.20366114}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8211.20366114}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8211.20366114}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6094.03667874}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6094.03667874}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6094.03667874}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 83.9}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 83.9}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 83.9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.65580448}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.65580448}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.65580448}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4589.80812159}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4589.80812159}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4589.80812159}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7800.9561974}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7800.9561974}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7800.9561974}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5280.10704552}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5280.10704552}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5280.10704552}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 10863.17056314}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10863.17056314}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 10863.17056314}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.7741165}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32.7741165}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 32.7741165}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10794.23514189}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10794.23514189}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10794.23514189}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 542.83301944}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 542.83301944}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 542.83301944}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2434.93685948}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2434.93685948}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2434.93685948}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.60000000000001}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84.60000000000001}, {"name": "Methane, fossil", "categories": ["air"], "amount": 84.60000000000001}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.78808811}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.78808811}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 44.78808811}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3484.29927629}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3484.29927629}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3484.29927629}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 4875.44842707}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4875.44842707}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 4875.44842707}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6898.42980647}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6898.42980647}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6898.42980647}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10826.80979255}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10826.80979255}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10826.80979255}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12778.94210066}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12778.94210066}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 12778.94210066}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17499.90776451}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17499.90776451}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 17499.90776451}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6345.34933827}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.60000000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84.60000000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 84.60000000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 84.60000000000001}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Nitric oxide", "categories": ["air"], "amount": 16.7}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 7711.95410637}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7711.95410637}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 7711.95410637}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6489.97806239}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6489.97806239}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6489.97806239}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 7711.95410637}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6489.97806239}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 14}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 263.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 263.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 263.7}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 263.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2013", "climate change", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.3864}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.26099103}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 2504.54117161}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 111.36886022}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 19.01534578}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.12375371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 355.70904262}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 10.96555186}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 73.67421685}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8977.01466873}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 13455.63285373}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 967.40161765}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.32489627}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 296.86626879}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 4167.51900477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 261.70622477}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15922.81568973}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.22891799}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8448.35132681}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 20.42224025}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 94.49366841}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.699999999999999}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.68197775}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.3}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 479.24856328}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 8038.40372143}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2335.19186209}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12708.85603515}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18118.78539979}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 28214.80930274}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.3864}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.9578}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26099103}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 2.26099103}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26099103}, {"name": "Chloroform", "categories": ["air"], "amount": 2.26099103}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2504.54117161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 2504.54117161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2504.54117161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 2504.54117161}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 4473.62844371}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 111.36886022}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 111.36886022}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 111.36886022}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 111.36886022}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.01534578}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 19.01534578}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.01534578}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 19.01534578}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12375371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.12375371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12375371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.12375371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 355.70904262}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 355.70904262}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 355.70904262}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 355.70904262}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.96555186}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 10.96555186}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.96555186}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 10.96555186}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 73.67421685}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 73.67421685}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 73.67421685}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 73.67421685}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8977.01466873}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8977.01466873}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8977.01466873}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8977.01466873}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 13455.63285373}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 13455.63285373}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13455.63285373}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 13455.63285373}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 967.40161765}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 967.40161765}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 967.40161765}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 967.40161765}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.3}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.32489627}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.32489627}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.32489627}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.32489627}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 296.86626879}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 296.86626879}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 296.86626879}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 296.86626879}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 4167.51900477}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 4167.51900477}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4167.51900477}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 4167.51900477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.70622477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 261.70622477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.70622477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 261.70622477}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15922.81568973}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 15922.81568973}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15922.81568973}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15922.81568973}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22891799}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1.22891799}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22891799}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.22891799}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8448.35132681}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 8448.35132681}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8448.35132681}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8448.35132681}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.42224025}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 20.42224025}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.42224025}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 20.42224025}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 94.49366841}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 94.49366841}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94.49366841}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 94.49366841}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.699999999999999}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 5.699999999999999}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.699999999999999}, {"name": "Methane, fossil", "categories": ["air"], "amount": 5.699999999999999}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68197775}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.68197775}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68197775}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.68197775}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 479.24856328}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 479.24856328}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 479.24856328}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 479.24856328}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 8038.40372143}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 8038.40372143}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8038.40372143}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 8038.40372143}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2335.19186209}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 2335.19186209}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2335.19186209}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2335.19186209}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12708.85603515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12708.85603515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12708.85603515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12708.85603515}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18118.78539979}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 18118.78539979}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18118.78539979}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18118.78539979}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 28214.80930274}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 28214.80930274}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28214.80930274}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 28214.80930274}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 10284.28180003}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.9578}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.699999999999999}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 5.699999999999999}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.699999999999999}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 5.699999999999999}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.699999999999999}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Nitric oxide", "categories": ["air"], "amount": -2.8}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8553.18565655}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8553.18565655}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8553.18565655}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8553.18565655}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 4473.62844371}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4473.62844371}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4473.62844371}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8553.18565655}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 4473.62844371}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.66}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 234.2}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 234.2}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 234.2}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 234.2}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 234.2}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2013", "climate change", "global temperature change potential (GTP20)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.4714}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.9}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 18.24837414}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 6957.14306684}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 174.39608796}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.9747162}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 4393.45390921}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 98.08200817}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1115.61822832}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 6314.35359241}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8876.75317735}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 5797.34335077}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.73872249}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 3949.60813155}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7986.04106265}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 4196.41323495}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 11683.35721739}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.90392379}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11266.32205517}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 192.19782135}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1361.718525}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 68.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 14.51076012}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 67.5}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3278.12858556}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5272.10470425}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6889.13353303}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 11523.75388112}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13722.57941308}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18904.21083067}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.9}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 4.9}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4714}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 6.4714}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4714}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 6.4714}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 18.24837414}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 18.24837414}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18.24837414}, {"name": "Chloroform", "categories": ["air"], "amount": 18.24837414}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 6957.14306684}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 6957.14306684}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6957.14306684}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 6957.14306684}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6731.10248487}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 174.39608796}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 174.39608796}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 174.39608796}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 174.39608796}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9747162}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.9747162}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9747162}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.9747162}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4393.45390921}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 4393.45390921}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4393.45390921}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 4393.45390921}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 98.08200817}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 98.08200817}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 98.08200817}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 98.08200817}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1115.61822832}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1115.61822832}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1115.61822832}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1115.61822832}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 6314.35359241}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 6314.35359241}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6314.35359241}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 6314.35359241}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8876.75317735}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8876.75317735}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8876.75317735}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8876.75317735}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 5797.34335077}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 5797.34335077}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5797.34335077}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 5797.34335077}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.5}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 67.5}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67.5}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 67.5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.73872249}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.73872249}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.73872249}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.73872249}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 3949.60813155}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 3949.60813155}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3949.60813155}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 3949.60813155}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7986.04106265}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7986.04106265}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7986.04106265}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7986.04106265}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 4196.41323495}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 4196.41323495}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4196.41323495}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 4196.41323495}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 11683.35721739}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 11683.35721739}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11683.35721739}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 11683.35721739}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.90392379}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 9.90392379}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.90392379}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.90392379}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 11266.32205517}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 11266.32205517}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11266.32205517}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11266.32205517}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 192.19782135}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 192.19782135}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 192.19782135}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 192.19782135}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1361.718525}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 1361.718525}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1361.718525}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1361.718525}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 68.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 68.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 68.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.51076012}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 14.51076012}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.51076012}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 14.51076012}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3278.12858556}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3278.12858556}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3278.12858556}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3278.12858556}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5272.10470425}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5272.10470425}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5272.10470425}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5272.10470425}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6889.13353303}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6889.13353303}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6889.13353303}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6889.13353303}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 11523.75388112}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 11523.75388112}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11523.75388112}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 11523.75388112}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13722.57941308}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13722.57941308}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13722.57941308}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13722.57941308}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18904.21083067}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 18904.21083067}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18904.21083067}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18904.21083067}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6856.19412664}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 6.4714}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 68.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 68.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 6.4714}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 68.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 6.4714}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4714}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4714}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 68.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Nitric oxide", "categories": ["air"], "amount": -86.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8186.32416562}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8186.32416562}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8186.32416562}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8186.32416562}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6731.10248487}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6731.10248487}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6731.10248487}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8186.32416562}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6731.10248487}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 7.5}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 276.9}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 276.9}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 276.9}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 276.9}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 276.9}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2013", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 16.40180896}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4804.43907777}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 782.03725986}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 137.56020393}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.89826217}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1982.03546266}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 79.36717675}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 526.54777691}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7665.36131656}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11123.49391992}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3169.25517622}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.3545465}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1746.48198701}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 6291.62957595}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1764.62950881}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 13893.35260104}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.9151946}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10239.23459918}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 147.66224518}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 676.80778461}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 12.18322764}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 28.5}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1728.47068126}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6625.78042077}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4662.93699438}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12397.60343847}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 16069.99763401}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 23506.81999316}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 2.491}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 4.0624}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.40180896}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 16.40180896}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.40180896}, {"name": "Chloroform", "categories": ["air"], "amount": 16.40180896}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4804.43907777}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 4804.43907777}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4804.43907777}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4804.43907777}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 5823.72618701}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 782.03725986}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 782.03725986}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 782.03725986}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 782.03725986}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 137.56020393}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 137.56020393}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 137.56020393}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 137.56020393}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.89826217}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.89826217}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.89826217}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.89826217}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1982.03546266}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 1982.03546266}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1982.03546266}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1982.03546266}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.36717675}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 79.36717675}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.36717675}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 79.36717675}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 526.54777691}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 526.54777691}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 526.54777691}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 526.54777691}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7665.36131656}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7665.36131656}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7665.36131656}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7665.36131656}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11123.49391992}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 11123.49391992}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11123.49391992}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11123.49391992}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3169.25517622}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3169.25517622}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3169.25517622}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3169.25517622}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.5}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 28.5}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.5}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 28.5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3545465}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.3545465}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3545465}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.3545465}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1746.48198701}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1746.48198701}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1746.48198701}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1746.48198701}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 6291.62957595}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 6291.62957595}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6291.62957595}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 6291.62957595}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1764.62950881}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1764.62950881}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1764.62950881}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1764.62950881}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 13893.35260104}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 13893.35260104}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13893.35260104}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 13893.35260104}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.9151946}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 8.9151946}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.9151946}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.9151946}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10239.23459918}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10239.23459918}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10239.23459918}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10239.23459918}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 147.66224518}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 147.66224518}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 147.66224518}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 147.66224518}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 676.80778461}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 676.80778461}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 676.80778461}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 676.80778461}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.7}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.7}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.18322764}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 12.18322764}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.18322764}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 12.18322764}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1728.47068126}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1728.47068126}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1728.47068126}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1728.47068126}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6625.78042077}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 6625.78042077}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6625.78042077}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6625.78042077}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4662.93699438}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 4662.93699438}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4662.93699438}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4662.93699438}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12397.60343847}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12397.60343847}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12397.60343847}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12397.60343847}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 16069.99763401}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 16069.99763401}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16069.99763401}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 16069.99763401}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 23506.81999316}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 23506.81999316}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23506.81999316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 23506.81999316}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8546.70453046}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.7}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.7}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Nitric oxide", "categories": ["air"], "amount": -10.8}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8592.20208449}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8592.20208449}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8592.20208449}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8592.20208449}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5823.72618701}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5823.72618701}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5823.72618701}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8592.20208449}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5823.72618701}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.5}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 264.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 264.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.8}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 264.8}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2013", "climate change", "global warming potential (GWP20)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 60.29647382}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 6941.44823395}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 505.69920794}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3.30219927}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5023.56183413}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 291.77024983}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1870.43870156}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 5859.04711178}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8211.20366114}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6094.03667874}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.65580448}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4589.80812159}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7800.9561974}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5280.10704552}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 10863.17056314}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 32.7741165}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10794.23514189}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 542.83301944}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2434.93685948}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 84.60000000000001}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 44.78808811}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 83.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3484.29927629}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 4875.44842707}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6898.42980647}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10826.80979255}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 12778.94210066}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 17499.90776451}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 7.65}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 60.29647382}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 60.29647382}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 60.29647382}, {"name": "Chloroform", "categories": ["air"], "amount": 60.29647382}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 6941.44823395}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 6941.44823395}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6941.44823395}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 6941.44823395}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6489.97806239}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 505.69920794}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 505.69920794}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 505.69920794}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 505.69920794}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.30219927}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 3.30219927}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.30219927}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.30219927}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5023.56183413}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5023.56183413}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5023.56183413}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5023.56183413}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 291.77024983}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 291.77024983}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 291.77024983}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 291.77024983}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1870.43870156}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1870.43870156}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1870.43870156}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1870.43870156}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 5859.04711178}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 5859.04711178}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5859.04711178}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 5859.04711178}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8211.20366114}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8211.20366114}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8211.20366114}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8211.20366114}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6094.03667874}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6094.03667874}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6094.03667874}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6094.03667874}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 83.9}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 83.9}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 83.9}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 83.9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.65580448}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 8.65580448}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.65580448}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.65580448}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4589.80812159}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 4589.80812159}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4589.80812159}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4589.80812159}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7800.9561974}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7800.9561974}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7800.9561974}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7800.9561974}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5280.10704552}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 5280.10704552}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5280.10704552}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5280.10704552}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 10863.17056314}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 10863.17056314}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10863.17056314}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 10863.17056314}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.7741165}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 32.7741165}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32.7741165}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 32.7741165}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10794.23514189}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10794.23514189}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10794.23514189}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10794.23514189}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 542.83301944}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 542.83301944}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 542.83301944}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 542.83301944}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2434.93685948}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2434.93685948}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2434.93685948}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2434.93685948}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.60000000000001}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 84.60000000000001}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84.60000000000001}, {"name": "Methane, fossil", "categories": ["air"], "amount": 84.60000000000001}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.78808811}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 44.78808811}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.78808811}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 44.78808811}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3484.29927629}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3484.29927629}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3484.29927629}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3484.29927629}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 4875.44842707}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 4875.44842707}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4875.44842707}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 4875.44842707}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6898.42980647}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6898.42980647}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6898.42980647}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6898.42980647}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10826.80979255}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 10826.80979255}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10826.80979255}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10826.80979255}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12778.94210066}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 12778.94210066}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12778.94210066}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 12778.94210066}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17499.90776451}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 17499.90776451}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17499.90776451}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 17499.90776451}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6345.34933827}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.60000000000001}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 84.60000000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84.60000000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 84.60000000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 84.60000000000001}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Nitric oxide", "categories": ["air"], "amount": 16.7}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 7711.95410637}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7711.95410637}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 7711.95410637}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 7711.95410637}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6489.97806239}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6489.97806239}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6489.97806239}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 7711.95410637}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6489.97806239}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 14}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 263.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 263.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 263.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 263.7}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 263.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 30600}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.079}, {"name": "Ethane", "categories": ["air"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 20000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 30600}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 11200}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.008}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.009}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5210}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5210}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 233}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change no LT", "global temperature change potential (GTP50) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.53}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.096}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 733}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 269}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 36.5}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.285}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1430}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 143}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 10100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.39}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.535}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 785}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 17.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 17000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.46}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 13300}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 181}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 10.4}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1990}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air"], "amount": 4.53}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.096}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.096}, {"name": "Ethane", "categories": ["air"], "amount": 0.096}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 733}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 269}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 36.5}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.285}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1430}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 20}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 143}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 10100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.39}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 10.4}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.535}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 785}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 17.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 17000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.46}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 13300}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 35.5}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 181}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air"], "amount": 13.2}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.22}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1990}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.105}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18200}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9580}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.01}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.011}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9990}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6910}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9990}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6910}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 290}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change no LT", "global warming potential (GWP500) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.002}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.87}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.125}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 46}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1940}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 246}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 46.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 658}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 25.8}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 170}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9880}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 17500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1110}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.013}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.692}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 552}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2750}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 560}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 22.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 17500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.18}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 45.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 220}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.2}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 658}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2090}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10500}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.137}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 34100}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002}, {"name": "Butane", "categories": ["air"], "amount": 0.002}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air"], "amount": 5.87}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.125}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.125}, {"name": "Ethane", "categories": ["air"], "amount": 0.125}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 46}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1940}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 246}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 46.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 658}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 25.8}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 170}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9880}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 17500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1110}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.81}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 7.2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.692}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 552}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2750}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 560}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 22.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 17500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.18}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 45.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 220}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air"], "amount": 10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.58}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 658}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 10600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2090}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10500}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.137}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18200}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Propane", "categories": ["air"], "amount": 0.006}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 34100}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 12700}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.013}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.015}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 6150}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2830}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2830}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2830}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 6150}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2830}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 130}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: biogenic no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: biogenic no LT", "global temperature change potential (GTP50) no LT"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 10.4}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: biogenic no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: biogenic no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: biogenic no LT", "global warming potential (GWP500) no LT"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 7.2}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: biogenic, including SLCFs no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.3864}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.7}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.3864}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: biogenic, including SLCFs no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.491}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 2.491}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: biogenic, including SLCFs no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 7.65}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: fossil no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 30600}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.079}, {"name": "Ethane", "categories": ["air"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 20000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 30600}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 11200}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.008}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.009}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5210}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5210}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 233}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: fossil no LT", "global temperature change potential (GTP50) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.53}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.096}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 733}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 269}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 36.5}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.285}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1430}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 143}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 10100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.39}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.535}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 785}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 17.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 17000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.46}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 13300}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 181}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1990}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air"], "amount": 4.53}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.096}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.096}, {"name": "Ethane", "categories": ["air"], "amount": 0.096}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 733}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 269}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 36.5}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.285}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1430}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 20}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 143}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 10100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.39}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.535}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 785}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 17.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 17000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.46}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 13300}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 35.5}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 181}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air"], "amount": 13.2}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.22}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1990}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.105}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18200}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9580}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.01}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.011}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9990}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6910}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9990}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6910}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 290}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: fossil no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: fossil no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: fossil no LT", "global warming potential (GWP500) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.002}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.87}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.125}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 46}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1940}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 246}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 46.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 658}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 25.8}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 170}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9880}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 17500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1110}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.013}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.692}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 552}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2750}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 560}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 22.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 17500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.18}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 45.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 220}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 658}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2090}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10500}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.137}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 34100}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002}, {"name": "Butane", "categories": ["air"], "amount": 0.002}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air"], "amount": 5.87}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.125}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.125}, {"name": "Ethane", "categories": ["air"], "amount": 0.125}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 46}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1940}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 246}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 46.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 658}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 25.8}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 170}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9880}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 17500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1110}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.81}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.692}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 552}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2750}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 560}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 22.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 17500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.18}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 45.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 220}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air"], "amount": 10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.58}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 658}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 10600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2090}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10500}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.137}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18200}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Propane", "categories": ["air"], "amount": 0.006}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 34100}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 12700}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.013}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.015}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 6150}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2830}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2830}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2830}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 6150}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2830}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 130}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: fossil, including SLCFs no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 30600}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.9578}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.079}, {"name": "Ethane", "categories": ["air"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 20000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 30600}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 11200}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.008}, {"name": "Nitric oxide", "categories": ["air"], "amount": -2.8}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.009}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5210}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5210}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.66}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 233}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: fossil, including SLCFs no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 4.0624}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Nitric oxide", "categories": ["air"], "amount": -10.8}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.5}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: fossil, including SLCFs no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Nitric oxide", "categories": ["air"], "amount": 16.7}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 14}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: including SLCFs no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.3864}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 30600}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.3864}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.9578}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.079}, {"name": "Ethane", "categories": ["air"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 20000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 30600}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 11200}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.9578}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 7.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.008}, {"name": "Nitric oxide", "categories": ["air"], "amount": -2.8}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.009}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5210}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5210}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.66}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 233}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: including SLCFs no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 2.491}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 4.0624}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Nitric oxide", "categories": ["air"], "amount": -10.8}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.5}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: including SLCFs no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 7.65}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Nitric oxide", "categories": ["air"], "amount": 16.7}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 14}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: land use no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: land use no LT", "global temperature change potential (GTP50) no LT"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: land use no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: land use no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: land use no LT", "global warming potential (GWP500) no LT"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: land use, including SLCFs no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.9578}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 7.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: land use, including SLCFs no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: land use, including SLCFs no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 30600}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.079}, {"name": "Ethane", "categories": ["air"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3250}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 5210}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 20000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 30600}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 11200}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.008}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.009}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5210}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5210}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 233}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "global temperature change potential (GTP50)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.53}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.096}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 733}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 269}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 36.5}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.285}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1430}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 143}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 10100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.39}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.535}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 785}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 17.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 17000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.46}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 13300}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 181}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 10.4}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1990}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air"], "amount": 4.53}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.096}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.096}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.096}, {"name": "Ethane", "categories": ["air"], "amount": 0.096}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 733}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 269}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 36.5}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.285}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1430}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 20}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 143}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 10100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.39}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 10.4}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.535}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 785}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 17.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 17000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.46}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 13300}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 35.5}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 181}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air"], "amount": 13.2}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.22}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1990}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.105}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18200}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9580}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.01}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.011}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9990}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6910}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9990}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6910}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 290}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "global warming potential (GWP20)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "global warming potential (GWP500)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.002}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.87}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.125}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 46}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1940}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 246}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 46.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 658}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 25.8}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 170}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9880}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 17500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1110}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.013}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.692}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 552}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2750}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 560}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 22.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 17500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.18}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 45.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 220}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.2}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 658}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2090}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10500}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.137}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 34100}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.002}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002}, {"name": "Butane", "categories": ["air"], "amount": 0.002}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air"], "amount": 5.87}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.125}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.125}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.125}, {"name": "Ethane", "categories": ["air"], "amount": 0.125}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 46}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1940}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 2830}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 246}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 46.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 658}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 25.8}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 170}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9880}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 17500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1110}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.81}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.013}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 7.2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.692}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 552}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2750}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 560}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 22.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 17500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.18}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 45.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 220}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air"], "amount": 10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.58}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 658}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 10600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2090}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10500}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.137}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18200}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Propane", "categories": ["air"], "amount": 0.006}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 34100}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 12700}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.013}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.015}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 6150}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2830}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2830}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2830}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 6150}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2830}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 130}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: biogenic", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: biogenic", "global temperature change potential (GTP50)"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 10.4}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: biogenic", "global warming potential (GWP100)"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: biogenic", "global warming potential (GWP20)"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: biogenic", "global warming potential (GWP500)"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 7.2}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: biogenic, including SLCFs", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.3864}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.7}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.3864}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: biogenic, including SLCFs", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.491}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 2.491}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: biogenic, including SLCFs", "global warming potential (GWP20)"], "exchanges": [{"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 7.65}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: fossil", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 30600}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.079}, {"name": "Ethane", "categories": ["air"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3250}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 5210}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 20000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 30600}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 11200}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.008}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.009}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5210}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5210}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 233}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: fossil", "global temperature change potential (GTP50)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.53}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.096}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 733}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 269}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 36.5}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.285}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1430}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 143}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 10100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.39}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.535}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 785}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 17.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 17000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.46}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 13300}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 181}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1990}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air"], "amount": 4.53}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.096}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.096}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.096}, {"name": "Ethane", "categories": ["air"], "amount": 0.096}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 733}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 269}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 36.5}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.285}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1430}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 20}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 143}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 10100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.39}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.535}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 785}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 17.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 17000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.46}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 13300}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 35.5}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 181}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air"], "amount": 13.2}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.22}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1990}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.105}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18200}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9580}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.01}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.011}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9990}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6910}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9990}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6910}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 290}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: fossil", "global warming potential (GWP100)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: fossil", "global warming potential (GWP20)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: fossil", "global warming potential (GWP500)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.002}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.87}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.125}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 46}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1940}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 246}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 46.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 658}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 25.8}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 170}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9880}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 17500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1110}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.013}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.692}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 552}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2750}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 560}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 22.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 17500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.18}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 45.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 220}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 658}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2090}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10500}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.137}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 34100}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.002}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002}, {"name": "Butane", "categories": ["air"], "amount": 0.002}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air"], "amount": 5.87}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.125}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.125}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.125}, {"name": "Ethane", "categories": ["air"], "amount": 0.125}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 46}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1940}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 2830}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 246}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 46.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 658}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 25.8}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 170}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9880}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 17500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1110}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.81}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.013}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.692}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 552}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2750}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 560}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 22.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 17500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.18}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 45.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 220}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air"], "amount": 10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.58}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 658}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 10600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2090}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10500}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.137}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18200}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Propane", "categories": ["air"], "amount": 0.006}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 34100}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 12700}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.013}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.015}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 6150}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2830}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2830}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2830}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 6150}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2830}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 130}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: fossil, including SLCFs", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 30600}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.9578}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.079}, {"name": "Ethane", "categories": ["air"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3250}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 5210}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 20000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 30600}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 11200}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.008}, {"name": "Nitric oxide", "categories": ["air"], "amount": -2.8}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.009}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5210}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5210}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.66}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 233}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: fossil, including SLCFs", "global warming potential (GWP100)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 4.0624}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Nitric oxide", "categories": ["air"], "amount": -10.8}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.5}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: fossil, including SLCFs", "global warming potential (GWP20)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Nitric oxide", "categories": ["air"], "amount": 16.7}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 14}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: including SLCFs", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.3864}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 30600}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.3864}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.9578}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.079}, {"name": "Ethane", "categories": ["air"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3250}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 5210}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 20000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 30600}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 11200}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.9578}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 7.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.008}, {"name": "Nitric oxide", "categories": ["air"], "amount": -2.8}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.009}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5210}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5210}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.66}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 233}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: including SLCFs", "global warming potential (GWP100)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 2.491}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 4.0624}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Nitric oxide", "categories": ["air"], "amount": -10.8}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.5}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: including SLCFs", "global warming potential (GWP20)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 7.65}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Nitric oxide", "categories": ["air"], "amount": 16.7}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 14}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: land use", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: land use", "global temperature change potential (GTP50)"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: land use", "global warming potential (GWP100)"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: land use", "global warming potential (GWP20)"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: land use", "global warming potential (GWP500)"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: land use, including SLCFs", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.9578}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 7.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: land use, including SLCFs", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: land use, including SLCFs", "global warming potential (GWP20)"], "exchanges": [{"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "acidification: terrestrial no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.72e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.17e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.63e-08}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.38e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "climate change: freshwater ecosystems no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-13}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-13}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 6.82e-13}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 6.82e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 1.87e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.38e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.38e-11}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 5.38e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 5.38e-11}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.48e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.48e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.83e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.83e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 9.61e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 9.61e-10}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 8.93e-11}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 8.93e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 1.57e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 1.57e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.03e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.03e-13}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2.38e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2.38e-09}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.27e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.27e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.27e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.27e-10}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 9.06e-12}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 9.06e-12}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.01e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.01e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 6.01e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 6.01e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.85e-09}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.85e-09}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 5.85e-09}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 5.85e-09}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.21e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.21e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.73e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.73e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3.73e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3.73e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.34e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.34e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.69e-13}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.69e-13}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.15e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.15e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 9.15e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 9.15e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.02e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.02e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.65e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.65e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 8.65e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 8.65e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.02e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.02e-12}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1.85e-09}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1.85e-09}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1.68e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1.68e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.72e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.72e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 7.72e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 7.72e-11}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.34e-12}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-12}, {"name": "Methane, fossil", "categories": ["air"], "amount": 3.34e-12}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 3.34e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.25e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.25e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 3.25e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 3.25e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.39e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.39e-12}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.25e-12}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.25e-12}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 3.25e-12}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 3.25e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2.02e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2.02e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-09}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-09}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7.51e-09}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7.51e-09}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5.97e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5.97e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3.86e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3.86e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74e-09}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 8.74e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 8.74e-09}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8.76e-09}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 2.34e-08}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "climate change: terrestrial ecosystems no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.5e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 2.5e-08}, {"name": "Chloroform", "categories": ["air"], "amount": 6.84e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 6.84e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.97e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97e-06}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.97e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.97e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 5.44e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.44e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 6.7e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 6.7e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.52e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 3.52e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 3.27e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 3.27e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 5.75e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 5.75e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.76e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3.76e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.73e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.73e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8.73e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8.73e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.31e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.31e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 8.31e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 8.31e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.32e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 3.32e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2.2e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2.2e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000214}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000214}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.000214}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.000214}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000445}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000445}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.000445}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.000445}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.37e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.37e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 4.93e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 4.93e-08}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.85e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 9.85e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.33e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.33e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 7.33e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 7.33e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.36e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.36e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 3.36e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 3.36e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 7.4e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 7.4e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000317}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000317}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.000317}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.000317}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.73e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.73e-08}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 6.77e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 6.77e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.16e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.16e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 6.16e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 6.16e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.83e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.83e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.83e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.83e-06}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22e-07}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-07}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.22e-07}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.22e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 1.19e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.11e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.11e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-07}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-07}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1.19e-07}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 7.4e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 7.4e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000275}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000275}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.000275}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.000275}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2.19e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2.19e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000142}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000142}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.000142}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.000142}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00032}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00032}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.00032}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00032}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.000321}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000859}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000859}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.000859}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.000859}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "ecotoxicity: freshwater no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 3.63e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 5.81e-10}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.73e-15}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 2.86e-11}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-10}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.5e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.33e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.82e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.82e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09e-11}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.4e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.4e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09e-11}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1.27e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.4e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.51e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.97e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.7e-15}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.73e-11}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 4.27e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 4.27e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.07e-15}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.32e-12}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 2.57e-09}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.27e-14}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.38e-20}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.54e-11}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.77e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-11}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.8e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.96e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.19e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.19e-10}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.93e-14}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1e-10}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-13}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.05e-18}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.18e-10}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.21e-15}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.51e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.03e-14}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 6.07e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 6.26e-13}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 1.96e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.54e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.35e-18}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.17e-11}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1.64e-11}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1.64e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.16e-13}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.06e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-09}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 7.92e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 5.28e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.89e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.88e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.02e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 7.64e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.75e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.43e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.74e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.47e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.33e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.37e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 9.34e-11}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.46e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.31e-08}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.31e-08}, {"name": "Antimony ion", "categories": ["air"], "amount": 8.84e-08}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 8.84e-08}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 6.85e-08}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 2.13e-07}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 2.13e-07}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.13e-07}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 4.57e-26}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.36e-07}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-09}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-09}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.47e-08}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.47e-08}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 3.98e-09}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 3.92e-08}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 3.92e-08}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.92e-08}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 6.69e-27}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.32e-08}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.44e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 5.93e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.25e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.18e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.62e-07}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.38e-10}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.89e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.09e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.09e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-10}, {"name": "Barium II", "categories": ["air"], "amount": 7.71e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 7.71e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8.16e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.61e-27}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water"], "amount": 1.94e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.59e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.59e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14e-09}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 9.99e-11}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.81e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.73e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.73e-10}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1.44e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.11e-06}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.17e-10}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.19e-14}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.03e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.2e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.78e-15}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.04e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.71e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 4.79e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.79e-11}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.06e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.34e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.34e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.42e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.35e-11}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 2.9e-15}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.98e-10}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-09}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-09}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.31e-08}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.31e-08}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.38e-09}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.54e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.54e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.54e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.62e-27}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.89e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.6e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.97e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.48e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 3.54e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.67e-08}, {"name": "Bifenthrin", "categories": ["air"], "amount": 2.8e-08}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.7e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.46e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.45e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.45e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.12e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.31e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.06e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 6.95e-09}, {"name": "Bromopropane", "categories": ["air"], "amount": 2.52e-14}, {"name": "Bromopropane", "categories": ["water"], "amount": 8.96e-11}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.16e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.16e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.24e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.12e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.52e-09}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 2.9e-11}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.33e-15}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.27e-11}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.04e-14}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.36e-11}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-09}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.08e-07}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38e-09}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38e-09}, {"name": "Cadmium II", "categories": ["air"], "amount": 4.2e-09}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 4.2e-09}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 2.38e-09}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.05e-08}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.05e-08}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.05e-08}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.41e-28}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.17e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.79e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-09}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.36e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.06e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.06e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-09}, {"name": "Carbendazim", "categories": ["air"], "amount": 4.88e-09}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.14e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.83e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.83e-08}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.43e-13}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.43e-13}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 6.9e-14}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.42e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.88e-10}, {"name": "Carboxin", "categories": ["air"], "amount": 2.92e-09}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.59e-09}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 9.59e-09}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Carboxin", "categories": ["water"], "amount": 1.81e-08}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 4.4e-19}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.59e-11}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.41e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 6.3e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 5e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 2.87e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 2.87e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 2.87e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 6.75e-21}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.51e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.54e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.75e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 4.41e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.72e-10}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 3.2e-11}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1.15e-09}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.15e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 2.02e-19}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 6.26e-09}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.92e-14}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.13e-10}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.27e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 5.59e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 5.59e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.25e-13}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.24e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.84e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.1e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.68e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 4.68e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.29e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.24e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.02e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.02e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.35e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.6e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-10}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-10}, {"name": "Chromium III", "categories": ["air"], "amount": 6.08e-10}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 6.08e-10}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.21e-10}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.44e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.44e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.44e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.87e-29}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.6e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.96e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.96e-09}, {"name": "Chromium VI", "categories": ["air"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 5.42e-08}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 5.42e-08}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.42e-08}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 2.37e-26}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 6.02e-08}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.76e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.6e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.84e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["air"], "amount": 1.51e-09}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1.51e-09}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 4.44e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 3.99e-09}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 3.99e-09}, {"name": "Cobalt II", "categories": ["soil"], "amount": 3.99e-09}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 9.43e-29}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.4e-09}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-08}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-08}, {"name": "Copper ion", "categories": ["air"], "amount": 3.84e-08}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.84e-08}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.06e-08}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.02e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.02e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.02e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.88e-27}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1.12e-07}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 6.36e-15}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.88e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.15e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 5.06e-17}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.8e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 8.95e-18}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.34e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.51e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.4e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 5.84e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.4e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.4e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 8.9e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.11e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.04e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.72e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Decanoic acid", "categories": ["water"], "amount": 2.11e-09}, {"name": "Deltamethrin", "categories": ["air"], "amount": 3.72e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 7.76e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.39e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.63e-11}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.39e-10}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.14e-08}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.06e-11}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.93e-09}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-10}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.62e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 9.42e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.19e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.97e-11}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.63e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.38e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.38e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 6.55e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 4.01e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.96e-10}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.11e-10}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 7.06e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.09e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.09e-15}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 3.34e-15}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.21e-10}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.5e-13}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.5e-13}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.57e-19}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.88e-12}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.92e-09}, {"name": "Difenoconazole", "categories": ["air"], "amount": 1.49e-08}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.72e-09}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 5.46e-08}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 1.62e-07}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1.62e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.08e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.39e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.38e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.38e-06}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.08e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 2.72e-14}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.33e-10}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.34e-09}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.97e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.69e-08}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 6.14e-10}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.52e-14}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.77e-10}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.18e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.21e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.52e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1.68e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1.68e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 6.92e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 3.32e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 3.32e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 3.32e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 4.57e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.21e-05}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-10}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.18e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.36e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.05e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.36e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.36e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.38e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.76e-09}, {"name": "Diuron", "categories": ["air"], "amount": 2.45e-08}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.05e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.82e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.55e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.56e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.5e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.8e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.75e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.95e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.24e-12}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 9.24e-12}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 5.09e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49e-09}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.74e-09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 2.85e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 5.82e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.82e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 6.95e-07}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air"], "amount": 3.92e-13}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-13}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.14e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.95e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.89e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 3.85e-11}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 3.59e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.47e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.56e-15}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.37e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.26e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.28e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.28e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.55e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.11e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.02e-14}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.14e-11}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air"], "amount": 2.81e-11}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.81e-11}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 1.58e-15}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water"], "amount": 1.4e-10}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 5.71e-11}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 5.71e-11}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 3.43e-18}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.96e-10}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.23e-13}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 3.35e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.87e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.51e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 5.25e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.65e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.18e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 6.95e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.2e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.03e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.44e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.43e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.56e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.21e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.11e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.11e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.77e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.01e-07}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.3e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.17e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.57e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-09}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 6.47e-09}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 4.85e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.91e-07}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.91e-07}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-08}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2.84e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8.46e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 6.05e-10}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 8.17e-12}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.95e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.85e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.14e-10}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.15e-08}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 3.25e-14}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.31e-10}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.07e-19}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.93e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.27e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.93e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air"], "amount": 9.02e-16}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 9.02e-16}, {"name": "Furfural", "categories": ["air"], "amount": 4.88e-12}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 4.09e-10}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.66e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1.98e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.23e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.23e-08}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air"], "amount": 4.54e-18}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 4.54e-18}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 7.5e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.13e-18}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.81e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.04e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.21e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.57e-11}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.49e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.04e-15}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 4.64e-15}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.08e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.52e-13}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.57e-09}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.32e-09}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.24e-09}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.07e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.83e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.37e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.37e-09}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.98e-09}, {"name": "Indoxacarb", "categories": ["air"], "amount": 8.21e-09}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2.88e-09}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2.36e-08}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.43e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air"], "amount": 1.19e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.19e-17}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air"], "amount": 2.6e-11}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 2.6e-11}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 7.25e-15}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water"], "amount": 1.22e-10}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.38e-09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.22e-08}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.79e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 2.94e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.35e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.35e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.35e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.03e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.01e-09}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-11}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-11}, {"name": "Lead II", "categories": ["air"], "amount": 1.42e-10}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 1.42e-10}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.64e-11}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 3.88e-10}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 3.88e-10}, {"name": "Lead II", "categories": ["soil"], "amount": 3.88e-10}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 4.29e-31}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water"], "amount": 4.21e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.74e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.71e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.45e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-11}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.21e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.14e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.14e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.32e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.17e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.17e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.43e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.03e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.14e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-09}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.01e-08}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.41e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.94e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.42e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.42e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.61e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.34e-10}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 6.27e-16}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-09}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-09}, {"name": "Mercury II", "categories": ["air"], "amount": 1.19e-08}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.19e-08}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 7.72e-10}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 3.27e-08}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 3.27e-08}, {"name": "Mercury II", "categories": ["soil"], "amount": 3.27e-08}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.25e-29}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 3.46e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.03e-10}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 4.18e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.38e-09}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2.32e-09}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2.32e-09}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 4.74e-11}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.51e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.78e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 8.99e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.91e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.26e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.03e-11}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.03e-14}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.01e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3.71e-10}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.74e-15}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.42e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.71e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.95e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35e-09}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.98e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.46e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.58e-10}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.85e-09}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.5e-08}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 7.69e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 5.46e-08}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 1.68e-07}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 1.68e-07}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.64e-13}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.64e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.59e-14}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.96e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 2.54e-13}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.37e-12}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air"], "amount": 5.42e-12}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 5.42e-12}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.4e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.29e-15}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.03e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.51e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.02e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.54e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.06e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.03e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 5.37e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.62e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.08e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.52e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.52e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.71e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.24e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.25e-11}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.25e-11}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.09e-10}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.09e-10}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 9.29e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.57e-10}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.57e-10}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.57e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.01e-29}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.85e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 9.34e-10}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 9.11e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.16e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 9.47e-10}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.71e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.27e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.27e-09}, {"name": "Nickel II", "categories": ["air"], "amount": 1.12e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.12e-08}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 4.58e-09}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.89e-08}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.89e-08}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.89e-08}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.18e-27}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 3.2e-08}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.68e-11}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 2.28e-10}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 8.86e-10}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.3e-09}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.3e-09}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 9.4e-13}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.28e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.27e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.08e-11}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 8.95e-10}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.46e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.06e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 2.29e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 6.47e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.17e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.37e-12}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.04e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.94e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.65e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.67e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.27e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.81e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.83e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.22e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.22e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air"], "amount": 4.37e-15}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.37e-15}, {"name": "Pentane", "categories": ["water"], "amount": 4.99e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.24e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.53e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.99e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 9.47e-11}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.96e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.4e-10}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 8.58e-15}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.74e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 9.42e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 9.42e-11}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.33e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.33e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.84e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.14e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.17e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.31e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.21e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 3.75e-13}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.09e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.59e-13}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.81e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 2.65e-14}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 4.23e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.02e-15}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.65e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.04e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.67e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1.36e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1.36e-10}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.21e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 9.19e-09}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 3.76e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 2.98e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 9.74e-09}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.24e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4e-11}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.1e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air"], "amount": 1.22e-13}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.22e-13}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 3.55e-14}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water"], "amount": 7.1e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 9.98e-10}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air"], "amount": 8.13e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 8.13e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.67e-15}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.54e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.48e-09}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.3e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.19e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.33e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.1e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.21e-08}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 9.19e-18}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09e-10}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air"], "amount": 1.51e-11}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 1.51e-11}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.29e-15}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water"], "amount": 8.05e-11}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 4.53e-13}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air"], "amount": 7.69e-13}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 7.69e-13}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.49e-13}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.9e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.73e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 8.18e-10}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.26e-06}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.7e-07}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.49e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5.6e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.65e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 3.12e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.97e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.63e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.88e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.88e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.26e-10}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.1e-08}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2.69e-09}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22e-09}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-09}, {"name": "Selenium IV", "categories": ["air"], "amount": 3.8e-09}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 3.8e-09}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.02e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 9.61e-09}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 9.61e-09}, {"name": "Selenium IV", "categories": ["soil"], "amount": 9.61e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.06e-28}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.07e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.86e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.15e-09}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.23e-08}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.23e-08}, {"name": "Silver I", "categories": ["air"], "amount": 1.16e-07}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 3.98e-08}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 3.05e-07}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 3.05e-07}, {"name": "Silver I", "categories": ["soil"], "amount": 3.05e-07}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.71e-27}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water"], "amount": 3.37e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-09}, {"name": "Simazine", "categories": ["air"], "amount": 8.25e-09}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.93e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.3e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.01e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.01e-08}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.1e-12}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 2.89e-35}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water"], "amount": 5.71e-12}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.68e-15}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75e-10}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.5e-08}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 9.93e-08}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.98e-10}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.98e-10}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.06e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.06e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 9.94e-08}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-09}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.27e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.07e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.81e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7e-09}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-08}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.02e-08}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.72e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.72e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.72e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8e-08}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.59e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.51e-08}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 4.76e-07}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 1.63e-06}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.3e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.05e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 2.72e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 9.7e-14}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.52e-10}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.32e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.32e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 1.46e-08}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1.46e-08}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.52e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 2.78e-26}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 3.68e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-10}, {"name": "Thiabendazole", "categories": ["air"], "amount": 9.79e-10}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.12e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.59e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 8.57e-10}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 6.48e-18}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water"], "amount": 6.28e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 8.78e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.5e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.02e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-10}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.02e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.22e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air"], "amount": 4.11e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.87e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.25e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.25e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.57e-10}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-10}, {"name": "Tin ion", "categories": ["air"], "amount": 1.11e-09}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.11e-09}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1.48e-10}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 3.04e-09}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 3.04e-09}, {"name": "Tin ion", "categories": ["soil"], "amount": 3.04e-09}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 2.45e-29}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 3.32e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 3.28e-15}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.67e-11}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1.07e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1.07e-13}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 4.93e-14}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.4e-10}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 2.54e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Triallate", "categories": ["air"], "amount": 1.14e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.15e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.04e-08}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.34e-07}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.05e-08}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.13e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.52e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.44e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 7.67e-15}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.18e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.67e-09}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 3.41e-20}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.23e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.36e-09}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 3.24e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 1.76e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 9.83e-06}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.54e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.54e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-11}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.05e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.51e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.46e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.46e-08}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.69e-10}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 3.99e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.17e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.18e-20}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.22e-11}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.12e-11}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-08}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-08}, {"name": "Vanadium V", "categories": ["air"], "amount": 4.3e-08}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 4.3e-08}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7e-08}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.12e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.12e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.12e-07}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 5.44e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.24e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 3.79e-10}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 2.18e-15}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-08}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-08}, {"name": "Zinc II", "categories": ["air"], "amount": 4.94e-08}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4.94e-08}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 9.24e-09}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.33e-07}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.33e-07}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.33e-07}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.48e-25}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.46e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.26e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.67e-08}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.06e-15}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.42e-10}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 7.38e-15}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.65e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 8.94e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.94e-15}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 2.51e-15}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 4.65e-12}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1.68e-10}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1.68e-10}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 3.21e-14}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water"], "amount": 7.78e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 9.62e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "ecotoxicity: marine no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 8.73e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.48e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.69e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water"], "amount": 1.32e-13}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52e-11}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.09e-12}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.52e-11}, {"name": "2,4-D", "categories": ["water"], "amount": 1.52e-11}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46e-12}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 9.27e-12}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 9.27e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 6.63e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 9.27e-12}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 6.33e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.48e-11}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.48e-11}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 6.47e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.38e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.38e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 5.67e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.51e-13}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.67e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.3e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.3e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.05e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.14e-14}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.49e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.3e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.73e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.73e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.35e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.63e-13}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.46e-13}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.1e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.1e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.22e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6.61e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68e-12}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 7.35e-13}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.15e-12}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 5.17e-12}, {"name": "Acephate", "categories": ["water"], "amount": 5.17e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 5.38e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 7.52e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 9.91e-13}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-14}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.08e-15}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.77e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water"], "amount": 2.5e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air"], "amount": 6.25e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 6.25e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 9.39e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water"], "amount": 5.28e-14}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.07e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.51e-13}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 1.59e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 8.95e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.64e-11}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["water"], "amount": 3.41e-10}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water"], "amount": 1.95e-13}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air"], "amount": 3.57e-13}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 3.57e-13}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.67e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.67e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 2.67e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 5.46e-12}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.09e-10}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2.05e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-12}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.47e-10}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.85e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Allyl chloride", "categories": ["water"], "amount": 5.74e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 5.21e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 3.19e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 1.71e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 3.08e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.97e-10}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air"], "amount": 1.12e-13}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.12e-13}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.46e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water"], "amount": 2.7e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 4.88e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.22e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water"], "amount": 3.04e-09}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 2.06e-12}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.03e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.03e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 8.37e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 8.37e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.22e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 6.9e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 6.9e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 6.9e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 7.66e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 0.00016}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 7.66e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 7.66e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.79e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.79e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.43e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.41e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.41e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.41e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.64e-05}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.56e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.56e-05}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.63e-12}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.3e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.44e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Atrazine", "categories": ["water"], "amount": 1.56e-09}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.94e-12}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 1.5e-11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.37e-09}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3e-11}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.38e-10}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.36e-09}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.36e-09}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.89e-06}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.89e-06}, {"name": "Barium II", "categories": ["air"], "amount": 1.91e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.91e-06}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9.17e-07}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.96e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.96e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 1.96e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.18e-06}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.03e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.18e-06}, {"name": "Barium II", "categories": ["water"], "amount": 2.18e-06}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.65e-13}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 3.11e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 4.09e-12}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 1.38e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.51e-12}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 6.1e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.59e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.15e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.34e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water"], "amount": 5.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.73e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 3.96e-12}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.79e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.79e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 5.91e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.16e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.26e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 2.3e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.83e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.83e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 1.28e-09}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 1.28e-09}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 1.23e-13}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.52e-13}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.26e-14}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.38e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 7.34e-13}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.87e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.87e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 7.65e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 7.65e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.79e-07}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.65e-06}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.65e-06}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.65e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.91e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.89e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.91e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 2.91e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.24e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 6.3e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4.36e-07}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4.36e-07}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.34e-11}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.65e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.54e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.89e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 4.59e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2.62e-07}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2.62e-07}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.61e-10}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 7.79e-12}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 1.73e-13}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 2.01e-10}, {"name": "Bromopropane", "categories": ["air"], "amount": 1.45e-13}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.71e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.65e-10}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.7e-10}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.7e-10}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.41e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.13e-11}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 5.24e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.1e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water"], "amount": 5.85e-14}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 1.9e-12}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.1e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water"], "amount": 3.2e-13}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.77e-10}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 1.16e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.48e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 1.86e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1.86e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.07e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.74e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.74e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.74e-07}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 5.25e-07}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 4.85e-06}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 5.25e-07}, {"name": "Cadmium II", "categories": ["water"], "amount": 5.25e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-10}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 5.38e-11}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.74e-10}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.74e-10}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36e-10}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.18e-10}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.62e-11}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.53e-10}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.67e-10}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.67e-10}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.1e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.77e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.44e-11}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.59e-11}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-10}, {"name": "Carboxin", "categories": ["air"], "amount": 1.06e-10}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.33e-11}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 8.02e-11}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.51e-10}, {"name": "Carboxin", "categories": ["water"], "amount": 1.51e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.88e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.4e-13}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.89e-09}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.46e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 8.34e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 8.34e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 8.34e-08}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water"], "amount": 5.42e-10}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-11}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.34e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.08e-10}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.11e-12}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.68e-13}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 3.39e-11}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 3.39e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 1.01e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 2.25e-11}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.85e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 4.92e-12}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.07e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1.3e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.26e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 6.01e-12}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.95e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.91e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 8.48e-09}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.13e-08}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.03e-08}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.03e-08}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.1e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.53e-08}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2.82e-07}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2.82e-07}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 5.04e-10}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 9.52e-11}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 8.39e-12}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 2.33e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.33e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.78e-08}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.92e-08}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.92e-08}, {"name": "Chromium III", "categories": ["soil"], "amount": 4.92e-08}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 5.46e-08}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 6.12e-07}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 5.46e-08}, {"name": "Chromium III", "categories": ["water"], "amount": 5.46e-08}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 3.88e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3.88e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.06e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.92e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.92e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.92e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.25e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.64e-05}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.25e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.25e-05}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.02e-10}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.29e-12}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 3.43e-12}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.06e-12}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 7.79e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 7.79e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.57e-07}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.57e-07}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.57e-07}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.84e-07}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.96e-06}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.84e-07}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.84e-07}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.41e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.41e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.84e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.84e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.84e-07}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.61e-06}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.61e-06}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.61e-06}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.19e-06}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.69e-05}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.19e-06}, {"name": "Copper ion", "categories": ["water"], "amount": 6.19e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air"], "amount": 6.61e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 6.61e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.48e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water"], "amount": 1.1e-12}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.49e-10}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.6e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.91e-14}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.27e-17}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.63e-13}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.58e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 5.68e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.87e-14}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 2.43e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 1.3e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.75e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.12e-10}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.15e-12}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 5.21e-11}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.34e-13}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-11}, {"name": "Decanoic acid", "categories": ["water"], "amount": 4.49e-12}, {"name": "Deltamethrin", "categories": ["air"], "amount": 8.94e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 8.47e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.54e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 8.19e-13}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 4.74e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.32e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5.5e-11}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-11}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.91e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.36e-11}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.36e-11}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 3.96e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.62e-10}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-12}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 4.71e-13}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 3.66e-12}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 3.66e-12}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.28e-10}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.87e-10}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 8.19e-12}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.15e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 2.35e-13}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 6.36e-12}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.39e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.39e-15}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air"], "amount": 1.88e-12}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.88e-12}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.21e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.16e-12}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.53e-15}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.53e-15}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.82e-14}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4e-15}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-09}, {"name": "Difenoconazole", "categories": ["air"], "amount": 2.27e-09}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2.24e-10}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 1.59e-09}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 4.71e-09}, {"name": "Difenoconazole", "categories": ["water"], "amount": 4.71e-09}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.74e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.15e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 4.03e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.8e-08}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.8e-08}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.71e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 9.13e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 6.62e-13}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.11e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.74e-11}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.43e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 9.68e-11}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 7.7e-12}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air"], "amount": 4e-12}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 4e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.1e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 2.44e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 6.48e-13}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 6.91e-11}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.81e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.81e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 4.25e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 4.25e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 6.24e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1.01e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1.01e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1.01e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.44e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.42e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.44e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.44e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 5.94e-13}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-11}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3.32e-11}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 7.82e-12}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 5.06e-11}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.14e-10}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 4.96e-11}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.99e-11}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-09}, {"name": "Diuron", "categories": ["air"], "amount": 1.08e-09}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 8.82e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.7e-10}, {"name": "Diuron", "categories": ["water"], "amount": 1.29e-09}, {"name": "Dodecanol", "categories": ["water"], "amount": 9.08e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.18e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.06e-12}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 4.7e-13}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2.75e-12}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2.03e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 4.15e-13}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.37e-11}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4e-10}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.45e-10}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.43e-10}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 8.35e-10}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 1.69e-09}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1.69e-09}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.88e-07}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.32e-08}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.19e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.59e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.59e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.86e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.86e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 6.47e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.94e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.15e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 8.08e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 9.46e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water"], "amount": 2.36e-14}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-12}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.72e-13}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.91e-12}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.91e-12}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 7.22e-12}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.03e-12}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 2.75e-13}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.75e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 9.26e-13}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 2.77e-13}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air"], "amount": 8.7e-13}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 8.7e-13}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.27e-12}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water"], "amount": 5.04e-13}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.56e-12}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 1.56e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1.06e-12}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.4e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.87e-12}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 4.03e-11}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 3.79e-11}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.28e-09}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 4.39e-12}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.09e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.8200000000000003e-11}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 6.62e-11}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.48e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.36e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.33e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.38e-11}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.56e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.71e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.71e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.89e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.48e-08}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.51e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 4.56e-08}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-09}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.34e-09}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 8.13e-11}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 6.09e-10}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 2.4e-09}, {"name": "Fludioxonil", "categories": ["water"], "amount": 2.4e-09}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.31e-09}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.46e-10}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.07e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.53e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 6.08e-09}, {"name": "Fluorene", "categories": ["air"], "amount": 1.72e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 3.45e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 9.7e-11}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.42e-12}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.07e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.56e-10}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.46e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.62e-12}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.62e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.09e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.48e-12}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.9e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water"], "amount": 1.26e-13}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 2.49e-12}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.17e-12}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air"], "amount": 2.67e-15}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.67e-15}, {"name": "Furfural", "categories": ["air"], "amount": 8.15e-13}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 7.63e-13}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.53e-11}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 7.63e-13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.07e-11}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.69e-12}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 8.77e-13}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 5.97e-12}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 5.97e-12}, {"name": "Glyphosate", "categories": ["water"], "amount": 5.97e-12}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 3.1e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.47e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.47e-10}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air"], "amount": 1.05e-17}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.05e-17}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 8.77e-11}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.6e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water"], "amount": 1.7e-13}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 2.54e-11}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.94e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.42e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.06e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.38e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.8e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 4.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 4.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.11e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 3.89e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 1.56e-14}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.98e-11}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 5.41e-11}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-11}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.85e-11}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.05e-11}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 7.98e-11}, {"name": "Imidacloprid", "categories": ["water"], "amount": 7.98e-11}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-09}, {"name": "Indoxacarb", "categories": ["air"], "amount": 2.9e-09}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 8.8e-11}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 6.91e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 3.55e-11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.08e-11}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air"], "amount": 2.94e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-17}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air"], "amount": 6.76e-13}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 6.76e-13}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.97e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water"], "amount": 4.39e-13}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 4.26e-11}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.87e-10}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.98e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5.81e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 1.13e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 1.13e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 1.13e-06}, {"name": "Lauric acid", "categories": ["air"], "amount": 1.94e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 2.15e-12}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8e-08}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-08}, {"name": "Lead II", "categories": ["air"], "amount": 5.84e-08}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 5.84e-08}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.15e-10}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 9.81e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 9.81e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 9.81e-09}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.07e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.57e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.07e-08}, {"name": "Lead II", "categories": ["water"], "amount": 1.07e-08}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.14e-12}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.37e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 8.13e-12}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.61e-12}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 4.33e-13}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.08e-12}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.08e-12}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-11}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.1e-12}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 3.49e-11}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 3.49e-11}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.15e-11}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 7.31e-13}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 7.68e-14}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.08e-10}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.94e-10}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.19e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.29e-10}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.53e-10}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.53e-10}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.36e-11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 6.97e-12}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 8.91e-13}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.33e-18}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.02e-06}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.02e-06}, {"name": "Mercury II", "categories": ["air"], "amount": 5.1e-06}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 5.1e-06}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.3e-08}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 9.74e-07}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 9.74e-07}, {"name": "Mercury II", "categories": ["soil"], "amount": 9.74e-07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.03e-06}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.31e-05}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.03e-06}, {"name": "Mercury II", "categories": ["water"], "amount": 1.03e-06}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.75e-12}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 1.29e-11}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.05e-12}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.16e-11}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 1.94e-11}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1.94e-11}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 6.97e-13}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5.6e-11}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 5.04e-13}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.9e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 6.52e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 3.23e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.55e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.55e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.23e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.23e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 8.7e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.86e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.86e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5.64e-11}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 7.49e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water"], "amount": 2.34e-14}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 4.81e-11}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-10}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 2.15e-11}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.19e-10}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Methomyl", "categories": ["water"], "amount": 1.96e-10}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 1.82e-11}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-09}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.34e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 9.64e-11}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.85e-10}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 2.11e-09}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.11e-09}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air"], "amount": 8.79e-13}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.79e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 1.67e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water"], "amount": 8.04e-13}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.31e-12}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 4.14e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.04e-12}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.58e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 7.58e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.03e-14}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.17e-13}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.17e-13}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.02e-11}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.28e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water"], "amount": 7.29e-13}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-10}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.4e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.28e-09}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.28e-09}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.28e-09}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.35e-10}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 8.88e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.63e-10}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-08}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 3.05e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.53e-09}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.61e-08}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 4.42e-08}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 4.42e-08}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.77e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.6e-12}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 7.24e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 7.24e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.33e-08}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.33e-08}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.33e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 3.7e-08}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.69e-07}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 3.7e-08}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 3.7e-08}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 7.82e-12}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 7.19e-13}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 8.98e-12}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 7.74e-12}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 8.13e-10}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.15e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.15e-11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 7.93e-12}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.23e-10}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.26e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.26e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 5.76e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.76e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.4e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.4e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.4e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.66e-06}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.66e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 2.66e-06}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-11}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.16e-11}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 2.04e-12}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.63e-11}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.63e-11}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.24e-11}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-14}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.35e-11}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 9.69e-12}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 3.72e-13}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5.1e-11}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 7.59e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 7.89e-11}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 3.93e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.99e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.99e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.67e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.16e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.11e-10}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7.51e-14}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.59e-10}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.06e-12}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.58e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.78e-11}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air"], "amount": 1.2e-14}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.2e-14}, {"name": "Pentane", "categories": ["water"], "amount": 8.58e-12}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.92e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 3.01e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.6e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.72e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.19e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air"], "amount": 8.91e-13}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.91e-13}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.16e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water"], "amount": 2.49e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.14e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.22e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.22e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 9.12e-10}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 4.91e-11}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.04e-10}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.17e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.26e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.05e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 4.39e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.97e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.59e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.4e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 3.38e-12}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 6.31e-12}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.92e-11}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.98e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.44e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1.76e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1.76e-09}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.13e-09}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.72e-10}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.69e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 4.1e-09}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.25e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.89e-11}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 1.75e-13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air"], "amount": 2.52e-13}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.52e-13}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 5.18e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water"], "amount": 5.62e-13}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.26e-11}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air"], "amount": 5.95e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.95e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.99e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water"], "amount": 5.78e-14}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 8.13e-11}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 7.92e-12}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 5.08e-13}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-10}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.94e-11}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.38e-10}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.53e-10}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.53e-10}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.53e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.32e-13}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air"], "amount": 4.83e-13}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.83e-13}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.3e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water"], "amount": 2.9e-13}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 1.05e-15}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.15e-12}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.15e-12}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 3.86e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.94e-12}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 4.88e-11}, {"name": "Pyrene", "categories": ["air"], "amount": 2.25e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.64e-08}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.49e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.09e-13}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.95e-11}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 3.96e-12}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.97e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.39e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.57e-10}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.45e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2.38e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2.38e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.05e-12}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 5.99e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.41e-10}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.38e-11}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 1.96e-06}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.96e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.73e-07}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 8.22e-07}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 8.22e-07}, {"name": "Selenium IV", "categories": ["soil"], "amount": 8.22e-07}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 9.11e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.73e-06}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 9.11e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.11e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.56e-12}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 4.31e-11}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.84e-05}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.84e-05}, {"name": "Silver I", "categories": ["air"], "amount": 5.11e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 5.11e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.21e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.21e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 1.21e-05}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.34e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 0.000134}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.34e-05}, {"name": "Silver I", "categories": ["water"], "amount": 1.34e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-10}, {"name": "Simazine", "categories": ["air"], "amount": 3.63e-10}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.96e-11}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.88e-10}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 5.02e-10}, {"name": "Simazine", "categories": ["water"], "amount": 5.02e-10}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air"], "amount": 2.65e-14}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2.65e-14}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 8.56e-14}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water"], "amount": 1.21e-14}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.34e-10}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air"], "amount": 9.96e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.96e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.5e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water"], "amount": 7.56e-13}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.09e-10}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 5.56e-12}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 5.56e-12}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 5.23e-13}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.81e-12}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 3.81e-12}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.34e-10}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-10}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.6e-11}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.14e-10}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.53e-10}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-09}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 2.01e-09}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.32e-09}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.27e-09}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.27e-09}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.66e-08}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2.35e-08}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.89e-09}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 4.74e-08}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 7.77e-12}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.68e-10}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.8e-11}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.06e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.84e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.84e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.5e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.26e-11}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.94e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.94e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 4.81e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 4.81e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2.07e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 4.53e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 4.53e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 4.53e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 5.03e-05}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 8.21e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 5.03e-05}, {"name": "Thallium I", "categories": ["water"], "amount": 5.03e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.05e-11}, {"name": "Thiabendazole", "categories": ["air"], "amount": 5.14e-11}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.29e-11}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.76e-11}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.76e-11}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 7.16e-12}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.72e-11}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.02e-10}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water"], "amount": 2.26e-11}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-10}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.23e-10}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.96e-10}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.96e-10}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.55e-11}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 6.88e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 9.06e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.31e-10}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.31e-10}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-09}, {"name": "Thiram", "categories": ["air"], "amount": 9.6e-10}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.45e-11}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.16e-10}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.73e-09}, {"name": "Thiram", "categories": ["water"], "amount": 2.73e-09}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.78e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.78e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 5.09e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 5.09e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 6.31e-09}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1.29e-07}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1.29e-07}, {"name": "Tin ion", "categories": ["soil"], "amount": 1.29e-07}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.32e-06}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Tin ion", "categories": ["water"], "amount": 1.41e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air"], "amount": 3.47e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.47e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 8.99e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water"], "amount": 2.9e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.27e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.27e-13}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 3.49e-11}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.94e-12}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.48e-10}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.45e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.51e-11}, {"name": "Triallate", "categories": ["air"], "amount": 1.05e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.43e-11}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.13e-10}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.66e-09}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 9.31e-09}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.01e-09}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.42e-08}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.38e-12}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 6.82e-11}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.14e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.71e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.67e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.35e-11}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 3.54e-09}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.32e-15}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47e-07}, {"name": "Triflumuron", "categories": ["air"], "amount": 2.5e-07}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 5.36e-08}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 2.87e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 4.48e-07}, {"name": "Triflumuron", "categories": ["water"], "amount": 4.48e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.45e-11}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.03e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.84e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.84e-10}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.16e-11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.59e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water"], "amount": 7.98e-14}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 5.95e-13}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.24e-05}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.24e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.05e-05}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.05e-05}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.31e-05}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 8.6e-05}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 8.6e-05}, {"name": "Vanadium V", "categories": ["soil"], "amount": 8.6e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 9.52e-05}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 0.000165}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 9.52e-05}, {"name": "Vanadium V", "categories": ["water"], "amount": 9.52e-05}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.91e-12}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air"], "amount": 1.73e-14}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.73e-14}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.78e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water"], "amount": 3.07e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000212}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000212}, {"name": "Zinc II", "categories": ["air"], "amount": 0.000238}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.000238}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.06e-05}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.000297}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.000297}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.000297}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.000326}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.000368}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.000326}, {"name": "Zinc II", "categories": ["water"], "amount": 0.000326}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.9e-11}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.08e-10}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.11e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 9.34e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.87e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.87e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.32e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.04e-12}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.22e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.22e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 4.23e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 4.35e-14}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air"], "amount": 4.68e-12}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 4.68e-12}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 1.26e-11}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 2.8e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 6.07e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "ecotoxicity: terrestrial no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.14e-12}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.01e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.07e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water"], "amount": 7.92e-12}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.74e-13}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.35e-14}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 6.16e-15}, {"name": "2,4-D", "categories": ["water"], "amount": 6.16e-15}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.1e-18}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 5.32e-20}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 3.8e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.1e-18}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 5.42e-13}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 5.42e-13}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 2.55e-12}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.75e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.1e-12}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.15e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.21e-14}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.14e-13}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.9e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 8.21e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.96e-18}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.1e-15}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.69e-12}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 7.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.84e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.27e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 2.66e-14}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.6e-15}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 9.01e-16}, {"name": "Acephate", "categories": ["water"], "amount": 9.01e-16}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.44e-13}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 3.86e-12}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.04e-11}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.72e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.86e-16}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water"], "amount": 7.63e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 5.07e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water"], "amount": 2.69e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 6.94e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 3.48e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 4.22e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 1.78e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-09}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.45e-16}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water"], "amount": 4.85e-14}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.21e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.21e-10}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 9.88e-12}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.57e-11}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.84e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 8.32e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.32e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.32e-09}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 1.66e-09}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.97e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 7.19e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.3e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.35e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 4.14e-08}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 6.71e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 9.75e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.62e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 4.67e-13}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water"], "amount": 7.09e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 3.97e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.28e-10}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water"], "amount": 8.11e-10}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65e-06}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65e-06}, {"name": "Antimony ion", "categories": ["air"], "amount": 5.29e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 5.29e-06}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.52e-24}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 4.72e-24}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 4.72e-24}, {"name": "Antimony ion", "categories": ["soil"], "amount": 4.72e-24}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 5.24e-24}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.06e-23}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 5.24e-24}, {"name": "Antimony ion", "categories": ["water"], "amount": 5.24e-24}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-06}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-06}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.13e-06}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.13e-06}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.15e-25}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.13e-24}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.13e-24}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.13e-24}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.24e-24}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.83e-24}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.24e-24}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.24e-24}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.98e-13}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.59e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 1.64e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water"], "amount": 1.15e-10}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 6.3e-13}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 7.63e-16}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.98e-09}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 5.77e-16}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.64e-15}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.56e-15}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.94e-16}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.94e-16}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.01e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.01e-08}, {"name": "Barium II", "categories": ["air"], "amount": 2.78e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.78e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 5.86e-26}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.25e-25}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.25e-25}, {"name": "Barium II", "categories": ["soil"], "amount": 1.25e-25}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.39e-25}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.92e-25}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.39e-25}, {"name": "Barium II", "categories": ["water"], "amount": 1.39e-25}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.96e-18}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 5.88e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.19e-15}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 7.42e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.28e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.08e-13}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.08e-13}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 3.94e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 2.13e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 6.63e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 4.87e-13}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water"], "amount": 9.79e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.05e-11}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.47e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.85e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 5.52e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 8.95e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.95e-10}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 8.7e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 5.07e-12}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 5.07e-12}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 9.12e-14}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 2.15e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.06e-14}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 5.44e-13}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.84e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.84e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 4.04e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 4.04e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.27e-26}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 4.86e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 4.86e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 4.86e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 5.32e-25}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.02e-24}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 5.32e-25}, {"name": "Beryllium II", "categories": ["water"], "amount": 5.32e-25}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.14e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 3.51e-09}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 3.51e-09}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.12e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.49e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.53e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 2.59e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 9.13e-09}, {"name": "Bifenthrin", "categories": ["water"], "amount": 9.13e-09}, {"name": "Bisphenol A", "categories": ["water"], "amount": 7.3e-14}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.14e-16}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 8.57e-18}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.09e-13}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.79e-13}, {"name": "Bromopropane", "categories": ["water"], "amount": 8.91e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.31e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 3.77e-14}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 7.59e-15}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 7.59e-15}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 9.83e-12}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 1.71e-14}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water"], "amount": 2.12e-13}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 3.66e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.01e-13}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water"], "amount": 4.2e-12}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.31e-08}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.43e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 2.36e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 2.36e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.48e-27}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.21e-26}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.21e-26}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.21e-26}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 4.66e-26}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.49e-25}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 4.66e-26}, {"name": "Cadmium II", "categories": ["water"], "amount": 4.66e-26}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.7e-12}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.58e-11}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.58e-11}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.48e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.57e-12}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 9.95e-13}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.75e-13}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.75e-13}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 9.72e-12}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 8.54e-11}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.87e-08}, {"name": "Carboxin", "categories": ["air"], "amount": 3.36e-08}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 7.59e-12}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 5.26e-12}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 2.76e-12}, {"name": "Carboxin", "categories": ["water"], "amount": 2.76e-12}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.12e-17}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.81e-14}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 2.3e-09}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 2.27e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 1.4e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 1.4e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 1.4e-09}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.98e-18}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water"], "amount": 3.72e-17}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 3.76e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 7.06e-12}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 1e-16}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 7.3e-08}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.3e-08}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 4.2e-17}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 7.75e-15}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.5e-12}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 5.27e-12}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.76e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 6.35e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 6.35e-10}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 4.71e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 7.83e-11}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.49e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.06e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.11e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.01e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1.01e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.88e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 8.96e-09}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 3.18e-08}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 3.18e-08}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.86e-09}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 8.15e-17}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.44e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.44e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 5.15e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5.15e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 2.21e-27}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6.11e-27}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6.11e-27}, {"name": "Chromium III", "categories": ["soil"], "amount": 6.11e-27}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 6.78e-27}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.84e-26}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 6.78e-27}, {"name": "Chromium III", "categories": ["water"], "amount": 6.78e-27}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.74e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.74e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 9.44e-25}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.61e-24}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.61e-24}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.61e-24}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.9e-24}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.67e-24}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.9e-24}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.9e-24}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.51e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 3.75e-13}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 5.04e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 5.04e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.91e-27}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.61e-26}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.61e-26}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.61e-26}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.88e-26}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.71e-25}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.88e-26}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.88e-26}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.48e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.48e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.96e-26}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.72e-25}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.72e-25}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.72e-25}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.32e-25}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4e-24}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.32e-25}, {"name": "Copper ion", "categories": ["water"], "amount": 6.32e-25}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.57e-13}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water"], "amount": 5.31e-13}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 3.89e-12}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 2.31e-15}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water"], "amount": 7.36e-15}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.25e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.73e-16}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.98e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 1.55e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.7e-19}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.05e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 3.23e-08}, {"name": "Cypermethrin", "categories": ["water"], "amount": 3.23e-08}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.9e-12}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.33e-16}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.78e-10}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 5.78e-14}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-12}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1.3e-13}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1.68e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.57e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.22e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1.04e-22}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 8.6e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 3.11e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 3.27e-11}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.43e-14}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 7.38e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.64e-16}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.64e-16}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.21e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3e-09}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 7.92e-15}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.91e-17}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.91e-17}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 3.71e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6.94e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1.05e-11}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 6.77e-17}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 3.98e-11}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.73e-14}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.73e-14}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.22e-13}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water"], "amount": 8.74e-13}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.1e-11}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.48e-17}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.7e-15}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.33e-07}, {"name": "Difenoconazole", "categories": ["air"], "amount": 1.89e-07}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 8.15e-13}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 7.46e-13}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 5.73e-13}, {"name": "Difenoconazole", "categories": ["water"], "amount": 5.73e-13}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.57e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.41e-08}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.19e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 7.89e-09}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.89e-09}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 8.45e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 7.8e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 3.44e-12}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 9.29e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.68e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 8.57e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.64e-12}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 1.77e-12}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 3.84e-12}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 7.98e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3e-11}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1.62e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1.62e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 2.36e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 3.76e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 3.76e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 3.76e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 2.39e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 5.52e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 2.39e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 2.39e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.47e-14}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 4.83e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.94e-17}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.52e-18}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 7.52e-18}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.3e-12}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.26e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.33e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 5.23e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4.31e-11}, {"name": "Diuron", "categories": ["water"], "amount": 2.9100000000000002e-11}, {"name": "Dodecanol", "categories": ["water"], "amount": 8.69e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.45e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 7.83e-16}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.49e-19}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 5.34e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.17e-21}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.82e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.65e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.69e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 1.23e-09}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.71e-10}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.71e-10}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.29e-07}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air"], "amount": 5.06e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 5.06e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.27e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.06e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.06e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.1e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.41e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.49e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.05e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.14e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water"], "amount": 2.99e-13}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 6.4e-17}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.88e-22}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.88e-22}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.45e-11}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 1.64e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1.73e-08}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.17e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.63e-12}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air"], "amount": 1.92e-09}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.92e-09}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 3.52e-13}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water"], "amount": 7.3e-13}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 1.23e-15}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.57e-15}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 5.19e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.79e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.71e-16}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 7.57e-18}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 2.02e-12}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 7.27e-09}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 5.54e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.51e-12}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.09e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.28e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.65e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.31e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.77e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.98e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 3.06e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.65e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1.41e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.3e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.03e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.03e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.03e-08}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 9.95e-08}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.21e-11}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 1.31e-11}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.65e-11}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.65e-11}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.08e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 4.43e-09}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.61e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.13e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 9.13e-10}, {"name": "Fluorene", "categories": ["air"], "amount": 2.07e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.37e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 2.35e-17}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.19e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.94e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.62e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 5.77e-13}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.01e-11}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 5.22e-17}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water"], "amount": 1.04e-14}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.58e-20}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 7.07e-14}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.07e-12}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air"], "amount": 2.79e-14}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.79e-14}, {"name": "Furfural", "categories": ["air"], "amount": 1.81e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.53e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.44e-21}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.99e-16}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.73e-22}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.26e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 9.11e-14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 9.11e-14}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.36e-16}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-16}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 2.92e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.98e-16}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water"], "amount": 2.21e-15}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.23e-14}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.86e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.18e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.55e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 9.06e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.42e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.42e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.63e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 4.41e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.03e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.03e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 8.95e-15}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.49e-11}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.79e-15}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4.92e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 6.83e-17}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 7.03e-21}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.26e-21}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.26e-21}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.79e-08}, {"name": "Indoxacarb", "categories": ["air"], "amount": 6.86e-08}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.13e-10}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 1.14e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.44e-12}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 4.29e-16}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.29e-16}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1e-09}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1e-09}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.95e-12}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 2.28e-12}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.3e-10}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.56e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.28e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.43e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 2.13e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 2.13e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2.13e-07}, {"name": "Lauric acid", "categories": ["air"], "amount": 9.87e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.76e-14}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.66e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Lead II", "categories": ["air"], "amount": 5.3e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 5.3e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.72e-29}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.78e-28}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.78e-28}, {"name": "Lead II", "categories": ["soil"], "amount": 8.78e-28}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 9.54e-28}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.02e-26}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 9.54e-28}, {"name": "Lead II", "categories": ["water"], "amount": 9.54e-28}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 4.48e-18}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5.81e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.33e-18}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.14e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 7.51e-16}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.25e-16}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.25e-16}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 6.71e-15}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.01e-14}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.01e-14}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.35e-21}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.48e-16}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.17e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 9.63e-15}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.09e-16}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.08e-16}, {"name": "Mancozeb", "categories": ["water"], "amount": 1.08e-16}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 9.9e-15}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.72e-13}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 8.33e-15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 2.1e-24}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 1.7e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.7e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.86e-27}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 7.89e-26}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 7.89e-26}, {"name": "Mercury II", "categories": ["soil"], "amount": 7.89e-26}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 8.34e-26}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.88e-25}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 8.34e-26}, {"name": "Mercury II", "categories": ["water"], "amount": 8.34e-26}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-09}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 5.19e-09}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.6e-11}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 9.35e-12}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 3.96e-12}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 5.19e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 3.14e-15}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 2.18e-15}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.3e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.08e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.5e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.5e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 5.61e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.14e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 4.74e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 4.74e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.19e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.61e-11}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 3.48e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water"], "amount": 4.81e-13}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.36e-10}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 4.81e-12}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.35e-12}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water"], "amount": 7.73e-13}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 6.18e-11}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.46e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6.81e-13}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.56e-13}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 5.89e-13}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 5.89e-13}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.6e-11}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.37e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.4e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.19e-11}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.27e-13}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.36e-10}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.36e-10}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.45e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.61e-10}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 8.27e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.1e-10}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.79e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.29e-10}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.66e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 9.76e-12}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.02e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 7.39e-16}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.2e-16}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2e-16}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.59e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.59e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.79e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.79e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 9.47e-28}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.62e-27}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.62e-27}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.62e-27}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.91e-27}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.22e-26}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.91e-27}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.91e-27}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1.6e-13}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 6.87e-14}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 2.62e-11}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 9.13e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 6.66e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.1e-11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.88e-12}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 6.91e-09}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.33e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.3e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 2.3e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.71e-26}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.34e-25}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.34e-25}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.34e-25}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.59e-25}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.2e-24}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.59e-25}, {"name": "Nickel II", "categories": ["water"], "amount": 2.59e-25}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-09}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 6.05e-09}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 8.3e-19}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 3.78e-19}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.25e-19}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.25e-19}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.39e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.69e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 5.35e-14}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 2.47e-10}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 6.63e-16}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 9.69e-15}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.94e-10}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1.52e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 1.1e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.84e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.34e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.54e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.81e-11}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.35e-19}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.15e-09}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 2.05e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 7.34e-16}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 7.89e-10}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 7.89e-10}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air"], "amount": 2.36e-13}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-13}, {"name": "Pentane", "categories": ["water"], "amount": 2.23e-13}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.32e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.57e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.22e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 6.3e-14}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water"], "amount": 1.12e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.48e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.48e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.82e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.82e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.32e-12}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.55e-12}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.38e-10}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.1e-09}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.74e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.13e-12}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 3.24e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.87e-12}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.22e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 4.56e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 8.37e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-14}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.04e-13}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.73e-15}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 8.88e-10}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 4.31e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 5.75e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 8.81e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 8.81e-10}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 7.27e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 6.22e-10}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 7.72e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.92e-08}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 4.29e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 4.49e-16}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 4.62e-17}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air"], "amount": 7.09e-12}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 7.09e-12}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 2.39e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water"], "amount": 1e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.86e-11}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.42e-14}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water"], "amount": 3.44e-13}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.32e-14}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.61e-11}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.31e-11}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 6.11e-12}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 2.7e-12}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.55e-12}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.19e-15}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.33e-13}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air"], "amount": 5.86e-10}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 5.86e-10}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.76e-13}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water"], "amount": 3.65e-13}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 3.72e-14}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.36e-11}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.36e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.67e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.98e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Pyrene", "categories": ["air"], "amount": 1.38e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 2.64e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 4.89e-15}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1.36e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 7.6e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 3.04e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.06e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.06e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.09e-15}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 4.66e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3.04e-10}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.01e-14}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.64e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 7.64e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.52e-26}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 7.22e-26}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 7.22e-26}, {"name": "Selenium IV", "categories": ["soil"], "amount": 7.22e-26}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 8e-26}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 3.68e-25}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 8e-26}, {"name": "Selenium IV", "categories": ["water"], "amount": 8e-26}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.77e-13}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.59e-13}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000119}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000119}, {"name": "Silver I", "categories": ["air"], "amount": 8.19e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 8.19e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.47e-25}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.13e-24}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.13e-24}, {"name": "Silver I", "categories": ["soil"], "amount": 1.13e-24}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.24e-24}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 9.91e-24}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.24e-24}, {"name": "Silver I", "categories": ["water"], "amount": 1.24e-24}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.07e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.91e-11}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.48e-11}, {"name": "Simazine", "categories": ["water"], "amount": 3.48e-11}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.76e-10}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.76e-10}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.5e-32}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water"], "amount": 3.19e-32}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 8.8e-10}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 4.77e-14}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water"], "amount": 1.58e-13}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 9.02e-14}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.43e-08}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.7e-08}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.7e-08}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 7.38e-15}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.96e-21}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.96e-21}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.68e-11}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.03e-12}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.01e-12}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water"], "amount": 9.55e-13}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 8.65e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 8.7e-11}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.36e-11}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.43e-11}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.43e-11}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-06}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.54e-06}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 9.93e-11}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 8.97e-11}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 6.71e-14}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 3.26e-09}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 5.45e-10}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.57e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-12}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-06}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-06}, {"name": "Thallium I", "categories": ["air"], "amount": 7.15e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 7.15e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.16e-24}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.53e-24}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.53e-24}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.53e-24}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.82e-24}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.55e-24}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.82e-24}, {"name": "Thallium I", "categories": ["water"], "amount": 2.82e-24}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.24e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 4.04e-14}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.18e-14}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.18e-14}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 7.08e-15}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 5.59e-10}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.31e-15}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water"], "amount": 2.43e-13}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 1.11e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.34e-09}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.34e-09}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.16e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 8.34e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.68e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.22e-11}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.22e-11}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air"], "amount": 6.43e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 3.45e-12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.84e-12}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.09e-11}, {"name": "Thiram", "categories": ["water"], "amount": 2.09e-11}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.85e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.85e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 6.82e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 6.82e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 5.57e-28}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.24e-26}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 9.38e-26}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.24e-26}, {"name": "Tin ion", "categories": ["water"], "amount": 1.24e-26}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.06e-13}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water"], "amount": 3.43e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.83e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.83e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.32e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.82e-12}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 9.93e-09}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2.06e-10}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.77e-14}, {"name": "Triallate", "categories": ["air"], "amount": 5.36e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.14e-10}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.07e-10}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 8.53e-13}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.73e-06}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.55e-14}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.1e-14}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.64e-14}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.82e-13}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.03e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.02e-11}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.09e-17}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 2.05e-16}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.67e-05}, {"name": "Triflumuron", "categories": ["air"], "amount": 5.52e-05}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 9.58e-07}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 6.68e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.3e-07}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.29e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.5e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.63e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.63e-10}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.01e-15}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.13e-13}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 7.82e-18}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water"], "amount": 1.47e-16}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 2.26e-15}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.33e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.3e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.3e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.16e-24}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 7.67e-24}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 7.67e-24}, {"name": "Vanadium V", "categories": ["soil"], "amount": 7.67e-24}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 8.48e-24}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.45e-23}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 8.48e-24}, {"name": "Vanadium V", "categories": ["water"], "amount": 8.48e-24}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.67e-11}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 6.28e-14}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water"], "amount": 2.09e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.41e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.41e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 1.66e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1.66e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.66e-24}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.41e-23}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.41e-23}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.41e-23}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.64e-23}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.98e-23}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.64e-23}, {"name": "Zinc II", "categories": ["water"], "amount": 2.64e-23}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 8.48e-10}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 9.19e-14}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.04e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 2.13e-13}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water"], "amount": 7.07e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.14e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 3.88e-13}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air"], "amount": 6.1e-09}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 6.1e-09}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 4.62e-12}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 9.58e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2.13e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "eutrophication: freshwater no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "eutrophication: marine no LT"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "land use no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "photochemical oxidant formation: terrestrial ecosystems no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.71e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.71e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.92e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.15e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.15e-08}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.79e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.79e-09}, {"name": "Acetone", "categories": ["air"], "amount": 4.52e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.52e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.07e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.07e-08}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.62e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.43e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.43e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.54e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air"], "amount": 3.92e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.96e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.96e-08}, {"name": "Cumene", "categories": ["air"], "amount": 2.41e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.11e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.47e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -7.54e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -7.54e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56e-08}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.47e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Formic acid", "categories": ["air"], "amount": 2.26e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Heptane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Hexane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-09}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 8.6e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.6e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 7.54e-10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Methanol", "categories": ["air"], "amount": 9.8e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.97e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.29e-07}, {"name": "Pentane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Phenol", "categories": ["air"], "amount": -3.77e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.77e-09}, {"name": "Propanal", "categories": ["air"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanol", "categories": ["air"], "amount": 3.62e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propionic acid", "categories": ["air"], "amount": 9.8e-09}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Styrene", "categories": ["air"], "amount": 3.77e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77e-09}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.54e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Toluene", "categories": ["air"], "amount": 3.32e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48e-08}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "water use: aquatic ecosystems no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "water use: terrestrial ecosystems no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1.35e-08}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "human health no LT", "climate change: human health no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 1.25e-05}, {"name": "Chloroform", "categories": ["air"], "amount": 3.42e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.42e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000985}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000985}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.000985}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.000985}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.00272}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.00272}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000335}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000335}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.0114}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.0176}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.0176}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.00164}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.00164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000287}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.88e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.88e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.0437}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00416}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00416}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.00416}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.00416}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.000166}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.000166}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0011}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.107}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.107}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.223}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.00683}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.46e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.46e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 4.93e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 4.93e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00367}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00367}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00367}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00367}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0168}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0168}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.0168}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.0168}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0037}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0037}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.87e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.87e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0339}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0339}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000308}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.00142}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.12e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.95e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.55e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.55e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.95e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.0037}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.0037}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.138}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.0109}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.0708}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.16}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.43}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "human health no LT", "human toxicity: carcinogenic no LT"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 2.16e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-06}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 5.75e-06}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 2.16e-07}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Acephate", "categories": ["water"], "amount": 2.69e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 0.000165}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.23e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 7.17e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.83e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 9.87e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air"], "amount": 1.07e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.07e-07}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.23e-10}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water"], "amount": 8.03e-08}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0745}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0745}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0694}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0694}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.00574}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0536}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0536}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0536}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0586}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0586}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0586}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-05}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 9.48e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.44e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 5.11e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 5.11e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 5.11e-06}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.54e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.54e-07}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 3.56e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.24e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.17e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.24e-07}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 4.82e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.43e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.19e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.000312}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000312}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00381}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.91e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.91e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.000889}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.000889}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.18e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.02e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.02e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.02e-05}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.88e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.61e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.88e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 2.88e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 4.42e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 4.42e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000569}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000569}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00103}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.00103}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.00112}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 5.18e-05}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 5.18e-05}, {"name": "Cadmium II", "categories": ["soil"], "amount": 5.18e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 3.29e-05}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.000262}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 3.29e-05}, {"name": "Cadmium II", "categories": ["water"], "amount": 3.29e-05}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 7.18e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.27e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.09e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.09e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 9.73e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 4.29e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.23e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.86e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.65e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 7.03e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.2e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 3.22e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 3.22e-07}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47}, {"name": "Chromium VI", "categories": ["air"], "amount": 2.21}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 2.21}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.61}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.66}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.66}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.66}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.82}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.22}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.82}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.82}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0008}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.64e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 9.01e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.11e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.63e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 331}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 331}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 77.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 263}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 755}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.33e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 2.24e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 2.24e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.68e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.68e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 8.1e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 8.1e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.16e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 7.42e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 7.42e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 2.92e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.45e-05}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 4.32e-06}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000172}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.11e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 4.14e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.08e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4.55e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.12e-09}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.000315}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.000315}, {"name": "Furfural", "categories": ["air"], "amount": 9.63e-07}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air"], "amount": 1.6e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.6e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 3.44e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water"], "amount": 8.81e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.4e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 5.71e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 5.71e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.77e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.84e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 7.54e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 7.54e-06}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 4.26e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.26e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000119}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000119}, {"name": "Lead II", "categories": ["air"], "amount": 8.8e-05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 8.8e-05}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.57e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.28e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.28e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 2.28e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.78e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 5.54e-05}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.78e-06}, {"name": "Lead II", "categories": ["water"], "amount": 4.78e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 4.15e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.37e-07}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0103}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0103}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.000544}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.00251}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.00251}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.00251}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.00244}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0252}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.00244}, {"name": "Mercury II", "categories": ["water"], "amount": 0.00244}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 4.09e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 4.09e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.93e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.29e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000848}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000848}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000448}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000782}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.25e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.87e-07}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.87e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 5.69e-08}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.82e-07}, {"name": "Naphthalene", "categories": ["air"], "amount": 7.98e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00389}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00389}, {"name": "Nickel II", "categories": ["air"], "amount": 0.00301}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.00301}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.000698}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.00118}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.00118}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.00118}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 0.000828}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 0.00396}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.000828}, {"name": "Nickel II", "categories": ["water"], "amount": 0.000828}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.82e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.000112}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.000112}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 2.27e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.97e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.92e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.54e-05}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.12e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.21e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.61e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.017}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.17e-05}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.94e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.95e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.21e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.21e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3.16e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.24e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.33e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.73e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.77e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air"], "amount": 4.44e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 4.44e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.13e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water"], "amount": 7.51e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.08e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.35e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1.26e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.26e-05}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air"], "amount": 6.77e-08}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.77e-08}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 8.86e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water"], "amount": 7.62e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.64e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 7.99e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.04e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.04e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.2e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.12e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "human health no LT", "human toxicity: non-carcinogenic no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 3.35e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0044}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.28e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 2e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.22e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.09e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.66e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.66e-07}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 7.34e-05}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.9e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.84e-06}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.42e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water"], "amount": 9.33e-07}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.0088}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.0088}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.00235}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 0.0149}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.00734}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.18}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.1}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.933}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.933}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.933}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.02}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.35}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.02}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.02}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 1.39e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.00479}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.00228}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.00481}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.00481}, {"name": "Barium II", "categories": ["soil"], "amount": 0.00481}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 0.0073}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water"], "amount": 0.00529}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.08e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3.06e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.86e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 2.96e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.15e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.07e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.44e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000306}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00629}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00629}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.99e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.58e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.58e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.58e-05}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 7.3e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 4.08e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 7.3e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 7.3e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.27e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.76e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.66e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.48e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.64e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.63e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000449}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000449}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.52e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.52e-06}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0342}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0342}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0244}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0244}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.0707}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00326}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00326}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.00326}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00207}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.0165}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00207}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00207}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.64e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.89e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.89e-06}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.74e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.96e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 2.25e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.36e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.92e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.86e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.48e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.28e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.28e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 9.69e-08}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 9.69e-08}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.89e-08}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.04e-07}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water"], "amount": 1.12e-08}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00136}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00136}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00244}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00244}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.000321}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.000878}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.000878}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.000878}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.000962}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.00223}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.000962}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.000962}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 2.53e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2.53e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.9e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["soil"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.72e-05}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water"], "amount": 5.54e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.75e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.92e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.92e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 6.38e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.98e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000197}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2.18e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.18e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.85e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 6.5e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.88e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.88e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.32e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.32e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.72e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1.61e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1.61e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.000126}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.57e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.35e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.51e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 7.09e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.02e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air"], "amount": 8.09e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 8.09e-06}, {"name": "Furfural", "categories": ["air"], "amount": 3.63e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00125}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.57e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 9.28e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 9.28e-06}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00978}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00978}, {"name": "Lead II", "categories": ["air"], "amount": 0.00725}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00725}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.00129}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.00188}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.00188}, {"name": "Lead II", "categories": ["soil"], "amount": 0.00188}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.000394}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.00456}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.000394}, {"name": "Lead II", "categories": ["water"], "amount": 0.000394}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.000113}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.02e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39}, {"name": "Mercury II", "categories": ["air"], "amount": 0.287}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.287}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0151}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.07}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.07}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0677}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.702}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0677}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0677}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000349}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 3.65e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 3.65e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 7.64e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.61e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 9.21e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 9.21e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.12e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.12e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000668}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000668}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000353}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000618}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 7.64e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 7.64e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.42e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.00114}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.000714}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.000258}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 4.86e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.56e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.51e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.35e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.15e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.15e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 3.97e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.97e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 9.23e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.56e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.56e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.56e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 5.24e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 1.1e-05}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.74e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 3.24e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.11e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.92e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.39e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 9.85e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.89e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000138}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 7.23e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.13e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.72e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 5.29e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 9.76e-08}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 5.15e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.78e-08}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 6.25e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 3.37e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.33e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.21e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air"], "amount": 0.0211}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0211}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0424}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.00347}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.00347}, {"name": "Silver I", "categories": ["soil"], "amount": 0.00347}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 0.00771}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water"], "amount": 0.000921}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.05e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water"], "amount": 4.81e-09}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.43e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 2.71e-06}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air"], "amount": 0.249}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.249}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.107}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.235}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.235}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.235}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.422}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water"], "amount": 0.26}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.2e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.63e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.01e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.18e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.12e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.92e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.92e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.69e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air"], "amount": 0.0141}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 0.0141}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.00208}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 0.0253}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.0148}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4.15e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.58e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air"], "amount": 0.449}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.449}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0777}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.547}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.547}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.547}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.677}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water"], "amount": 0.602}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.88e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.36e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.41e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.16e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "human health no LT", "ionising radiation no LT"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 6.45e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 4.09e-11}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 6.75e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 5.1e-11}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 6.87e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1.25e-11}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 6.62e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.21e-07}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 8.15e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water"], "amount": 1.4e-07}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 3.82e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water"], "amount": 1.78e-10}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 3.43e-11}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 3.3e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 3.7e-08}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 4.83e-08}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 5.67e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 5.77e-13}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water"], "amount": 2.17e-06}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 4.2e-10}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 7.9e-12}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 1.27e-09}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 2.67e-10}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.1e-13}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 5.6e-08}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 6.23e-08}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 1.27e-09}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water"], "amount": 1.08e-10}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 2.03e-11}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 1.53e-11}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 3.3e-12}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 4.2e-10}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 6.37e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water"], "amount": 3.95e-10}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 1.53e-12}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 1.53e-12}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water"], "amount": 4.33e-10}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 3.82e-08}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water", "ocean"], "amount": 1.17e-11}, {"name": "Uranium alpha", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water"], "amount": 1.9e-09}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 1.9e-11}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water"], "amount": 2.03e-09}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 2.84e-11}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 1.17e-11}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water"], "amount": 1.9e-09}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 1.2e-13}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "human health no LT", "ozone depletion no LT"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-05}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.28e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000214}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000214}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.00114}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.000161}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000777}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000777}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.000777}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.000777}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.04e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.04e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 8.04e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 8.04e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.34e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.34e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.68e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.68e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2.68e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2.68e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.000764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.000764}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 8.87e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 8.87e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000884}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000884}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0106}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0106}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.0106}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.0106}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0213}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0213}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.0213}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.0213}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5.36e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5.36e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0011}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0011}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.68e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.68e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.0011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.0011}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.00134}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.00134}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "human health no LT", "particulate matter formation no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.000151}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.03e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.000107}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 6.92e-05}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000182}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000145}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "human health no LT", "photochemical oxidant formation: human health no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.72e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.82e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.82e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air"], "amount": 1.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.98e-08}, {"name": "Acrolein", "categories": ["air"], "amount": 1.78e-07}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.78e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -6.27e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -6.27e-08}, {"name": "Benzene", "categories": ["air"], "amount": 3.3e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.52e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 2.94e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air"], "amount": 1.72e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cumene", "categories": ["air"], "amount": 1.06e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 9.24e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.52e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -3.3e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -3.3e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 6.27e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 6.27e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.22e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.22e-07}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.52e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.48e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.48e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.42e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.42e-08}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.3e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Methanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.06e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.63e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.63e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 6.73e-07}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.39e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 9.1e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Phenol", "categories": ["air"], "amount": -1.65e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -1.65e-08}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Styrene", "categories": ["air"], "amount": 1.65e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.3e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 9.57e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.57e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "human health no LT", "water use: human health no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 2.22e-06}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "natural resources no LT", "energy resources: non-renewable, fossil no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.0341}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "natural resources no LT", "material resources: metals/minerals no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.132}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0303}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00527}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 17.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.74}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0267}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0705}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0025}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00241}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0113}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00356}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 73.4}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0443}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000654}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 22.3}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.07}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00212}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00133}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 3.07}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.099}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0202}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00874}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 278}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.83}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.918}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "total: ecosystem quality no LT", "ecosystem quality no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.680299999999999e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 6.158999999999999e-10}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.48373e-12}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.6652e-11}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83562e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.52564e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.3411235e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.83520616e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.83520616e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7236e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.083400011e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.492700000532001e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.492700000532001e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7236e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 5.1363e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.083400011e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.492700000532001e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.522999999999999e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.6019e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.995342e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.995342e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.80725e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.7113922e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.7113922e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.5517e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.6551e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.01482e-11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36004267e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36004267e-08}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.2917e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.5654e-12}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 2.9949e-09}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 2.1337e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.9679973e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.9679973e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.350059938e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.55641e-11}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1.16136e-10}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.311e-11}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.311e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.22876e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.8545e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.320779999999999e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.87616e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.001556000000001e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.24170901e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.24170901e-10}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.1503717e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.1503717e-08}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 8.5333e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04851e-10}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05858e-11}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 4.5908e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.77038805e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.183263e-10}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air"], "amount": 4.5204406e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.5204406e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.4881e-13}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.8318e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.1213e-12}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.801e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 5.8726e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 3.8295e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.7464e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["water"], "amount": 5.3361e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37024635e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.194350000000001e-11}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.37757e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.37757e-10}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.232e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.232e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 3.6996e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.4716e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.783900000000001e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9.863e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.630105e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.630105e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.8867e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 1.347e-09}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 4.0935e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15771e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.647e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.428e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.273e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.093999999999999e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.925140000000001e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.5279e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.3014e-09}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.82132e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air"], "amount": 9.982e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 9.982e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.50817e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.4279e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.022e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.26214e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.49851e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.7676e-10}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.79831e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.79831e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 8.90784e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 8.90784e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.22685e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 6.9213e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 6.9213e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 6.9213e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 7.683600000000001e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 0.00016}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 7.683600000000001e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 7.683600000000001e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.123386e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.123386e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.90447e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.90447e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.43398e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.41392e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.41392e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.41392e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.56432e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.64e-05}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.56432e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.56432e-05}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.17828e-10}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1346e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.0689e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.0208e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.26675e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.26675e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.26675e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.1857e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.330007629999999e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.6535e-07}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.39150577e-10}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.698e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.42000164e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.913800156e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.10360000694e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.10360000694e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.930437e-06}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.930437e-06}, {"name": "Barium II", "categories": ["air"], "amount": 1.938571e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.938571e-06}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9.178159999999999e-07}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.96175e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.96175e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 1.96175e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.18194e-06}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.03e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.18194e-06}, {"name": "Barium II", "categories": ["water"], "amount": 2.18194e-06}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.606500196e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 2.489e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14409719e-09}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 1.087e-10}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2491e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.9148e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.772679999999999e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.772679999999999e-10}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1.148e-08}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.12803e-06}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.2778e-10}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.8389e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.178899999999999e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.053e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47005026e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47005026e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.875178e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.05076e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.6023e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.6023e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.8812e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 3.2029e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.2029e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.377e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.994e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3.994e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.468506999999999e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.468506999999999e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.44142e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.4232e-11}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 5.1476e-12}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.4135e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.99278e-10}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.571314e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.571314e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.17031e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.17031e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.8138e-07}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.6854e-06}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.6854e-06}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.6854e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.9489e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.89e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.9489e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 2.9489e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.594e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.834e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.0444e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.523951e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.523951e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 4.794e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.587e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 3.31e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 1.512e-08}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 7.178e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.72113e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.72113e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.1461073e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.38790514e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.077300857e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 7.151109e-09}, {"name": "Bromopropane", "categories": ["air"], "amount": 1.1492e-12}, {"name": "Bromopropane", "categories": ["water"], "amount": 9.086200000000001e-11}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.465e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.907349999999999e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.24030377e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.1697000759e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.1697000759e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 5.120000000000001e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.2437e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.5907e-09}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.9354e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.3043e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.29705e-11}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 2.29266e-10}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.921400000000001e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.812e-11}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5287e-08}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.1259e-07}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.891379999999999e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.891379999999999e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 4.2242e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 4.2242e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.0938e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.845e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.845e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.845e-07}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 5.367e-07}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 4.85e-06}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 5.367e-07}, {"name": "Cadmium II", "categories": ["water"], "amount": 5.367e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.81297e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.11696e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.5588e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.133979999999999e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.133979999999999e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19026e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.9898e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.16777e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.8453995e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2267475e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2267475e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9602e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.2783e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.5000682e-08}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.6843e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.6843e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.0889e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.6612e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.5213e-09}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9713e-08}, {"name": "Carboxin", "categories": ["air"], "amount": 3.6626e-08}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.61089e-09}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 9.67546e-09}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.825376e-08}, {"name": "Carboxin", "categories": ["water"], "amount": 1.825376e-08}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.8809164e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.60581e-11}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9851e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 6.719e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 5.1687e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 2.9548e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 2.9548e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 2.9548e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44000000198675e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.515420000372e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.9074e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.811e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.390799999999999e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.8217e-10}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 3.22681e-11}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 7.41839e-08}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.41839e-08}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 1.01000042202e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 6.28250775e-09}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air"], "amount": 6.8412273e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 6.8412273e-08}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.10592e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.2319e-10}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 9.1e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 7.039e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 7.039e-10}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.7535e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.32431e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.862e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.846e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.3288e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.323e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 5.893e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 5.893e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.97e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.588e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.28426e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.05138e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.05138e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.6864e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.6952000815e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.01023e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.058238e-06}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.058238e-06}, {"name": "Chromium III", "categories": ["air"], "amount": 7.48608e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.48608e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.8321e-08}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.064e-08}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.064e-08}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.064e-08}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 5.62e-08}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 6.12e-07}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 5.62e-08}, {"name": "Chromium III", "categories": ["water"], "amount": 5.62e-08}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.552896000000001e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.552896000000001e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.05629e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 4.05629e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.06196e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.92542e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.92542e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.92542e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.25602e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.64e-05}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.25602e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.25602e-05}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.0517e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 6.9229e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 5.144300000000001e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.88435e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.737403e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.737403e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 1.28451e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1.28451e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.9144e-08}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.6099e-07}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.6099e-07}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.6099e-07}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.884e-07}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.96e-06}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.884e-07}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.884e-07}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.55101e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.55101e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 3.32384e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.32384e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.946e-07}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.712e-06}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.712e-06}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.712e-06}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.302e-06}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.69e-05}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.302e-06}, {"name": "Copper ion", "categories": ["water"], "amount": 6.302e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air"], "amount": 2.41005783e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41005783e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.496336e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.89631e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.30289e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.6023606e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.810646e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.6665e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.3763373e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5.07e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.0723e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.42870047e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.036e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 6.188000000000001e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.53323e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.53323e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4299e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.0219e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.16150233e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.970099999999999e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.73918e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.54408e-09}, {"name": "Decanoic acid", "categories": ["water"], "amount": 2.11462e-09}, {"name": "Deltamethrin", "categories": ["air"], "amount": 2.946e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 3.193e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.507600000000001e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.7119000000104e-11}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.5234e-10}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.1811e-08}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.753e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.985034300000001e-09}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73316e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.3729e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.633600264e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.633600264e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 5.548e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3362e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.243e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.677892000000001e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.416600291e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.416600291e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.4928e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.129e-09}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.1337e-08}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.29869e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 3.056e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.112350677e-10}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 7.5216e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.470005178e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.470005178e-08}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.17928e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.17928e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.635339999999999e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.23034e-10}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.125253e-11}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.125253e-11}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.8284957e-14}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.8857e-12}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4135e-07}, {"name": "Difenoconazole", "categories": ["air"], "amount": 2.0617e-07}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.944815e-09}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 5.6190746e-08}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 1.66710573e-07}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1.66710573e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7484e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.2825e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.4422e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.48589e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.48589e-06}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 2.096e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 9.9372e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.37102e-10}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.594e-09}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.91574e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 4.07e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.699944e-08}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 6.2347e-10}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.025e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.025e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.48552e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.874200000000001e-10}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9700538e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9700538e-06}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.9700538e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.9700538e-06}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.244924e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.3321e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3362e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3362e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 2.0618e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 2.0618e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 3.0532e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 5.102e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 5.102e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 5.102e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.593e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.97657e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.593e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.593e-05}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.656187e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09252e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 6.0432e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.438200645e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.1006000494e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.371400000752e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.371400000752e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.7426e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.4012e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3505e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.5858e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.06405e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.88131e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.563191e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.57777e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.486299999999999e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.530607829999999e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21470000249e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 9.755e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3.039e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.9541500000117e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.7474e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.7474e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 7.047e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2333e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.5985e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.402999999999999e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 3.0565e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.056100000000001e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.056100000000001e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8228e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8.372e-07}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air"], "amount": 6.642e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 6.642e-12}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 5.440147999999999e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.440147999999999e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 6.692738872000001e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 6.692738872000001e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.99014e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.5485e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.5485e-11}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.5200961e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 3.5200961e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 3.2700893e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 3.2700893e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.750157e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.750157e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 5.750157e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 5.750157e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.766732e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3.766732e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 8.6189e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.730238e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.730238e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8.730238e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8.730238e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.310227e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.310227e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 8.310227e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 8.310227e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.3200906e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 3.3200906e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2000601e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2000601e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2.2000601e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2.2000601e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00021400585}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00021400585}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.00021400585}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.00021400585}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.30259e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.483e-09}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0004450121}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0004450121}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.0004450121}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.0004450121}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3700373e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3700373e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3700373e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3700373e-05}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.1756e-13}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.6926e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16852e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.2872064e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.29910000000288e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.29910000000288e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.7672e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 5.7903e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.50894e-08}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43055768e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43055768e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.1162e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.6307e-11}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air"], "amount": 1.94897e-09}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.94897e-09}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.62358e-12}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water"], "amount": 1.41234e-10}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.26866e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.26866e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78123343e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.9706257e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.713000000000001e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 5.327e-11}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 3.4403e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.547900471e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.528000000757e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 5.3141e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.4086e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.2763e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 7.01371e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.3682e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 7.599999999999999e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2464e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.539800000000001e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.956e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.7608e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.2454e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.2177e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.2177e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.8758e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 8.938000000000001e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.451e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.6259e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.6259e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.6259e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5126e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.1734e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 6.5634e-09}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 4.91221e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.934165e-07}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.934165e-07}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2711e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 3.3676e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.027999999999999e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 3.265e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.35993e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 4.607e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 5.0082e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 5.117e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.154200235e-10}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.6626e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.16056e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.606e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.483852e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.483852e-08}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.15095e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.4358e-10}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.900524070000001e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.943639999999999e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.314100085799999e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.955606999999999e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4224e-10}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air"], "amount": 3.1472e-14}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 3.1472e-14}, {"name": "Furfural", "categories": ["air"], "amount": 1.86695e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.127630000202e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.9543e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.127630000202e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.98070000000144e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.732769e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.44877699e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.665970000000373e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.665970000000373e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.665970000000373e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8926e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.489e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.29470911e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.29470911e-08}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.640000025104e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.640000025104e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 1.05077e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.60050713e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.827221e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.0654423e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.0826e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.249e-08}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.2557e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 8.063800000000001e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.809164e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39003934e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39003934e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.126764e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.483915199999999e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.483915199999999e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.34455e-12}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.6047e-09}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.37410479e-09}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04271e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.049849999999999e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.184000683e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.89050000000703e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.44980000000226e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.44980000000226e-09}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.541e-08}, {"name": "Indoxacarb", "categories": ["air"], "amount": 7.971e-08}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 3.081e-09}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2.4405e-08}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.275617e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.46424e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 8.600000047030001e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.600000047030001e-08}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1.026676e-09}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1.026676e-09}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 3.16725e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water"], "amount": 1.24899e-10}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.40115e-09}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.42488e-09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.2617e-08}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.736e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.605e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 4.164e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.4843e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.4843e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.4843e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 1.784e-11}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.0121676e-09}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.460321999999999e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.460321999999999e-07}, {"name": "Lead II", "categories": ["air"], "amount": 5.885420000000001e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 5.885420000000001e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.314e-10}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 1.0198e-08}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 1.0198e-08}, {"name": "Lead II", "categories": ["soil"], "amount": 1.0198e-08}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.1121e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.57e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.1121e-08}, {"name": "Lead II", "categories": ["water"], "amount": 1.1121e-08}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.7714000448e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 8.89e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.5313000233e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.213709999999999e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.21433751e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.144080125e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.144080125e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2503e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.3310671e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.204910100000001e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.204910100000001e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.951499999999999e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.0373100000135e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.1477148e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.10228e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.27494e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.47190963e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.972900040900001e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.4653000108e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.4653000108e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.6736099e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.41742e-10}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 1.0789933e-10}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 6.303300021e-16}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.192228e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.192228e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 2.21119e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 2.21119e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.3772e-08}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0067e-06}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0067e-06}, {"name": "Mercury II", "categories": ["soil"], "amount": 1.0067e-06}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.0646e-06}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.31e-05}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.0646e-06}, {"name": "Mercury II", "categories": ["water"], "amount": 1.0646e-06}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.8765e-10}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.133500000000001e-09}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 5.6209e-09}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.5905e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.40095e-09}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2.34336e-09}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2.34336e-09}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 5.67097e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.565600314e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4050618e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.552e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.885999999999999e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 9.035899999999999e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.982679e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 9.982679e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3302e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3302e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 7.3302e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 7.3302e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3600915e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3600915e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 3.3600915e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 3.3600915e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 7.400202e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 7.400202e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00031700865}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00031700865}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.00031700865}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.00031700865}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.956307e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.956307e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 4.0236e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.231e-11}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 6.770185e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 6.770185e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.160168e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.160168e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 6.160168e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 6.160168e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8300772e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8300772e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.8300772e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.8300772e-06}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2200334e-07}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2200334e-07}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.2200334e-07}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.2200334e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1900325e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1900325e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 1.1900325e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.1900325e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.18562603e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.18562603e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1900325e-07}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1900325e-07}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1.1900325e-07}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.1900325e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 7.400275968e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 7.400275968e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.04391e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.435e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00027500751}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00027500751}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.00027500751}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.00027500751}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2.1900597e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2.1900597e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00014200386}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014200386}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.00014200386}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.00014200386}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.1144e-13}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.9244e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.894100000000001e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 2.0765e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74674e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 6.00631e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.322135e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.479677299999999e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.479677299999999e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.479677299999999e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.38e-10}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8735e-07}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.6234e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 7.787081e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 5.5285656e-08}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 1.70110589e-07}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 1.70110589e-07}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.297143e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.297143e-09}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.1759e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 3.4104e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.8277e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.8277e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 5.5654e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.5594e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41003796e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41003796e-08}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.6673e-12}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.416369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.416369999999999e-10}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.142e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.9012e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.47429e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.06189e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.3719e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9329e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.8029e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3719e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.03409e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.03409e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.03409e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63375e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.07254e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.0387276e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26365e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.07675e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.6653000124e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.106100000739e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.56420000032e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.56420000032e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.767999999999999e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 5.336e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.157425e-07}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.157425e-07}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 9.0409e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 9.0409e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.21929e-08}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.3557e-08}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.3557e-08}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.3557e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 3.7285e-08}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.69e-07}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 3.7285e-08}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 3.7285e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17798e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2.007877e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.25798e-09}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 9.4494e-10}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.3103e-08}, {"name": "Naphthalene", "categories": ["air"], "amount": 9.302e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.6425e-09}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 9.5681e-10}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.4533e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.059327e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.059327e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 8.0712e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 8.0712e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.8558e-07}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.4289e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.4289e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.4289e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.692e-06}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.692e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 2.692e-06}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4485e-09}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 6.2896e-09}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1.6504000083e-10}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 8.971000003780001e-10}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.316300000125e-09}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.316300000125e-09}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitric oxide", "categories": ["air"], "amount": 3.14e-07}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.884e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 7.094000000000001e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00032000874}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00032000874}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.00032000874}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00032000874}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 2.053e-07}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 3.436e-09}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.08772e-11}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.1555e-09}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 7.78690663e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.498169e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.305e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11911e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 4.179e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 9.703e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.409e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.409e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.171e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.17877e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.189100000000001e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.956e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 9.015100535000001e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.0009e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.975e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.28060734e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.429e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.1088e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.24349e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.24349e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air"], "amount": 3.020025237e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.020025237e-08}, {"name": "Pentane", "categories": ["water"], "amount": 4.998803000000001e-09}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.00032100876}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.017e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.002e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 2.0333e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 8.117e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.0794e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.461900645e-10}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air"], "amount": -3.749579e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.749579e-09}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.167158e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.7761e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 3.562e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 3.562e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.472000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.472000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.95232e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.231355e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.757099999999999e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.6404e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 8.9875e-08}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.19505e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.0975e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.12529e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.82659e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.15565e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 5.0829e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.402442000000001e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.68484e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.1031573e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.5872e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.2429e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.6319e-08}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.898e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.898e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 2.777e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 2.777e-09}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.4957e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.0084e-08}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.317e-10}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.413e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.0294e-08}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.3839e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 2.2356e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4117449e-11}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.11750462e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air"], "amount": 5.4307464e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.4307464e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 7.6055e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water"], "amount": 8.1562e-11}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.0292e-09}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air"], "amount": 3.62007158e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62007158e-08}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 2.3687e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.9418e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.561343199999999e-09}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.6402e-10}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.32608e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8246e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.36551e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.11407e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.275855e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.275855e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.275855e-08}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63119919e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09465e-10}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air"], "amount": 6.01583e-10}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 6.01583e-10}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.47729e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water"], "amount": 8.115500000000002e-11}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 4.9125e-13}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.6519e-11}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.6519e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.679e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 7.074e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.3538e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.9068e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 4.448e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.278e-06}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.7413e-07}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.389e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.389e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.511389e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.0395e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.8366e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.887e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.211e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.2767e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.6849e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.9144e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.9144e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.2705209e-10}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.167e-09}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.1445e-08}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2.8868e-09}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.85901e-11}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57122e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57122e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 2.7278e-06}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 2.7278e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.7502e-07}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 8.316100000000001e-07}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 8.316100000000001e-07}, {"name": "Selenium IV", "categories": ["soil"], "amount": 8.316100000000001e-07}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 9.217e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.73e-06}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 9.217e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.217e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.904e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.88237e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.193859000000001e-09}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001874323}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001874323}, {"name": "Silver I", "categories": ["air"], "amount": 0.000133116}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.000133116}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.6198e-06}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.2405e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.2405e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 1.2405e-05}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.3737e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 0.000134}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.3737e-05}, {"name": "Silver I", "categories": ["water"], "amount": 1.3737e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55942e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.15613e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.0866e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.33571e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.06368e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.06368e-08}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.771265e-10}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.771265e-10}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 8.56e-14}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water"], "amount": 5.7221e-12}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.5114e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air"], "amount": 3.77007198e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77007198e-09}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.505038e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75914e-10}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.52090902e-08}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.14369e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0008590233999999999}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0008590233999999999}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.0008590233999999999}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0008590233999999999}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.5520356e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.5520356e-07}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.4553038e-10}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.06381000000196e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.06381000000196e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1.003208e-07}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3431e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.28703e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.185009999999999e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.8453955e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7556e-09}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14932e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9.172099999999999e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.7515e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.593736e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.742943e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.742943e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1146e-06}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.7225e-06}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.709199999999999e-08}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 4.898993e-07}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 1.6774897e-06}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.378371e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.4728e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.303e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.7316e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.687849999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.687849999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.53667e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.7108e-10}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.043632000000001e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.043632000000001e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 4.88296e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 4.88296e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2.07152e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 4.53331e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 4.53331e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 4.53331e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 5.03368e-05}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 8.21e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 5.03368e-05}, {"name": "Thallium I", "categories": ["water"], "amount": 5.03368e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58345e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.34304e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.138841e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.6029404e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05376318e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05376318e-08}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 8.6416708e-10}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.0562e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.0200131648e-10}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water"], "amount": 6.302843e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8483e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.2836e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.6623e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.11236e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.11236e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03395e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.36888e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.4302e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.3474e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.06432e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.06432e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.531e-08}, {"name": "Thiram", "categories": ["air"], "amount": 1.15e-08}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.89795e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.391784e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.277509e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.277509e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.663257e-06}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.663257e-06}, {"name": "Tin ion", "categories": ["air"], "amount": 1.19211e-06}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.19211e-06}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 6.458e-09}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1.3204e-07}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1.3204e-07}, {"name": "Tin ion", "categories": ["soil"], "amount": 1.3204e-07}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.4432e-07}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.32e-06}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.4432e-07}, {"name": "Tin ion", "categories": ["water"], "amount": 1.4432e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.32003648e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32003648e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.099279999999999e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.7333e-11}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.764e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.764e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 3.62693e-11}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.4476e-10}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 3.5878e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 5.11706e-07}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2151177e-09}, {"name": "Triallate", "categories": ["air"], "amount": 7.55e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.4183e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.202e-08}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.29660853e-07}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.87331e-06}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.15100855e-08}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.144200041e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.7988e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.508216400000001e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19007233e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19007233e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.738967e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.1927e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.7237e-09}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.9184e-07}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49109341e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.26525e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.895e-09}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7987e-05}, {"name": "Triflumuron", "categories": ["air"], "amount": 5.869e-05}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 2.7716e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 1.0785e-05}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.5978e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.5978e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.932e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 4.985e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.763e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.5447e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.5447e-08}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.8260301e-10}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 4.10713e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.2304e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.590078418e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.2279947e-11}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.179726e-11}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.57424e-05}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.57424e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.2843e-05}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.2843e-05}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.3117e-05}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 8.6112e-05}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 8.6112e-05}, {"name": "Vanadium V", "categories": ["soil"], "amount": 8.6112e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 9.5324e-05}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 0.000165}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 9.5324e-05}, {"name": "Vanadium V", "categories": ["water"], "amount": 9.5324e-05}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.1061e-10}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.81e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.81e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.84498e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08516e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.036e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000214422}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000214422}, {"name": "Zinc II", "categories": ["air"], "amount": 0.0002397094}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.0002397094}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.060924e-05}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.000297133}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.000297133}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.000297133}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.000326146}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.000368}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.000326146}, {"name": "Zinc II", "categories": ["water"], "amount": 0.000326146}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.44e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.7856e-08}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.119496e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.43238e-10}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.880061599999999e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.880061599999999e-08}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.342038e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.66747e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.4114e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.4114e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 5.3951e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 5.0815e-12}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air"], "amount": 6.27268e-09}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 6.27268e-09}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 1.72521e-11}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water"], "amount": 7.9038e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.782e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "total: human health no LT", "human health no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 2.495e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00440673}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376575}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141216}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176269}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176269}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 2.36e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.28e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 0.000165}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 5.26e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 5.26e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.139e-06}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 6.92e-06}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 6.45e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 4.09e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137924}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137924}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0001721}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.9e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.84e-06}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 6.75e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 5.1e-11}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.000151}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.317e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.317e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.543e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water"], "amount": 1.0133e-06}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.0088}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.0088}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.00235}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 0.0149}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.00734}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 6.87e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1.25e-11}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3745}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3745}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.2494}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.2494}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.10574}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.9866}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.9866}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.9866}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.0786}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.484}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.0786}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.0786}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-05}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.206e-06}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 3.106e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.5e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.5e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.5e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.00479}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.00228}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.00481}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.00481}, {"name": "Barium II", "categories": ["soil"], "amount": 0.00481}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 0.0073}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water"], "amount": 0.00529}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.67e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.67e-07}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.640000000000001e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.546e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.2386e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.536e-07}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.97e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.5207e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.434e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0003369}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0003369}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.004116}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0063691}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0063691}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146889}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146889}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 4.17e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.6e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.6e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.6e-05}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.018e-05}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.69e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.018e-05}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.018e-05}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.27e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.76e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.66e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.48e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.64e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.63e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000449}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000449}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 6.234e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.234e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.034769}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.034769}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.02543}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.02543}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.07182}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.0033118}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.0033118}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.0033118}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.0021029}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.016762}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.0021029}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.0021029}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 6.62e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.21e-07}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 8.15e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water"], "amount": 1.4e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.498e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.838e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.784e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.279e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.279e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 3.82e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water"], "amount": 1.78e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.74e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.169e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.54e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.336e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.336e-05}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.59e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 5.780000000000001e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.096e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.125e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.673e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9.679999999999999e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.602e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.602e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 9.69e-08}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 9.69e-08}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.89e-08}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.04e-07}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water"], "amount": 1.12e-08}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47136}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47136}, {"name": "Chromium VI", "categories": ["air"], "amount": 2.21244}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 2.21244}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.610321}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.660878}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.660878}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.660878}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.820962}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.22223}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.820962}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.820962}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 3.43e-11}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 3.3e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 3.7e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 2.53e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2.53e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.9e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["soil"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.72e-05}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water"], "amount": 5.54e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 4.83e-08}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0008}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.75e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.92e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.92e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.748e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 4.62e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002871}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.738e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.738e-07}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.11e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.63e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.85e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010078}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010078}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.0010078}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.0010078}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 331}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 331}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 77.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 263}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 755}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.98e-05}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0027202428}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0027202428}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0005490699}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0005490699}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.72e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.0114}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.89e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.89e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.01874161}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.01874161}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.00180181}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.00180181}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000287}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.034e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.034e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.16e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044477}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044477}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.044477}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.044477}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0042404}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0042404}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.0042404}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.0042404}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.000180142}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.000180142}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011268}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011268}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0011268}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0011268}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.107764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.107764}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.0001115}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0001705}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.223}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.00683}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.57e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.35e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 7.83e-06}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000172}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.11e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 4.14e-05}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.1509e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.57e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.412e-09}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.00032309}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00032309}, {"name": "Furfural", "categories": ["air"], "amount": 4.593e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.5e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.5e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.1144e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8881e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00125}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.4e-05}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 8.98e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 8.98e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.527e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.077e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.03142e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.03142e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 5.67e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 5.77e-13}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water"], "amount": 2.17e-06}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 4.2e-10}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 7.9e-12}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 8.019999999999999e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.019999999999999e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.009899}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.009899}, {"name": "Lead II", "categories": ["air"], "amount": 0.007338000000000001}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.007338000000000001}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0013057}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0019028}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0019028}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0019028}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.00039878}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.0046154}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.00039878}, {"name": "Lead II", "categories": ["water"], "amount": 0.00039878}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 1.27e-09}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.0001545}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.339e-06}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 2.67e-10}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.404}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.404}, {"name": "Mercury II", "categories": ["air"], "amount": 0.2973}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.2973}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.015644}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.07251}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.07251}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.07251}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.07014}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.7272}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.07014}, {"name": "Mercury II", "categories": ["water"], "amount": 0.07014}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00123793}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00123793}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01427}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01427}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.01427}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.01427}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03809999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03809999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.03809999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.03809999999999999}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 4.09e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 4.09e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0037536365}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0037536365}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.27399e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.27399e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.057e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.239e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.03509209999999999}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.03509209999999999}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000308}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.00142}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.12e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.95e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.44233e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.44233e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.95e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.006316}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.006316}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.0008010000000000001}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.0014}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.138}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.01224764}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.01224764}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.0708}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 7.67e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.00114}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.000714}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.000258}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air"], "amount": 5.274499999999999e-07}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 5.274499999999999e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 5.7386e-08}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.8356e-07}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.049e-05}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3.235e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0039415}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0039415}, {"name": "Nickel II", "categories": ["air"], "amount": 0.0030497}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.0030497}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.0007072300000000001}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.0011956}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.0011956}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.0011956}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 0.000839}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 0.0040124}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.000839}, {"name": "Nickel II", "categories": ["water"], "amount": 0.000839}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.0973e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.00010839}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 5.14e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6.06e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.011e-05}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.1e-13}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.11e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.00011337}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.00011337}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 2.662e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.209e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.16}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 2.905e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 2.329e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000138}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.843e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.623e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.46e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 6.9e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1.1176e-06}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 5.6e-08}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 6.23e-08}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 1.27e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.017}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.685e-05}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 9.818e-07}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.200000000000001e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.58e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 6.54e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 4.37e-07}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water"], "amount": 1.08e-10}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 2.03e-11}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 1.53e-11}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 3.3e-12}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air"], "amount": 0.0211}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0211}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0424}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.00347}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.00347}, {"name": "Silver I", "categories": ["soil"], "amount": 0.00347}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 0.00771}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water"], "amount": 0.000921}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 4.2e-10}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 6.37e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water"], "amount": 3.95e-10}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.345e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.3781e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000182}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.43}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000145}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 1.53e-12}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 1.53e-12}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water"], "amount": 4.33e-10}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.43e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-06}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air"], "amount": 0.249}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.249}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.107}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.235}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.235}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.235}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.422}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water"], "amount": 0.26}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 3.82e-08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air"], "amount": 3.854e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.854e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 5.33e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water"], "amount": 2.381e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.01e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.85e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.688e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.47e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.18e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.18e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.69e-08}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water", "ocean"], "amount": 1.17e-11}, {"name": "Uranium alpha", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water"], "amount": 1.9e-09}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 1.9e-11}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water"], "amount": 2.03e-09}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 2.84e-11}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 1.17e-11}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water"], "amount": 1.9e-09}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air"], "amount": 0.0141}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 0.0141}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.00208}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 0.0253}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.0148}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 2.22e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 1.2e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air"], "amount": 4.277e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 4.277e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 5.036e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water"], "amount": 2.342e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air"], "amount": 0.449}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.449}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0777}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.547}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.547}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.547}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.677}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water"], "amount": 0.602}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 7.52e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.159e-06}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.0806e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0806e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.341e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.1816e-07}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "total: natural resources no LT", "natural resources no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.132}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0303}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00527}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 17.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.74}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0267}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0705}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0025}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00241}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0113}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00356}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 73.4}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0443}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000654}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 22.3}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.07}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.0341}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00212}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00133}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 3.07}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.099}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0202}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00874}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 278}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.83}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.918}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1.35e-08}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "acidification: terrestrial"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.72e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.17e-07}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.63e-08}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.38e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "climate change: freshwater ecosystems"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 6.82e-13}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-13}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-13}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 6.82e-13}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 6.82e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 1.87e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 5.38e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.38e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.38e-11}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 5.38e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 5.38e-11}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.48e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.48e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.83e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.83e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 9.61e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 9.61e-10}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 8.93e-11}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 8.93e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 1.57e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 1.57e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 1.57e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.03e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.03e-13}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 2.38e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2.38e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2.38e-09}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2.27e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.27e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.27e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.27e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.27e-10}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 9.06e-12}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 9.06e-12}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 6.01e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.01e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.01e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 6.01e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 6.01e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 5.85e-09}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.85e-09}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.85e-09}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 5.85e-09}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 5.85e-09}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 1.21e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.21e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.21e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3.73e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.73e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.73e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3.73e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3.73e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.34e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.34e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.69e-13}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.69e-13}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 9.15e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.15e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.15e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 9.15e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 9.15e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.02e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.02e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 8.65e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.65e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.65e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 8.65e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 8.65e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.02e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.02e-12}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1.85e-09}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1.85e-09}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 1.68e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1.68e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1.68e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 7.72e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.72e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.72e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 7.72e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 7.72e-11}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 3.34e-12}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.34e-12}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-12}, {"name": "Methane, fossil", "categories": ["air"], "amount": 3.34e-12}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 3.34e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 3.25e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.25e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.25e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 3.25e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 3.25e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.39e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.39e-12}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 3.25e-12}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.25e-12}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.25e-12}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 3.25e-12}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 3.25e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2.02e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2.02e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7.51e-09}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-09}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-09}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7.51e-09}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7.51e-09}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5.97e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5.97e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 3.86e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3.86e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3.86e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 8.74e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74e-09}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 8.74e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 8.74e-09}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8.76e-09}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 2.34e-08}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 2.34e-08}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "climate change: terrestrial ecosystems"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2.5e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.5e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 2.5e-08}, {"name": "Chloroform", "categories": ["air"], "amount": 6.84e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 6.84e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 1.97e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.97e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97e-06}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.97e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.97e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 5.44e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.44e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 6.7e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 6.7e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.52e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 3.52e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 3.27e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 3.27e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 5.75e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 5.75e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 5.75e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.76e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3.76e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8.73e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.73e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.73e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8.73e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8.73e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 8.31e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.31e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.31e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 8.31e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 8.31e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.32e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 3.32e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2.2e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2.2e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2.2e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.000214}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000214}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000214}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.000214}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.000214}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.000445}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000445}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000445}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.000445}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.000445}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1.37e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.37e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.37e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 4.93e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 4.93e-08}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.85e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 9.85e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 7.33e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.33e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.33e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 7.33e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 7.33e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 3.36e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.36e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.36e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 3.36e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 3.36e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 7.4e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 7.4e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.000317}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000317}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000317}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.000317}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.000317}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.73e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.73e-08}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 6.77e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 6.77e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 6.16e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.16e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.16e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 6.16e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 6.16e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2.83e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.83e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.83e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.83e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.83e-06}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.22e-07}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22e-07}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-07}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.22e-07}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.22e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.19e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 1.19e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.11e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.11e-08}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.19e-07}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-07}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-07}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1.19e-07}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 7.4e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 7.4e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.000275}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000275}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000275}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.000275}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.000275}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2.19e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2.19e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.000142}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000142}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000142}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.000142}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.000142}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.00032}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00032}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00032}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.00032}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00032}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.000321}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 0.000859}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000859}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000859}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.000859}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.000859}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "ecotoxicity: freshwater"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 3.63e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 5.81e-10}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.73e-15}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 2.86e-11}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-10}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.5e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.33e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.82e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.82e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09e-11}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.4e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.4e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09e-11}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1.27e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.4e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.51e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.97e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.7e-15}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.73e-11}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 4.27e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 4.27e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.07e-15}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.32e-12}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 2.57e-09}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.27e-14}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.38e-20}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.54e-11}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.77e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-11}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.8e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.96e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.19e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.19e-10}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.93e-14}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1e-10}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-13}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.05e-18}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.18e-10}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.21e-15}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.51e-12}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.03e-14}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 6.07e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 6.26e-13}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 1.96e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.54e-09}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.35e-18}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.17e-11}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1.64e-11}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1.64e-11}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.16e-13}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.06e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-09}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 7.92e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 5.28e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.89e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.88e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.02e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 7.64e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.75e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.43e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.74e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.47e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.33e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.37e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 9.34e-11}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.46e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 3.31e-08}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.31e-08}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.31e-08}, {"name": "Antimony ion", "categories": ["air"], "amount": 8.84e-08}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 8.84e-08}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 6.85e-08}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 2.13e-07}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 2.13e-07}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.13e-07}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 4.57e-26}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.36e-07}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 3.86e-09}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-09}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-09}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.47e-08}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.47e-08}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 3.98e-09}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 3.92e-08}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 3.92e-08}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.92e-08}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 6.69e-27}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.32e-08}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.44e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 5.93e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.25e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.18e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.62e-07}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.38e-10}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.89e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.09e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.09e-07}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.37e-10}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-10}, {"name": "Barium II", "categories": ["air"], "amount": 7.71e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 7.71e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8.16e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.61e-27}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water"], "amount": 1.94e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.59e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.59e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14e-09}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 9.99e-11}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.81e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.73e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.73e-10}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1.44e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.11e-06}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.17e-10}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.19e-14}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.03e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.2e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.78e-15}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.04e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.71e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 4.79e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.79e-11}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.06e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.34e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.34e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.42e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.35e-11}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 2.9e-15}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.98e-10}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 3.14e-09}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-09}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-09}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.31e-08}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.31e-08}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.38e-09}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.54e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.54e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.54e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.62e-27}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.89e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.6e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.97e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.48e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 3.54e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.67e-08}, {"name": "Bifenthrin", "categories": ["air"], "amount": 2.8e-08}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.7e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.46e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.45e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.45e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.12e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.31e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.06e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 6.95e-09}, {"name": "Bromopropane", "categories": ["air"], "amount": 2.52e-14}, {"name": "Bromopropane", "categories": ["water"], "amount": 8.96e-11}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.16e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.16e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.24e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.12e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.52e-09}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 2.9e-11}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.33e-15}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.27e-11}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.04e-14}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.36e-11}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-09}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.08e-07}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 1.38e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38e-09}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38e-09}, {"name": "Cadmium II", "categories": ["air"], "amount": 4.2e-09}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 4.2e-09}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 2.38e-09}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.05e-08}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.05e-08}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.05e-08}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.41e-28}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.17e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.79e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-09}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.36e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.06e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.06e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-09}, {"name": "Carbendazim", "categories": ["air"], "amount": 4.88e-09}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.14e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.83e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.83e-08}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.43e-13}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.43e-13}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 6.9e-14}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.42e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.88e-10}, {"name": "Carboxin", "categories": ["air"], "amount": 2.92e-09}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.59e-09}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 9.59e-09}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Carboxin", "categories": ["water"], "amount": 1.81e-08}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 4.4e-19}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.59e-11}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.41e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 6.3e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 5e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 2.87e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 2.87e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 2.87e-06}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 6.75e-21}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.51e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.54e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.75e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 4.41e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.72e-10}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 3.2e-11}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1.15e-09}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.15e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 2.02e-19}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 6.26e-09}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.92e-14}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.13e-10}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.27e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 5.59e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 5.59e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.25e-13}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.24e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.84e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.1e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.68e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 4.68e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.29e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.24e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.02e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.02e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.35e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.6e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 2.38e-10}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-10}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-10}, {"name": "Chromium III", "categories": ["air"], "amount": 6.08e-10}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 6.08e-10}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.21e-10}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.44e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.44e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.44e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.87e-29}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.6e-09}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 8.96e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.96e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.96e-09}, {"name": "Chromium VI", "categories": ["air"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 5.42e-08}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 5.42e-08}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.42e-08}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 2.37e-26}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 6.02e-08}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.76e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.6e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.84e-10}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["air"], "amount": 1.51e-09}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1.51e-09}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 4.44e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 3.99e-09}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 3.99e-09}, {"name": "Cobalt II", "categories": ["soil"], "amount": 3.99e-09}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 9.43e-29}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.4e-09}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1.01e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-08}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-08}, {"name": "Copper ion", "categories": ["air"], "amount": 3.84e-08}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.84e-08}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.06e-08}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.02e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.02e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.02e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.88e-27}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1.12e-07}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 6.36e-15}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.88e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.15e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 5.06e-17}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.8e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 8.95e-18}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.34e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.51e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.4e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 5.84e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.4e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.4e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 8.9e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.11e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.04e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.72e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Decanoic acid", "categories": ["water"], "amount": 2.11e-09}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 4.1e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 3.72e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 7.76e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.39e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.63e-11}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.39e-10}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.14e-08}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.06e-11}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.93e-09}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-10}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.62e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 9.42e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.19e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.97e-11}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.63e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.38e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.38e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 6.55e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 4.01e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.96e-10}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.11e-10}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 7.06e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.09e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.09e-15}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 3.34e-15}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.21e-10}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.5e-13}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.5e-13}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.57e-19}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.88e-12}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.92e-09}, {"name": "Difenoconazole", "categories": ["air"], "amount": 1.49e-08}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.72e-09}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 5.46e-08}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 1.62e-07}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1.62e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.08e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.39e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.38e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.38e-06}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.08e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 2.72e-14}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.33e-10}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 4.26e-10}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.34e-09}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.97e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.69e-08}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 6.14e-10}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.52e-14}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.77e-10}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.18e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.21e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1.52e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.52e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1.68e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1.68e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 6.92e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 3.32e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 3.32e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 3.32e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 4.57e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.21e-05}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 2.72e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-10}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.18e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.36e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.05e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.36e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.36e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.38e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.76e-09}, {"name": "Diuron", "categories": ["air"], "amount": 2.45e-08}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.05e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.82e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.55e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.56e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.5e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.8e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.75e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.95e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.24e-12}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 9.24e-12}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 5.09e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49e-09}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.74e-09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 2.85e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 5.82e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.82e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 6.95e-07}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air"], "amount": 3.92e-13}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-13}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.14e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.95e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.89e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 3.85e-11}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 3.59e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.47e-09}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.56e-15}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.37e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.26e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.28e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.28e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.55e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.11e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.02e-14}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.14e-11}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air"], "amount": 2.81e-11}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.81e-11}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 1.58e-15}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water"], "amount": 1.4e-10}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 5.71e-11}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 5.71e-11}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 3.43e-18}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.96e-10}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.23e-13}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 3.35e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.87e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.51e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 5.25e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.65e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.18e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 6.95e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.2e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.03e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.44e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.43e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.56e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.21e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.11e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.11e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.77e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.01e-07}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.3e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.17e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.57e-06}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 5.55e-09}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-09}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 6.47e-09}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 4.85e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.91e-07}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.91e-07}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-08}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2.84e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8.46e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 6.05e-10}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 8.17e-12}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.95e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.85e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.14e-10}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.15e-08}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 3.25e-14}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.31e-10}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.07e-19}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.93e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.27e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.93e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air"], "amount": 9.02e-16}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 9.02e-16}, {"name": "Furfural", "categories": ["air"], "amount": 4.88e-12}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.44e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 4.09e-10}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.66e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1.98e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.23e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.23e-08}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air"], "amount": 4.54e-18}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 4.54e-18}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 7.5e-09}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.13e-18}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.81e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.04e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.21e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.57e-11}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.49e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.04e-15}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 4.64e-15}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.08e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.52e-13}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.57e-09}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.32e-09}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.24e-09}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.07e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.83e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.37e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.37e-09}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.98e-09}, {"name": "Indoxacarb", "categories": ["air"], "amount": 8.21e-09}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2.88e-09}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2.36e-08}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.43e-09}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air"], "amount": 1.19e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.19e-17}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air"], "amount": 2.6e-11}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 2.6e-11}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 7.25e-15}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water"], "amount": 1.22e-10}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.38e-09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.22e-08}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.79e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 2.94e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.35e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.35e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.35e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.03e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.01e-09}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 3.22e-11}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-11}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-11}, {"name": "Lead II", "categories": ["air"], "amount": 1.42e-10}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 1.42e-10}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.64e-11}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 3.88e-10}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 3.88e-10}, {"name": "Lead II", "categories": ["soil"], "amount": 3.88e-10}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 4.29e-31}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water"], "amount": 4.21e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.74e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.71e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.45e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-11}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.21e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.14e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.14e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.32e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.17e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.17e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.43e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.03e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.14e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-09}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.01e-08}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.41e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.94e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.42e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.42e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.61e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.34e-10}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 6.27e-16}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2.28e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-09}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-09}, {"name": "Mercury II", "categories": ["air"], "amount": 1.19e-08}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.19e-08}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 7.72e-10}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 3.27e-08}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 3.27e-08}, {"name": "Mercury II", "categories": ["soil"], "amount": 3.27e-08}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.25e-29}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 3.46e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.03e-10}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 1.18e-10}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 4.18e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.38e-09}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2.32e-09}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2.32e-09}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 4.74e-11}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.51e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.78e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 8.99e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.91e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.26e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.03e-11}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.03e-14}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.01e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3.71e-10}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.74e-15}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.42e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.71e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.95e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35e-09}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.98e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.46e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.58e-10}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.85e-09}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.5e-08}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 7.69e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 5.46e-08}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 1.68e-07}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 1.68e-07}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.64e-13}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.64e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.59e-14}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.96e-11}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 2.54e-13}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.37e-12}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air"], "amount": 5.42e-12}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 5.42e-12}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.4e-09}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.29e-15}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.03e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.51e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.02e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.54e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.06e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.03e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 5.37e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.62e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.08e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.52e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.52e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.71e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.24e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 4.25e-11}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.25e-11}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.25e-11}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.09e-10}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.09e-10}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 9.29e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.57e-10}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.57e-10}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.57e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.01e-29}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.85e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 9.34e-10}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 9.11e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.16e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 9.47e-10}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.71e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 3.27e-09}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.27e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.27e-09}, {"name": "Nickel II", "categories": ["air"], "amount": 1.12e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.12e-08}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 4.58e-09}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.89e-08}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.89e-08}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.89e-08}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.18e-27}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 3.2e-08}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.68e-11}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 2.28e-10}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 8.86e-10}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.3e-09}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.3e-09}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 9.4e-13}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.28e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.27e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.08e-11}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 8.95e-10}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.46e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.06e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 2.29e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 6.47e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.17e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.37e-12}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.04e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.94e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.65e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.67e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.27e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.81e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.83e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.22e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.22e-07}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air"], "amount": 4.37e-15}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.37e-15}, {"name": "Pentane", "categories": ["water"], "amount": 4.99e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.24e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.53e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.99e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 9.47e-11}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.96e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.4e-10}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 8.58e-15}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.74e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 9.42e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 9.42e-11}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.33e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.33e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.84e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.14e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.17e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.31e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.21e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 3.75e-13}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.09e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.59e-13}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.81e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 2.65e-14}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 4.23e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.02e-15}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.65e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.04e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.67e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1.36e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1.36e-10}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.21e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 9.19e-09}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 3.76e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 2.98e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 9.74e-09}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.24e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4e-11}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.1e-11}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air"], "amount": 1.22e-13}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.22e-13}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 3.55e-14}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water"], "amount": 7.1e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 9.98e-10}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air"], "amount": 8.13e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 8.13e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.67e-15}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.54e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.48e-09}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.3e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.19e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.33e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.1e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.21e-08}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 9.19e-18}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09e-10}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air"], "amount": 1.51e-11}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 1.51e-11}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.29e-15}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water"], "amount": 8.05e-11}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 4.53e-13}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air"], "amount": 7.69e-13}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 7.69e-13}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.49e-13}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.9e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.73e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 8.18e-10}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.26e-06}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.7e-07}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.49e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5.6e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.65e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 3.12e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.97e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.63e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.88e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.88e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.26e-10}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.1e-08}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2.69e-09}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 1.22e-09}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22e-09}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-09}, {"name": "Selenium IV", "categories": ["air"], "amount": 3.8e-09}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 3.8e-09}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.02e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 9.61e-09}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 9.61e-09}, {"name": "Selenium IV", "categories": ["soil"], "amount": 9.61e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.06e-28}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.07e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.86e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.15e-09}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 3.23e-08}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.23e-08}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.23e-08}, {"name": "Silver I", "categories": ["air"], "amount": 1.16e-07}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 3.98e-08}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 3.05e-07}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 3.05e-07}, {"name": "Silver I", "categories": ["soil"], "amount": 3.05e-07}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.71e-27}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water"], "amount": 3.37e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-09}, {"name": "Simazine", "categories": ["air"], "amount": 8.25e-09}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.93e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.3e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.01e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.01e-08}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.1e-12}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 2.89e-35}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water"], "amount": 5.71e-12}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.68e-15}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75e-10}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.5e-08}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 9.93e-08}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.98e-10}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.98e-10}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.06e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.06e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 9.94e-08}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-09}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.27e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.07e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.81e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7e-09}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-08}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.02e-08}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.72e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.72e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.72e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8e-08}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.59e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.51e-08}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 4.76e-07}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 1.63e-06}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.3e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.05e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 2.72e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 9.7e-14}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.52e-10}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 6.32e-09}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.32e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.32e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 1.46e-08}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1.46e-08}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.52e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 2.78e-26}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 3.68e-08}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 3.74e-10}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-10}, {"name": "Thiabendazole", "categories": ["air"], "amount": 9.79e-10}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.12e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.59e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 8.57e-10}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 6.48e-18}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water"], "amount": 6.28e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 8.78e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.5e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.02e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-10}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.02e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.22e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air"], "amount": 4.11e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.87e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.25e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.25e-07}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 2.57e-10}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.57e-10}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-10}, {"name": "Tin ion", "categories": ["air"], "amount": 1.11e-09}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.11e-09}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1.48e-10}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 3.04e-09}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 3.04e-09}, {"name": "Tin ion", "categories": ["soil"], "amount": 3.04e-09}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 2.45e-29}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 3.32e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 3.28e-15}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.67e-11}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1.07e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1.07e-13}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 4.93e-14}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.4e-10}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 2.54e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.19e-10}, {"name": "Triallate", "categories": ["air"], "amount": 1.14e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.15e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.04e-08}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 5.15e-08}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.34e-07}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.05e-08}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.13e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.52e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.44e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 7.67e-15}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.18e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.67e-09}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 3.41e-20}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.23e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.36e-09}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 3.24e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 1.76e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 9.83e-06}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.54e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.54e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-11}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.05e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.51e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.46e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.46e-08}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.69e-10}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 3.99e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.17e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.18e-20}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.22e-11}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.12e-11}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 1.24e-08}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-08}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-08}, {"name": "Vanadium V", "categories": ["air"], "amount": 4.3e-08}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 4.3e-08}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7e-08}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.12e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.12e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.12e-07}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 5.44e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.24e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 3.79e-10}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 2.18e-15}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 1.2e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-08}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-08}, {"name": "Zinc II", "categories": ["air"], "amount": 4.94e-08}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4.94e-08}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 9.24e-09}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.33e-07}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.33e-07}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.33e-07}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.48e-25}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.46e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.26e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.67e-08}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.06e-15}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.42e-10}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 7.38e-15}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.65e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 8.94e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.94e-15}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 2.51e-15}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 4.65e-12}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1.68e-10}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1.68e-10}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 3.21e-14}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water"], "amount": 7.78e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 9.62e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "ecotoxicity: marine"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 8.73e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.48e-11}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.69e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water"], "amount": 1.32e-13}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52e-11}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.09e-12}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.52e-11}, {"name": "2,4-D", "categories": ["water"], "amount": 1.52e-11}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46e-12}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 9.27e-12}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 9.27e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 6.63e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 9.27e-12}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 6.33e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.48e-11}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.48e-11}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 6.47e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.38e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.38e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 5.67e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.51e-13}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.67e-14}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.3e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.3e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.05e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.14e-14}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.49e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.3e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.73e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.73e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.35e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.63e-13}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.46e-13}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.1e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.1e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.22e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6.61e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68e-12}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 7.35e-13}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.15e-12}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 5.17e-12}, {"name": "Acephate", "categories": ["water"], "amount": 5.17e-12}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 5.38e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 7.52e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 9.91e-13}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-14}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.08e-15}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.77e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water"], "amount": 2.5e-13}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air"], "amount": 6.25e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 6.25e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 9.39e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water"], "amount": 5.28e-14}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.07e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.51e-13}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 1.59e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 8.95e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.64e-11}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["water"], "amount": 3.41e-10}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water"], "amount": 1.95e-13}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air"], "amount": 3.57e-13}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 3.57e-13}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.67e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.67e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 2.67e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 5.46e-12}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.09e-10}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2.05e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-12}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.47e-10}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.85e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Allyl chloride", "categories": ["water"], "amount": 5.74e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 5.21e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 3.19e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 1.71e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 3.08e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.97e-10}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air"], "amount": 1.12e-13}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.12e-13}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.46e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water"], "amount": 2.7e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 4.88e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.22e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water"], "amount": 3.04e-09}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 2.06e-12}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 9.03e-05}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.03e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.03e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 8.37e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 8.37e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.22e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 6.9e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 6.9e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 6.9e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 7.66e-05}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 7.66e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 0.00016}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 7.66e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 7.66e-05}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.96e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.79e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.79e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.43e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.41e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.41e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.41e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.56e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.64e-05}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.56e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.56e-05}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.63e-12}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.3e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.44e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Atrazine", "categories": ["water"], "amount": 1.56e-09}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.94e-12}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 1.5e-11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.37e-09}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3e-11}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.38e-10}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.36e-09}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.36e-09}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1.89e-06}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.89e-06}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.89e-06}, {"name": "Barium II", "categories": ["air"], "amount": 1.91e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.91e-06}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9.17e-07}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.96e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.96e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 1.96e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.18e-06}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 2.18e-06}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.03e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.18e-06}, {"name": "Barium II", "categories": ["water"], "amount": 2.18e-06}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.65e-13}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 3.11e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 4.09e-12}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 1.38e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.51e-12}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 6.1e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.59e-08}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.15e-12}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.34e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water"], "amount": 5.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.73e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 3.96e-12}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.79e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.79e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 5.91e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.16e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.26e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 2.3e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.83e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.83e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 1.28e-09}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 1.28e-09}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 1.23e-13}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.52e-13}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.26e-14}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.38e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 7.34e-13}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 9.87e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.87e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.87e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 7.65e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 7.65e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.79e-07}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.65e-06}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.65e-06}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.65e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.91e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 2.91e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.89e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.91e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 2.91e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.24e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 6.3e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4.36e-07}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4.36e-07}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.34e-11}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.65e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.54e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.89e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 4.59e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2.62e-07}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2.62e-07}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.61e-10}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 7.79e-12}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 1.73e-13}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 2.01e-10}, {"name": "Bromopropane", "categories": ["air"], "amount": 1.45e-13}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.71e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.65e-10}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.7e-10}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.7e-10}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.41e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.13e-11}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 5.24e-13}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.1e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water"], "amount": 5.85e-14}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 1.9e-12}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.1e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water"], "amount": 3.2e-13}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.77e-10}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 1.16e-09}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 2.48e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.48e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 1.86e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1.86e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.07e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.74e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.74e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.74e-07}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 5.25e-07}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 5.25e-07}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 4.85e-06}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 5.25e-07}, {"name": "Cadmium II", "categories": ["water"], "amount": 5.25e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-10}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 5.38e-11}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.74e-10}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.74e-10}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36e-10}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.18e-10}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.62e-11}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.53e-10}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.67e-10}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.67e-10}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.1e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.77e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.44e-11}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.59e-11}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-10}, {"name": "Carboxin", "categories": ["air"], "amount": 1.06e-10}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.33e-11}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 8.02e-11}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.51e-10}, {"name": "Carboxin", "categories": ["water"], "amount": 1.51e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.88e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.4e-13}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.89e-09}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.46e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 8.34e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 8.34e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 8.34e-08}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water"], "amount": 5.42e-10}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-11}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.34e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.08e-10}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.11e-12}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.68e-13}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 3.39e-11}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 3.39e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 1.01e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 2.25e-11}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.85e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 4.92e-12}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.07e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1.3e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.26e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 6.01e-12}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.95e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.91e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 8.48e-09}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.13e-08}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.03e-08}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.03e-08}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.1e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.53e-08}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2.82e-07}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2.82e-07}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 5.04e-10}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 9.52e-11}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 8.39e-12}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 3.14e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 2.33e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.33e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.78e-08}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.92e-08}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.92e-08}, {"name": "Chromium III", "categories": ["soil"], "amount": 4.92e-08}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 5.46e-08}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 5.46e-08}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 6.12e-07}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 5.46e-08}, {"name": "Chromium III", "categories": ["water"], "amount": 5.46e-08}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 4.3e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 3.88e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3.88e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.06e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.92e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.92e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.92e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.25e-05}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 3.25e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.64e-05}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.25e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.25e-05}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.02e-10}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.29e-12}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 3.43e-12}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.06e-12}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 1.01e-06}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 7.79e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 7.79e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.57e-07}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.57e-07}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.57e-07}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.84e-07}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 2.84e-07}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.96e-06}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.84e-07}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.84e-07}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 2.41e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.41e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.41e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.84e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.84e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.84e-07}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.61e-06}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.61e-06}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.61e-06}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.19e-06}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 6.19e-06}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.69e-05}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.19e-06}, {"name": "Copper ion", "categories": ["water"], "amount": 6.19e-06}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air"], "amount": 6.61e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 6.61e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.48e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water"], "amount": 1.1e-12}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.49e-10}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.6e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.91e-14}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.27e-17}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.63e-13}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.58e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 5.68e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.87e-14}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 2.43e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 1.3e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.75e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.12e-10}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.15e-12}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 5.21e-11}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.34e-13}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-11}, {"name": "Decanoic acid", "categories": ["water"], "amount": 4.49e-12}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 1.19e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 8.94e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 8.47e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.54e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 8.19e-13}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 4.74e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.32e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5.5e-11}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-11}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.91e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.36e-11}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.36e-11}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 3.96e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.62e-10}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-12}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 4.71e-13}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 3.66e-12}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 3.66e-12}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.28e-10}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.87e-10}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 8.19e-12}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.15e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 2.35e-13}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 6.36e-12}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.39e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.39e-15}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air"], "amount": 1.88e-12}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.88e-12}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.21e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.16e-12}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.53e-15}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.53e-15}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.82e-14}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4e-15}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-09}, {"name": "Difenoconazole", "categories": ["air"], "amount": 2.27e-09}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2.24e-10}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 1.59e-09}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 4.71e-09}, {"name": "Difenoconazole", "categories": ["water"], "amount": 4.71e-09}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.74e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.15e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 4.03e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.8e-08}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.8e-08}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.71e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 9.13e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 6.62e-13}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.11e-11}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 4.03e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.74e-11}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.43e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 9.68e-11}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 7.7e-12}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air"], "amount": 4e-12}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 4e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.1e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 2.44e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 6.48e-13}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 6.91e-11}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 4.81e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.81e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.81e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 4.25e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 4.25e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 6.24e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1.01e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1.01e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1.01e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.44e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 1.44e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.42e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.44e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.44e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 5.94e-13}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 5.32e-11}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-11}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3.32e-11}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 7.82e-12}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 5.06e-11}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.14e-10}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 4.96e-11}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.99e-11}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-09}, {"name": "Diuron", "categories": ["air"], "amount": 1.08e-09}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 8.82e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.7e-10}, {"name": "Diuron", "categories": ["water"], "amount": 1.29e-09}, {"name": "Dodecanol", "categories": ["water"], "amount": 9.08e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.18e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.06e-12}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 4.7e-13}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2.75e-12}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2.03e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 4.15e-13}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.37e-11}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4e-10}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.45e-10}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.43e-10}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 8.35e-10}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 1.69e-09}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1.69e-09}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.88e-07}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.32e-08}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.19e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.59e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.59e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.86e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.86e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 6.47e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.94e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.15e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 8.08e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 9.46e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water"], "amount": 2.36e-14}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-12}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.72e-13}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.91e-12}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.91e-12}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 7.22e-12}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.03e-12}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 2.75e-13}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.75e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 9.26e-13}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 2.77e-13}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air"], "amount": 8.7e-13}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 8.7e-13}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.27e-12}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water"], "amount": 5.04e-13}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.56e-12}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 1.56e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1.06e-12}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.4e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.87e-12}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 4.03e-11}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 3.79e-11}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.28e-09}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 4.39e-12}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.09e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.8200000000000003e-11}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 6.62e-11}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.48e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.36e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.33e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.38e-11}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.56e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.71e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.71e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.89e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.48e-08}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.51e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 4.56e-08}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 1.71e-09}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-09}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.34e-09}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 8.13e-11}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 6.09e-10}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 2.4e-09}, {"name": "Fludioxonil", "categories": ["water"], "amount": 2.4e-09}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.31e-09}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.46e-10}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.07e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.53e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 6.08e-09}, {"name": "Fluorene", "categories": ["air"], "amount": 1.72e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 3.45e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 9.7e-11}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.42e-12}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.07e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.56e-10}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.46e-10}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.62e-12}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.62e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.09e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.48e-12}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.9e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water"], "amount": 1.26e-13}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 2.49e-12}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.17e-12}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air"], "amount": 2.67e-15}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.67e-15}, {"name": "Furfural", "categories": ["air"], "amount": 8.15e-13}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 7.63e-13}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.82e-11}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.53e-11}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 7.63e-13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.07e-11}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.69e-12}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 8.77e-13}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 5.97e-12}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 5.97e-12}, {"name": "Glyphosate", "categories": ["water"], "amount": 5.97e-12}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 3.1e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.47e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.47e-10}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air"], "amount": 1.05e-17}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.05e-17}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 8.77e-11}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.6e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water"], "amount": 1.7e-13}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 2.54e-11}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.94e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.42e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.06e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.38e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.8e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 4.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 4.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.11e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 3.89e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 1.56e-14}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.98e-11}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 5.41e-11}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5.81e-11}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-11}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.85e-11}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.05e-11}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 7.98e-11}, {"name": "Imidacloprid", "categories": ["water"], "amount": 7.98e-11}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-09}, {"name": "Indoxacarb", "categories": ["air"], "amount": 2.9e-09}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 8.8e-11}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 6.91e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 3.55e-11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.08e-11}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air"], "amount": 2.94e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-17}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air"], "amount": 6.76e-13}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 6.76e-13}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.97e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water"], "amount": 4.39e-13}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 4.26e-11}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.87e-10}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.98e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5.81e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 1.13e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 1.13e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 1.13e-06}, {"name": "Lauric acid", "categories": ["air"], "amount": 1.94e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 2.15e-12}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 8e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8e-08}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-08}, {"name": "Lead II", "categories": ["air"], "amount": 5.84e-08}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 5.84e-08}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.15e-10}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 9.81e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 9.81e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 9.81e-09}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.07e-08}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 1.07e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.57e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.07e-08}, {"name": "Lead II", "categories": ["water"], "amount": 1.07e-08}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.14e-12}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.37e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 8.13e-12}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.61e-12}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 4.33e-13}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.08e-12}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.08e-12}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-11}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.1e-12}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 3.49e-11}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 3.49e-11}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.15e-11}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 7.31e-13}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 7.68e-14}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.08e-10}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.94e-10}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.19e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.29e-10}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.53e-10}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.53e-10}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.36e-11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 6.97e-12}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 8.91e-13}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.33e-18}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 7.02e-06}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.02e-06}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.02e-06}, {"name": "Mercury II", "categories": ["air"], "amount": 5.1e-06}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 5.1e-06}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.3e-08}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 9.74e-07}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 9.74e-07}, {"name": "Mercury II", "categories": ["soil"], "amount": 9.74e-07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.03e-06}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 1.03e-06}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.31e-05}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.03e-06}, {"name": "Mercury II", "categories": ["water"], "amount": 1.03e-06}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.75e-12}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 1.55e-11}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 1.29e-11}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.05e-12}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.16e-11}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 1.94e-11}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1.94e-11}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 6.97e-13}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5.6e-11}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 5.04e-13}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.9e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 6.52e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 3.23e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.55e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.55e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.23e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.23e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 8.7e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.86e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.86e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5.64e-11}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 7.49e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water"], "amount": 2.34e-14}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 4.81e-11}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-10}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 2.15e-11}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.19e-10}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Methomyl", "categories": ["water"], "amount": 1.96e-10}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 1.82e-11}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-09}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.34e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 9.64e-11}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.85e-10}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 2.11e-09}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.11e-09}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air"], "amount": 8.79e-13}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.79e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 1.67e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water"], "amount": 8.04e-13}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.31e-12}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 4.14e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.04e-12}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.58e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 7.58e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.03e-14}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.17e-13}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.17e-13}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.02e-11}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.28e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water"], "amount": 7.29e-13}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-10}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.4e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.28e-09}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.28e-09}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.28e-09}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.35e-10}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 8.88e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.63e-10}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-08}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 3.05e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.53e-09}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.61e-08}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 4.42e-08}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 4.42e-08}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.77e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.6e-12}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 8.98e-08}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 7.24e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 7.24e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.33e-08}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.33e-08}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.33e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 3.7e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 3.7e-08}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.69e-07}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 3.7e-08}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 3.7e-08}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 7.82e-12}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 7.19e-13}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 8.98e-12}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 7.74e-12}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 8.13e-10}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.15e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.15e-11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 7.93e-12}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.23e-10}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 7.26e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.26e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.26e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 5.76e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.76e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.4e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.4e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.4e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.66e-06}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2.66e-06}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.66e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 2.66e-06}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-11}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.16e-11}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 2.04e-12}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.63e-11}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.63e-11}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.24e-11}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-14}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.35e-11}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 9.69e-12}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 3.72e-13}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5.1e-11}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 7.59e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 7.89e-11}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 3.93e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.99e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.99e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.67e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.16e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.11e-10}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7.51e-14}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.59e-10}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.06e-12}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.58e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.78e-11}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air"], "amount": 1.2e-14}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.2e-14}, {"name": "Pentane", "categories": ["water"], "amount": 8.58e-12}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.92e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 3.01e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.6e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.72e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.19e-12}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air"], "amount": 8.91e-13}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.91e-13}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.16e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water"], "amount": 2.49e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.14e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.22e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.22e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 9.12e-10}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 4.91e-11}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.04e-10}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.17e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.26e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.05e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 4.39e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.97e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.59e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.4e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 3.38e-12}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 6.31e-12}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.92e-11}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.98e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.44e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 1.84e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1.76e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1.76e-09}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.13e-09}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.72e-10}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.69e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 4.1e-09}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.25e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.89e-11}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 1.75e-13}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air"], "amount": 2.52e-13}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.52e-13}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 5.18e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water"], "amount": 5.62e-13}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.26e-11}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air"], "amount": 5.95e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.95e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.99e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water"], "amount": 5.78e-14}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 8.13e-11}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 7.92e-12}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 5.08e-13}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-10}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.94e-11}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.38e-10}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.53e-10}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.53e-10}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.53e-10}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.32e-13}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air"], "amount": 4.83e-13}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.83e-13}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.3e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water"], "amount": 2.9e-13}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 1.05e-15}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.15e-12}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.15e-12}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 3.86e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.94e-12}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 4.88e-11}, {"name": "Pyrene", "categories": ["air"], "amount": 2.25e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.64e-08}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.49e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.09e-13}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.95e-11}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 3.96e-12}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.97e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.39e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.57e-10}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.45e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2.38e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2.38e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.05e-12}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 5.99e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.41e-10}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.38e-11}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 2.47e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 1.96e-06}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.96e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.73e-07}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 8.22e-07}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 8.22e-07}, {"name": "Selenium IV", "categories": ["soil"], "amount": 8.22e-07}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 9.11e-07}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 9.11e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.73e-06}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 9.11e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.11e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.56e-12}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 4.31e-11}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 6.84e-05}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.84e-05}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.84e-05}, {"name": "Silver I", "categories": ["air"], "amount": 5.11e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 5.11e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.21e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.21e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 1.21e-05}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.34e-05}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 1.34e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 0.000134}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.34e-05}, {"name": "Silver I", "categories": ["water"], "amount": 1.34e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-10}, {"name": "Simazine", "categories": ["air"], "amount": 3.63e-10}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.96e-11}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.88e-10}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 5.02e-10}, {"name": "Simazine", "categories": ["water"], "amount": 5.02e-10}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air"], "amount": 2.65e-14}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2.65e-14}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 8.56e-14}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water"], "amount": 1.21e-14}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.34e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air"], "amount": 9.96e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.96e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.5e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water"], "amount": 7.56e-13}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.09e-10}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 5.56e-12}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 5.56e-12}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 5.23e-13}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.81e-12}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 3.81e-12}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.34e-10}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-10}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.6e-11}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.14e-10}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.53e-10}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-09}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 2.01e-09}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.32e-09}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.27e-09}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.27e-09}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.66e-08}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2.35e-08}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.89e-09}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 4.74e-08}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 7.77e-12}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.68e-10}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.8e-11}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.06e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.84e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.84e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.5e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.26e-11}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 4.94e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.94e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.94e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 4.81e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 4.81e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2.07e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 4.53e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 4.53e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 4.53e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 5.03e-05}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 5.03e-05}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 8.21e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 5.03e-05}, {"name": "Thallium I", "categories": ["water"], "amount": 5.03e-05}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 6.05e-11}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.05e-11}, {"name": "Thiabendazole", "categories": ["air"], "amount": 5.14e-11}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.29e-11}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.76e-11}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.76e-11}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 7.16e-12}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.72e-11}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.02e-10}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water"], "amount": 2.26e-11}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-10}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.23e-10}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.96e-10}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.96e-10}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.55e-11}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 6.88e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 9.06e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.31e-10}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.31e-10}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.6e-09}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-09}, {"name": "Thiram", "categories": ["air"], "amount": 9.6e-10}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.45e-11}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.16e-10}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.73e-09}, {"name": "Thiram", "categories": ["water"], "amount": 2.73e-09}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 6.78e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.78e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.78e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 5.09e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 5.09e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 6.31e-09}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1.29e-07}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1.29e-07}, {"name": "Tin ion", "categories": ["soil"], "amount": 1.29e-07}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1.41e-07}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.32e-06}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Tin ion", "categories": ["water"], "amount": 1.41e-07}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air"], "amount": 3.47e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.47e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 8.99e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water"], "amount": 2.9e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.27e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.27e-13}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 3.49e-11}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.94e-12}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.48e-10}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.45e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.51e-11}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 2.33e-10}, {"name": "Triallate", "categories": ["air"], "amount": 1.05e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.43e-11}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.13e-10}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.66e-09}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 9.93e-09}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 9.31e-09}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.01e-09}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.42e-08}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.38e-12}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 6.82e-11}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.14e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.71e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.67e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.35e-11}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 3.54e-09}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.32e-15}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47e-07}, {"name": "Triflumuron", "categories": ["air"], "amount": 2.5e-07}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 5.36e-08}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 2.87e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 4.48e-07}, {"name": "Triflumuron", "categories": ["water"], "amount": 4.48e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.45e-11}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.03e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.84e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.84e-10}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.16e-11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.59e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water"], "amount": 7.98e-14}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 5.95e-13}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 9.24e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.24e-05}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.24e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.05e-05}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.05e-05}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.31e-05}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 8.6e-05}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 8.6e-05}, {"name": "Vanadium V", "categories": ["soil"], "amount": 8.6e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 9.52e-05}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 9.52e-05}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 0.000165}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 9.52e-05}, {"name": "Vanadium V", "categories": ["water"], "amount": 9.52e-05}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.91e-12}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air"], "amount": 1.73e-14}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.73e-14}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.78e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water"], "amount": 3.07e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.000212}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000212}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000212}, {"name": "Zinc II", "categories": ["air"], "amount": 0.000238}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.000238}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.06e-05}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.000297}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.000297}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.000297}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.000326}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.000326}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.000368}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.000326}, {"name": "Zinc II", "categories": ["water"], "amount": 0.000326}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.9e-11}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.08e-10}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.11e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 9.34e-13}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.87e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.87e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.32e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.04e-12}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.22e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.22e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 4.23e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 4.35e-14}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air"], "amount": 4.68e-12}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 4.68e-12}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 1.26e-11}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 2.8e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 6.07e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "ecotoxicity: terrestrial"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.14e-12}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.01e-11}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.07e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water"], "amount": 7.92e-12}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.74e-13}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.35e-14}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 6.16e-15}, {"name": "2,4-D", "categories": ["water"], "amount": 6.16e-15}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.1e-18}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 5.32e-20}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 3.8e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.1e-18}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 5.42e-13}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 5.42e-13}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 2.55e-12}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.75e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.1e-12}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.15e-14}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.21e-14}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.14e-13}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.9e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 8.21e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.96e-18}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.1e-15}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.69e-12}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 7.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.84e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.27e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 2.66e-14}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.6e-15}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 9.01e-16}, {"name": "Acephate", "categories": ["water"], "amount": 9.01e-16}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.44e-13}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 3.86e-12}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.04e-11}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.72e-13}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.86e-16}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water"], "amount": 7.63e-14}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 5.07e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water"], "amount": 2.69e-13}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 6.94e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 3.48e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 4.22e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 1.78e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-09}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.45e-16}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water"], "amount": 4.85e-14}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.21e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.21e-10}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 9.88e-12}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.57e-11}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.84e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 8.32e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.32e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.32e-09}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 1.66e-09}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.97e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 7.19e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.3e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.35e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 4.14e-08}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 6.71e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 9.75e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.62e-11}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 4.67e-13}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water"], "amount": 7.09e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 3.97e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.28e-10}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water"], "amount": 8.11e-10}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 7.65e-06}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65e-06}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65e-06}, {"name": "Antimony ion", "categories": ["air"], "amount": 5.29e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 5.29e-06}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.52e-24}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 4.72e-24}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 4.72e-24}, {"name": "Antimony ion", "categories": ["soil"], "amount": 4.72e-24}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 5.24e-24}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 5.24e-24}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.06e-23}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 5.24e-24}, {"name": "Antimony ion", "categories": ["water"], "amount": 5.24e-24}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.63e-06}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-06}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-06}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.13e-06}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.13e-06}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.15e-25}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.13e-24}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.13e-24}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.13e-24}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.24e-24}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.24e-24}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.83e-24}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.24e-24}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.24e-24}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.98e-13}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.59e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 1.64e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water"], "amount": 1.15e-10}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 6.3e-13}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 7.63e-16}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.98e-09}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 5.77e-16}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.64e-15}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.56e-15}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.94e-16}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.94e-16}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 4.01e-08}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.01e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.01e-08}, {"name": "Barium II", "categories": ["air"], "amount": 2.78e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.78e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 5.86e-26}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.25e-25}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.25e-25}, {"name": "Barium II", "categories": ["soil"], "amount": 1.25e-25}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.39e-25}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.39e-25}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.92e-25}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.39e-25}, {"name": "Barium II", "categories": ["water"], "amount": 1.39e-25}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.96e-18}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 5.88e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.19e-15}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 7.42e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.28e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.08e-13}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.08e-13}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 3.94e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 2.13e-09}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 6.63e-12}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 4.87e-13}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water"], "amount": 9.79e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.05e-11}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.47e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.85e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 5.52e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 8.95e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.95e-10}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 8.7e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 5.07e-12}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 5.07e-12}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 9.12e-14}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 2.15e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.06e-14}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 5.44e-13}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 5.84e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.84e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.84e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 4.04e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 4.04e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.27e-26}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 4.86e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 4.86e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 4.86e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 5.32e-25}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 5.32e-25}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.02e-24}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 5.32e-25}, {"name": "Beryllium II", "categories": ["water"], "amount": 5.32e-25}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.14e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 3.51e-09}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 3.51e-09}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.12e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.49e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.53e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 2.59e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 9.13e-09}, {"name": "Bifenthrin", "categories": ["water"], "amount": 9.13e-09}, {"name": "Bisphenol A", "categories": ["water"], "amount": 7.3e-14}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.14e-16}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 8.57e-18}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.09e-13}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.79e-13}, {"name": "Bromopropane", "categories": ["water"], "amount": 8.91e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.31e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 3.77e-14}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 7.59e-15}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 7.59e-15}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 9.83e-12}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 1.71e-14}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water"], "amount": 2.12e-13}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 3.66e-13}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.01e-13}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water"], "amount": 4.2e-12}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.31e-08}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.43e-09}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 3.41e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 2.36e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 2.36e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.48e-27}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.21e-26}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.21e-26}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.21e-26}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 4.66e-26}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 4.66e-26}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.49e-25}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 4.66e-26}, {"name": "Cadmium II", "categories": ["water"], "amount": 4.66e-26}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.7e-12}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.58e-11}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.58e-11}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.48e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.57e-12}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 9.95e-13}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.75e-13}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.75e-13}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 9.72e-12}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 8.54e-11}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.87e-08}, {"name": "Carboxin", "categories": ["air"], "amount": 3.36e-08}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 7.59e-12}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 5.26e-12}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 2.76e-12}, {"name": "Carboxin", "categories": ["water"], "amount": 2.76e-12}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.12e-17}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.81e-14}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 2.3e-09}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 2.27e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 1.4e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 1.4e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 1.4e-09}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.98e-18}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water"], "amount": 3.72e-17}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 3.76e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 7.06e-12}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 1e-16}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 7.3e-08}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.3e-08}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 4.2e-17}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 7.75e-15}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.5e-12}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 5.27e-12}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.76e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 6.35e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 6.35e-10}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 4.71e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 7.83e-11}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.49e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.06e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.11e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.01e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1.01e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.88e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 8.96e-09}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 3.18e-08}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 3.18e-08}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.86e-09}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 8.15e-17}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 7.44e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.44e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.44e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 5.15e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5.15e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 2.21e-27}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6.11e-27}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6.11e-27}, {"name": "Chromium III", "categories": ["soil"], "amount": 6.11e-27}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 6.78e-27}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 6.78e-27}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.84e-26}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 6.78e-27}, {"name": "Chromium III", "categories": ["water"], "amount": 6.78e-27}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 2.52e-06}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.74e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.74e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 9.44e-25}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.61e-24}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.61e-24}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.61e-24}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.9e-24}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 2.9e-24}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.67e-24}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.9e-24}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.9e-24}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.51e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 3.75e-13}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 7.27e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 5.04e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 5.04e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.91e-27}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.61e-26}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.61e-26}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.61e-26}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.88e-26}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 2.88e-26}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.71e-25}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.88e-26}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.88e-26}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 2.14e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.48e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.48e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.96e-26}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.72e-25}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.72e-25}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.72e-25}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.32e-25}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 6.32e-25}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4e-24}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.32e-25}, {"name": "Copper ion", "categories": ["water"], "amount": 6.32e-25}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.57e-13}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water"], "amount": 5.31e-13}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 3.89e-12}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 2.31e-15}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water"], "amount": 7.36e-15}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.25e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.73e-16}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.98e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 1.55e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.7e-19}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.05e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 3.23e-08}, {"name": "Cypermethrin", "categories": ["water"], "amount": 3.23e-08}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.9e-12}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.33e-16}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.78e-10}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 5.78e-14}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-12}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1.3e-13}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 2.23e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1.68e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.57e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.22e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1.04e-22}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 8.6e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 3.11e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 3.27e-11}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.43e-14}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 7.38e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.64e-16}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.64e-16}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.21e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3e-09}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 7.92e-15}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.91e-17}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.91e-17}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 3.71e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6.94e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1.05e-11}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 6.77e-17}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 3.98e-11}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.73e-14}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.73e-14}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.22e-13}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water"], "amount": 8.74e-13}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.1e-11}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.48e-17}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.7e-15}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.33e-07}, {"name": "Difenoconazole", "categories": ["air"], "amount": 1.89e-07}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 8.15e-13}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 7.46e-13}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 5.73e-13}, {"name": "Difenoconazole", "categories": ["water"], "amount": 5.73e-13}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.57e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.41e-08}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.19e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 7.89e-09}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.89e-09}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 8.45e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 7.8e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 3.44e-12}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 9.29e-11}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.15e-07}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.68e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 8.57e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.64e-12}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 1.77e-12}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 3.84e-12}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 7.98e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3e-11}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1.84e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1.62e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1.62e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 2.36e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 3.76e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 3.76e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 3.76e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 2.39e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 2.39e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 5.52e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 2.39e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 2.39e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.47e-14}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 4.83e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.94e-17}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.52e-18}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 7.52e-18}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.3e-12}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.26e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.33e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 5.23e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4.31e-11}, {"name": "Diuron", "categories": ["water"], "amount": 2.9100000000000002e-11}, {"name": "Dodecanol", "categories": ["water"], "amount": 8.69e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.45e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 7.83e-16}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.49e-19}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 5.34e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.17e-21}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.82e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.65e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.69e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 1.23e-09}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.71e-10}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.71e-10}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.29e-07}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air"], "amount": 5.06e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 5.06e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.27e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.06e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.06e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.1e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.41e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.49e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.05e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.14e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water"], "amount": 2.99e-13}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 6.4e-17}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.88e-22}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.88e-22}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.45e-11}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 1.64e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1.73e-08}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.17e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.63e-12}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air"], "amount": 1.92e-09}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.92e-09}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 3.52e-13}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water"], "amount": 7.3e-13}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 1.23e-15}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.57e-15}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 5.19e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.79e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.71e-16}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 7.57e-18}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 2.02e-12}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 7.27e-09}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 5.54e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.51e-12}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.09e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.28e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.65e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.31e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.77e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.98e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 3.06e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.65e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1.41e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.3e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.03e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.03e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.03e-08}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 1.44e-07}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 9.95e-08}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.21e-11}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 1.31e-11}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.65e-11}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.65e-11}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.08e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 4.43e-09}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.61e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.13e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 9.13e-10}, {"name": "Fluorene", "categories": ["air"], "amount": 2.07e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.37e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 2.35e-17}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.19e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.94e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.62e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 5.77e-13}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.01e-11}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 5.22e-17}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water"], "amount": 1.04e-14}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.58e-20}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 7.07e-14}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.07e-12}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air"], "amount": 2.79e-14}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.79e-14}, {"name": "Furfural", "categories": ["air"], "amount": 1.81e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 8.38e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.53e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.44e-21}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.99e-16}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.73e-22}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.26e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 9.11e-14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 9.11e-14}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.36e-16}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-16}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 2.92e-09}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.98e-16}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water"], "amount": 2.21e-15}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.23e-14}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.86e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.18e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.55e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 9.06e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.42e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.42e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.63e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 4.41e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.03e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.03e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 8.95e-15}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.49e-11}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.79e-15}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4.92e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 6.83e-17}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 7.03e-21}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.26e-21}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.26e-21}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.79e-08}, {"name": "Indoxacarb", "categories": ["air"], "amount": 6.86e-08}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.13e-10}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 1.14e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.44e-12}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 4.29e-16}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.29e-16}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1e-09}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1e-09}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.95e-12}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 2.28e-12}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.3e-10}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.56e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.28e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.43e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 2.13e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 2.13e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2.13e-07}, {"name": "Lauric acid", "categories": ["air"], "amount": 9.87e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.76e-14}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 7.66e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.66e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Lead II", "categories": ["air"], "amount": 5.3e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 5.3e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.72e-29}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.78e-28}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.78e-28}, {"name": "Lead II", "categories": ["soil"], "amount": 8.78e-28}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 9.54e-28}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 9.54e-28}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.02e-26}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 9.54e-28}, {"name": "Lead II", "categories": ["water"], "amount": 9.54e-28}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 4.48e-18}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5.81e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.33e-18}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.14e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 7.51e-16}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.25e-16}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.25e-16}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 6.71e-15}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.01e-14}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.01e-14}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.35e-21}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.48e-16}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.17e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 9.63e-15}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.09e-16}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.08e-16}, {"name": "Mancozeb", "categories": ["water"], "amount": 1.08e-16}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 9.9e-15}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.72e-13}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 8.33e-15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 2.1e-24}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2.49e-05}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 1.7e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.7e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.86e-27}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 7.89e-26}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 7.89e-26}, {"name": "Mercury II", "categories": ["soil"], "amount": 7.89e-26}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 8.34e-26}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 8.34e-26}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.88e-25}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 8.34e-26}, {"name": "Mercury II", "categories": ["water"], "amount": 8.34e-26}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 8e-09}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-09}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 5.19e-09}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.6e-11}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 9.35e-12}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 3.96e-12}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 5.19e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 3.14e-15}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 2.18e-15}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.3e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.08e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.5e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.5e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 5.61e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.14e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 4.74e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 4.74e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.19e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.61e-11}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 3.48e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water"], "amount": 4.81e-13}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.36e-10}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 4.81e-12}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.35e-12}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water"], "amount": 7.73e-13}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 6.18e-11}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.46e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6.81e-13}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.56e-13}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 5.89e-13}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 5.89e-13}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.6e-11}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.37e-11}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.4e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.19e-11}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.27e-13}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.36e-10}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.36e-10}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.45e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.61e-10}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 8.27e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.1e-10}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.79e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.29e-10}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.66e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 9.76e-12}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.02e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 7.39e-16}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.2e-16}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2e-16}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 2.59e-08}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.59e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.59e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.79e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.79e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 9.47e-28}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.62e-27}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.62e-27}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.62e-27}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.91e-27}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.91e-27}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.22e-26}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.91e-27}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.91e-27}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1.6e-13}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 6.87e-14}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 2.62e-11}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 9.13e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 6.66e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.1e-11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.88e-12}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 6.91e-09}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 3.33e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.33e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.3e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 2.3e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.71e-26}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.34e-25}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.34e-25}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.34e-25}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.59e-25}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2.59e-25}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.2e-24}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.59e-25}, {"name": "Nickel II", "categories": ["water"], "amount": 2.59e-25}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-09}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 6.05e-09}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 8.3e-19}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 3.78e-19}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.25e-19}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.25e-19}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.39e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.69e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 5.35e-14}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 2.47e-10}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 6.63e-16}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 9.69e-15}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.94e-10}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1.52e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 1.1e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.84e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.34e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.54e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.81e-11}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.35e-19}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.15e-09}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 2.05e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 7.34e-16}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 7.89e-10}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 7.89e-10}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air"], "amount": 2.36e-13}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-13}, {"name": "Pentane", "categories": ["water"], "amount": 2.23e-13}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.32e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.57e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.22e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 6.3e-14}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water"], "amount": 1.12e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.48e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.48e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.82e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.82e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.32e-12}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.55e-12}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.38e-10}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.1e-09}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.74e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.13e-12}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 3.24e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.87e-12}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.22e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 4.56e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 8.37e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-14}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.04e-13}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.73e-15}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 8.88e-10}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 4.31e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 5.75e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 8.81e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 8.81e-10}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 7.27e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 6.22e-10}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 7.72e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.92e-08}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 4.29e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 4.49e-16}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 4.62e-17}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air"], "amount": 7.09e-12}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 7.09e-12}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 2.39e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water"], "amount": 1e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.86e-11}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.42e-14}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water"], "amount": 3.44e-13}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.32e-14}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.61e-11}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.31e-11}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 6.11e-12}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 2.7e-12}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.55e-12}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.19e-15}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.33e-13}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air"], "amount": 5.86e-10}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 5.86e-10}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.76e-13}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water"], "amount": 3.65e-13}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 3.72e-14}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.36e-11}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.36e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.67e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.98e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Pyrene", "categories": ["air"], "amount": 1.38e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 2.64e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 4.89e-15}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1.36e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 7.6e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 3.04e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.06e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.06e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.09e-15}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 4.66e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3.04e-10}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.01e-14}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 1.1e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.64e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 7.64e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.52e-26}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 7.22e-26}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 7.22e-26}, {"name": "Selenium IV", "categories": ["soil"], "amount": 7.22e-26}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 8e-26}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 8e-26}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 3.68e-25}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 8e-26}, {"name": "Selenium IV", "categories": ["water"], "amount": 8e-26}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.77e-13}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.59e-13}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.000119}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000119}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000119}, {"name": "Silver I", "categories": ["air"], "amount": 8.19e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 8.19e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.47e-25}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.13e-24}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.13e-24}, {"name": "Silver I", "categories": ["soil"], "amount": 1.13e-24}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.24e-24}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 1.24e-24}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 9.91e-24}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.24e-24}, {"name": "Silver I", "categories": ["water"], "amount": 1.24e-24}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.07e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.91e-11}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.48e-11}, {"name": "Simazine", "categories": ["water"], "amount": 3.48e-11}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.76e-10}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.76e-10}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.5e-32}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water"], "amount": 3.19e-32}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 8.8e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 4.77e-14}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water"], "amount": 1.58e-13}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 9.02e-14}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.43e-08}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.7e-08}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.7e-08}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 7.38e-15}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.96e-21}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.96e-21}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.68e-11}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.03e-12}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.01e-12}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water"], "amount": 9.55e-13}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 8.65e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 8.7e-11}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.36e-11}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.43e-11}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.43e-11}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-06}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.54e-06}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 9.93e-11}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 8.97e-11}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 6.71e-14}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 3.26e-09}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 5.45e-10}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.57e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-12}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 1.03e-06}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-06}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-06}, {"name": "Thallium I", "categories": ["air"], "amount": 7.15e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 7.15e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.16e-24}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.53e-24}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.53e-24}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.53e-24}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.82e-24}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 2.82e-24}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.55e-24}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.82e-24}, {"name": "Thallium I", "categories": ["water"], "amount": 2.82e-24}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.24e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 4.04e-14}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.18e-14}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.18e-14}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 7.08e-15}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 5.59e-10}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.31e-15}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water"], "amount": 2.43e-13}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 1.11e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.34e-09}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.34e-09}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.16e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 8.34e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.68e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.22e-11}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.22e-11}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air"], "amount": 6.43e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 3.45e-12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.84e-12}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.09e-11}, {"name": "Thiram", "categories": ["water"], "amount": 2.09e-11}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 9.85e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.85e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.85e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 6.82e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 6.82e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 5.57e-28}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.24e-26}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1.24e-26}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 9.38e-26}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.24e-26}, {"name": "Tin ion", "categories": ["water"], "amount": 1.24e-26}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.06e-13}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water"], "amount": 3.43e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.83e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.83e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.32e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.82e-12}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 9.93e-09}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2.06e-10}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.77e-14}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.19e-09}, {"name": "Triallate", "categories": ["air"], "amount": 5.36e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.14e-10}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.07e-10}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 8.53e-13}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 2.11e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.73e-06}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.55e-14}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.1e-14}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.64e-14}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.82e-13}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.03e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.02e-11}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.09e-17}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 2.05e-16}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.67e-05}, {"name": "Triflumuron", "categories": ["air"], "amount": 5.52e-05}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 9.58e-07}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 6.68e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.3e-07}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.29e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.5e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.63e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.63e-10}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.01e-15}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.13e-13}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 7.82e-18}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water"], "amount": 1.47e-16}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 2.26e-15}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 3.33e-06}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.33e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.3e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.3e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.16e-24}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 7.67e-24}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 7.67e-24}, {"name": "Vanadium V", "categories": ["soil"], "amount": 7.67e-24}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 8.48e-24}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 8.48e-24}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.45e-23}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 8.48e-24}, {"name": "Vanadium V", "categories": ["water"], "amount": 8.48e-24}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.67e-11}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 6.28e-14}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water"], "amount": 2.09e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 2.41e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.41e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.41e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 1.66e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1.66e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.66e-24}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.41e-23}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.41e-23}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.41e-23}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.64e-23}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 2.64e-23}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.98e-23}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.64e-23}, {"name": "Zinc II", "categories": ["water"], "amount": 2.64e-23}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 8.48e-10}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 9.19e-14}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.04e-13}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 2.13e-13}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water"], "amount": 7.07e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.14e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 3.88e-13}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air"], "amount": 6.1e-09}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 6.1e-09}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 4.62e-12}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 9.58e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2.13e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "eutrophication: freshwater"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "eutrophication: marine"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "land use"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "photochemical oxidant formation: terrestrial ecosystems"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.71e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.71e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.92e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.15e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.15e-08}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.79e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.79e-09}, {"name": "Acetone", "categories": ["air"], "amount": 4.52e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.52e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.07e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.07e-08}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.62e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.43e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.43e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.54e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air"], "amount": 3.92e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.96e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.96e-08}, {"name": "Cumene", "categories": ["air"], "amount": 2.41e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.11e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.47e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -7.54e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -7.54e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56e-08}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43e-08}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.47e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Formic acid", "categories": ["air"], "amount": 2.26e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Heptane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Hexane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-09}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 8.6e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.6e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 7.54e-10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Methanol", "categories": ["air"], "amount": 9.8e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.97e-07}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.29e-07}, {"name": "Pentane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Phenol", "categories": ["air"], "amount": -3.77e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.77e-09}, {"name": "Propanal", "categories": ["air"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanol", "categories": ["air"], "amount": 3.62e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propionic acid", "categories": ["air"], "amount": 9.8e-09}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Styrene", "categories": ["air"], "amount": 3.77e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77e-09}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.54e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Toluene", "categories": ["air"], "amount": 3.32e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48e-08}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "water use: aquatic ecosystems"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "water use: terrestrial ecosystems"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1.35e-08}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "human health", "climate change: human health"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 1.25e-05}, {"name": "Chloroform", "categories": ["air"], "amount": 3.42e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.42e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.000985}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000985}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000985}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.000985}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.000985}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.00272}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.00272}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000335}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000335}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.0114}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.0176}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.0176}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.00164}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.00164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000287}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.88e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.88e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.0437}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.00416}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00416}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00416}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.00416}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.00416}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.000166}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.000166}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.0011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0011}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.107}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.107}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.107}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.223}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.00683}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.46e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.46e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 4.93e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 4.93e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.00367}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00367}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00367}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00367}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00367}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.0168}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0168}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0168}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.0168}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.0168}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0037}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0037}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.87e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.87e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0339}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0339}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000308}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.00142}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.12e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.95e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.55e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.55e-05}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.95e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.0037}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.0037}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.138}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.0109}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.0708}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.16}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.43}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "human health", "human toxicity: carcinogenic"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 2.16e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-06}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 5.75e-06}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 2.16e-07}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Acephate", "categories": ["water"], "amount": 2.69e-07}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 0.000165}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.23e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 7.17e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.83e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 9.87e-05}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air"], "amount": 1.07e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.07e-07}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.23e-10}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water"], "amount": 8.03e-08}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.0745}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0745}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0745}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0694}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0694}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.00574}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0536}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0536}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0536}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0586}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.0586}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0586}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0586}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-05}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 9.48e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.44e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 5.11e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 5.11e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 5.11e-06}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.54e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.54e-07}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 3.56e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.24e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.17e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.24e-07}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 4.82e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.43e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.19e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.000312}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000312}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00381}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 7.91e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.91e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.91e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.000889}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.000889}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.18e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.02e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.02e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.02e-05}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.88e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 2.88e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.61e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.88e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 2.88e-06}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 4.42e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 4.42e-06}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.000569}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000569}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000569}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00103}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.00103}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.00112}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 5.18e-05}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 5.18e-05}, {"name": "Cadmium II", "categories": ["soil"], "amount": 5.18e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 3.29e-05}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 3.29e-05}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.000262}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 3.29e-05}, {"name": "Cadmium II", "categories": ["water"], "amount": 3.29e-05}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 7.18e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.27e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.09e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.09e-05}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 9.73e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 4.29e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.23e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.86e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.65e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 7.03e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.2e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 3.22e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 3.22e-07}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 2.47}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47}, {"name": "Chromium VI", "categories": ["air"], "amount": 2.21}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 2.21}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.61}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.66}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.66}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.66}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.82}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 1.82}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.22}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.82}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.82}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0008}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.64e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 9.01e-05}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.11e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.63e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 331}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 331}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 77.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 263}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 755}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.33e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 2.24e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 2.24e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.68e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.68e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 8.1e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 8.1e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.16e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 7.42e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 7.42e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 2.92e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.45e-05}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 4.32e-06}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000172}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.11e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 4.14e-05}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.08e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4.55e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.12e-09}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.000315}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.000315}, {"name": "Furfural", "categories": ["air"], "amount": 9.63e-07}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air"], "amount": 1.6e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.6e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 3.44e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water"], "amount": 8.81e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.4e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 5.71e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 5.71e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.77e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.84e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 7.54e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 7.54e-06}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 4.26e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.26e-07}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.000119}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000119}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000119}, {"name": "Lead II", "categories": ["air"], "amount": 8.8e-05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 8.8e-05}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.57e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.28e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.28e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 2.28e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.78e-06}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 4.78e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 5.54e-05}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.78e-06}, {"name": "Lead II", "categories": ["water"], "amount": 4.78e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 4.15e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.37e-07}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.014}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0103}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0103}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.000544}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.00251}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.00251}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.00251}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.00244}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.00244}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0252}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.00244}, {"name": "Mercury II", "categories": ["water"], "amount": 0.00244}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 4.09e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 4.09e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.93e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.29e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000848}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000848}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000448}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000782}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.25e-06}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.87e-07}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.87e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 5.69e-08}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.82e-07}, {"name": "Naphthalene", "categories": ["air"], "amount": 7.98e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3e-06}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.00389}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00389}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00389}, {"name": "Nickel II", "categories": ["air"], "amount": 0.00301}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.00301}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.000698}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.00118}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.00118}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.00118}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 0.000828}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 0.000828}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 0.00396}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.000828}, {"name": "Nickel II", "categories": ["water"], "amount": 0.000828}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.82e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.000112}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.000112}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 2.27e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.97e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.92e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.54e-05}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.12e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.21e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.61e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.017}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.17e-05}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.94e-07}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.95e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.21e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.21e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3.16e-07}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.24e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.33e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.73e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.77e-06}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air"], "amount": 4.44e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 4.44e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.13e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water"], "amount": 7.51e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.08e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.35e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1.26e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.26e-05}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air"], "amount": 6.77e-08}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.77e-08}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 8.86e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water"], "amount": 7.62e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.64e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 7.99e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.04e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.04e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.2e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.12e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "human health", "human toxicity: non-carcinogenic"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 3.35e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0044}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.28e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 2e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.22e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.09e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.66e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.66e-07}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 7.34e-05}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.9e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.84e-06}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.42e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water"], "amount": 9.33e-07}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.0088}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.0088}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.00235}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 0.0149}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.00734}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.18}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.1}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.933}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.933}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.933}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.02}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.02}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.35}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.02}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.02}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 1.39e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.00479}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.00228}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.00481}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.00481}, {"name": "Barium II", "categories": ["soil"], "amount": 0.00481}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 0.0073}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water"], "amount": 0.00529}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.08e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3.06e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.86e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 2.96e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.15e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.07e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.44e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000306}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.00629}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00629}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00629}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.99e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.58e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.58e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.58e-05}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 7.3e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 7.3e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 4.08e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 7.3e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 7.3e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.27e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.76e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.66e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.48e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.64e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.63e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000449}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000449}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.52e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.52e-06}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.0342}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0342}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0342}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0244}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0244}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.0707}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00326}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00326}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.00326}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00207}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 0.00207}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.0165}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00207}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00207}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.64e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.89e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.89e-06}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.74e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.96e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 2.25e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.36e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.92e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.86e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.48e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.28e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.28e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 9.69e-08}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 9.69e-08}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.89e-08}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.04e-07}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water"], "amount": 1.12e-08}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.00136}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00136}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00136}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00244}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00244}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.000321}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.000878}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.000878}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.000878}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.000962}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 0.000962}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.00223}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.000962}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.000962}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 2.53e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2.53e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.9e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["soil"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.72e-05}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water"], "amount": 5.54e-06}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.75e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.92e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.92e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 6.38e-08}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 5.86e-06}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.98e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000197}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2.18e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.18e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.85e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.28e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 6.5e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.88e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.88e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.32e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.32e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.72e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1.61e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1.61e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.000126}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.57e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.35e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.51e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 7.09e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.02e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air"], "amount": 8.09e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 8.09e-06}, {"name": "Furfural", "categories": ["air"], "amount": 3.63e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.04e-05}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00125}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.57e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 9.28e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 9.28e-06}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.00978}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00978}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00978}, {"name": "Lead II", "categories": ["air"], "amount": 0.00725}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00725}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.00129}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.00188}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.00188}, {"name": "Lead II", "categories": ["soil"], "amount": 0.00188}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.000394}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.000394}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.00456}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.000394}, {"name": "Lead II", "categories": ["water"], "amount": 0.000394}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.000113}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.02e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.39}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39}, {"name": "Mercury II", "categories": ["air"], "amount": 0.287}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.287}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0151}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.07}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.07}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0677}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.0677}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.702}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0677}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0677}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000349}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 3.65e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 3.65e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 7.64e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.61e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 9.21e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 9.21e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.12e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.12e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000668}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000668}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000353}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000618}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 7.64e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 7.64e-06}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.42e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.00114}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.000714}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.000258}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 4.86e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.56e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.51e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.35e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 5.15e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.15e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.15e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 3.97e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.97e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 9.23e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.56e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.56e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.56e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1e-05}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 1.1e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 5.24e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 1.1e-05}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.74e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 3.24e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.11e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.92e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.39e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 9.85e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.89e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000138}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 7.23e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.13e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.72e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 5.29e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 9.76e-08}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 5.15e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.78e-08}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 6.25e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 3.37e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.33e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.21e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air"], "amount": 0.0211}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0211}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0424}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.00347}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.00347}, {"name": "Silver I", "categories": ["soil"], "amount": 0.00347}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 0.00771}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water"], "amount": 0.000921}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.05e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water"], "amount": 4.81e-09}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.43e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 2.71e-06}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air"], "amount": 0.249}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.249}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.107}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.235}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.235}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.235}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.422}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water"], "amount": 0.26}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.2e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.63e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 3.51e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.01e-05}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 3.6e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.18e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.12e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.92e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.92e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.69e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air"], "amount": 0.0141}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 0.0141}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.00208}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 0.0253}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.0148}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4.15e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.58e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air"], "amount": 0.449}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.449}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0777}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.547}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.547}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.547}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.677}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water"], "amount": 0.602}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.88e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.36e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.41e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.16e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "human health", "ionising radiation"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 6.45e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 4.09e-11}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 6.75e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 5.1e-11}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 6.87e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1.25e-11}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 6.62e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.21e-07}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 8.15e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water"], "amount": 1.4e-07}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 3.82e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water"], "amount": 1.78e-10}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 3.43e-11}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 3.3e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 3.7e-08}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 4.83e-08}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 5.67e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 5.77e-13}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water"], "amount": 2.17e-06}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 4.2e-10}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 7.9e-12}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 1.27e-09}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 2.67e-10}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.1e-13}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 5.6e-08}, {"name": "Plutonium-alpha", "categories": ["air", "low population density, long-term"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 6.23e-08}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 1.27e-09}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "ground-, long-term"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water"], "amount": 1.08e-10}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 2.03e-11}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 1.53e-11}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 3.3e-12}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 4.2e-10}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 6.37e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water"], "amount": 3.95e-10}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 1.53e-12}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 1.53e-12}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water"], "amount": 4.33e-10}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 3.82e-08}, {"name": "Uranium alpha", "categories": ["air", "low population density, long-term"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water", "ground-, long-term"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water", "ocean"], "amount": 1.17e-11}, {"name": "Uranium alpha", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water"], "amount": 1.9e-09}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water", "ground-, long-term"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 1.9e-11}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water"], "amount": 2.03e-09}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water", "ground-, long-term"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 2.84e-11}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water", "ground-, long-term"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 1.17e-11}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water"], "amount": 1.9e-09}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 1.2e-13}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "human health", "ozone depletion"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 2.28e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-05}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.28e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000214}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000214}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.00114}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.000161}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.000777}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000777}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000777}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.000777}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.000777}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 8.04e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.04e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.04e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 8.04e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 8.04e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.34e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.34e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2.68e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.68e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.68e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2.68e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2.68e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.000764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.000764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.000764}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 8.87e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 8.87e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000884}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000884}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.0106}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0106}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0106}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.0106}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.0106}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.0213}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0213}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0213}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.0213}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.0213}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5.36e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5.36e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0011}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0011}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.68e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.68e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.0011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.0011}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.00134}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.00134}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "human health", "particulate matter formation"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.000151}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.03e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.000107}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 6.92e-05}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000182}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000145}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "human health", "photochemical oxidant formation: human health"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.72e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.82e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.82e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air"], "amount": 1.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.98e-08}, {"name": "Acrolein", "categories": ["air"], "amount": 1.78e-07}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.78e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -6.27e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -6.27e-08}, {"name": "Benzene", "categories": ["air"], "amount": 3.3e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.52e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 2.94e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-07}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air"], "amount": 1.72e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cumene", "categories": ["air"], "amount": 1.06e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 9.24e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.52e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -3.3e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -3.3e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 6.27e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 6.27e-08}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.22e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.22e-07}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.52e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.48e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.48e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.42e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.42e-08}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.3e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Methanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.06e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.63e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.63e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 6.73e-07}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.39e-06}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 9.1e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Phenol", "categories": ["air"], "amount": -1.65e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -1.65e-08}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Styrene", "categories": ["air"], "amount": 1.65e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.3e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 9.57e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.57e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "human health", "water use: human health"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 2.22e-06}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "natural resources", "energy resources: non-renewable, fossil"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.0341}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "natural resources", "material resources: metals/minerals"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.132}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0303}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00527}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 17.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.74}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0267}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0705}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0025}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00241}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0113}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00356}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 73.4}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0443}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000654}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 22.3}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.07}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00212}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00133}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 3.07}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.099}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0202}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00874}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 278}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.83}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.918}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "total: ecosystem quality", "ecosystem quality"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.680299999999999e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 6.158999999999999e-10}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.48373e-12}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.6652e-11}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83562e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.52564e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.3411235e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.83520616e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.83520616e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7236e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.083400011e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.492700000532001e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.492700000532001e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7236e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 5.1363e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.083400011e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.492700000532001e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.522999999999999e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.6019e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.995342e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.995342e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.80725e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.7113922e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.7113922e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.5517e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.6551e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.01482e-11}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36004267e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36004267e-08}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.2917e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.5654e-12}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 2.9949e-09}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 2.1337e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.9679973e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.9679973e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.350059938e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.55641e-11}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1.16136e-10}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.311e-11}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.311e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.22876e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.8545e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.320779999999999e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.87616e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.001556000000001e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.24170901e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.24170901e-10}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.1503717e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.1503717e-08}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 8.5333e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04851e-10}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05858e-11}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 4.5908e-13}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.77038805e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.183263e-10}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air"], "amount": 4.5204406e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.5204406e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.4881e-13}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.8318e-12}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.1213e-12}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.801e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 5.8726e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 3.8295e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.7464e-09}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["water"], "amount": 5.3361e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37024635e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.194350000000001e-11}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.37757e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.37757e-10}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.232e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.232e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 3.6996e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.4716e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.783900000000001e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9.863e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.630105e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.630105e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.8867e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 1.347e-09}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 4.0935e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15771e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.647e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.428e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.273e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.093999999999999e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.925140000000001e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.5279e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.3014e-09}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.82132e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air"], "amount": 9.982e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 9.982e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.50817e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.4279e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.022e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.26214e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.49851e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.7676e-10}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 9.79831e-05}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.79831e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.79831e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 8.90784e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 8.90784e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.22685e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 6.9213e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 6.9213e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 6.9213e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 7.683600000000001e-05}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 7.683600000000001e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 0.00016}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 7.683600000000001e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 7.683600000000001e-05}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 2.123386e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.123386e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.123386e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.90447e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.90447e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.43398e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.41392e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.41392e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.41392e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.56432e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.56432e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.64e-05}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.56432e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.56432e-05}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.17828e-10}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1346e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.0689e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.0208e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.26675e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.26675e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.26675e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.1857e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.330007629999999e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.6535e-07}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.39150577e-10}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.698e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.42000164e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.913800156e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.10360000694e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.10360000694e-07}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1.930437e-06}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.930437e-06}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.930437e-06}, {"name": "Barium II", "categories": ["air"], "amount": 1.938571e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.938571e-06}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9.178159999999999e-07}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.96175e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.96175e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 1.96175e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.18194e-06}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 2.18194e-06}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.03e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.18194e-06}, {"name": "Barium II", "categories": ["water"], "amount": 2.18194e-06}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.606500196e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 2.489e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14409719e-09}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 1.087e-10}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2491e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.9148e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.772679999999999e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.772679999999999e-10}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1.148e-08}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.12803e-06}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.2778e-10}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.8389e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.178899999999999e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.053e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47005026e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47005026e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.875178e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.05076e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.6023e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.6023e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.8812e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 3.2029e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.2029e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.377e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.994e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3.994e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.468506999999999e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.468506999999999e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.44142e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.4232e-11}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 5.1476e-12}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.4135e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.99278e-10}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 1.571314e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.571314e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.571314e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.17031e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.17031e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.8138e-07}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.6854e-06}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.6854e-06}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.6854e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.9489e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 2.9489e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.89e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.9489e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 2.9489e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.594e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.834e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.0444e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.523951e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.523951e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 4.794e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.587e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 3.31e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 1.512e-08}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 7.178e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.72113e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.72113e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.1461073e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.38790514e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.077300857e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 7.151109e-09}, {"name": "Bromopropane", "categories": ["air"], "amount": 1.1492e-12}, {"name": "Bromopropane", "categories": ["water"], "amount": 9.086200000000001e-11}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.465e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.907349999999999e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.24030377e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.1697000759e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.1697000759e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 5.120000000000001e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.2437e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.5907e-09}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.9354e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.3043e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.29705e-11}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 2.29266e-10}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.921400000000001e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.812e-11}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5287e-08}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.1259e-07}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 5.891379999999999e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.891379999999999e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.891379999999999e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 4.2242e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 4.2242e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.0938e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.845e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.845e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.845e-07}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 5.367e-07}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 5.367e-07}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 4.85e-06}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 5.367e-07}, {"name": "Cadmium II", "categories": ["water"], "amount": 5.367e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.81297e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.11696e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.5588e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.133979999999999e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.133979999999999e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19026e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.9898e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.16777e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.8453995e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2267475e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2267475e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9602e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.2783e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.5000682e-08}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.6843e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.6843e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.0889e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.6612e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.5213e-09}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9713e-08}, {"name": "Carboxin", "categories": ["air"], "amount": 3.6626e-08}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.61089e-09}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 9.67546e-09}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.825376e-08}, {"name": "Carboxin", "categories": ["water"], "amount": 1.825376e-08}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.8809164e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.60581e-11}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9851e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 6.719e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 5.1687e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 2.9548e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 2.9548e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 2.9548e-06}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44000000198675e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.515420000372e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.9074e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.811e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.390799999999999e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.8217e-10}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 3.22681e-11}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 7.41839e-08}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.41839e-08}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 1.01000042202e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 6.28250775e-09}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air"], "amount": 6.8412273e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 6.8412273e-08}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.10592e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.2319e-10}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 9.1e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 7.039e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 7.039e-10}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.7535e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.32431e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.862e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.846e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.3288e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.323e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 5.893e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 5.893e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.97e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.588e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.28426e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.05138e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.05138e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.6864e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.6952000815e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.01023e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.058238e-06}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.058238e-06}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.058238e-06}, {"name": "Chromium III", "categories": ["air"], "amount": 7.48608e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.48608e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.8321e-08}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.064e-08}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.064e-08}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.064e-08}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 5.62e-08}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 5.62e-08}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 6.12e-07}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 5.62e-08}, {"name": "Chromium III", "categories": ["water"], "amount": 5.62e-08}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 4.552896000000001e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.552896000000001e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.552896000000001e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.05629e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 4.05629e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.06196e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.92542e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.92542e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.92542e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.25602e-05}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 3.25602e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.64e-05}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.25602e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.25602e-05}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.0517e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 6.9229e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 5.144300000000001e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.88435e-10}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 1.737403e-06}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.737403e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.737403e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 1.28451e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1.28451e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.9144e-08}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.6099e-07}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.6099e-07}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.6099e-07}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.884e-07}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 2.884e-07}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.96e-06}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.884e-07}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.884e-07}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 4.55101e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.55101e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.55101e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 3.32384e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.32384e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.946e-07}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.712e-06}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.712e-06}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.712e-06}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.302e-06}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 6.302e-06}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.69e-05}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.302e-06}, {"name": "Copper ion", "categories": ["water"], "amount": 6.302e-06}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air"], "amount": 2.41005783e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41005783e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.496336e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.89631e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.30289e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.6023606e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.810646e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.6665e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.3763373e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5.07e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.0723e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.42870047e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.036e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 6.188000000000001e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.53323e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.53323e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4299e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.0219e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.16150233e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.970099999999999e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.73918e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.54408e-09}, {"name": "Decanoic acid", "categories": ["water"], "amount": 2.11462e-09}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 3.83e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 2.946e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 3.193e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.507600000000001e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.7119000000104e-11}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.5234e-10}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.1811e-08}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.753e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.985034300000001e-09}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73316e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.3729e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.633600264e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.633600264e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 5.548e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3362e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.243e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.677892000000001e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.416600291e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.416600291e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.4928e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.129e-09}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.1337e-08}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.29869e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 3.056e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.112350677e-10}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 7.5216e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.470005178e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.470005178e-08}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.17928e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.17928e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.635339999999999e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.23034e-10}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.125253e-11}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.125253e-11}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.8284957e-14}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.8857e-12}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4135e-07}, {"name": "Difenoconazole", "categories": ["air"], "amount": 2.0617e-07}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.944815e-09}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 5.6190746e-08}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 1.66710573e-07}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1.66710573e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7484e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.2825e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.4422e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.48589e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.48589e-06}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 2.096e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 9.9372e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.37102e-10}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.594e-09}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.154663e-07}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.91574e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 4.07e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.699944e-08}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 6.2347e-10}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.025e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.025e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.48552e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.874200000000001e-10}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 1.9700538e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9700538e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9700538e-06}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.9700538e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.9700538e-06}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.244924e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.3321e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 2.3362e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3362e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3362e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 2.0618e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 2.0618e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 3.0532e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 5.102e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 5.102e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 5.102e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.593e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 1.593e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.97657e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.593e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.593e-05}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.656187e-10}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 1.09252e-08}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09252e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 6.0432e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.438200645e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.1006000494e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.371400000752e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.371400000752e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.7426e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.4012e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3505e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.5858e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.06405e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.88131e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.563191e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.57777e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.486299999999999e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.530607829999999e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21470000249e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 9.755e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3.039e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.9541500000117e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.7474e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.7474e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 7.047e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2333e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.5985e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.402999999999999e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 3.0565e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.056100000000001e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.056100000000001e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8228e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8.372e-07}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air"], "amount": 6.642e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 6.642e-12}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 5.440147999999999e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.440147999999999e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 6.692738872000001e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 6.692738872000001e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.99014e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.5485e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.5485e-11}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.5200961e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 3.5200961e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 3.2700893e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 3.2700893e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 5.750157e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.750157e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.750157e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 5.750157e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 5.750157e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.766732e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3.766732e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 8.6189e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8.730238e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.730238e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.730238e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8.730238e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8.730238e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 8.310227e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.310227e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.310227e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 8.310227e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 8.310227e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.3200906e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 3.3200906e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2.2000601e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2000601e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2000601e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2.2000601e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2.2000601e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.00021400585}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00021400585}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00021400585}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.00021400585}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.00021400585}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.30259e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.483e-09}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.0004450121}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0004450121}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0004450121}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.0004450121}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.0004450121}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1.3700373e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3700373e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3700373e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3700373e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3700373e-05}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.1756e-13}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.6926e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16852e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.2872064e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.29910000000288e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.29910000000288e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.7672e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 5.7903e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.50894e-08}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43055768e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43055768e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.1162e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.6307e-11}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air"], "amount": 1.94897e-09}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.94897e-09}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.62358e-12}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water"], "amount": 1.41234e-10}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.26866e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.26866e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78123343e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.9706257e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.713000000000001e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 5.327e-11}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 3.4403e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.547900471e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.528000000757e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 5.3141e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.4086e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.2763e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 7.01371e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.3682e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 7.599999999999999e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2464e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.539800000000001e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.956e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.7608e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.2454e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.2177e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.2177e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.8758e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 8.938000000000001e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.451e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.6259e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.6259e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.6259e-06}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 1.5126e-07}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5126e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.1734e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 6.5634e-09}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 4.91221e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.934165e-07}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.934165e-07}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2711e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 3.3676e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.027999999999999e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 3.265e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.35993e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 4.607e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 5.0082e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 5.117e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.154200235e-10}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.6626e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.16056e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.606e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.483852e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.483852e-08}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.15095e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.4358e-10}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.900524070000001e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.943639999999999e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.314100085799999e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.955606999999999e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4224e-10}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air"], "amount": 3.1472e-14}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 3.1472e-14}, {"name": "Furfural", "categories": ["air"], "amount": 1.86695e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.127630000202e-10}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 8.542199999999999e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.9543e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.127630000202e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.98070000000144e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.732769e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.44877699e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.665970000000373e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.665970000000373e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.665970000000373e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8926e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.489e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.29470911e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.29470911e-08}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.640000025104e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.640000025104e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 1.05077e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.60050713e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.827221e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.0654423e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.0826e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.249e-08}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.2557e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 8.063800000000001e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.809164e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39003934e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39003934e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.126764e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.483915199999999e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.483915199999999e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.34455e-12}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.6047e-09}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.37410479e-09}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 6.04271e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04271e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.049849999999999e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.184000683e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.89050000000703e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.44980000000226e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.44980000000226e-09}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.541e-08}, {"name": "Indoxacarb", "categories": ["air"], "amount": 7.971e-08}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 3.081e-09}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2.4405e-08}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.275617e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.46424e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 8.600000047030001e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.600000047030001e-08}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1.026676e-09}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1.026676e-09}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 3.16725e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water"], "amount": 1.24899e-10}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.40115e-09}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.42488e-09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.2617e-08}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.736e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.605e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 4.164e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.4843e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.4843e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.4843e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 1.784e-11}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.0121676e-09}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 8.460321999999999e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.460321999999999e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.460321999999999e-07}, {"name": "Lead II", "categories": ["air"], "amount": 5.885420000000001e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 5.885420000000001e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.314e-10}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 1.0198e-08}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 1.0198e-08}, {"name": "Lead II", "categories": ["soil"], "amount": 1.0198e-08}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.1121e-08}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 1.1121e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.57e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.1121e-08}, {"name": "Lead II", "categories": ["water"], "amount": 1.1121e-08}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.7714000448e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 8.89e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.5313000233e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.213709999999999e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.21433751e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.144080125e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.144080125e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2503e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.3310671e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.204910100000001e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.204910100000001e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.951499999999999e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.0373100000135e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.1477148e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.10228e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.27494e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.47190963e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.972900040900001e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.4653000108e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.4653000108e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.6736099e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.41742e-10}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 1.0789933e-10}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 6.303300021e-16}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 3.192228e-05}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.192228e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.192228e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 2.21119e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 2.21119e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.3772e-08}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0067e-06}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0067e-06}, {"name": "Mercury II", "categories": ["soil"], "amount": 1.0067e-06}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.0646e-06}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 1.0646e-06}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.31e-05}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.0646e-06}, {"name": "Mercury II", "categories": ["water"], "amount": 1.0646e-06}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.8765e-10}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 8.133500000000001e-09}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.133500000000001e-09}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 5.6209e-09}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.5905e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.40095e-09}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2.34336e-09}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2.34336e-09}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 5.67097e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.565600314e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4050618e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.552e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.885999999999999e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 9.035899999999999e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.982679e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 9.982679e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 7.3302e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3302e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3302e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 7.3302e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 7.3302e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 3.3600915e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3600915e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3600915e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 3.3600915e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 3.3600915e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 7.400202e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 7.400202e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.00031700865}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00031700865}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00031700865}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.00031700865}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.00031700865}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.956307e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.956307e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 4.0236e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.231e-11}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 6.770185e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 6.770185e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 6.160168e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.160168e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.160168e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 6.160168e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 6.160168e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2.8300772e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8300772e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8300772e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.8300772e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.8300772e-06}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.2200334e-07}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2200334e-07}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2200334e-07}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.2200334e-07}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.2200334e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.1900325e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1900325e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1900325e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 1.1900325e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.1900325e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.18562603e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.18562603e-08}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.1900325e-07}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1900325e-07}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1900325e-07}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1.1900325e-07}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.1900325e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 7.400275968e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 7.400275968e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.04391e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.435e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.00027500751}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00027500751}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00027500751}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.00027500751}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.00027500751}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2.1900597e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2.1900597e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.00014200386}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00014200386}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014200386}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.00014200386}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.00014200386}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.1144e-13}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.9244e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.894100000000001e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 2.0765e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74674e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 6.00631e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.322135e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.479677299999999e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.479677299999999e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.479677299999999e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.38e-10}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8735e-07}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.6234e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 7.787081e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 5.5285656e-08}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 1.70110589e-07}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 1.70110589e-07}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.297143e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.297143e-09}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.1759e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 3.4104e-11}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.8277e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.8277e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 5.5654e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.5594e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41003796e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41003796e-08}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.6673e-12}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.416369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.416369999999999e-10}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.142e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.9012e-09}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.47429e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.06189e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.3719e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9329e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.8029e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3719e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.03409e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.03409e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.03409e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63375e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.07254e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.0387276e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26365e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.07675e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.6653000124e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.106100000739e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.56420000032e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.56420000032e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.767999999999999e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 5.336e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1.157425e-07}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.157425e-07}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.157425e-07}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 9.0409e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 9.0409e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.21929e-08}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.3557e-08}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.3557e-08}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.3557e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 3.7285e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 3.7285e-08}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.69e-07}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 3.7285e-08}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 3.7285e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17798e-09}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2.007877e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.25798e-09}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 9.4494e-10}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.3103e-08}, {"name": "Naphthalene", "categories": ["air"], "amount": 9.302e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.6425e-09}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 9.5681e-10}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.4533e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 1.059327e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.059327e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.059327e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 8.0712e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 8.0712e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.8558e-07}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.4289e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.4289e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.4289e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.692e-06}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2.692e-06}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.692e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 2.692e-06}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4485e-09}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 6.2896e-09}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1.6504000083e-10}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 8.971000003780001e-10}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.316300000125e-09}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.316300000125e-09}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitric oxide", "categories": ["air"], "amount": 3.14e-07}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.884e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 7.094000000000001e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.00032000874}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00032000874}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00032000874}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.00032000874}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00032000874}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 2.053e-07}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 3.436e-09}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.08772e-11}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.1555e-09}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 7.78690663e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.498169e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.305e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11911e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 4.179e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 9.703e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.409e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.409e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.171e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.17877e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.189100000000001e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.956e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 9.015100535000001e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.0009e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.975e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.28060734e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.429e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.1088e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.24349e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.24349e-07}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air"], "amount": 3.020025237e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.020025237e-08}, {"name": "Pentane", "categories": ["water"], "amount": 4.998803000000001e-09}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.00032100876}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.017e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.002e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 2.0333e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 8.117e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.0794e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.461900645e-10}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air"], "amount": -3.749579e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.749579e-09}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.167158e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.7761e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 3.562e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 3.562e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.472000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.472000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.95232e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.231355e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.757099999999999e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.6404e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 8.9875e-08}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.19505e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.0975e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.12529e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.82659e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.15565e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 5.0829e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.402442000000001e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.68484e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.1031573e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.5872e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.2429e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.6319e-08}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 2.898e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.898e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.898e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 2.777e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 2.777e-09}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.4957e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.0084e-08}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.317e-10}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.413e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.0294e-08}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.3839e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 2.2356e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4117449e-11}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.11750462e-11}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air"], "amount": 5.4307464e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.4307464e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 7.6055e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water"], "amount": 8.1562e-11}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.0292e-09}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air"], "amount": 3.62007158e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62007158e-08}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 2.3687e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.9418e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.561343199999999e-09}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.6402e-10}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.32608e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8246e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.36551e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.11407e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.275855e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.275855e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.275855e-08}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63119919e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09465e-10}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air"], "amount": 6.01583e-10}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 6.01583e-10}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.47729e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water"], "amount": 8.115500000000002e-11}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 4.9125e-13}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.6519e-11}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.6519e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.679e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 7.074e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.3538e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.9068e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 4.448e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.278e-06}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.7413e-07}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.389e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.389e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.511389e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.0395e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.8366e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.887e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.211e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.2767e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.6849e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.9144e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.9144e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.2705209e-10}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.167e-09}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.1445e-08}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2.8868e-09}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.85901e-11}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 3.57122e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57122e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57122e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 2.7278e-06}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 2.7278e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.7502e-07}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 8.316100000000001e-07}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 8.316100000000001e-07}, {"name": "Selenium IV", "categories": ["soil"], "amount": 8.316100000000001e-07}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 9.217e-07}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 9.217e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.73e-06}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 9.217e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.217e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.904e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.88237e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.193859000000001e-09}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.0001874323}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001874323}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001874323}, {"name": "Silver I", "categories": ["air"], "amount": 0.000133116}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.000133116}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.6198e-06}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.2405e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.2405e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 1.2405e-05}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.3737e-05}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 1.3737e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 0.000134}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.3737e-05}, {"name": "Silver I", "categories": ["water"], "amount": 1.3737e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55942e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.15613e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.0866e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.33571e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.06368e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.06368e-08}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.771265e-10}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.771265e-10}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 8.56e-14}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water"], "amount": 5.7221e-12}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.5114e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air"], "amount": 3.77007198e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77007198e-09}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.505038e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75914e-10}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.52090902e-08}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.14369e-07}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 0.0008590233999999999}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0008590233999999999}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0008590233999999999}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.0008590233999999999}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0008590233999999999}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.5520356e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.5520356e-07}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.4553038e-10}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.06381000000196e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.06381000000196e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1.003208e-07}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3431e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.28703e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.185009999999999e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.8453955e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7556e-09}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14932e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9.172099999999999e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.7515e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.593736e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.742943e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.742943e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1146e-06}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.7225e-06}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.709199999999999e-08}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 4.898993e-07}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 1.6774897e-06}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.378371e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.4728e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.303e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.7316e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.687849999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.687849999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.53667e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.7108e-10}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 5.043632000000001e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.043632000000001e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.043632000000001e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 4.88296e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 4.88296e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2.07152e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 4.53331e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 4.53331e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 4.53331e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 5.03368e-05}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 5.03368e-05}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 8.21e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 5.03368e-05}, {"name": "Thallium I", "categories": ["water"], "amount": 5.03368e-05}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1.58345e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58345e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.34304e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.138841e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.6029404e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05376318e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05376318e-08}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 8.6416708e-10}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.0562e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.0200131648e-10}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water"], "amount": 6.302843e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8483e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.2836e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.6623e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.11236e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.11236e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03395e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.36888e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.4302e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.3474e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.06432e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.06432e-08}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.531e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.531e-08}, {"name": "Thiram", "categories": ["air"], "amount": 1.15e-08}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.89795e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.391784e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.277509e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.277509e-07}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 1.663257e-06}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.663257e-06}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.663257e-06}, {"name": "Tin ion", "categories": ["air"], "amount": 1.19211e-06}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.19211e-06}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 6.458e-09}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1.3204e-07}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1.3204e-07}, {"name": "Tin ion", "categories": ["soil"], "amount": 1.3204e-07}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.4432e-07}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1.4432e-07}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.32e-06}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.4432e-07}, {"name": "Tin ion", "categories": ["water"], "amount": 1.4432e-07}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.32003648e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32003648e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.099279999999999e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.7333e-11}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.764e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.764e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 3.62693e-11}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.4476e-10}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 3.5878e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 5.11706e-07}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2151177e-09}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.542e-09}, {"name": "Triallate", "categories": ["air"], "amount": 7.55e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.4183e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.202e-08}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.29660853e-07}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 2.17143e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.87331e-06}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.15100855e-08}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.144200041e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.7988e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.508216400000001e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19007233e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19007233e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.738967e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.1927e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.7237e-09}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.9184e-07}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49109341e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.26525e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.895e-09}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7987e-05}, {"name": "Triflumuron", "categories": ["air"], "amount": 5.869e-05}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 2.7716e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 1.0785e-05}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.5978e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.5978e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.932e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 4.985e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.763e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.5447e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.5447e-08}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.8260301e-10}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 4.10713e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.2304e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.590078418e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.2279947e-11}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.179726e-11}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 9.57424e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.57424e-05}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.57424e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.2843e-05}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.2843e-05}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.3117e-05}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 8.6112e-05}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 8.6112e-05}, {"name": "Vanadium V", "categories": ["soil"], "amount": 8.6112e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 9.5324e-05}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 9.5324e-05}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 0.000165}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 9.5324e-05}, {"name": "Vanadium V", "categories": ["water"], "amount": 9.5324e-05}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.1061e-10}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.81e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.81e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.84498e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08516e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.036e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.000214422}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000214422}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000214422}, {"name": "Zinc II", "categories": ["air"], "amount": 0.0002397094}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.0002397094}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.060924e-05}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.000297133}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.000297133}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.000297133}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.000326146}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.000326146}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.000368}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.000326146}, {"name": "Zinc II", "categories": ["water"], "amount": 0.000326146}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.44e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.7856e-08}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.119496e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.43238e-10}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.880061599999999e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.880061599999999e-08}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.342038e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.66747e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.4114e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.4114e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 5.3951e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 5.0815e-12}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air"], "amount": 6.27268e-09}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 6.27268e-09}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 1.72521e-11}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water"], "amount": 7.9038e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.782e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "total: human health", "human health"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 2.495e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00440673}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376575}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141216}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176269}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176269}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 2.36e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.28e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 0.000165}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 5.26e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 5.26e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.139e-06}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 6.92e-06}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 6.45e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 4.09e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137924}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137924}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0001721}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.9e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.84e-06}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 6.75e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 5.1e-11}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.000151}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.317e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.317e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.543e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water"], "amount": 1.0133e-06}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.0088}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.0088}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.00235}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 0.0149}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.00734}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 6.87e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1.25e-11}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.3745}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3745}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3745}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.2494}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.2494}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.10574}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.9866}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.9866}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.9866}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.0786}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.0786}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.484}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.0786}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.0786}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-05}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.206e-06}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 3.106e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.5e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.5e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.5e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.00479}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.00228}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.00481}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.00481}, {"name": "Barium II", "categories": ["soil"], "amount": 0.00481}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 0.0073}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water"], "amount": 0.00529}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.67e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.67e-07}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.640000000000001e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.546e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.2386e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.536e-07}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.97e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.5207e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.434e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0003369}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0003369}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.004116}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.0063691}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0063691}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0063691}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146889}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146889}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 4.17e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.6e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.6e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.6e-05}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.018e-05}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.018e-05}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.69e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.018e-05}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.018e-05}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.27e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.76e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.66e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.48e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.64e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.63e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000449}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000449}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 6.234e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.234e-06}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.034769}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.034769}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.034769}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.02543}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.02543}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.07182}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.0033118}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.0033118}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.0033118}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.0021029}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 0.0021029}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.016762}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.0021029}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.0021029}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 6.62e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.21e-07}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 8.15e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water"], "amount": 1.4e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.498e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.838e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.784e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.279e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.279e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 3.82e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water"], "amount": 1.78e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.74e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.169e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.54e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.336e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.336e-05}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.59e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 5.780000000000001e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.096e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.125e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.673e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9.679999999999999e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.602e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.602e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 9.69e-08}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 9.69e-08}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.89e-08}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.04e-07}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water"], "amount": 1.12e-08}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 2.47136}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47136}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47136}, {"name": "Chromium VI", "categories": ["air"], "amount": 2.21244}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 2.21244}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.610321}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.660878}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.660878}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.660878}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.820962}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 1.820962}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.22223}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.820962}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.820962}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 3.43e-11}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 3.3e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 3.7e-08}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 2.53e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2.53e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.9e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["soil"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.72e-05}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water"], "amount": 5.54e-06}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 4.83e-08}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0008}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.75e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.92e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.92e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.748e-07}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 5.86e-06}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 4.62e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002871}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.738e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.738e-07}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.11e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.63e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.85e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.28e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.0010078}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010078}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010078}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.0010078}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.0010078}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 331}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 331}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 77.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 263}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 755}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.98e-05}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0027202428}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0027202428}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0005490699}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0005490699}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.72e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.0114}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.89e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.89e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.01874161}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.01874161}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.00180181}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.00180181}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000287}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.034e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.034e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.16e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.044477}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044477}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044477}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.044477}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.044477}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.0042404}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0042404}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0042404}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.0042404}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.0042404}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.000180142}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.000180142}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.0011268}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011268}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011268}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0011268}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0011268}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.107764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.107764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.107764}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.0001115}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0001705}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.223}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.00683}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.57e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.35e-09}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 7.83e-06}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000172}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.11e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 4.14e-05}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.1509e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.57e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.412e-09}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.00032309}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00032309}, {"name": "Furfural", "categories": ["air"], "amount": 4.593e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.04e-05}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.5e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.5e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.1144e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8881e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00125}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.4e-05}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 8.98e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 8.98e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.527e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.077e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.03142e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.03142e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 5.67e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 5.77e-13}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water"], "amount": 2.17e-06}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 4.2e-10}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 7.9e-12}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 8.019999999999999e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.019999999999999e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.009899}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.009899}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.009899}, {"name": "Lead II", "categories": ["air"], "amount": 0.007338000000000001}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.007338000000000001}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0013057}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0019028}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0019028}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0019028}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.00039878}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.00039878}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.0046154}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.00039878}, {"name": "Lead II", "categories": ["water"], "amount": 0.00039878}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 1.27e-09}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.0001545}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.339e-06}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 2.67e-10}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.404}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.404}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.404}, {"name": "Mercury II", "categories": ["air"], "amount": 0.2973}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.2973}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.015644}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.07251}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.07251}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.07251}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.07014}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.07014}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.7272}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.07014}, {"name": "Mercury II", "categories": ["water"], "amount": 0.07014}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00123793}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00123793}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.01427}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01427}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01427}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.01427}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.01427}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.03809999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03809999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03809999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.03809999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.03809999999999999}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 4.09e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 4.09e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0037536365}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0037536365}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.27399e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.27399e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.057e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.239e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.03509209999999999}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.03509209999999999}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000308}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.00142}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.12e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.95e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.44233e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.44233e-05}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.95e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.006316}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.006316}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.0008010000000000001}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.0014}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.138}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.01224764}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.01224764}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.0708}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 7.67e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.00114}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.000714}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.000258}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air"], "amount": 5.274499999999999e-07}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 5.274499999999999e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 5.7386e-08}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.8356e-07}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.049e-05}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3.235e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.0039415}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0039415}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0039415}, {"name": "Nickel II", "categories": ["air"], "amount": 0.0030497}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.0030497}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.0007072300000000001}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.0011956}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.0011956}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.0011956}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 0.000839}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 0.000839}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 0.0040124}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.000839}, {"name": "Nickel II", "categories": ["water"], "amount": 0.000839}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.0973e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.00010839}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 5.14e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6.06e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.011e-05}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.1e-13}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.11e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.00011337}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.00011337}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 2.662e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.209e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.16}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 2.905e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 2.329e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000138}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.843e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.623e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.46e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 6.9e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1.1176e-06}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 5.6e-08}, {"name": "Plutonium-alpha", "categories": ["air", "low population density, long-term"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 6.23e-08}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 1.27e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.017}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.685e-05}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 9.818e-07}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.200000000000001e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.58e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 6.54e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 4.37e-07}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "ground-, long-term"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water"], "amount": 1.08e-10}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 2.03e-11}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 1.53e-11}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 3.3e-12}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air"], "amount": 0.0211}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0211}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0424}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.00347}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.00347}, {"name": "Silver I", "categories": ["soil"], "amount": 0.00347}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 0.00771}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water"], "amount": 0.000921}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 4.2e-10}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 6.37e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water"], "amount": 3.95e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.345e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.3781e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000182}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.43}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000145}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 1.53e-12}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 1.53e-12}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water"], "amount": 4.33e-10}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.43e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-06}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air"], "amount": 0.249}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.249}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.107}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.235}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.235}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.235}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.422}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water"], "amount": 0.26}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 3.82e-08}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air"], "amount": 3.854e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.854e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 5.33e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water"], "amount": 2.381e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 3.51e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.01e-05}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 3.6e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.85e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.688e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.47e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.18e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.18e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.69e-08}, {"name": "Uranium alpha", "categories": ["air", "low population density, long-term"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water", "ground-, long-term"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water", "ocean"], "amount": 1.17e-11}, {"name": "Uranium alpha", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water"], "amount": 1.9e-09}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water", "ground-, long-term"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 1.9e-11}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water"], "amount": 2.03e-09}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water", "ground-, long-term"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 2.84e-11}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water", "ground-, long-term"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 1.17e-11}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water"], "amount": 1.9e-09}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air"], "amount": 0.0141}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 0.0141}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.00208}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 0.0253}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.0148}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 2.22e-06}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 1.2e-13}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air"], "amount": 4.277e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 4.277e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 5.036e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water"], "amount": 2.342e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air"], "amount": 0.449}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.449}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0777}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.547}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.547}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.547}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.677}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water"], "amount": 0.602}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 7.52e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.159e-06}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.0806e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0806e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.341e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.1816e-07}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "total: natural resources", "natural resources"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.132}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0303}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00527}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 17.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.74}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0267}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0705}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0025}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00241}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0113}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00356}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 73.4}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0443}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000654}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 22.3}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.07}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.0341}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00212}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00133}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 3.07}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.099}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0202}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00874}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 278}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.83}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.918}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1.35e-08}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "acidification: terrestrial no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.72e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.17e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.63e-08}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.38e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "climate change: freshwater ecosystems no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 7.65e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 7.65e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 7.65e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 7.65e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 7.65e-14}, {"name": "Chloroform", "categories": ["air"], "amount": 1.53e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.53e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-11}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.28e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.28e-11}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.18e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.18e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.48e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.48e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5.04e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.04e-10}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 7.18e-11}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 7.18e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.28e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 1.28e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 1.28e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 7.65e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.65e-14}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.36e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.36e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 7.36e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 7.36e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1.79e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1.79e-10}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 7.34e-12}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 7.34e-12}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.86e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.86e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 4.86e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 4.86e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.51e-10}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.51e-10}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 6.51e-10}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 6.51e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.44e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 9.44e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 9.44e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.82e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 2.82e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 2.82e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.06e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.06e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.3e-13}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.3e-13}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1.58e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1.58e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.47e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5.47e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5.47e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.61e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.61e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1.18e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1.18e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.42e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.42e-13}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8.83e-10}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8.83e-10}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1.37e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1.37e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.25e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.25e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 6.25e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 6.25e-11}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.75e-12}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.75e-12}, {"name": "Methane, fossil", "categories": ["air"], "amount": 2.75e-12}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.75e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 2.6e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.6e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.15e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.15e-12}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-12}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-12}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 2.6e-12}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.6e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.54e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.54e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5.62e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5.62e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.09e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4.09e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 1.06e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 1.06e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-09}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 1.37e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.37e-09}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 7.26e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2e-09}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 2e-09}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 2e-09}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 2e-09}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "climate change: terrestrial ecosystems no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.8e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.8e-09}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 2.8e-09}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 2.8e-09}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 2.8e-09}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 2.8e-09}, {"name": "Chloroform", "categories": ["air"], "amount": 5.6e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.34e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.34e-07}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 8.34e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 8.34e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.34e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.34e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.4e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.4e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1.84e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1.84e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2.63e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2.63e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 4.68e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 4.68e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.8e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.8e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2.69e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2.69e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.57e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.57e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 6.57e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 6.57e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 2.69e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 2.69e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.78e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.78e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 2.38e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 2.38e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 3.46e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 3.46e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.03e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.03e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 3.86e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 3.86e-08}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.4e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.4e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 5.8e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 5.8e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5.9e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5.9e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.33e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.33e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 4.33e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 4.33e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.08e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.08e-08}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3.23e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.01e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 5.01e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 5.01e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.29e-06}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-07}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-07}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.01e-07}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.01e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 9.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.52e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 4.2e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 4.2e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 9.52e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 9.52e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.65e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.65e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 2.06e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 2.06e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.5e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.5e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.88e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.88e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3.88e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3.88e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.01e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01e-05}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 5.01e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 5.01e-05}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 2.66e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-05}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 7.3e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 7.3e-05}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "ecotoxicity: freshwater no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 3.63e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 5.81e-10}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.73e-15}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 2.86e-11}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-10}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.5e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.33e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.82e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.82e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09e-11}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.4e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.4e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09e-11}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1.27e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.4e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.51e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.97e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.7e-15}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.73e-11}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 4.27e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 4.27e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.07e-15}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.32e-12}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 2.57e-09}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.27e-14}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.38e-20}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.54e-11}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.77e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-11}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.8e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.96e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.19e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.19e-10}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.93e-14}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1e-10}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-13}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.05e-18}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.18e-10}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.21e-15}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.51e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.03e-14}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 6.07e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 6.26e-13}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 1.96e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.54e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.35e-18}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.17e-11}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1.64e-11}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1.64e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.16e-13}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.06e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-09}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 7.92e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 5.28e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.89e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.88e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.02e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 7.64e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.75e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.43e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.74e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.47e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.33e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.37e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 9.34e-11}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.46e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-08}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-08}, {"name": "Antimony ion", "categories": ["air"], "amount": 3.14e-08}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3.14e-08}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 6.4e-08}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 6.4e-08}, {"name": "Antimony ion", "categories": ["soil"], "amount": 6.4e-08}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.52e-28}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.36e-07}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38e-09}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38e-09}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.46e-09}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.46e-09}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 8.72e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.64e-09}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.64e-09}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.64e-09}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1.49e-29}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.32e-08}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.44e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 5.93e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.25e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.18e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.62e-07}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.38e-10}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.89e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.09e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.09e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.35e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35e-10}, {"name": "Barium II", "categories": ["air"], "amount": 7.69e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 7.69e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8.16e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.18e-30}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water"], "amount": 1.94e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.59e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.59e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14e-09}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 9.99e-11}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.81e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.73e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.73e-10}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1.44e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.11e-06}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.17e-10}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.19e-14}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.03e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.2e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.78e-15}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.04e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.71e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 4.79e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.79e-11}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.06e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.34e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.34e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.42e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.35e-11}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 2.9e-15}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.98e-10}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.05e-09}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.05e-09}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 4.71e-10}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 8.51e-10}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 8.51e-10}, {"name": "Beryllium II", "categories": ["soil"], "amount": 8.51e-10}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.99e-29}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.89e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.6e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.97e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.48e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 3.54e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.67e-08}, {"name": "Bifenthrin", "categories": ["air"], "amount": 2.8e-08}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.7e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.46e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.45e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.45e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.12e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.31e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.06e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 6.95e-09}, {"name": "Bromopropane", "categories": ["air"], "amount": 2.52e-14}, {"name": "Bromopropane", "categories": ["water"], "amount": 8.96e-11}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.16e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.16e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.24e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.12e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.52e-09}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 2.9e-11}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.33e-15}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.27e-11}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.04e-14}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.36e-11}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-09}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.08e-07}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4e-10}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4e-10}, {"name": "Cadmium II", "categories": ["air"], "amount": 8.1e-10}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 8.1e-10}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.21e-10}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.42e-09}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.42e-09}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.42e-09}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3e-30}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.17e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.79e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-09}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.36e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.06e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.06e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-09}, {"name": "Carbendazim", "categories": ["air"], "amount": 4.88e-09}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.14e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.83e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.83e-08}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.43e-13}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.43e-13}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 6.9e-14}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.42e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.88e-10}, {"name": "Carboxin", "categories": ["air"], "amount": 2.92e-09}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.59e-09}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 9.59e-09}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Carboxin", "categories": ["water"], "amount": 1.81e-08}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 4.4e-19}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.59e-11}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.41e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 6.3e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 5e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 2.87e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 2.87e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 2.87e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 6.75e-21}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.51e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.54e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.75e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 4.41e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.72e-10}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 3.2e-11}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1.15e-09}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.15e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 2.02e-19}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 6.26e-09}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.92e-14}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.13e-10}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.27e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 5.59e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 5.59e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.25e-13}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.24e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.84e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.1e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.68e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 4.68e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.29e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.24e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.02e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.02e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.35e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.6e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-10}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-10}, {"name": "Chromium III", "categories": ["air"], "amount": 2.8e-10}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.8e-10}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 2.91e-10}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.93e-10}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.93e-10}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.93e-10}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 7.41e-31}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.6e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.37e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.37e-09}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.08e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.08e-08}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.12e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.14e-29}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 6.02e-08}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.76e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.6e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.84e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43e-10}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43e-10}, {"name": "Cobalt II", "categories": ["air"], "amount": 1.56e-10}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1.56e-10}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 9.73e-11}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.84e-10}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.84e-10}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.84e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.29e-30}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.4e-09}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.59e-09}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59e-09}, {"name": "Copper ion", "categories": ["air"], "amount": 3.81e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.81e-09}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.29e-09}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.29e-09}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.29e-09}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.01e-29}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1.12e-07}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 6.36e-15}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.88e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.15e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 5.06e-17}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.8e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 8.95e-18}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.34e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.51e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.4e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 5.84e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.4e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.4e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 8.9e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.11e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.04e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.72e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Decanoic acid", "categories": ["water"], "amount": 2.11e-09}, {"name": "Deltamethrin", "categories": ["air"], "amount": 3.72e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 7.76e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.39e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.63e-11}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.39e-10}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.14e-08}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.06e-11}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.93e-09}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-10}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.62e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 9.42e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.19e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.97e-11}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.63e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.38e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.38e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 6.55e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 4.01e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.96e-10}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.11e-10}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 7.06e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.09e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.09e-15}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 3.34e-15}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.21e-10}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.5e-13}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.5e-13}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.57e-19}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.88e-12}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.92e-09}, {"name": "Difenoconazole", "categories": ["air"], "amount": 1.49e-08}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.72e-09}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 5.46e-08}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 1.62e-07}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1.62e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.08e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.39e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.38e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.38e-06}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.08e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 2.72e-14}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.33e-10}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.34e-09}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.97e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.69e-08}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 6.14e-10}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.52e-14}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.77e-10}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.18e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.21e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1.16e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 2.59e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 9.03e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 9.03e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 9.03e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 3.46e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.21e-05}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-10}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.18e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.36e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.05e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.36e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.36e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.38e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.76e-09}, {"name": "Diuron", "categories": ["air"], "amount": 2.45e-08}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.05e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.82e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.55e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.56e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.5e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.8e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.75e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.95e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.24e-12}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 9.24e-12}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 5.09e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49e-09}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.74e-09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 2.85e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 5.82e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.82e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 6.95e-07}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air"], "amount": 3.92e-13}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-13}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.14e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.95e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.89e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 3.85e-11}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 3.59e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.47e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.56e-15}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.37e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.26e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.28e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.28e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.55e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.11e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.02e-14}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.14e-11}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air"], "amount": 2.81e-11}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.81e-11}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 1.58e-15}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water"], "amount": 1.4e-10}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 5.71e-11}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 5.71e-11}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 3.43e-18}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.96e-10}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.23e-13}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 3.35e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.87e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.51e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 5.25e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.65e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.18e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 6.95e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.2e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.03e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.44e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.43e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.56e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.21e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.11e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.11e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.77e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.01e-07}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.3e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.17e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.57e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-09}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 6.47e-09}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 4.85e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.91e-07}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.91e-07}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-08}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2.84e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8.46e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 6.05e-10}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 8.17e-12}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.95e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.85e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.14e-10}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.15e-08}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 3.25e-14}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.31e-10}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.07e-19}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.93e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.27e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.93e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air"], "amount": 9.02e-16}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 9.02e-16}, {"name": "Furfural", "categories": ["air"], "amount": 4.88e-12}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 4.09e-10}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.66e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1.98e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.23e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.23e-08}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air"], "amount": 4.54e-18}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 4.54e-18}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 7.5e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.13e-18}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.81e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.04e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.21e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.57e-11}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.49e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.04e-15}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 4.64e-15}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.08e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.52e-13}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.57e-09}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.32e-09}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.24e-09}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.07e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.83e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.37e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.37e-09}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.98e-09}, {"name": "Indoxacarb", "categories": ["air"], "amount": 8.21e-09}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2.88e-09}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2.36e-08}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.43e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air"], "amount": 1.19e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.19e-17}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air"], "amount": 2.6e-11}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 2.6e-11}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 7.25e-15}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water"], "amount": 1.22e-10}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.38e-09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.22e-08}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.79e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 2.94e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.35e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.35e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.35e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.03e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.01e-09}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-11}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-11}, {"name": "Lead II", "categories": ["air"], "amount": 9.58e-12}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 9.58e-12}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.05e-12}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 5.13e-12}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 5.13e-12}, {"name": "Lead II", "categories": ["soil"], "amount": 5.13e-12}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.59e-32}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water"], "amount": 4.21e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.74e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.71e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.45e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-11}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.21e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.14e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.14e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.32e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.17e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.17e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.43e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.03e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.14e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-09}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.01e-08}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.41e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.94e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.42e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.42e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.61e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.34e-10}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 6.27e-16}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.33e-10}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.33e-10}, {"name": "Mercury II", "categories": ["air"], "amount": 7e-10}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 7e-10}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.38e-10}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.99e-10}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.99e-10}, {"name": "Mercury II", "categories": ["soil"], "amount": 1.99e-10}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.71e-30}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 3.46e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.03e-10}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 4.18e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.38e-09}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2.32e-09}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2.32e-09}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 4.74e-11}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.51e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.78e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 8.99e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.91e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.26e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.03e-11}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.03e-14}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.01e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3.71e-10}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.74e-15}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.42e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.71e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.95e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35e-09}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.98e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.46e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.58e-10}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.85e-09}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.5e-08}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 7.69e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 5.46e-08}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 1.68e-07}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 1.68e-07}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.64e-13}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.64e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.59e-14}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.96e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 2.54e-13}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.37e-12}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air"], "amount": 5.42e-12}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 5.42e-12}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.4e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.29e-15}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.03e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.51e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.02e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.54e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.06e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.03e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 5.37e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.62e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.08e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.52e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.52e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.71e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.24e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-11}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-11}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 5.03e-11}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 5.03e-11}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 5.23e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.07e-10}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.07e-10}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.07e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.14e-31}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.85e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 9.34e-10}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 9.11e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.16e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 9.47e-10}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.71e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-09}, {"name": "Nickel II", "categories": ["air"], "amount": 1.5e-09}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.5e-09}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.14e-09}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.2e-09}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.2e-09}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.2e-09}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.19e-29}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 3.2e-08}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.68e-11}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 2.28e-10}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 8.86e-10}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.3e-09}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.3e-09}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 9.4e-13}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.28e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.27e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.08e-11}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 8.95e-10}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.46e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.06e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 2.29e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 6.47e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.17e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.37e-12}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.04e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.94e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.65e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.67e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.27e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.81e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.83e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.22e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.22e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air"], "amount": 4.37e-15}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.37e-15}, {"name": "Pentane", "categories": ["water"], "amount": 4.99e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.24e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.53e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.99e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 9.47e-11}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.96e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.4e-10}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 8.58e-15}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.74e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 9.42e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 9.42e-11}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.33e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.33e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.84e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.14e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.17e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.31e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.21e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 3.75e-13}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.09e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.59e-13}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.81e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 2.65e-14}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 4.23e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.02e-15}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.65e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.04e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.67e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1.36e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1.36e-10}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.21e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 9.19e-09}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 3.76e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 2.98e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 9.74e-09}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.24e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4e-11}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.1e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air"], "amount": 1.22e-13}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.22e-13}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 3.55e-14}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water"], "amount": 7.1e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 9.98e-10}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air"], "amount": 8.13e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 8.13e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.67e-15}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.54e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.48e-09}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.3e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.19e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.33e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.1e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.21e-08}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 9.19e-18}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09e-10}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air"], "amount": 1.51e-11}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 1.51e-11}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.29e-15}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water"], "amount": 8.05e-11}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 4.53e-13}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air"], "amount": 7.69e-13}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 7.69e-13}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.49e-13}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.9e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.73e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 8.18e-10}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.26e-06}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.7e-07}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.49e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5.6e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.65e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 3.12e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.97e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.63e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.88e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.88e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.26e-10}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.1e-08}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2.69e-09}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68e-10}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68e-10}, {"name": "Selenium IV", "categories": ["air"], "amount": 6.77e-10}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 6.77e-10}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 5.86e-10}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.15e-09}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.15e-09}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.15e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.16e-30}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.07e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.86e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.15e-09}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15e-08}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-08}, {"name": "Silver I", "categories": ["air"], "amount": 1.33e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 1.33e-08}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 9.1e-09}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.74e-08}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.74e-08}, {"name": "Silver I", "categories": ["soil"], "amount": 1.74e-08}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 6.14e-29}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water"], "amount": 3.37e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-09}, {"name": "Simazine", "categories": ["air"], "amount": 8.25e-09}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.93e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.3e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.01e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.01e-08}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.1e-12}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 2.89e-35}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water"], "amount": 5.71e-12}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.68e-15}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75e-10}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.5e-08}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 9.93e-08}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.98e-10}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.98e-10}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.06e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.06e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 9.94e-08}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-09}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.27e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.07e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.81e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7e-09}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-08}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.02e-08}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.72e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.72e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.72e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8e-08}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.59e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.51e-08}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 4.76e-07}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 1.63e-06}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.3e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.05e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 2.72e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 9.7e-14}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.52e-10}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.28e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.28e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 1.45e-08}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1.45e-08}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.52e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.91e-29}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 3.68e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-10}, {"name": "Thiabendazole", "categories": ["air"], "amount": 9.79e-10}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.12e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.59e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 8.57e-10}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 6.48e-18}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water"], "amount": 6.28e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 8.78e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.5e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.02e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-10}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.02e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.22e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air"], "amount": 4.11e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.87e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.25e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.25e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.24e-11}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.24e-11}, {"name": "Tin ion", "categories": ["air"], "amount": 7.88e-11}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 7.88e-11}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 2.8e-11}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 4.84e-11}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 4.84e-11}, {"name": "Tin ion", "categories": ["soil"], "amount": 4.84e-11}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 5.36e-31}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 3.32e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 3.28e-15}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.67e-11}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1.07e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1.07e-13}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 4.93e-14}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.4e-10}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 2.54e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Triallate", "categories": ["air"], "amount": 1.14e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.15e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.04e-08}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.34e-07}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.05e-08}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.13e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.52e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.44e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 7.67e-15}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.18e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.67e-09}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 3.41e-20}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.23e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.36e-09}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 3.24e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 1.76e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 9.83e-06}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.54e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.54e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-11}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.05e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.51e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.46e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.46e-08}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.69e-10}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 3.99e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.17e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.18e-20}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.22e-11}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.12e-11}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.58e-09}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.58e-09}, {"name": "Vanadium V", "categories": ["air"], "amount": 5.72e-09}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 5.72e-09}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4.28e-09}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 8.28e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 8.28e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 8.28e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 5.7e-29}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.24e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 3.79e-10}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 2.18e-15}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.37e-09}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.37e-09}, {"name": "Zinc II", "categories": ["air"], "amount": 4.12e-09}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4.12e-09}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.96e-09}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 3.57e-09}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 3.57e-09}, {"name": "Zinc II", "categories": ["soil"], "amount": 3.57e-09}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 5.19e-29}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.46e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.26e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.67e-08}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.06e-15}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.42e-10}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 7.38e-15}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.65e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 8.94e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.94e-15}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 2.51e-15}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 4.65e-12}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1.68e-10}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1.68e-10}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 3.21e-14}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water"], "amount": 7.78e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 9.62e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "ecotoxicity: marine no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 8.73e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.48e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.69e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water"], "amount": 1.32e-13}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52e-11}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.09e-12}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.52e-11}, {"name": "2,4-D", "categories": ["water"], "amount": 1.52e-11}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46e-12}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 9.27e-12}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 9.27e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 6.63e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 9.27e-12}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 6.33e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.48e-11}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.48e-11}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 6.47e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.38e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.38e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 5.67e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.51e-13}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.67e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.3e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.3e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.05e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.14e-14}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.49e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.3e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.73e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.73e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.35e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.63e-13}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.46e-13}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.1e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.1e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.22e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6.61e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68e-12}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 7.35e-13}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.15e-12}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 5.17e-12}, {"name": "Acephate", "categories": ["water"], "amount": 5.17e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 5.38e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 7.52e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 9.91e-13}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-14}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.08e-15}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.77e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water"], "amount": 2.5e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air"], "amount": 6.25e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 6.25e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 9.39e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water"], "amount": 5.28e-14}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.07e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.51e-13}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 1.59e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 8.95e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.64e-11}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["water"], "amount": 3.41e-10}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water"], "amount": 1.95e-13}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air"], "amount": 3.57e-13}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 3.57e-13}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.67e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.67e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 2.67e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 5.46e-12}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.09e-10}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2.05e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-12}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.47e-10}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.85e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Allyl chloride", "categories": ["water"], "amount": 5.74e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 5.21e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 3.19e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 1.71e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 3.08e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.97e-10}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air"], "amount": 1.12e-13}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.12e-13}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.46e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water"], "amount": 2.7e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 4.88e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.22e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water"], "amount": 3.04e-09}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 2.06e-12}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "Antimony ion", "categories": ["air"], "amount": 3.79e-08}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3.79e-08}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 4.09e-09}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 8.01e-09}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 8.01e-09}, {"name": "Antimony ion", "categories": ["soil"], "amount": 8.01e-09}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 4.83e-08}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.05e-07}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 4.83e-08}, {"name": "Antimony ion", "categories": ["water"], "amount": 4.83e-08}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05e-08}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05e-08}, {"name": "Arsenic ion", "categories": ["air"], "amount": 7.34e-09}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 7.34e-09}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.1e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 2.03e-10}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 2.03e-10}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 2.03e-10}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 9.06e-09}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.23e-08}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 9.06e-09}, {"name": "Arsenic ion", "categories": ["water"], "amount": 9.06e-09}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.63e-12}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.3e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.44e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Atrazine", "categories": ["water"], "amount": 1.56e-09}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.94e-12}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 1.5e-11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.37e-09}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3e-11}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.38e-10}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.36e-09}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.36e-09}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-10}, {"name": "Barium II", "categories": ["air"], "amount": 3.56e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 3.56e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.71e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 3.64e-10}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 3.64e-10}, {"name": "Barium II", "categories": ["soil"], "amount": 3.64e-10}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 4.12e-10}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 5.89e-10}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 4.12e-10}, {"name": "Barium II", "categories": ["water"], "amount": 4.12e-10}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.65e-13}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 3.11e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 4.09e-12}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 1.38e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.51e-12}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 6.1e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.59e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.15e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.34e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water"], "amount": 5.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.73e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 3.96e-12}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.79e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.79e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 5.91e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.16e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.26e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 2.3e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.83e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.83e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 1.28e-09}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 1.28e-09}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 1.23e-13}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.52e-13}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.26e-14}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.38e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 7.34e-13}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49e-08}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49e-08}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.73e-08}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.73e-08}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 5.41e-11}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 9.51e-11}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 9.51e-11}, {"name": "Beryllium II", "categories": ["soil"], "amount": 9.51e-11}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 7.56e-09}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.27e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 7.56e-09}, {"name": "Beryllium II", "categories": ["water"], "amount": 7.56e-09}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.24e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 6.3e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4.36e-07}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4.36e-07}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.34e-11}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.65e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.54e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.88e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 4.59e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2.62e-07}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2.62e-07}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.61e-10}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 7.79e-12}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 1.73e-13}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 2.01e-10}, {"name": "Bromopropane", "categories": ["air"], "amount": 1.45e-13}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.71e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.65e-10}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.7e-10}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.7e-10}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.41e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.13e-11}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 5.24e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.1e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water"], "amount": 5.85e-14}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 1.9e-12}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.1e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water"], "amount": 3.2e-13}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.77e-10}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 1.16e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.57e-09}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.57e-09}, {"name": "Cadmium II", "categories": ["air"], "amount": 6.67e-09}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 6.67e-09}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.47e-11}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.43e-10}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.43e-10}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.43e-10}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2.06e-09}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.05e-08}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2.06e-09}, {"name": "Cadmium II", "categories": ["water"], "amount": 2.06e-09}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-10}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 5.38e-11}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.74e-10}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.74e-10}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36e-10}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.18e-10}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.62e-11}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.53e-10}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.67e-10}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.67e-10}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.1e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.77e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.44e-11}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.59e-11}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-10}, {"name": "Carboxin", "categories": ["air"], "amount": 1.06e-10}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.33e-11}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 8.02e-11}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.51e-10}, {"name": "Carboxin", "categories": ["water"], "amount": 1.51e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.88e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.4e-13}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.89e-09}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.46e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 8.34e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 8.34e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 8.34e-08}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water"], "amount": 5.42e-10}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-11}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.34e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.08e-10}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.11e-12}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.68e-13}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 3.39e-11}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 3.39e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 1.01e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 2.25e-11}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.85e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 4.92e-12}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.07e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1.3e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.26e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 6.01e-12}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.95e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.91e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 8.48e-09}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.13e-08}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.03e-08}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.03e-08}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.1e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.53e-08}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2.81e-07}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2.81e-07}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 5.04e-10}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 9.52e-11}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 8.39e-12}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-09}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 1.05e-09}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 1.05e-09}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 2.9e-11}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.7e-11}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.7e-11}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.7e-11}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.59e-10}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.15e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.59e-10}, {"name": "Chromium III", "categories": ["water"], "amount": 2.59e-10}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67e-08}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67e-08}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.26e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.26e-08}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.64e-09}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 3.25e-09}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 3.25e-09}, {"name": "Chromium VI", "categories": ["soil"], "amount": 3.25e-09}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.37e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.38e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.37e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.37e-08}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.02e-10}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.29e-12}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 3.43e-12}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.06e-12}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-09}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-09}, {"name": "Cobalt II", "categories": ["air"], "amount": 1.98e-09}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1.98e-09}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1.07e-11}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.97e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.97e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.97e-11}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 8.24e-10}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.12e-09}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 8.24e-10}, {"name": "Cobalt II", "categories": ["water"], "amount": 8.24e-10}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.69e-08}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.69e-08}, {"name": "Copper ion", "categories": ["air"], "amount": 5.33e-08}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 5.33e-08}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.4e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.4e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.4e-10}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.03e-08}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.65e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.03e-08}, {"name": "Copper ion", "categories": ["water"], "amount": 2.03e-08}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air"], "amount": 6.61e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 6.61e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.48e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water"], "amount": 1.1e-12}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.49e-10}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.6e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.91e-14}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.27e-17}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.63e-13}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.58e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 5.68e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.87e-14}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 2.43e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 1.3e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.75e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.12e-10}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.15e-12}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 5.21e-11}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.34e-13}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-11}, {"name": "Decanoic acid", "categories": ["water"], "amount": 4.49e-12}, {"name": "Deltamethrin", "categories": ["air"], "amount": 8.94e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 8.47e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.54e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 8.19e-13}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 4.74e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.32e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5.5e-11}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-11}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.91e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.36e-11}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.36e-11}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 3.96e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.62e-10}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-12}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 4.71e-13}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 3.66e-12}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 3.66e-12}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.28e-10}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.87e-10}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 8.19e-12}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.13e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 2.35e-13}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 6.36e-12}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.39e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.39e-15}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air"], "amount": 1.88e-12}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.88e-12}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.21e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.16e-12}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.53e-15}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.53e-15}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.82e-14}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4e-15}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-09}, {"name": "Difenoconazole", "categories": ["air"], "amount": 2.27e-09}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2.24e-10}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 1.59e-09}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 4.71e-09}, {"name": "Difenoconazole", "categories": ["water"], "amount": 4.71e-09}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.74e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.15e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 4.03e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.8e-08}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.8e-08}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.71e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 9.13e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 6.62e-13}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.11e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.74e-11}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.43e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 9.68e-11}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 7.7e-12}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air"], "amount": 4e-12}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 4e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.1e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 2.44e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 6.48e-13}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 6.91e-11}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 3.72e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 3.72e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1.79e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1.97e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1.97e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1.97e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.28e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.31e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.28e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.28e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 5.94e-13}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-11}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3.32e-11}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 7.82e-12}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 5.06e-11}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.14e-10}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 4.96e-11}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.99e-11}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-09}, {"name": "Diuron", "categories": ["air"], "amount": 1.08e-09}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 8.82e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.7e-10}, {"name": "Diuron", "categories": ["water"], "amount": 1.29e-09}, {"name": "Dodecanol", "categories": ["water"], "amount": 9.08e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.18e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.06e-12}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 4.7e-13}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2.75e-12}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2.03e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 4.15e-13}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.37e-11}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4e-10}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.45e-10}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.43e-10}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 8.35e-10}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 1.69e-09}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1.69e-09}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.88e-07}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.32e-08}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.19e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.59e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.59e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.86e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.86e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 6.47e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.94e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.15e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 8.08e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 9.46e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water"], "amount": 2.36e-14}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-12}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.72e-13}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.91e-12}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.91e-12}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 7.22e-12}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.03e-12}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 2.75e-13}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.75e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 9.26e-13}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 2.77e-13}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air"], "amount": 8.7e-13}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 8.7e-13}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.27e-12}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water"], "amount": 5.04e-13}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.56e-12}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 1.56e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1.06e-12}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.4e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.87e-12}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 4.03e-11}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 3.79e-11}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.28e-09}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 4.39e-12}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.09e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.8200000000000003e-11}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 6.62e-11}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.48e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.36e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.33e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.38e-11}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.56e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.71e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.71e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.89e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.48e-08}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.51e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 4.56e-08}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-09}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.34e-09}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 8.13e-11}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 6.09e-10}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 2.4e-09}, {"name": "Fludioxonil", "categories": ["water"], "amount": 2.4e-09}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.31e-09}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.46e-10}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.07e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.53e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 6.08e-09}, {"name": "Fluorene", "categories": ["air"], "amount": 1.72e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 3.45e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 9.7e-11}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.42e-12}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.07e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.56e-10}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.46e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.62e-12}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.62e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.09e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.48e-12}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.9e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water"], "amount": 1.26e-13}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 2.49e-12}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.17e-12}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air"], "amount": 2.67e-15}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.67e-15}, {"name": "Furfural", "categories": ["air"], "amount": 8.15e-13}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 7.63e-13}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.53e-11}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 7.63e-13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.07e-11}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.69e-12}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 8.77e-13}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 5.97e-12}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 5.97e-12}, {"name": "Glyphosate", "categories": ["water"], "amount": 5.97e-12}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 3.1e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.47e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.47e-10}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air"], "amount": 1.05e-17}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.05e-17}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 8.77e-11}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.6e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water"], "amount": 1.7e-13}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 2.54e-11}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.94e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.39e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.06e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.38e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.8e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 4.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 4.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.11e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 3.89e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 1.56e-14}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.98e-11}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 5.41e-11}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-11}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.85e-11}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.05e-11}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 7.98e-11}, {"name": "Imidacloprid", "categories": ["water"], "amount": 7.98e-11}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-09}, {"name": "Indoxacarb", "categories": ["air"], "amount": 2.9e-09}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 8.8e-11}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 6.91e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 3.55e-11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.08e-11}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air"], "amount": 2.94e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-17}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air"], "amount": 6.76e-13}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 6.76e-13}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.97e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water"], "amount": 4.39e-13}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 4.26e-11}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.87e-10}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.98e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5.81e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 1.13e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 1.13e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 1.13e-06}, {"name": "Lauric acid", "categories": ["air"], "amount": 1.94e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 2.15e-12}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.63e-10}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-10}, {"name": "Lead II", "categories": ["air"], "amount": 3.21e-10}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 3.21e-10}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 2.5e-13}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 4.09e-13}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 4.09e-13}, {"name": "Lead II", "categories": ["soil"], "amount": 4.09e-13}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 6.23e-11}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 6.23e-11}, {"name": "Lead II", "categories": ["water"], "amount": 6.23e-11}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.14e-12}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.37e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 8.13e-12}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.61e-12}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 4.33e-13}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.08e-12}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.08e-12}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-11}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.1e-12}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 3.49e-11}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 3.49e-11}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.15e-11}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 7.31e-13}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 7.68e-14}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.08e-10}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.94e-10}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.19e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.29e-10}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.53e-10}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.53e-10}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.36e-11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 6.97e-12}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 8.91e-13}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.33e-18}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-08}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-08}, {"name": "Mercury II", "categories": ["air"], "amount": 2.52e-08}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 2.52e-08}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.21e-11}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.69e-11}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.69e-11}, {"name": "Mercury II", "categories": ["soil"], "amount": 1.69e-11}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 5.4e-09}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.44e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 5.4e-09}, {"name": "Mercury II", "categories": ["water"], "amount": 5.4e-09}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.75e-12}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 1.29e-11}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.05e-12}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.16e-11}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 1.94e-11}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1.94e-11}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 6.97e-13}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5.6e-11}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 5.04e-13}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.9e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 6.52e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 3.23e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.55e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.55e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.23e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.23e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 8.7e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.86e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.86e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5.64e-11}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 7.49e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water"], "amount": 2.34e-14}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 4.81e-11}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-10}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 2.15e-11}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.19e-10}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Methomyl", "categories": ["water"], "amount": 1.96e-10}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 1.82e-11}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-09}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.34e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 9.64e-11}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.85e-10}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 2.11e-09}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.11e-09}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air"], "amount": 8.79e-13}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.79e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 1.67e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water"], "amount": 8.04e-13}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.31e-12}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 4.14e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.04e-12}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.58e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 7.58e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.03e-14}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.17e-13}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.17e-13}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.02e-11}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.28e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water"], "amount": 7.29e-13}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-10}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.4e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.28e-09}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.28e-09}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.28e-09}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.35e-10}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 8.88e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.63e-10}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-08}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 3.05e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.53e-09}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.61e-08}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 4.42e-08}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 4.42e-08}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.77e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.6e-12}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-10}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 9.93e-11}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 9.93e-11}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 6.92e-12}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.37e-11}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.37e-11}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.37e-11}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 5.87e-11}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.87e-10}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 5.87e-11}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.87e-11}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 7.82e-12}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 7.19e-13}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 8.98e-12}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 7.74e-12}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 8.13e-10}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.15e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.15e-11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 7.93e-12}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.23e-10}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-08}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-08}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1e-08}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.41e-10}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.41e-10}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.41e-10}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6e-09}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.37e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6e-09}, {"name": "Nickel II", "categories": ["water"], "amount": 6e-09}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-11}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.16e-11}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 2.04e-12}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.63e-11}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.63e-11}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.24e-11}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-14}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.35e-11}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 9.69e-12}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 3.72e-13}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5.1e-11}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 7.59e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 7.89e-11}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 3.93e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.99e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.99e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.67e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.16e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.11e-10}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7.51e-14}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.59e-10}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.06e-12}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.58e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.78e-11}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air"], "amount": 1.2e-14}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.2e-14}, {"name": "Pentane", "categories": ["water"], "amount": 8.58e-12}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.92e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 3.01e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.6e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.72e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.19e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air"], "amount": 8.91e-13}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.91e-13}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.16e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water"], "amount": 2.49e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.14e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.22e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.22e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 9.12e-10}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 4.91e-11}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.04e-10}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.17e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.26e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.05e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 4.39e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.97e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.59e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.4e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 3.38e-12}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 6.31e-12}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.92e-11}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.98e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.44e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.83e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1.76e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1.76e-09}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.13e-09}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.72e-10}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.69e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 4.1e-09}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.25e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.89e-11}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 1.75e-13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air"], "amount": 2.52e-13}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.52e-13}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 5.18e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water"], "amount": 5.62e-13}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.26e-11}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air"], "amount": 5.95e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.95e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.99e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water"], "amount": 5.78e-14}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 8.13e-11}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 7.92e-12}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 5.08e-13}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-10}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.94e-11}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.38e-10}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.53e-10}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.53e-10}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.53e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.32e-13}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air"], "amount": 4.83e-13}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.83e-13}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.3e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water"], "amount": 2.9e-13}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 1.05e-15}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.15e-12}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.15e-12}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 3.86e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.94e-12}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 4.88e-11}, {"name": "Pyrene", "categories": ["air"], "amount": 2.25e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.64e-08}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.49e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.09e-13}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.95e-11}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 3.96e-12}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.97e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.39e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.57e-10}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.45e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2.38e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2.38e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.05e-12}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 5.99e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.41e-10}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.38e-11}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.23e-09}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-09}, {"name": "Selenium IV", "categories": ["air"], "amount": 3.66e-09}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 3.66e-09}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 6.67e-11}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.27e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.27e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.27e-10}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 2.01e-09}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.12e-08}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 2.01e-09}, {"name": "Selenium IV", "categories": ["water"], "amount": 2.01e-09}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.56e-12}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 4.31e-11}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.89e-07}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.89e-07}, {"name": "Silver I", "categories": ["air"], "amount": 2e-07}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 8.92e-10}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.66e-09}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.66e-09}, {"name": "Silver I", "categories": ["soil"], "amount": 1.66e-09}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 5.74e-08}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 6.22e-07}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 5.74e-08}, {"name": "Silver I", "categories": ["water"], "amount": 5.74e-08}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-10}, {"name": "Simazine", "categories": ["air"], "amount": 3.63e-10}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.96e-11}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.88e-10}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 5.02e-10}, {"name": "Simazine", "categories": ["water"], "amount": 5.02e-10}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air"], "amount": 2.65e-14}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2.65e-14}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 8.56e-14}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water"], "amount": 1.21e-14}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.34e-10}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air"], "amount": 9.96e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.96e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.5e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water"], "amount": 7.56e-13}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.09e-10}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 5.56e-12}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 5.56e-12}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 5.23e-13}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.81e-12}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 3.81e-12}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.34e-10}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-10}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.6e-11}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.14e-10}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.53e-10}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-09}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 2.01e-09}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.32e-09}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.27e-09}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.27e-09}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.66e-08}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2.35e-08}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.89e-09}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 4.74e-08}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 7.77e-12}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.68e-10}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.8e-11}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.06e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.84e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.84e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.5e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.26e-11}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.18e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.18e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 7.74e-09}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 7.74e-09}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 3.16e-09}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 6.75e-09}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 6.75e-09}, {"name": "Thallium I", "categories": ["soil"], "amount": 6.75e-09}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 8.51e-09}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.44e-08}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 8.51e-09}, {"name": "Thallium I", "categories": ["water"], "amount": 8.51e-09}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.05e-11}, {"name": "Thiabendazole", "categories": ["air"], "amount": 5.14e-11}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.29e-11}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.76e-11}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.76e-11}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 7.16e-12}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.72e-11}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.02e-10}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water"], "amount": 2.26e-11}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-10}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.23e-10}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.96e-10}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.96e-10}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.55e-11}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 6.88e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 9.06e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.31e-10}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.31e-10}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-09}, {"name": "Thiram", "categories": ["air"], "amount": 9.6e-10}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.45e-11}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.16e-10}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.73e-09}, {"name": "Thiram", "categories": ["water"], "amount": 2.73e-09}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.68e-09}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.68e-09}, {"name": "Tin ion", "categories": ["air"], "amount": 1.85e-09}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.85e-09}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 2.77e-12}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 4.66e-12}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 4.66e-12}, {"name": "Tin ion", "categories": ["soil"], "amount": 4.66e-12}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 5.7e-10}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 5.78e-09}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 5.7e-10}, {"name": "Tin ion", "categories": ["water"], "amount": 5.7e-10}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air"], "amount": 3.47e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.47e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 8.99e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water"], "amount": 2.9e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.27e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.27e-13}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 3.49e-11}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.94e-12}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.48e-10}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.45e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.51e-11}, {"name": "Triallate", "categories": ["air"], "amount": 1.05e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.43e-11}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.13e-10}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.66e-09}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 9.31e-09}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.01e-09}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.42e-08}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.38e-12}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 6.82e-11}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.14e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.71e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.67e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.35e-11}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 3.54e-09}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.32e-15}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47e-07}, {"name": "Triflumuron", "categories": ["air"], "amount": 2.5e-07}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 5.36e-08}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 2.87e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 4.48e-07}, {"name": "Triflumuron", "categories": ["water"], "amount": 4.48e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.45e-11}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.03e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.84e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.84e-10}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.16e-11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.59e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water"], "amount": 7.98e-14}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 5.95e-13}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29e-08}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-08}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.62e-08}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.62e-08}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 5.57e-10}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.05e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.05e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.05e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 2.65e-08}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 4.77e-08}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 2.65e-08}, {"name": "Vanadium V", "categories": ["water"], "amount": 2.65e-08}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.91e-12}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air"], "amount": 1.73e-14}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.73e-14}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.78e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water"], "amount": 3.07e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74e-08}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-08}, {"name": "Zinc II", "categories": ["air"], "amount": 1.22e-08}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1.22e-08}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.53e-10}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.5e-10}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.5e-10}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.5e-10}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 3.14e-08}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.59e-08}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 3.14e-08}, {"name": "Zinc II", "categories": ["water"], "amount": 3.14e-08}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.9e-11}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.08e-10}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.11e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 9.34e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.87e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.87e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.32e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.04e-12}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.22e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.22e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 4.23e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 4.35e-14}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air"], "amount": 4.68e-12}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 4.68e-12}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 1.26e-11}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 2.8e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 6.06e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "ecotoxicity: terrestrial no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.14e-12}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.01e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.07e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water"], "amount": 7.92e-12}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.74e-13}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.35e-14}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 6.16e-15}, {"name": "2,4-D", "categories": ["water"], "amount": 6.16e-15}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.1e-18}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 5.32e-20}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 3.8e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.1e-18}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 5.42e-13}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 5.42e-13}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 2.55e-12}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.75e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.1e-12}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.15e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.21e-14}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.14e-13}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.9e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 8.21e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.96e-18}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.1e-15}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.69e-12}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 7.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.84e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.27e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 2.66e-14}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.6e-15}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 9.01e-16}, {"name": "Acephate", "categories": ["water"], "amount": 9.01e-16}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.44e-13}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 3.86e-12}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.04e-11}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.72e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.86e-16}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water"], "amount": 7.63e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 5.07e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water"], "amount": 2.69e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 6.94e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 3.48e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 4.22e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 1.78e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-09}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.45e-16}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water"], "amount": 4.85e-14}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.21e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.21e-10}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 9.88e-12}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.57e-11}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.84e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 8.32e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.32e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.32e-09}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 1.66e-09}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.97e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 7.19e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.3e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.35e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 4.14e-08}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 6.71e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 9.75e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.62e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 4.67e-13}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water"], "amount": 7.09e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 3.97e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.28e-10}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water"], "amount": 8.11e-10}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.09e-06}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.09e-06}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.9100000000000004e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.9100000000000004e-06}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.86e-26}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 3.65e-26}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 3.65e-26}, {"name": "Antimony ion", "categories": ["soil"], "amount": 3.65e-26}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 1.92e-25}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 6.6e-26}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1.92e-25}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.92e-25}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.52e-06}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52e-06}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.05e-06}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.05e-06}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.77e-28}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.06e-27}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.06e-27}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.06e-27}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.13e-26}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1.63e-26}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.13e-26}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.13e-26}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.98e-13}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.59e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 1.64e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water"], "amount": 1.15e-10}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 6.3e-13}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 7.63e-16}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.98e-09}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 5.77e-16}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.64e-15}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.56e-15}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.95e-16}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.95e-16}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.73e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.73e-08}, {"name": "Barium II", "categories": ["air"], "amount": 2.58e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.58e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 6.35e-28}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.36e-27}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.36e-27}, {"name": "Barium II", "categories": ["soil"], "amount": 1.36e-27}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.52e-27}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.42e-28}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.52e-27}, {"name": "Barium II", "categories": ["water"], "amount": 1.52e-27}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.96e-18}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 5.88e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.19e-15}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 7.42e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.28e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.08e-13}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.08e-13}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 3.94e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 2.13e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 6.63e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 4.87e-13}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water"], "amount": 9.79e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.05e-11}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.47e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.85e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 5.52e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 8.95e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.95e-10}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 8.7e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 5.07e-12}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 5.07e-12}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 9.12e-14}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 2.15e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.06e-14}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 5.44e-13}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.42e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.42e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 3.75e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 3.75e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 6.2e-28}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.09e-27}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.09e-27}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.09e-27}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 7.55e-26}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.48e-26}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 7.55e-26}, {"name": "Beryllium II", "categories": ["water"], "amount": 7.55e-26}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.14e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 3.51e-09}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 3.51e-09}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.12e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.49e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.53e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 2.59e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 9.13e-09}, {"name": "Bifenthrin", "categories": ["water"], "amount": 9.13e-09}, {"name": "Bisphenol A", "categories": ["water"], "amount": 7.3e-14}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.14e-16}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 8.57e-18}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.09e-13}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.79e-13}, {"name": "Bromopropane", "categories": ["water"], "amount": 8.91e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.31e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 3.77e-14}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 7.59e-15}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 7.59e-15}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 9.83e-12}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 1.71e-14}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water"], "amount": 2.12e-13}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 3.66e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.01e-13}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water"], "amount": 4.2e-12}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.31e-08}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.43e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.17e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 2.19e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 2.19e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 4.18e-28}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.03e-28}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.03e-28}, {"name": "Cadmium II", "categories": ["soil"], "amount": 8.03e-28}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 9.95e-27}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.86e-26}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9.95e-27}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.95e-27}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.7e-12}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.58e-11}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.58e-11}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.48e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.57e-12}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 9.95e-13}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.75e-13}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.75e-13}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 9.72e-12}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 8.54e-11}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.87e-08}, {"name": "Carboxin", "categories": ["air"], "amount": 3.36e-08}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 7.59e-12}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 5.26e-12}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 2.76e-12}, {"name": "Carboxin", "categories": ["water"], "amount": 2.76e-12}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.12e-17}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.81e-14}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 2.3e-09}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 2.27e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 1.4e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 1.4e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 1.4e-09}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.98e-18}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water"], "amount": 3.72e-17}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 3.76e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 7.06e-12}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 1e-16}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 7.3e-08}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.3e-08}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 4.2e-17}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 7.75e-15}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.5e-12}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 5.27e-12}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.76e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 6.35e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 6.35e-10}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 4.71e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 7.83e-11}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.49e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.06e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.11e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.01e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1.01e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.88e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 8.96e-09}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 3.18e-08}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 3.18e-08}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.86e-09}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 8.15e-17}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.91e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.91e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.78e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4.78e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 2.27e-28}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.49e-28}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.49e-28}, {"name": "Chromium III", "categories": ["soil"], "amount": 4.49e-28}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.76e-27}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 4.05e-27}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.76e-27}, {"name": "Chromium III", "categories": ["water"], "amount": 1.76e-27}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.62e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.62e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 8.97e-27}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.78e-26}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.78e-26}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.78e-26}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 6.56e-26}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 2.77e-26}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 6.56e-26}, {"name": "Chromium VI", "categories": ["water"], "amount": 6.56e-26}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.51e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 3.75e-13}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.75e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.75e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 4.67e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4.67e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6.92e-29}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.28e-28}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.28e-28}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.28e-28}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.61e-27}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.14e-27}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.61e-27}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.61e-27}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.38e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.38e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.57e-27}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 2.9e-27}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 2.9e-27}, {"name": "Copper ion", "categories": ["soil"], "amount": 2.9e-27}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.15e-25}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.68e-25}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.15e-25}, {"name": "Copper ion", "categories": ["water"], "amount": 1.15e-25}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.57e-13}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water"], "amount": 5.31e-13}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 3.89e-12}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 2.31e-15}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water"], "amount": 7.36e-15}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.25e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.73e-16}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.98e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 1.55e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.7e-19}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.05e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 3.23e-08}, {"name": "Cypermethrin", "categories": ["water"], "amount": 3.23e-08}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.9e-12}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.33e-16}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.78e-10}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 5.78e-14}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-12}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1.3e-13}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1.68e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.57e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.22e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1.04e-22}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 8.6e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 3.11e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 3.27e-11}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.43e-14}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 7.38e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.64e-16}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.64e-16}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.21e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3e-09}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 7.92e-15}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.91e-17}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.91e-17}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 3.71e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6.94e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1.05e-11}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 6.77e-17}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 3.98e-11}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.73e-14}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.73e-14}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.22e-13}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water"], "amount": 8.74e-13}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.1e-11}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.48e-17}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.7e-15}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.33e-07}, {"name": "Difenoconazole", "categories": ["air"], "amount": 1.89e-07}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 8.15e-13}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 7.46e-13}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 5.73e-13}, {"name": "Difenoconazole", "categories": ["water"], "amount": 5.73e-13}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.57e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.41e-08}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.19e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 7.89e-09}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.89e-09}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 8.45e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 7.8e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 3.44e-12}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 9.29e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.68e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 8.57e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.64e-12}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 1.77e-12}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 3.84e-12}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 7.98e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3e-11}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.16e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.16e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 4.48e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 4.48e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1.62e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1.74e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1.74e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1.74e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 6.04e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.19e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 6.04e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 6.04e-07}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.47e-14}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 4.83e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.94e-17}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.52e-18}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 7.52e-18}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.3e-12}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.26e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.33e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 5.23e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4.31e-11}, {"name": "Diuron", "categories": ["water"], "amount": 2.9100000000000002e-11}, {"name": "Dodecanol", "categories": ["water"], "amount": 8.69e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.45e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 7.83e-16}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.49e-19}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 5.34e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.17e-21}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.82e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.65e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.69e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 1.23e-09}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.71e-10}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.71e-10}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.29e-07}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air"], "amount": 5.06e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 5.06e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.27e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.06e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.06e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.1e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.41e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.49e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.05e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.14e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water"], "amount": 2.99e-13}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 6.4e-17}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.88e-22}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.88e-22}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.45e-11}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 1.64e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1.73e-08}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.17e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.63e-12}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air"], "amount": 1.92e-09}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.92e-09}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 3.52e-13}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water"], "amount": 7.3e-13}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 1.23e-15}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.57e-15}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 5.19e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.79e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.71e-16}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 7.57e-18}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 2.02e-12}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 7.27e-09}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 5.54e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.51e-12}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.09e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.28e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.65e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.31e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.77e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.98e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 3.06e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.65e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1.41e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.3e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.03e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.03e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.03e-08}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 9.95e-08}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.21e-11}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 1.31e-11}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.65e-11}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.65e-11}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.08e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 4.43e-09}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.61e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.13e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 9.13e-10}, {"name": "Fluorene", "categories": ["air"], "amount": 2.07e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.37e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 2.35e-17}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.19e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.94e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.62e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 5.77e-13}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.01e-11}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 5.22e-17}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water"], "amount": 1.04e-14}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.58e-20}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 7.07e-14}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.07e-12}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air"], "amount": 2.79e-14}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.79e-14}, {"name": "Furfural", "categories": ["air"], "amount": 1.81e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.53e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.44e-21}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.99e-16}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.73e-22}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.26e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 9.11e-14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 9.11e-14}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.36e-16}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-16}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 2.92e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.98e-16}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water"], "amount": 2.21e-15}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.23e-14}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.86e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.18e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.55e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 9.06e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.42e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.42e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.63e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 4.41e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.03e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.03e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 8.95e-15}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.49e-11}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.79e-15}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4.92e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 6.83e-17}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 7.03e-21}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.26e-21}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.26e-21}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.79e-08}, {"name": "Indoxacarb", "categories": ["air"], "amount": 6.86e-08}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.13e-10}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 1.14e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.44e-12}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 4.29e-16}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.29e-16}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1e-09}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1e-09}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.95e-12}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 2.28e-12}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.3e-10}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.56e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.28e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.43e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 2.13e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 2.13e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2.13e-07}, {"name": "Lauric acid", "categories": ["air"], "amount": 9.87e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.76e-14}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-07}, {"name": "Lead II", "categories": ["air"], "amount": 4.92e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.92e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.4e-30}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.31e-30}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.31e-30}, {"name": "Lead II", "categories": ["soil"], "amount": 2.31e-30}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2.95e-28}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.45e-28}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2.95e-28}, {"name": "Lead II", "categories": ["water"], "amount": 2.95e-28}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 4.48e-18}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5.81e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.33e-18}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.14e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 7.51e-16}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.25e-16}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.25e-16}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 6.71e-15}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.01e-14}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.01e-14}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.35e-21}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.48e-16}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.17e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 9.63e-15}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.09e-16}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.08e-16}, {"name": "Mancozeb", "categories": ["water"], "amount": 1.08e-16}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 9.9e-15}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.72e-13}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 8.33e-15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 2.1e-24}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 1.57e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.57e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 6.3e-29}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 8.84e-29}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 8.84e-29}, {"name": "Mercury II", "categories": ["soil"], "amount": 8.84e-29}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2.38e-26}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 6.36e-26}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2.38e-26}, {"name": "Mercury II", "categories": ["water"], "amount": 2.38e-26}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-09}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 5.19e-09}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.6e-11}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 9.35e-12}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 3.96e-12}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 5.19e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 3.14e-15}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 2.18e-15}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.3e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.08e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.5e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.5e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 5.61e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.14e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 4.74e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 4.74e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.19e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.61e-11}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 3.48e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water"], "amount": 4.81e-13}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.36e-10}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 4.81e-12}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.35e-12}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water"], "amount": 7.73e-13}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 6.18e-11}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.46e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6.81e-13}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.56e-13}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 5.89e-13}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 5.89e-13}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.6e-11}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.37e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.4e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.19e-11}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.27e-13}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.36e-10}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.36e-10}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.45e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.61e-10}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 8.27e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.1e-10}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.79e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.29e-10}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.66e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 9.76e-12}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.02e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 7.39e-16}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.2e-16}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2e-16}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.41e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.41e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.66e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.66e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 3.39e-29}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 6.71e-29}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 6.71e-29}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 6.71e-29}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.53e-28}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.14e-28}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.53e-28}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.53e-28}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1.6e-13}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 6.87e-14}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 2.62e-11}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 9.13e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 6.66e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.1e-11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.88e-12}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 6.91e-09}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.13e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 2.13e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 8.13e-28}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.54e-27}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.54e-27}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.54e-27}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.32e-26}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.16e-26}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.32e-26}, {"name": "Nickel II", "categories": ["water"], "amount": 3.32e-26}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-09}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 6.05e-09}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 8.3e-19}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 3.78e-19}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.25e-19}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.25e-19}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.39e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.69e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 5.35e-14}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 2.47e-10}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 6.63e-16}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 9.69e-15}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.94e-10}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1.52e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 1.1e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.84e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.34e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.54e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.81e-11}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.35e-19}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.15e-09}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 2.05e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 7.34e-16}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 7.89e-10}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 7.89e-10}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air"], "amount": 2.36e-13}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-13}, {"name": "Pentane", "categories": ["water"], "amount": 2.23e-13}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.32e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.57e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.22e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 6.3e-14}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water"], "amount": 1.12e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.48e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.48e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.82e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.82e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.32e-12}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.55e-12}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.38e-10}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.1e-09}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.74e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.13e-12}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 3.24e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.87e-12}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.22e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 4.56e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 8.37e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-14}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.04e-13}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.73e-15}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 8.88e-10}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 4.31e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 5.75e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 8.81e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 8.81e-10}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 7.27e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 6.22e-10}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 7.72e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.92e-08}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 4.29e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 4.49e-16}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 4.62e-17}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air"], "amount": 7.09e-12}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 7.09e-12}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 2.39e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water"], "amount": 1e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.86e-11}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.42e-14}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water"], "amount": 3.44e-13}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.32e-14}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.61e-11}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.31e-11}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 6.11e-12}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 2.7e-12}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.55e-12}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.19e-15}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.33e-13}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air"], "amount": 5.86e-10}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 5.86e-10}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.76e-13}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water"], "amount": 3.65e-13}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 3.72e-14}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.36e-11}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.36e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.67e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.98e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Pyrene", "categories": ["air"], "amount": 1.38e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 2.64e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 4.89e-15}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1.36e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 7.6e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 3.04e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.06e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.06e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.09e-15}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 4.66e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3.04e-10}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.01e-14}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.08e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 7.08e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 3.82e-28}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 7.3e-28}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 7.3e-28}, {"name": "Selenium IV", "categories": ["soil"], "amount": 7.3e-28}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1e-26}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 9.44e-27}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1e-26}, {"name": "Selenium IV", "categories": ["water"], "amount": 1e-26}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.77e-13}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.59e-13}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00011}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011}, {"name": "Silver I", "categories": ["air"], "amount": 7.6e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7.6e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 5.28e-27}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 9.84e-27}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 9.84e-27}, {"name": "Silver I", "categories": ["soil"], "amount": 9.84e-27}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 2.91e-25}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 5.95e-25}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 2.91e-25}, {"name": "Silver I", "categories": ["water"], "amount": 2.91e-25}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.07e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.91e-11}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.48e-11}, {"name": "Simazine", "categories": ["water"], "amount": 3.48e-11}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.76e-10}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.76e-10}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.5e-32}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water"], "amount": 3.19e-32}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 8.8e-10}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 4.77e-14}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water"], "amount": 1.58e-13}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 9.02e-14}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.43e-08}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.7e-08}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.7e-08}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 7.38e-15}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.96e-21}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.96e-21}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.68e-11}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.03e-12}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.01e-12}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water"], "amount": 9.55e-13}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 8.65e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 8.7e-11}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.36e-11}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.43e-11}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.43e-11}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-06}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.54e-06}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 9.93e-11}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 8.97e-11}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 6.71e-14}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 3.26e-09}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 5.45e-10}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.57e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-12}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.59e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.59e-07}, {"name": "Thallium I", "categories": ["air"], "amount": 6.63e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 6.63e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.01e-26}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.17e-26}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.17e-26}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.17e-26}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.55e-26}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 7.31e-27}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.55e-26}, {"name": "Thallium I", "categories": ["water"], "amount": 2.55e-26}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.24e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 4.04e-14}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.18e-14}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.18e-14}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 7.08e-15}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 5.59e-10}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.31e-15}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water"], "amount": 2.43e-13}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 1.11e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.34e-09}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.34e-09}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.16e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 8.34e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.68e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.22e-11}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.22e-11}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air"], "amount": 6.43e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 3.45e-12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.84e-12}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.09e-11}, {"name": "Thiram", "categories": ["water"], "amount": 2.09e-11}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.14e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.14e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 6.33e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 6.33e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1.56e-29}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 2.77e-27}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 5.21e-27}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2.77e-27}, {"name": "Tin ion", "categories": ["water"], "amount": 2.77e-27}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.06e-13}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water"], "amount": 3.43e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.83e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.83e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.32e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.82e-12}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 9.93e-09}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2.06e-10}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.77e-14}, {"name": "Triallate", "categories": ["air"], "amount": 5.36e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.14e-10}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.07e-10}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 8.53e-13}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.73e-06}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.55e-14}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.1e-14}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.64e-14}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.82e-13}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.03e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.02e-11}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.09e-17}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 2.05e-16}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.67e-05}, {"name": "Triflumuron", "categories": ["air"], "amount": 5.52e-05}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 9.58e-07}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 6.68e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.3e-07}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.29e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.5e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.63e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.63e-10}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.01e-15}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.13e-13}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 7.82e-18}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water"], "amount": 1.47e-16}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 2.26e-15}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.13e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.13e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 3.26e-27}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 6.14e-27}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 6.14e-27}, {"name": "Vanadium V", "categories": ["soil"], "amount": 6.14e-27}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.35e-25}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.88e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.35e-25}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.35e-25}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.67e-11}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 6.28e-14}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water"], "amount": 2.09e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.23e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.23e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 1.55e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1.55e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.38e-27}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.45e-27}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.45e-27}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.45e-27}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.47e-25}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.64e-26}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.47e-25}, {"name": "Zinc II", "categories": ["water"], "amount": 1.47e-25}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 8.48e-10}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 9.19e-14}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.04e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 2.13e-13}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water"], "amount": 7.07e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.14e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 3.88e-13}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air"], "amount": 6.1e-09}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 6.1e-09}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 4.62e-12}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 9.58e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2.13e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "eutrophication: freshwater no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "eutrophication: marine no LT"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "land use no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "photochemical oxidant formation: terrestrial ecosystems no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.71e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.71e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.92e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.15e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.15e-08}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.79e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.79e-09}, {"name": "Acetone", "categories": ["air"], "amount": 4.52e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.52e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.07e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.07e-08}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.62e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.43e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.43e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.54e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air"], "amount": 3.92e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.96e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.96e-08}, {"name": "Cumene", "categories": ["air"], "amount": 2.41e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.11e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.47e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -7.54e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -7.54e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56e-08}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.47e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Formic acid", "categories": ["air"], "amount": 2.26e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Heptane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Hexane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-09}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 8.6e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.6e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 7.54e-10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Methanol", "categories": ["air"], "amount": 9.8e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.97e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.29e-07}, {"name": "Pentane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Phenol", "categories": ["air"], "amount": -3.77e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.77e-09}, {"name": "Propanal", "categories": ["air"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanol", "categories": ["air"], "amount": 3.62e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propionic acid", "categories": ["air"], "amount": 9.8e-09}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Styrene", "categories": ["air"], "amount": 3.77e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77e-09}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.54e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Toluene", "categories": ["air"], "amount": 3.32e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48e-08}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "water use: aquatic ecosystems no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "water use: terrestrial ecosystems no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1.35e-08}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "human health no LT", "climate change: human health no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 9.28e-07}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 9.28e-07}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 9.28e-07}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 9.28e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 1.86e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.86e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000277}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000277}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.000277}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.000277}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.00144}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.00144}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000179}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.00611}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.00611}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.00087}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.00087}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000155}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 9.28e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00892}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00892}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.00892}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.00892}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00218}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00218}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.00218}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.00218}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 8.91e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 8.91e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000589}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000589}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.000589}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.000589}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0079}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0079}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.0079}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.0079}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.0115}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.00343}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.28e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.28e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.78e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.78e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00192}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00192}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00192}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00192}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00664}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00664}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.00664}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.00664}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.00195}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.00195}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.0143}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.02e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.02e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0107}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0107}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000166}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000758}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 3.34e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 3.16e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.39e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.39e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 3.16e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.00187}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.00187}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.00682}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.00497}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.00497}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.0129}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0166}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.0088}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0242}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "human health no LT", "human toxicity: carcinogenic no LT"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 2.16e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-06}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 5.75e-06}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 2.16e-07}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Acephate", "categories": ["water"], "amount": 2.69e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 0.000165}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.23e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 7.17e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.83e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 9.87e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air"], "amount": 1.07e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.07e-07}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.23e-10}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water"], "amount": 8.03e-08}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00191}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00191}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.00283}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.00283}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.000104}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 6.34e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 6.34e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 6.34e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.00114}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 9.65e-05}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.00114}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.00114}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-05}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 9.48e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.44e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 5.11e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 5.11e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 5.11e-06}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.54e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.54e-07}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 3.56e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.24e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.17e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.24e-07}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 4.82e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.43e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.19e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.000312}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000312}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00381}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.63e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.63e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.000879}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.000879}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.49e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.06e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.06e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.06e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.01e-07}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.51e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.01e-07}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.01e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 4.42e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 4.42e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000209}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000209}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00077}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.00077}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.000366}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 3.79e-06}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 3.79e-06}, {"name": "Cadmium II", "categories": ["soil"], "amount": 3.79e-06}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 4.6e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.41e-06}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 4.6e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 4.6e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 7.18e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.27e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.09e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.09e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 9.73e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 4.29e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.23e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.86e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.65e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 7.03e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.2e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 3.22e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 3.22e-07}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0854}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0854}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.0661}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.0661}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.0146}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.019}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.019}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.019}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.0247}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.00219}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0247}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0247}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0008}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.64e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 9.01e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.11e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.63e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 307}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 307}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 30.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 243}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 751}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.33e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 2.24e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 2.24e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.68e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.68e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 8.1e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 8.1e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.16e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 7.42e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 7.42e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 2.92e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.45e-05}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 4.32e-06}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000172}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.11e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 4.14e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.08e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4.55e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.12e-09}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.000315}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.000315}, {"name": "Furfural", "categories": ["air"], "amount": 9.63e-07}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air"], "amount": 1.6e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.6e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 3.44e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water"], "amount": 8.81e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.4e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 5.71e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 5.71e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.77e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.84e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 7.54e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 7.54e-06}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 4.26e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.26e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26e-05}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26e-05}, {"name": "Lead II", "categories": ["air"], "amount": 6.17e-05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 6.17e-05}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.15e-06}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.81e-07}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.81e-07}, {"name": "Lead II", "categories": ["soil"], "amount": 2.81e-07}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 4.78e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.06e-06}, {"name": "Lead II", "categories": ["water"], "amount": 1.06e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 4.15e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.37e-07}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000239}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000239}, {"name": "Mercury II", "categories": ["air"], "amount": 0.000231}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.000231}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 9.75e-05}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 4e-06}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 4e-06}, {"name": "Mercury II", "categories": ["soil"], "amount": 4e-06}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.00046}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.000191}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.00046}, {"name": "Mercury II", "categories": ["water"], "amount": 0.00046}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 4.09e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 4.09e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.93e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.29e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000848}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000848}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000448}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000782}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.25e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.87e-07}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.87e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 5.69e-08}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.82e-07}, {"name": "Naphthalene", "categories": ["air"], "amount": 7.98e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00167}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00167}, {"name": "Nickel II", "categories": ["air"], "amount": 0.00124}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.00124}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.000158}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 4.08e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 4.08e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 4.08e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 7.58e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.16e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 7.58e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 7.58e-05}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.82e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.000112}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.000112}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 2.27e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.97e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.92e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.54e-05}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.12e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.21e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.61e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.017}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.17e-05}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.94e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.95e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.21e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.21e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3.16e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.24e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.33e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.73e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.77e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air"], "amount": 4.44e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 4.44e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.13e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water"], "amount": 7.51e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.08e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.35e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1.26e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.26e-05}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air"], "amount": 6.77e-08}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.77e-08}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 8.86e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water"], "amount": 7.62e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.64e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 7.99e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.04e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.04e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.2e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.12e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "human health no LT", "human toxicity: non-carcinogenic no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 3.35e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0044}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.28e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 2e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.22e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.09e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.66e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.66e-07}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 7.34e-05}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.9e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.84e-06}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.42e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water"], "amount": 9.33e-07}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.00088}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.00088}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 4.45e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.16e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.000184}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0321}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0321}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0242}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0242}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.00149}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.00111}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.00111}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.00111}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0199}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00168}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0199}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0199}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 1.39e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air"], "amount": 0.000192}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.79e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.000103}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.000103}, {"name": "Barium II", "categories": ["soil"], "amount": 0.000103}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.65e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water"], "amount": 4.2e-05}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.08e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3.06e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.86e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 2.96e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.15e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.07e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.44e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000306}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00627}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00627}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 5.86e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 5.22e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 5.22e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 5.22e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.02e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.4e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.02e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.02e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.27e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.76e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.66e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.48e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.64e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.63e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000449}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000449}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.52e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.52e-06}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0114}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0114}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00816}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.00816}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.0228}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.000239}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.000239}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.000239}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00029}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 8.89e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00029}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00029}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.64e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.89e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.89e-06}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.53e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.96e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 2.25e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.36e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.92e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.86e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.48e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.28e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.28e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air"], "amount": 5.43e-08}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.79e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 6.93e-10}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.99e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.0013}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.0013}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 3.24e-06}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.31e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.16e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.31e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.31e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air"], "amount": 7.07e-06}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 7.07e-06}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 4.24e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.63e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 6.52e-07}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.75e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.92e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.92e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 6.38e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.98e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000197}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2.18e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.18e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.85e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 6.5e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.88e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.88e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.32e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.32e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.72e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1.36e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1.36e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.000126}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.54e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.33e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 7.09e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.02e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air"], "amount": 8.09e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 8.09e-06}, {"name": "Furfural", "categories": ["air"], "amount": 3.63e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00125}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.57e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 9.28e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 9.28e-06}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00679}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00679}, {"name": "Lead II", "categories": ["air"], "amount": 0.00508}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00508}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.000239}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.33e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.33e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 2.33e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 8.71e-05}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.94e-05}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 8.71e-05}, {"name": "Lead II", "categories": ["water"], "amount": 8.71e-05}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.000113}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.02e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00661}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00661}, {"name": "Mercury II", "categories": ["air"], "amount": 0.00565}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.00565}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.00267}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.000111}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.000111}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.000111}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0128}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.00531}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0128}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0128}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000349}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 3.65e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 3.65e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 7.64e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.61e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8.41e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8.41e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.12e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.12e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000668}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000668}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000353}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000618}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 7.59e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 7.59e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.42e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.0006}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.0006}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.000301}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.2e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.95e-05}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 4.86e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.56e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.51e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.35e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.63e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.63e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.66e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 5.4e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 5.4e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 5.4e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1e-06}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.53e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 1e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.74e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 3.24e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.11e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.92e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.39e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 9.85e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.89e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000137}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 7.23e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.13e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.72e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 5.29e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 9.76e-08}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 5.15e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.78e-08}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 6.25e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 3.37e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.33e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.21e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air"], "amount": 0.0111}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0111}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0104}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.000172}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.000172}, {"name": "Silver I", "categories": ["soil"], "amount": 0.000172}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 4.58e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water"], "amount": 0.000157}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.05e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water"], "amount": 4.81e-09}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.43e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 2.71e-06}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air"], "amount": 0.00166}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.00166}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.000565}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 8.64e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water"], "amount": 0.00136}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.2e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.63e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.01e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.18e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.12e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.92e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.92e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.69e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air"], "amount": 0.00016}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 0.00016}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.5e-05}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 8.57e-06}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.000138}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4.15e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.58e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0086}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 7.71e-05}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00188}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.88e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.36e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.41e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.16e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "human health no LT", "ionising radiation no LT"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 3.72e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 2.67e-13}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 4.1e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 2.93e-11}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 4.17e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 7.57e-12}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 4.02e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water"], "amount": 7.34e-08}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 4.95e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water"], "amount": 8.5e-08}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 2.32e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water"], "amount": 5.18e-11}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 2.08e-11}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 2.01e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.24e-08}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.44e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 3.5e-13}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water"], "amount": 2.44e-09}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 2.55e-10}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 4.79e-12}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 7.21e-14}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 7.73e-10}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 1.62e-10}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.7e-14}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 7.73e-10}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.23e-11}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 9.27e-12}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 2.01e-12}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 2.55e-10}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 3.87e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water"], "amount": 2.08e-10}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 6.72e-13}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 6.72e-13}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water"], "amount": 2.63e-10}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 7.27e-14}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "human health no LT", "ozone depletion no LT"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.84e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.84e-06}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 5.84e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 5.84e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 9.45e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 9.45e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000353}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000353}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 7.12e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 7.12e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000143}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000143}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.000143}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.000143}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.56e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.56e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 3.56e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 3.56e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 5.84e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 5.84e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.17e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.17e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.17e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.24e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 3.24e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 3.24e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 3.86e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 3.86e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00039}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00039}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00466}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00466}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00466}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00466}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00747}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00747}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.00747}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.00747}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.39e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.39e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.000312}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.000312}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.17e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.17e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000475}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000475}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.000531}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.000531}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "human health no LT", "particulate matter formation no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.000151}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.03e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.000107}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 6.92e-05}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000182}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000145}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "human health no LT", "photochemical oxidant formation: human health no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.72e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.82e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.82e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air"], "amount": 1.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.98e-08}, {"name": "Acrolein", "categories": ["air"], "amount": 1.78e-07}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.78e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -6.27e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -6.27e-08}, {"name": "Benzene", "categories": ["air"], "amount": 3.3e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.52e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 2.94e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air"], "amount": 1.72e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cumene", "categories": ["air"], "amount": 1.06e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 9.24e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.52e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -3.3e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -3.3e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 6.27e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 6.27e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.22e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.22e-07}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.52e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.48e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.48e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.42e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.42e-08}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.3e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Methanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.06e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.63e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.63e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 6.73e-07}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.39e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 9.1e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Phenol", "categories": ["air"], "amount": -1.65e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -1.65e-08}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Styrene", "categories": ["air"], "amount": 1.65e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.3e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 9.57e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.57e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "human health no LT", "water use: human health no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 2.22e-06}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "natural resources no LT", "energy resources: non-renewable, fossil no LT"], "exchanges": [{"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "natural resources no LT", "material resources: metals/minerals no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.132}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0303}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00527}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 17.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.74}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0267}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0705}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0025}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00241}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0113}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00356}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 73.4}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0443}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000654}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 22.3}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.07}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00212}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00133}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 3.07}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.099}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0202}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00874}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 278}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.83}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.918}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "total: ecosystem quality no LT", "ecosystem quality no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.680299999999999e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 6.158999999999999e-10}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.48373e-12}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.6652e-11}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83562e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.52564e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.3411235e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.83520616e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.83520616e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7236e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.083400011e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.492700000532001e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.492700000532001e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7236e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 5.1363e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.083400011e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.492700000532001e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.522999999999999e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.6019e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.995342e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.995342e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.80725e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.7113922e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.7113922e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.5517e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.6551e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.01482e-11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36004267e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36004267e-08}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.2917e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.5654e-12}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 2.9949e-09}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 2.1337e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.9679973e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.9679973e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.350059938e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.55641e-11}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1.16136e-10}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.311e-11}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.311e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.22876e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.8545e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.320779999999999e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.87616e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.001556000000001e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.24170901e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.24170901e-10}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.1503717e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.1503717e-08}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 8.5333e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04851e-10}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05858e-11}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 4.5908e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.77038805e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.183263e-10}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air"], "amount": 4.5204406e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.5204406e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.4881e-13}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.8318e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.1213e-12}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.801e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 5.8726e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 3.8295e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.7464e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["water"], "amount": 5.3361e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37024635e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.194350000000001e-11}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.37757e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.37757e-10}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.232e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.232e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 3.6996e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.4716e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.783900000000001e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9.863e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.630105e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.630105e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.8867e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 1.347e-09}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 4.0935e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15771e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.647e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.428e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.273e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.093999999999999e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.925140000000001e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.5279e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.3014e-09}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.82132e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air"], "amount": 9.982e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 9.982e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.50817e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.4279e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.022e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.26214e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.49851e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.7676e-10}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.158199999999999e-06}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.158199999999999e-06}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.979300000000001e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.979300000000001e-06}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 3.579e-08}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 7.201000000000001e-08}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 7.201000000000001e-08}, {"name": "Antimony ion", "categories": ["soil"], "amount": 7.201000000000001e-08}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.843e-07}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.05e-07}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.843e-07}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.843e-07}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53188e-06}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53188e-06}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.0588e-06}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.0588e-06}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 9.82e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.843e-09}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.843e-09}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.843e-09}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 5.226000000000001e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.23e-08}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 5.226000000000001e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 5.226000000000001e-08}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.17828e-10}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1346e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.0689e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.0208e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.26675e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.26675e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.26675e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.1857e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.330007629999999e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.6535e-07}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.39150577e-10}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.698e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.42000164e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.913800156e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.10360000695e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.10360000695e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7987e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7987e-08}, {"name": "Barium II", "categories": ["air"], "amount": 2.6925e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.6925e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9.87e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 2.114e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 2.114e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 2.114e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.352e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 5.89e-10}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.352e-09}, {"name": "Barium II", "categories": ["water"], "amount": 2.352e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.606500196e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 2.489e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14409719e-09}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 1.087e-10}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2491e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.9148e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.772679999999999e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.772679999999999e-10}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1.148e-08}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.12803e-06}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.2778e-10}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.8389e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.178899999999999e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.053e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47005026e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47005026e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.875178e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.05076e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.6023e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.6023e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.8812e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 3.2029e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.2029e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.377e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.994e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3.994e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.468506999999999e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.468506999999999e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.44142e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.4232e-11}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 5.1476e-12}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.4135e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.99278e-10}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.44603e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.44603e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 3.76835e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 3.76835e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 5.251e-10}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 9.460999999999999e-10}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 9.460999999999999e-10}, {"name": "Beryllium II", "categories": ["soil"], "amount": 9.460999999999999e-10}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.645999999999999e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.27e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.645999999999999e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.645999999999999e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.594e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.834e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.0444e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.523951e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.523951e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 4.794e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.587e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 3.31e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 1.511e-08}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 7.178e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.72113e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.72113e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.1461073e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.38790514e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.077300857e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 7.151109e-09}, {"name": "Bromopropane", "categories": ["air"], "amount": 1.1492e-12}, {"name": "Bromopropane", "categories": ["water"], "amount": 9.086200000000001e-11}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.465e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.907349999999999e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.24030377e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.1697000759e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.1697000759e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 5.120000000000001e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.2437e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.5907e-09}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.9354e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.3043e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.29705e-11}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 2.29266e-10}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.921400000000001e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.812e-11}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5287e-08}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.1259e-07}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18011e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18011e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 2.19748e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 2.19748e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.957e-10}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.563e-09}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.563e-09}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.563e-09}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.376e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.05e-08}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.376e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.376e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.81297e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.11696e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.5588e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.133979999999999e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.133979999999999e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19026e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.9898e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.16777e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.8453995e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2267475e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2267475e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9602e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.2783e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.8000765e-09}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.6843e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.6843e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.0889e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.6612e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.5213e-09}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9713e-08}, {"name": "Carboxin", "categories": ["air"], "amount": 3.6626e-08}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.61089e-09}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 9.67546e-09}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.825376e-08}, {"name": "Carboxin", "categories": ["water"], "amount": 1.825376e-08}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.8809164e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.60581e-11}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9851e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 6.719e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 5.1687e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 2.9548e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 2.9548e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 2.9548e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44000000198675e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.515420000372e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.9074e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.811e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.390799999999999e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.8217e-10}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 3.22681e-11}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 7.41839e-08}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.41839e-08}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 1.01000042202e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 6.28250775e-09}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air"], "amount": 5.601193299999999e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.601193299999999e-08}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.10592e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.2319e-10}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 9.1e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 7.039e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 7.039e-10}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.7535e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.32431e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.862e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.846e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.3288e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.323e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 5.893e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 5.893e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.97e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.588e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.28426e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.05128e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.05128e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.6864e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.6952000815e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.01023e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9263e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9263e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.7933e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4.7933e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 3.2e-10}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6.5e-10}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6.5e-10}, {"name": "Chromium III", "categories": ["soil"], "amount": 6.5e-10}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.859e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.15e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.859e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.859e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.36207e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36207e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.6434e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.6434e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.284e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.615e-08}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.615e-08}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.615e-08}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 7.389999999999999e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.38e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 7.389999999999999e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 7.389999999999999e-08}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.0517e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 6.9229e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 5.144300000000001e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.88435e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.77993e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.77993e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 4.69136e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4.69136e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1.08e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.037e-10}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.037e-10}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.037e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5.223999999999999e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.12e-09}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5.223999999999999e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 5.223999999999999e-09}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.008049e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.008049e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.385711e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.385711e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 2.521e-09}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.73e-09}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.73e-09}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.73e-09}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.323e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.65e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.323e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1.323e-07}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air"], "amount": 2.41005783e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41005783e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.496336e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.89631e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.30289e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.6023606e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.810646e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.6665e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.3763373e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5.07e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.0723e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.42870047e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.036e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 6.188000000000001e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.53323e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.53323e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4299e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.0219e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.16150233e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.970099999999999e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.73918e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.54408e-09}, {"name": "Decanoic acid", "categories": ["water"], "amount": 2.11462e-09}, {"name": "Deltamethrin", "categories": ["air"], "amount": 2.946e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 3.193e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.507600000000001e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.7119000000104e-11}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.5234e-10}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.1811e-08}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.753e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.985034300000001e-09}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73316e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.3729e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.633600264e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.633600264e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 5.548e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3362e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.243e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.677892000000001e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.416600291e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.416600291e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.4928e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.129e-09}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.1337e-08}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.29869e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 3.036e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.112350677e-10}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 7.5216e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.470005178e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.470005178e-08}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.17928e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.17928e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.635339999999999e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.23034e-10}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.125253e-11}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.125253e-11}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.8284957e-14}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.8857e-12}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4135e-07}, {"name": "Difenoconazole", "categories": ["air"], "amount": 2.0617e-07}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.944815e-09}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 5.6190746e-08}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 1.66710573e-07}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1.66710573e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7484e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.2825e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.4422e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.48589e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.48589e-06}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 2.096e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 9.9372e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.37102e-10}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.594e-09}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.91574e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 4.07e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.699944e-08}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 6.2347e-10}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.025e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.025e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.48552e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.874200000000001e-10}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.340228e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.340228e-07}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 8.340228e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 8.340228e-07}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.244924e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.3321e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.573e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.573e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 8.316e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 8.316e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 3.669e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 4.613e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 4.613e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 4.613e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.3984e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.43246e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.3984e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.3984e-05}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.656187e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09252e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 6.0432e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.438200645e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.1006000494e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.371400000752e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.371400000752e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.7426e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.4012e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3505e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.5858e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.06405e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.88131e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.563191e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.57777e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.486299999999999e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.530607829999999e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21470000249e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 9.755e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3.039e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.9541500000117e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.7474e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.7474e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 7.047e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2333e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.5985e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.402999999999999e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 3.0565e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.056100000000001e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.056100000000001e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8228e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8.372e-07}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air"], "amount": 6.642e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 6.642e-12}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.340118e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.340118e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.392703872000001e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.392703872000001e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.99014e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.5485e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.5485e-11}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1.8400504e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1.8400504e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2.6300718e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2.6300718e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.680128e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.680128e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 4.680128e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 4.680128e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.8067055e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.8067055e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 8.6189e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6900736e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6900736e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2.6900736e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2.6900736e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 2.6900734e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 2.6900734e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7800486e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7800486e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.7800486e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.7800486e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3800651e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3800651e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 2.3800651e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 2.3800651e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.30259e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.483e-09}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4600944e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4600944e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 3.4600944e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 3.4600944e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0300282e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0300282e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.0300282e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.0300282e-05}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.1756e-13}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.6926e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16852e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.2872064e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.29910000000288e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.29910000000288e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.7672e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 5.7903e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.50894e-08}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43055768e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43055768e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.1162e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.6307e-11}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air"], "amount": 1.94897e-09}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.94897e-09}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.62358e-12}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water"], "amount": 1.41234e-10}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.26866e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.26866e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78123343e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.9706257e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.713000000000001e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 5.327e-11}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 3.4403e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.547900471e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.528000000757e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 5.3141e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.4086e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.2763e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 7.01371e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.3682e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 7.599999999999999e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2464e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.539800000000001e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.956e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.7608e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.2454e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.2177e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.2177e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.8758e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 8.938000000000001e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.451e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.6259e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.6259e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.6259e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5126e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.1734e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 6.5634e-09}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 4.91221e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.934165e-07}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.934165e-07}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2711e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 3.3676e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.027999999999999e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 3.265e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.35993e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 4.607e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 5.0082e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 5.117e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.154200235e-10}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.6626e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.16056e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.606e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.483852e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.483852e-08}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.15095e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.4358e-10}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.900524070000001e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.943639999999999e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.314100085799999e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.955606999999999e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4224e-10}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air"], "amount": 3.1472e-14}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 3.1472e-14}, {"name": "Furfural", "categories": ["air"], "amount": 1.86695e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.127630000202e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.9543e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.127630000202e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.98070000000144e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.732769e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.44877699e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.665970000000373e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.665970000000373e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.665970000000373e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8926e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.489e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.29470911e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.29470911e-08}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.640000025104e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.640000025104e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 1.05077e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.60050713e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.827221e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.0654423e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.0826e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.246e-08}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.2557e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 8.063800000000001e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.809164e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39003934e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39003934e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.126764e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 4.4138872e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 4.4138872e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.34455e-12}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.6047e-09}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.37410479e-09}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04271e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.049849999999999e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.184000683e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.89050000000703e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.44980000000226e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.44980000000226e-09}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.541e-08}, {"name": "Indoxacarb", "categories": ["air"], "amount": 7.971e-08}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 3.081e-09}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2.4405e-08}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.275617e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.46424e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 8.600000047030001e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.600000047030001e-08}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1.026676e-09}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1.026676e-09}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 3.16725e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water"], "amount": 1.24899e-10}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.40115e-09}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.42488e-09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.2617e-08}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.736e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.605e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 4.164e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.4843e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.4843e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.4843e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 1.784e-11}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.0121676e-09}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.114746e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.114746e-07}, {"name": "Lead II", "categories": ["air"], "amount": 4.9233058e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.9233058e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.3e-12}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 5.539000000000001e-12}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 5.539000000000001e-12}, {"name": "Lead II", "categories": ["soil"], "amount": 5.539000000000001e-12}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.833e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.833e-10}, {"name": "Lead II", "categories": ["water"], "amount": 4.833e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.7714000448e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 8.89e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.5313000233e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.213709999999999e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.21433751e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.144080125e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.144080125e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2503e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.3310671e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.204910100000001e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.204910100000001e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.951499999999999e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.0373100000135e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.1477148e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.10228e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.27494e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.47190963e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.972900040900001e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.4653000108e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.4653000108e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.6736099e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.41742e-10}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 1.0789933e-10}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 6.303300021e-16}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3037833e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3037833e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 1.57259e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.57259e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.501e-10}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.159e-10}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.159e-10}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.159e-10}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 4e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.44e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 4e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 4e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.8765e-10}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.133500000000001e-09}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 5.6209e-09}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.5905e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.40095e-09}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2.34336e-09}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2.34336e-09}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 5.67097e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.565600314e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4050618e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.552e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.885999999999999e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 9.035899999999999e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.53264e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.53264e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.800158e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.800158e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 5.800158e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 5.800158e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.0000547e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0000547e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2.0000547e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2.0000547e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5.900161000000001e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5.900161000000001e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.330118e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.330118e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 4.330118e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 4.330118e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.3062892e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.3062892e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 4.0236e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.231e-11}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3.2300883e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3.2300883e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.010137000000001e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.010137000000001e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 5.010137000000001e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 5.010137000000001e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2900625e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2900625e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.2900625e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.2900625e-06}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0100275e-07}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0100275e-07}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.0100275e-07}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0100275e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52026e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52026e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 9.52026e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.52026e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 4.275602029999999e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 4.275602029999999e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52026e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52026e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 9.52026e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 9.52026e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.650227968e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.650227968e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.04391e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.435e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.0600562e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0600562e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 2.0600562e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 2.0600562e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.5000409e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.5000409e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.880106e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.880106e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3.880106e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3.880106e-05}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.1144e-13}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.9244e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.894100000000001e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 2.0765e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74674e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 6.00631e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.322135e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.479677299999999e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.479677299999999e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.479677299999999e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.38e-10}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8735e-07}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.6234e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 7.787081e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 5.5285656e-08}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 1.70110589e-07}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 1.70110589e-07}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.297143e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.297143e-09}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.1759e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 3.4104e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.8277e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.8277e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 5.5654e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.5594e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41003796e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41003796e-08}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.6673e-12}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.416369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.416369999999999e-10}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.142e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.9012e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.47429e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.06189e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.3719e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9329e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.8029e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3719e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.03409e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.03409e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.03409e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63375e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.07254e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.0387276e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26365e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.07675e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.6653000124e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.106100000739e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.56420000032e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.56420000032e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.767999999999999e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 5.336e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42622e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42622e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.67496e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.67496e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 5.922e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.207e-10}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.207e-10}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.207e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 3.437e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.87e-10}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 3.437e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 3.437e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17798e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2.007877e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.25798e-09}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 9.4494e-10}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.3103e-08}, {"name": "Naphthalene", "categories": ["air"], "amount": 9.302e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.6425e-09}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 9.5681e-10}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.4533e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.10699e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.10699e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.1425e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 2.1425e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.268e-09}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.441e-09}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.441e-09}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.441e-09}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.8e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.37e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.8e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 3.8e-08}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4485e-09}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 6.2896e-09}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1.6504000083e-10}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 8.971000003780001e-10}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.316300000125e-09}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.316300000125e-09}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitric oxide", "categories": ["air"], "amount": 3.14e-07}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.884e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 7.094000000000001e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.010137e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.010137e-05}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 5.010137e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 5.010137e-05}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 2.053e-07}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 3.436e-09}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.08772e-11}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.1555e-09}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 7.78690663e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.498169e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.305e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11911e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 4.179e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 9.703e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.409e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.409e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.171e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.17877e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.189100000000001e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.956e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 9.015100535000001e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.0009e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.975e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.28060734e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.429e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.1088e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.24349e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.24349e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air"], "amount": 3.020025237e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.020025237e-08}, {"name": "Pentane", "categories": ["water"], "amount": 4.998803000000001e-09}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 2.6600726e-05}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.017e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.002e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 2.0333e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 8.117e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.0794e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.461900645e-10}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air"], "amount": -3.749579e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.749579e-09}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.167158e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.7761e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 3.562e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 3.562e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.472000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.472000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.95232e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.231355e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.757099999999999e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.6404e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 8.9875e-08}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.19505e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.0975e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.12529e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.82659e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.15565e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 5.0829e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.402442000000001e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.68484e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.1031573e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.5872e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.2429e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.6319e-08}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.888e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.888e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 2.777e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 2.777e-09}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.4957e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.0084e-08}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.317e-10}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.413e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.0294e-08}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.3839e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 2.2356e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4117449e-11}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.11750462e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air"], "amount": 5.4307464e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.4307464e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 7.6055e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water"], "amount": 8.1562e-11}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.0292e-09}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air"], "amount": 3.62007158e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62007158e-08}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 2.3687e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.9418e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.561343199999999e-09}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.6402e-10}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.32608e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8246e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.36551e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.11407e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.275855e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.275855e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.275855e-08}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63119919e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09465e-10}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air"], "amount": 6.01583e-10}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 6.01583e-10}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.47729e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water"], "amount": 8.115500000000002e-11}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 4.9125e-13}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.6519e-11}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.6519e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.679e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 7.074e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.3538e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.9068e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 4.448e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.278e-06}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.7413e-07}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.389e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.389e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.511389e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.0395e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.8366e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.887e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.211e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.2767e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.6849e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.9144e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.9144e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.2705209e-10}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.167e-09}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.1445e-08}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2.8868e-09}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.85901e-11}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.025698e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.025698e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.12337e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 7.12337e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 6.527e-10}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.277e-09}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.277e-09}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.277e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.271e-08}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.12e-08}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.271e-08}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.271e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.904e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.88237e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.193859000000001e-09}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001103005}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001103005}, {"name": "Silver I", "categories": ["air"], "amount": 7.62133e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7.62133e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 9.992000000000001e-09}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.906e-08}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.906e-08}, {"name": "Silver I", "categories": ["soil"], "amount": 1.906e-08}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 3.944e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 6.22e-07}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 3.944e-07}, {"name": "Silver I", "categories": ["water"], "amount": 3.944e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55942e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.15613e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.0866e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.33571e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.06368e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.06368e-08}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.771265e-10}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.771265e-10}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 8.56e-14}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water"], "amount": 5.7221e-12}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.5114e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air"], "amount": 3.77007198e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77007198e-09}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.505038e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75914e-10}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.52090902e-08}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.14369e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3002e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3002e-05}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 7.3002e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 7.3002e-05}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.5520356e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.5520356e-07}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.4553038e-10}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.06381000000196e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.06381000000196e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1.003208e-07}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3431e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.28703e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.185009999999999e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.8453955e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7556e-09}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14932e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9.172099999999999e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.7515e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.593736e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.742943e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.742943e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1146e-06}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.7225e-06}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.709199999999999e-08}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 4.898993e-07}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 1.6774897e-06}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.378371e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.4728e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.303e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.7316e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.687849999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.687849999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.53667e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.7108e-10}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.7346e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7346e-07}, {"name": "Thallium I", "categories": ["air"], "amount": 6.852400000000001e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 6.852400000000001e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.836e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 3.985e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 3.985e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 3.985e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 4.531e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.44e-08}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 4.531e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 4.531e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58345e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.34304e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.138841e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.6029404e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05376318e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05376318e-08}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 8.6416708e-10}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.0562e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.0200131648e-10}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water"], "amount": 6.302843e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8483e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.2836e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.6623e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.11236e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.11236e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03395e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.36888e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.4302e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.3474e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.06432e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.06432e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.531e-08}, {"name": "Thiram", "categories": ["air"], "amount": 1.15e-08}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.89795e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.391784e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.277509e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.277509e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.167724e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.167724e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 6.349288e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 6.349288e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 3.077e-11}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 5.306e-11}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 5.306e-11}, {"name": "Tin ion", "categories": ["soil"], "amount": 5.306e-11}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 3.89e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 5.78e-09}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 3.89e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 3.89e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.32003648e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32003648e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.099279999999999e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.7333e-11}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.764e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.764e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 3.62693e-11}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.4476e-10}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 3.5878e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 5.11706e-07}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2151177e-09}, {"name": "Triallate", "categories": ["air"], "amount": 7.55e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.4183e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.202e-08}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.29660853e-07}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.87331e-06}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.15100855e-08}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.144200041e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.7988e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.508216400000001e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19007233e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19007233e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.738967e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.1927e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.7237e-09}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.9184e-07}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49109341e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.26525e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.895e-09}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7987e-05}, {"name": "Triflumuron", "categories": ["air"], "amount": 5.869e-05}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 2.7716e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 1.0785e-05}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.5978e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.5978e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.932e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 4.985e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.763e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.5447e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.5447e-08}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.8260301e-10}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 4.10713e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.2304e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.590078418e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.2279947e-11}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.179726e-11}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11748e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11748e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.15192e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.15192e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4.837000000000001e-09}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.33e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.33e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 9.33e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.505e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 4.77e-08}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.505e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.505e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.1061e-10}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.81e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.81e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.84498e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08516e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.036e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.25177e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.25177e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 1.56632e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1.56632e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.213e-09}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.02e-09}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.02e-09}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.02e-09}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.774e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.59e-08}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.774e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.774e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.44e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.7856e-08}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.119496e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.43238e-10}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.880061599999999e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.880061599999999e-08}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.342038e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.66747e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.4114e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.4114e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 5.3951e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 5.0815e-12}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air"], "amount": 6.27268e-09}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 6.27268e-09}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 1.72521e-11}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water"], "amount": 7.9038e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.781e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "total: human health no LT", "human health no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 2.495e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00440673}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376575}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141216}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176269}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176269}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 2.36e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.28e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 0.000165}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 5.26e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 5.26e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.139e-06}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 6.92e-06}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 3.72e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 2.67e-13}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137924}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137924}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0001721}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.9e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.84e-06}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 4.1e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 2.93e-11}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.000151}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.317e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.317e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.543e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water"], "amount": 1.0133e-06}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.00088}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.00088}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 4.45e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.16e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.000184}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 4.17e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 7.57e-12}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03401}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03401}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.02703}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.02703}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.001594}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0011734}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0011734}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0011734}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.02104}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.0017765}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.02104}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.02104}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-05}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.206e-06}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 3.106e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.5e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.5e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.5e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air"], "amount": 0.000192}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.79e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.000103}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.000103}, {"name": "Barium II", "categories": ["soil"], "amount": 0.000103}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.65e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water"], "amount": 4.2e-05}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.67e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.67e-07}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.640000000000001e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.546e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.2386e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.536e-07}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.97e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.5207e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.434e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0003369}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0003369}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.004116}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0063363}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0063363}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146879}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146879}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 8.35e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 7.280000000000001e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 7.280000000000001e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 7.280000000000001e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.421e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.951e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.421e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.421e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.27e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.76e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.66e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.48e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.64e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.63e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000449}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000449}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 6.234e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.234e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.011609}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011609}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00893}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.00893}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.023166}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00024279}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00024279}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.00024279}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.0002946}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 9.031000000000001e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.0002946}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.0002946}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 4.02e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water"], "amount": 7.34e-08}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 4.95e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water"], "amount": 8.5e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.498e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.838e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.784e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.279e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.279e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 2.32e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water"], "amount": 5.18e-11}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.53e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.169e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.54e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 2.776e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.776e-05}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.59e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 5.780000000000001e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.096e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.125e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.673e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9.679999999999999e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.602e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.602e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air"], "amount": 5.43e-08}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.79e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 6.93e-10}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.99e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.085498}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.085498}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.0674}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.0674}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.01460324}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.01901}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.01901}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.01901}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.0247131}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.00219116}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0247131}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0247131}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 2.08e-11}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 2.01e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.24e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air"], "amount": 7.07e-06}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 7.07e-06}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 4.24e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.63e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 6.52e-07}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0008}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.75e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.92e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.92e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.748e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 4.62e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002871}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.738e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.738e-07}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.11e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.63e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.85e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00028284}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00028284}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.00028284}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.00028284}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 307}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 307}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 30.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 243}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 751}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.98e-05}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0014402428}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0014402428}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0002735699}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0002735699}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.72e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.89e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.89e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.00646436}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.00646436}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.00094201}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.00094201}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000155}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 9.388e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 9.388e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.16e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.009063000000000002}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.009063000000000002}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.009063000000000002}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.009063000000000002}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0022156}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0022156}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.0022156}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.0022156}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 9.5682e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 9.5682e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0006007}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0006007}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0006007}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0006007}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.007932400000000001}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007932400000000001}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.007932400000000001}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.007932400000000001}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.0001115}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0001705}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.0115}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.00343}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.54e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.33e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 7.81e-06}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000172}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.11e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 4.14e-05}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.1509e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.57e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.412e-09}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.00032309}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00032309}, {"name": "Furfural", "categories": ["air"], "amount": 4.593e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.5e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.5e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.1144e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8881e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00125}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.4e-05}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 8.98e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 8.98e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.527e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.077e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 3.35042e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 3.35042e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.44e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 3.5e-13}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water"], "amount": 2.44e-09}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 2.55e-10}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 4.79e-12}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 8.019999999999999e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.019999999999999e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 7.21e-14}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0068726}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0068726}, {"name": "Lead II", "categories": ["air"], "amount": 0.0051417}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0051417}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.00024215}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.3581e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.3581e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 2.3581e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 8.816e-05}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.9878e-05}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 8.816e-05}, {"name": "Lead II", "categories": ["water"], "amount": 8.816e-05}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 7.73e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.0001545}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.339e-06}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 1.62e-10}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006849}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006849}, {"name": "Mercury II", "categories": ["air"], "amount": 0.005881}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.005881}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0027675}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.000115}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.000115}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.000115}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.01326}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.005501}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.01326}, {"name": "Mercury II", "categories": ["water"], "amount": 0.01326}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00074178}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00074178}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00658}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00658}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00658}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00658}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01411}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01411}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.01411}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.01411}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 4.09e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 4.09e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0019739365}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0019739365}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.0143}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.42399e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.42399e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.057e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.239e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0110961}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0110961}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000166}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000758}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 3.34e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 3.16e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.77233e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.77233e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 3.16e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.003861}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.003861}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.0008010000000000001}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.0014}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.00682}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.00550859}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.00550859}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.0129}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 7.67e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.0006}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.0006}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.000301}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.2e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.95e-05}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air"], "amount": 5.274499999999999e-07}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 5.274499999999999e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 5.7386e-08}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.8356e-07}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.049e-05}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3.235e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001692}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001692}, {"name": "Nickel II", "categories": ["air"], "amount": 0.0012563}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.0012563}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.00015966}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 4.134e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 4.134e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 4.134e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 7.68e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.1753e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 7.68e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 7.68e-05}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.0973e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.00010839}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 5.14e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6.06e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0166}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.011e-05}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.7e-14}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.11e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.00011337}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.00011337}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 2.662e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.209e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.0088}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 2.905e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 2.329e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000137}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.843e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.623e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.46e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 6.9e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1.1176e-06}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 7.73e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.017}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.685e-05}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 9.818e-07}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.200000000000001e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.58e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 6.54e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 4.37e-07}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.23e-11}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 9.27e-12}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 2.01e-12}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air"], "amount": 0.0111}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0111}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0104}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.000172}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.000172}, {"name": "Silver I", "categories": ["soil"], "amount": 0.000172}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 4.58e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water"], "amount": 0.000157}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 2.55e-10}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 3.87e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water"], "amount": 2.08e-10}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.345e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.3781e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000182}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0242}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000145}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 6.72e-13}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 6.72e-13}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water"], "amount": 2.63e-10}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.43e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-06}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air"], "amount": 0.00166}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.00166}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.000565}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 8.64e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water"], "amount": 0.00136}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air"], "amount": 3.854e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.854e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 5.33e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water"], "amount": 2.381e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.01e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.85e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.688e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.47e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.18e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.18e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.69e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air"], "amount": 0.00016}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 0.00016}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.5e-05}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 8.57e-06}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.000138}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 2.22e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 7.27e-14}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air"], "amount": 4.277e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 4.277e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 5.036e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water"], "amount": 2.342e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0086}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 7.71e-05}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00188}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 7.52e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.159e-06}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.0806e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0806e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.341e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.1816e-07}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "total: natural resources no LT", "natural resources no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.132}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0303}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00527}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 17.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.74}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0267}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0705}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0025}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00241}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0113}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00356}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 73.4}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0443}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000654}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 22.3}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.07}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00212}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00133}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 3.07}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.099}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0202}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00874}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 278}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.83}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.918}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1.35e-08}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "acidification: terrestrial"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.72e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.17e-07}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.63e-08}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.38e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "climate change: freshwater ecosystems"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 7.65e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 7.65e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 7.65e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 7.65e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 7.65e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 7.65e-14}, {"name": "Chloroform", "categories": ["air"], "amount": 1.53e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.53e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 2.28e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-11}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.28e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.28e-11}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.18e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.18e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.48e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.48e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5.04e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.04e-10}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 7.18e-11}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 7.18e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 1.28e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.28e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 1.28e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 1.28e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 7.65e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.65e-14}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 7.36e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.36e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.36e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 7.36e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 7.36e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 1.79e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1.79e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1.79e-10}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 7.34e-12}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 7.34e-12}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 4.86e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.86e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.86e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 4.86e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 4.86e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 6.51e-10}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.51e-10}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.51e-10}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 6.51e-10}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 6.51e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 9.44e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.44e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 9.44e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 9.44e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 2.82e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.82e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 2.82e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 2.82e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.06e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.06e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.3e-13}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.3e-13}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1.58e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1.58e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1.58e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 5.47e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.47e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5.47e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5.47e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.61e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.61e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 1.18e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1.18e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1.18e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.42e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.42e-13}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8.83e-10}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8.83e-10}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 1.37e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1.37e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1.37e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 6.25e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.25e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.25e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 6.25e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 6.25e-11}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 2.75e-12}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.75e-12}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.75e-12}, {"name": "Methane, fossil", "categories": ["air"], "amount": 2.75e-12}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.75e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 2.6e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 2.6e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.6e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.15e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.15e-12}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.6e-12}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-12}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-12}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 2.6e-12}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.6e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.54e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.54e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5.62e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5.62e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5.62e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.09e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4.09e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 1.06e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 1.06e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 1.06e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 1.37e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-09}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 1.37e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.37e-09}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 7.26e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 2e-09}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2e-09}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 2e-09}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 2e-09}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 2e-09}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "climate change: terrestrial ecosystems"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2.8e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.8e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.8e-09}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 2.8e-09}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 2.8e-09}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 2.8e-09}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 2.8e-09}, {"name": "Chloroform", "categories": ["air"], "amount": 5.6e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 8.34e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.34e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.34e-07}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 8.34e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 8.34e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.34e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.34e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.4e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.4e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1.84e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1.84e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2.63e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2.63e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 4.68e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 4.68e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 4.68e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.8e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.8e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 2.69e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2.69e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2.69e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 6.57e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.57e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.57e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 6.57e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 6.57e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 2.69e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 2.69e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1.78e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.78e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.78e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 2.38e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 2.38e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 2.38e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 3.46e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 3.46e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 3.46e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1.03e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.03e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.03e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 3.86e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 3.86e-08}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.4e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.4e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 5.8e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 5.8e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 5.8e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5.9e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5.9e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 4.33e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.33e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.33e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 4.33e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 4.33e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.08e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.08e-08}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3.23e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 5.01e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.01e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 5.01e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 5.01e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.29e-06}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.01e-07}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-07}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-07}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.01e-07}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.01e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 9.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.52e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 4.2e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 4.2e-08}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 9.52e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 9.52e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 9.52e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.65e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.65e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 2.06e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 2.06e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 2.06e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.5e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.5e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 3.88e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.88e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.88e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3.88e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3.88e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 5.01e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.01e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01e-05}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 5.01e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 5.01e-05}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 2.66e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 7.3e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-05}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 7.3e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 7.3e-05}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "ecotoxicity: freshwater"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 3.63e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 5.81e-10}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.73e-15}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 2.86e-11}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-10}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.5e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.33e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.82e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.82e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09e-11}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.4e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.4e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09e-11}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1.27e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.4e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.51e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.97e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.7e-15}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.73e-11}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 4.27e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 4.27e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.07e-15}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.32e-12}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 2.57e-09}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.27e-14}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.38e-20}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.54e-11}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.77e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-11}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.8e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.96e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.19e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.19e-10}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.93e-14}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1e-10}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-13}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.05e-18}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.18e-10}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.21e-15}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.51e-12}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.03e-14}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 6.07e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 6.26e-13}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 1.96e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.54e-09}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.35e-18}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.17e-11}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1.64e-11}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1.64e-11}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.16e-13}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.06e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-09}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 7.92e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 5.28e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.89e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.88e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.02e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 7.64e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.75e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.43e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.74e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.47e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.33e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.37e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 9.34e-11}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.46e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 1.69e-08}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-08}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-08}, {"name": "Antimony ion", "categories": ["air"], "amount": 3.14e-08}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3.14e-08}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 6.4e-08}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 6.4e-08}, {"name": "Antimony ion", "categories": ["soil"], "amount": 6.4e-08}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.52e-28}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.36e-07}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.38e-09}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38e-09}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38e-09}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.46e-09}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.46e-09}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 8.72e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.64e-09}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.64e-09}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.64e-09}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1.49e-29}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.32e-08}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.44e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 5.93e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.25e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.18e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.62e-07}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.38e-10}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.89e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.09e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.09e-07}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.35e-10}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.35e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35e-10}, {"name": "Barium II", "categories": ["air"], "amount": 7.69e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 7.69e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8.16e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.18e-30}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water"], "amount": 1.94e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.59e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.59e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14e-09}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 9.99e-11}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.81e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.73e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.73e-10}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1.44e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.11e-06}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.17e-10}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.19e-14}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.03e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.2e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.78e-15}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.04e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.71e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 4.79e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.79e-11}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.06e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.34e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.34e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.42e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.35e-11}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 2.9e-15}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.98e-10}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 1.13e-09}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.05e-09}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.05e-09}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 4.71e-10}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 8.51e-10}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 8.51e-10}, {"name": "Beryllium II", "categories": ["soil"], "amount": 8.51e-10}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.99e-29}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.89e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.6e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.97e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.48e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 3.54e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.67e-08}, {"name": "Bifenthrin", "categories": ["air"], "amount": 2.8e-08}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.7e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.46e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.45e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.45e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.12e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.31e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.06e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 6.95e-09}, {"name": "Bromopropane", "categories": ["air"], "amount": 2.52e-14}, {"name": "Bromopropane", "categories": ["water"], "amount": 8.96e-11}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.16e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.16e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.24e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.12e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.52e-09}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 2.9e-11}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.33e-15}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.27e-11}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.04e-14}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.36e-11}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-09}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.08e-07}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 5.4e-10}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4e-10}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4e-10}, {"name": "Cadmium II", "categories": ["air"], "amount": 8.1e-10}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 8.1e-10}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.21e-10}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.42e-09}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.42e-09}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.42e-09}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3e-30}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.17e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.79e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-09}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.36e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.06e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.06e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-09}, {"name": "Carbendazim", "categories": ["air"], "amount": 4.88e-09}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.14e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.83e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.83e-08}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.43e-13}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.43e-13}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 6.9e-14}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.42e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.88e-10}, {"name": "Carboxin", "categories": ["air"], "amount": 2.92e-09}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.59e-09}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 9.59e-09}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Carboxin", "categories": ["water"], "amount": 1.81e-08}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 4.4e-19}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.59e-11}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.41e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 6.3e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 5e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 2.87e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 2.87e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 2.87e-06}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 6.75e-21}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.51e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.54e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.75e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 4.41e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.72e-10}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 3.2e-11}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1.15e-09}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.15e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 2.02e-19}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 6.26e-09}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.92e-14}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.13e-10}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.27e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 5.59e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 5.59e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.25e-13}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.24e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.84e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.1e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.68e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 4.68e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.29e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.24e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.02e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.02e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.35e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.6e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.4e-10}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-10}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-10}, {"name": "Chromium III", "categories": ["air"], "amount": 2.8e-10}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.8e-10}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 2.91e-10}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.93e-10}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.93e-10}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.93e-10}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 7.41e-31}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.6e-09}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 5.37e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.37e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.37e-09}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.08e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.08e-08}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.12e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.14e-29}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 6.02e-08}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.76e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.6e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.84e-10}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 1.43e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43e-10}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43e-10}, {"name": "Cobalt II", "categories": ["air"], "amount": 1.56e-10}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1.56e-10}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 9.73e-11}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.84e-10}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.84e-10}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.84e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.29e-30}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.4e-09}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 3.59e-09}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.59e-09}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59e-09}, {"name": "Copper ion", "categories": ["air"], "amount": 3.81e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.81e-09}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.29e-09}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.29e-09}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.29e-09}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.01e-29}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1.12e-07}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 6.36e-15}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.88e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.15e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 5.06e-17}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.8e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 8.95e-18}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.34e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.51e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.4e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 5.84e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.4e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.4e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 8.9e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.11e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.04e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.72e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Decanoic acid", "categories": ["water"], "amount": 2.11e-09}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 4.1e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 3.72e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 7.76e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.39e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.63e-11}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.39e-10}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.14e-08}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.06e-11}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.93e-09}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-10}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.62e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 9.42e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.19e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.97e-11}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.63e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.38e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.38e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 6.55e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 4.01e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.96e-10}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.11e-10}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 7.06e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.09e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.09e-15}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 3.34e-15}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.21e-10}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.5e-13}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.5e-13}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.57e-19}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.88e-12}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.92e-09}, {"name": "Difenoconazole", "categories": ["air"], "amount": 1.49e-08}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.72e-09}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 5.46e-08}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 1.62e-07}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1.62e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.08e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.39e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.38e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.38e-06}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.08e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 2.72e-14}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.33e-10}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 4.26e-10}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.34e-09}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.97e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.69e-08}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 6.14e-10}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.52e-14}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.77e-10}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.18e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.21e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1.23e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1.16e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 2.59e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 9.03e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 9.03e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 9.03e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 3.46e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.21e-05}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 2.72e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-10}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.18e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.36e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.05e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.36e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.36e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.38e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.76e-09}, {"name": "Diuron", "categories": ["air"], "amount": 2.45e-08}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.05e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.82e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.55e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.56e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.5e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.8e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.75e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.95e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.24e-12}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 9.24e-12}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 5.09e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49e-09}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.74e-09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 2.85e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 5.82e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.82e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 6.95e-07}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air"], "amount": 3.92e-13}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-13}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.14e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.95e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.89e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 3.85e-11}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 3.59e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.47e-09}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.56e-15}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.37e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.26e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.28e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.28e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.55e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.11e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.02e-14}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.14e-11}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air"], "amount": 2.81e-11}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.81e-11}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 1.58e-15}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water"], "amount": 1.4e-10}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 5.71e-11}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 5.71e-11}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 3.43e-18}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.96e-10}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.23e-13}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 3.35e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.87e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.51e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 5.25e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.65e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.18e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 6.95e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.2e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.03e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.44e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.43e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.56e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.21e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.11e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.11e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.77e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.01e-07}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.3e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.17e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.57e-06}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 5.55e-09}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-09}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 6.47e-09}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 4.85e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.91e-07}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.91e-07}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-08}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2.84e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8.46e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 6.05e-10}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 8.17e-12}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.95e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.85e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.14e-10}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.15e-08}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 3.25e-14}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.31e-10}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.07e-19}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.93e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.27e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.93e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air"], "amount": 9.02e-16}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 9.02e-16}, {"name": "Furfural", "categories": ["air"], "amount": 4.88e-12}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.44e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 4.09e-10}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.66e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1.98e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.23e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.23e-08}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air"], "amount": 4.54e-18}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 4.54e-18}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 7.5e-09}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.13e-18}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.81e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.04e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.21e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.57e-11}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.49e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.04e-15}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 4.64e-15}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.08e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.52e-13}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.57e-09}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.32e-09}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.24e-09}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.07e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.83e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.37e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.37e-09}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.98e-09}, {"name": "Indoxacarb", "categories": ["air"], "amount": 8.21e-09}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2.88e-09}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2.36e-08}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.43e-09}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air"], "amount": 1.19e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.19e-17}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air"], "amount": 2.6e-11}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 2.6e-11}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 7.25e-15}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water"], "amount": 1.22e-10}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.38e-09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.22e-08}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.79e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 2.94e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.35e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.35e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.35e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.03e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.01e-09}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 1.16e-11}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-11}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-11}, {"name": "Lead II", "categories": ["air"], "amount": 9.58e-12}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 9.58e-12}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.05e-12}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 5.13e-12}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 5.13e-12}, {"name": "Lead II", "categories": ["soil"], "amount": 5.13e-12}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.59e-32}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water"], "amount": 4.21e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.74e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.71e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.45e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-11}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.21e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.14e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.14e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.32e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.17e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.17e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.43e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.03e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.14e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-09}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.01e-08}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.41e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.94e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.42e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.42e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.61e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.34e-10}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 6.27e-16}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 9.33e-10}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.33e-10}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.33e-10}, {"name": "Mercury II", "categories": ["air"], "amount": 7e-10}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 7e-10}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.38e-10}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.99e-10}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.99e-10}, {"name": "Mercury II", "categories": ["soil"], "amount": 1.99e-10}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.71e-30}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 3.46e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.03e-10}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 1.18e-10}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 4.18e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.38e-09}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2.32e-09}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2.32e-09}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 4.74e-11}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.51e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.78e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 8.99e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.91e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.26e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.03e-11}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.03e-14}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.01e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3.71e-10}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.74e-15}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.42e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.71e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.95e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35e-09}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.98e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.46e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.58e-10}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.85e-09}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.5e-08}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 7.69e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 5.46e-08}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 1.68e-07}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 1.68e-07}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.64e-13}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.64e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.59e-14}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.96e-11}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 2.54e-13}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.37e-12}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air"], "amount": 5.42e-12}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 5.42e-12}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.4e-09}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.29e-15}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.03e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.51e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.02e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.54e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.06e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.03e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 5.37e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.62e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.08e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.52e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.52e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.71e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.24e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 2.52e-11}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-11}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-11}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 5.03e-11}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 5.03e-11}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 5.23e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.07e-10}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.07e-10}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.07e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.14e-31}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.85e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 9.34e-10}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 9.11e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.16e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 9.47e-10}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.71e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 1.19e-09}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-09}, {"name": "Nickel II", "categories": ["air"], "amount": 1.5e-09}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.5e-09}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.14e-09}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.2e-09}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.2e-09}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.2e-09}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.19e-29}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 3.2e-08}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.68e-11}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 2.28e-10}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 8.86e-10}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.3e-09}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.3e-09}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 9.4e-13}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.28e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.27e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.08e-11}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 8.95e-10}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.46e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.06e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 2.29e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 6.47e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.17e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.37e-12}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.04e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.94e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.65e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.67e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.27e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.81e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.83e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.22e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.22e-07}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air"], "amount": 4.37e-15}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.37e-15}, {"name": "Pentane", "categories": ["water"], "amount": 4.99e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.24e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.53e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.99e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 9.47e-11}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.96e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.4e-10}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 8.58e-15}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.74e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 9.42e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 9.42e-11}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.33e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.33e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.84e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.14e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.17e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.31e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.21e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 3.75e-13}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.09e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.59e-13}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.81e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 2.65e-14}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 4.23e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.02e-15}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.65e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.04e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.67e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1.36e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1.36e-10}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.21e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 9.19e-09}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 3.76e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 2.98e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 9.74e-09}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.24e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4e-11}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.1e-11}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air"], "amount": 1.22e-13}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.22e-13}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 3.55e-14}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water"], "amount": 7.1e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 9.98e-10}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air"], "amount": 8.13e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 8.13e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.67e-15}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.54e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.48e-09}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.3e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.19e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.33e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.1e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.21e-08}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 9.19e-18}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09e-10}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air"], "amount": 1.51e-11}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 1.51e-11}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.29e-15}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water"], "amount": 8.05e-11}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 4.53e-13}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air"], "amount": 7.69e-13}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 7.69e-13}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.49e-13}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.9e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.73e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 8.18e-10}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.26e-06}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.7e-07}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.49e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5.6e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.65e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 3.12e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.97e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.63e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.88e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.88e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.26e-10}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.1e-08}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2.69e-09}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 4.68e-10}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68e-10}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68e-10}, {"name": "Selenium IV", "categories": ["air"], "amount": 6.77e-10}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 6.77e-10}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 5.86e-10}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.15e-09}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.15e-09}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.15e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.16e-30}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.07e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.86e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.15e-09}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 1.15e-08}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15e-08}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-08}, {"name": "Silver I", "categories": ["air"], "amount": 1.33e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 1.33e-08}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 9.1e-09}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.74e-08}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.74e-08}, {"name": "Silver I", "categories": ["soil"], "amount": 1.74e-08}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 6.14e-29}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water"], "amount": 3.37e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-09}, {"name": "Simazine", "categories": ["air"], "amount": 8.25e-09}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.93e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.3e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.01e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.01e-08}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.1e-12}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 2.89e-35}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water"], "amount": 5.71e-12}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.68e-15}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75e-10}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.5e-08}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 9.93e-08}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.98e-10}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.98e-10}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.06e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.06e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 9.94e-08}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-09}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.27e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.07e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.81e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7e-09}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-08}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.02e-08}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.72e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.72e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.72e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8e-08}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.59e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.51e-08}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 4.76e-07}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 1.63e-06}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.3e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.05e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 2.72e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 9.7e-14}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.52e-10}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 6.28e-09}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.28e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.28e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 1.45e-08}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1.45e-08}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.52e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.91e-29}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 3.68e-08}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 3.74e-10}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-10}, {"name": "Thiabendazole", "categories": ["air"], "amount": 9.79e-10}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.12e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.59e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 8.57e-10}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 6.48e-18}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water"], "amount": 6.28e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 8.78e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.5e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.02e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-10}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.02e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.22e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air"], "amount": 4.11e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.87e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.25e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.25e-07}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 9.24e-11}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.24e-11}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.24e-11}, {"name": "Tin ion", "categories": ["air"], "amount": 7.88e-11}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 7.88e-11}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 2.8e-11}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 4.84e-11}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 4.84e-11}, {"name": "Tin ion", "categories": ["soil"], "amount": 4.84e-11}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 5.36e-31}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 3.32e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 3.28e-15}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.67e-11}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1.07e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1.07e-13}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 4.93e-14}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.4e-10}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 2.54e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.19e-10}, {"name": "Triallate", "categories": ["air"], "amount": 1.14e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.15e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.04e-08}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 5.15e-08}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.34e-07}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.05e-08}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.13e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.52e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.44e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 7.67e-15}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.18e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.67e-09}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 3.41e-20}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.23e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.36e-09}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 3.24e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 1.76e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 9.83e-06}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.54e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.54e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-11}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.05e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.51e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.46e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.46e-08}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.69e-10}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 3.99e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.17e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.18e-20}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.22e-11}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.12e-11}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 4.58e-09}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.58e-09}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.58e-09}, {"name": "Vanadium V", "categories": ["air"], "amount": 5.72e-09}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 5.72e-09}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4.28e-09}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 8.28e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 8.28e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 8.28e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 5.7e-29}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.24e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 3.79e-10}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 2.18e-15}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 4.37e-09}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.37e-09}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.37e-09}, {"name": "Zinc II", "categories": ["air"], "amount": 4.12e-09}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4.12e-09}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.96e-09}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 3.57e-09}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 3.57e-09}, {"name": "Zinc II", "categories": ["soil"], "amount": 3.57e-09}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 5.19e-29}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.46e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.26e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.67e-08}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.06e-15}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.42e-10}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 7.38e-15}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.65e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 8.94e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.94e-15}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 2.51e-15}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 4.65e-12}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1.68e-10}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1.68e-10}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 3.21e-14}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water"], "amount": 7.78e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 9.62e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "ecotoxicity: marine"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 8.73e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.48e-11}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.69e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water"], "amount": 1.32e-13}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52e-11}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.09e-12}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.52e-11}, {"name": "2,4-D", "categories": ["water"], "amount": 1.52e-11}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46e-12}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 9.27e-12}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 9.27e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 6.63e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 9.27e-12}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 6.33e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.48e-11}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.48e-11}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 6.47e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.38e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.38e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 5.67e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.51e-13}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.67e-14}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.3e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.3e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.05e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.14e-14}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.49e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.3e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.73e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.73e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.35e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.63e-13}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.46e-13}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.1e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.1e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.22e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6.61e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68e-12}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 7.35e-13}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.15e-12}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 5.17e-12}, {"name": "Acephate", "categories": ["water"], "amount": 5.17e-12}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 5.38e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 7.52e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 9.91e-13}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-14}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.08e-15}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.77e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water"], "amount": 2.5e-13}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air"], "amount": 6.25e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 6.25e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 9.39e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water"], "amount": 5.28e-14}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.07e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.51e-13}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 1.59e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 8.95e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.64e-11}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["water"], "amount": 3.41e-10}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water"], "amount": 1.95e-13}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air"], "amount": 3.57e-13}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 3.57e-13}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.67e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.67e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 2.67e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 5.46e-12}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.09e-10}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2.05e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-12}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.47e-10}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.85e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Allyl chloride", "categories": ["water"], "amount": 5.74e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 5.21e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 3.19e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 1.71e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 3.08e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.97e-10}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air"], "amount": 1.12e-13}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.12e-13}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.46e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water"], "amount": 2.7e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 4.88e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.22e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water"], "amount": 3.04e-09}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 2.06e-12}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 5.13e-08}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "Antimony ion", "categories": ["air"], "amount": 3.79e-08}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3.79e-08}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 4.09e-09}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 8.01e-09}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 8.01e-09}, {"name": "Antimony ion", "categories": ["soil"], "amount": 8.01e-09}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 4.83e-08}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 4.83e-08}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.05e-07}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 4.83e-08}, {"name": "Antimony ion", "categories": ["water"], "amount": 4.83e-08}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.05e-08}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05e-08}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05e-08}, {"name": "Arsenic ion", "categories": ["air"], "amount": 7.34e-09}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 7.34e-09}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.1e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 2.03e-10}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 2.03e-10}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 2.03e-10}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 9.06e-09}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 9.06e-09}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.23e-08}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 9.06e-09}, {"name": "Arsenic ion", "categories": ["water"], "amount": 9.06e-09}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.63e-12}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.3e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.44e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Atrazine", "categories": ["water"], "amount": 1.56e-09}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.94e-12}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 1.5e-11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.37e-09}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3e-11}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.38e-10}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.36e-09}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.36e-09}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.52e-10}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-10}, {"name": "Barium II", "categories": ["air"], "amount": 3.56e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 3.56e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.71e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 3.64e-10}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 3.64e-10}, {"name": "Barium II", "categories": ["soil"], "amount": 3.64e-10}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 4.12e-10}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 4.12e-10}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 5.89e-10}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 4.12e-10}, {"name": "Barium II", "categories": ["water"], "amount": 4.12e-10}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.65e-13}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 3.11e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 4.09e-12}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 1.38e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.51e-12}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 6.1e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.59e-08}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.15e-12}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.34e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water"], "amount": 5.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.73e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 3.96e-12}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.79e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.79e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 5.91e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.16e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.26e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 2.3e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.83e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.83e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 1.28e-09}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 1.28e-09}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 1.23e-13}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.52e-13}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.26e-14}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.38e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 7.34e-13}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 2.49e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49e-08}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49e-08}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.73e-08}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.73e-08}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 5.41e-11}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 9.51e-11}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 9.51e-11}, {"name": "Beryllium II", "categories": ["soil"], "amount": 9.51e-11}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 7.56e-09}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 7.56e-09}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.27e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 7.56e-09}, {"name": "Beryllium II", "categories": ["water"], "amount": 7.56e-09}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.24e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 6.3e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4.36e-07}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4.36e-07}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.34e-11}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.65e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.54e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.88e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 4.59e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2.62e-07}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2.62e-07}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.61e-10}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 7.79e-12}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 1.73e-13}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 2.01e-10}, {"name": "Bromopropane", "categories": ["air"], "amount": 1.45e-13}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.71e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.65e-10}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.7e-10}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.7e-10}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.41e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.13e-11}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 5.24e-13}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.1e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water"], "amount": 5.85e-14}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 1.9e-12}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.1e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water"], "amount": 3.2e-13}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.77e-10}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 1.16e-09}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 9.57e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.57e-09}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.57e-09}, {"name": "Cadmium II", "categories": ["air"], "amount": 6.67e-09}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 6.67e-09}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.47e-11}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.43e-10}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.43e-10}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.43e-10}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2.06e-09}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 2.06e-09}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.05e-08}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2.06e-09}, {"name": "Cadmium II", "categories": ["water"], "amount": 2.06e-09}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-10}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 5.38e-11}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.74e-10}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.74e-10}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36e-10}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.18e-10}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.62e-11}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.53e-10}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.67e-10}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.67e-10}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.1e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.77e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.44e-11}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.59e-11}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-10}, {"name": "Carboxin", "categories": ["air"], "amount": 1.06e-10}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.33e-11}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 8.02e-11}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.51e-10}, {"name": "Carboxin", "categories": ["water"], "amount": 1.51e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.88e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.4e-13}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.89e-09}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.46e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 8.34e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 8.34e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 8.34e-08}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water"], "amount": 5.42e-10}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-11}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.34e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.08e-10}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.11e-12}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.68e-13}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 3.39e-11}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 3.39e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 1.01e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 2.25e-11}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.85e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 4.92e-12}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.07e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1.3e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.26e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 6.01e-12}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.95e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.91e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 8.48e-09}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.13e-08}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.03e-08}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.03e-08}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.1e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.53e-08}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2.81e-07}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2.81e-07}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 5.04e-10}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 9.52e-11}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 8.39e-12}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.49e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-09}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 1.05e-09}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 1.05e-09}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 2.9e-11}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.7e-11}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.7e-11}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.7e-11}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.59e-10}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 2.59e-10}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.15e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.59e-10}, {"name": "Chromium III", "categories": ["water"], "amount": 2.59e-10}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 1.67e-08}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67e-08}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67e-08}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.26e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.26e-08}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.64e-09}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 3.25e-09}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 3.25e-09}, {"name": "Chromium VI", "categories": ["soil"], "amount": 3.25e-09}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.37e-08}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 1.37e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.38e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.37e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.37e-08}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.02e-10}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.29e-12}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 3.43e-12}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.06e-12}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 2.85e-09}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-09}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-09}, {"name": "Cobalt II", "categories": ["air"], "amount": 1.98e-09}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1.98e-09}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1.07e-11}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.97e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.97e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.97e-11}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 8.24e-10}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 8.24e-10}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.12e-09}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 8.24e-10}, {"name": "Cobalt II", "categories": ["water"], "amount": 8.24e-10}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 7.69e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.69e-08}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.69e-08}, {"name": "Copper ion", "categories": ["air"], "amount": 5.33e-08}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 5.33e-08}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.4e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.4e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.4e-10}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.03e-08}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 2.03e-08}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.65e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.03e-08}, {"name": "Copper ion", "categories": ["water"], "amount": 2.03e-08}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air"], "amount": 6.61e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 6.61e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.48e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water"], "amount": 1.1e-12}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.49e-10}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.6e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.91e-14}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.27e-17}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.63e-13}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.58e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 5.68e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.87e-14}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 2.43e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 1.3e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.75e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.12e-10}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.15e-12}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 5.21e-11}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.34e-13}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-11}, {"name": "Decanoic acid", "categories": ["water"], "amount": 4.49e-12}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 1.19e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 8.94e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 8.47e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.54e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 8.19e-13}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 4.74e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.32e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5.5e-11}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-11}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.91e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.36e-11}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.36e-11}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 3.96e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.62e-10}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-12}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 4.71e-13}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 3.66e-12}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 3.66e-12}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.28e-10}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.87e-10}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 8.19e-12}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.13e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 2.35e-13}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 6.36e-12}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.39e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.39e-15}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air"], "amount": 1.88e-12}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.88e-12}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.21e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.16e-12}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.53e-15}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.53e-15}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.82e-14}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4e-15}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-09}, {"name": "Difenoconazole", "categories": ["air"], "amount": 2.27e-09}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2.24e-10}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 1.59e-09}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 4.71e-09}, {"name": "Difenoconazole", "categories": ["water"], "amount": 4.71e-09}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.74e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.15e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 4.03e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.8e-08}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.8e-08}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.71e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 9.13e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 6.62e-13}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.11e-11}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 4.03e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.74e-11}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.43e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 9.68e-11}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 7.7e-12}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air"], "amount": 4e-12}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 4e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.1e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 2.44e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 6.48e-13}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 6.91e-11}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 4.29e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 3.72e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 3.72e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1.79e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1.97e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1.97e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1.97e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.28e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 1.28e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.31e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.28e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.28e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 5.94e-13}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 5.32e-11}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-11}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3.32e-11}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 7.82e-12}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 5.06e-11}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.14e-10}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 4.96e-11}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.99e-11}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-09}, {"name": "Diuron", "categories": ["air"], "amount": 1.08e-09}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 8.82e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.7e-10}, {"name": "Diuron", "categories": ["water"], "amount": 1.29e-09}, {"name": "Dodecanol", "categories": ["water"], "amount": 9.08e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.18e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.06e-12}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 4.7e-13}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2.75e-12}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2.03e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 4.15e-13}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.37e-11}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4e-10}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.45e-10}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.43e-10}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 8.35e-10}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 1.69e-09}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1.69e-09}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.88e-07}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.32e-08}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.19e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.59e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.59e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.86e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.86e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 6.47e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.94e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.15e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 8.08e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 9.46e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water"], "amount": 2.36e-14}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-12}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.72e-13}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.91e-12}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.91e-12}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 7.22e-12}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.03e-12}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 2.75e-13}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.75e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 9.26e-13}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 2.77e-13}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air"], "amount": 8.7e-13}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 8.7e-13}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.27e-12}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water"], "amount": 5.04e-13}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.56e-12}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 1.56e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1.06e-12}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.4e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.87e-12}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 4.03e-11}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 3.79e-11}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.28e-09}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 4.39e-12}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.09e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.8200000000000003e-11}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 6.62e-11}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.48e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.36e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.33e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.38e-11}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.56e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.71e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.71e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.89e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.48e-08}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.51e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 4.56e-08}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 1.71e-09}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-09}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.34e-09}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 8.13e-11}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 6.09e-10}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 2.4e-09}, {"name": "Fludioxonil", "categories": ["water"], "amount": 2.4e-09}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.31e-09}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.46e-10}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.07e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.53e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 6.08e-09}, {"name": "Fluorene", "categories": ["air"], "amount": 1.72e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 3.45e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 9.7e-11}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.42e-12}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.07e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.56e-10}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.46e-10}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.62e-12}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.62e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.09e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.48e-12}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.9e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water"], "amount": 1.26e-13}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 2.49e-12}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.17e-12}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air"], "amount": 2.67e-15}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.67e-15}, {"name": "Furfural", "categories": ["air"], "amount": 8.15e-13}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 7.63e-13}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.82e-11}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.53e-11}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 7.63e-13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.07e-11}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.69e-12}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 8.77e-13}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 5.97e-12}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 5.97e-12}, {"name": "Glyphosate", "categories": ["water"], "amount": 5.97e-12}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 3.1e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.47e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.47e-10}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air"], "amount": 1.05e-17}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.05e-17}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 8.77e-11}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.6e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water"], "amount": 1.7e-13}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 2.54e-11}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.94e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.39e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.06e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.38e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.8e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 4.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 4.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.11e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 3.89e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 1.56e-14}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.98e-11}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 5.41e-11}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5.81e-11}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-11}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.85e-11}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.05e-11}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 7.98e-11}, {"name": "Imidacloprid", "categories": ["water"], "amount": 7.98e-11}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-09}, {"name": "Indoxacarb", "categories": ["air"], "amount": 2.9e-09}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 8.8e-11}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 6.91e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 3.55e-11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.08e-11}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air"], "amount": 2.94e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-17}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air"], "amount": 6.76e-13}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 6.76e-13}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.97e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water"], "amount": 4.39e-13}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 4.26e-11}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.87e-10}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.98e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5.81e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 1.13e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 1.13e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 1.13e-06}, {"name": "Lauric acid", "categories": ["air"], "amount": 1.94e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 2.15e-12}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 4.63e-10}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.63e-10}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-10}, {"name": "Lead II", "categories": ["air"], "amount": 3.21e-10}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 3.21e-10}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 2.5e-13}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 4.09e-13}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 4.09e-13}, {"name": "Lead II", "categories": ["soil"], "amount": 4.09e-13}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 6.23e-11}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 6.23e-11}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 6.23e-11}, {"name": "Lead II", "categories": ["water"], "amount": 6.23e-11}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.14e-12}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.37e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 8.13e-12}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.61e-12}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 4.33e-13}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.08e-12}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.08e-12}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-11}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.1e-12}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 3.49e-11}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 3.49e-11}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.15e-11}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 7.31e-13}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 7.68e-14}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.08e-10}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.94e-10}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.19e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.29e-10}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.53e-10}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.53e-10}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.36e-11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 6.97e-12}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 8.91e-13}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.33e-18}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 3.69e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-08}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-08}, {"name": "Mercury II", "categories": ["air"], "amount": 2.52e-08}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 2.52e-08}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.21e-11}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.69e-11}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.69e-11}, {"name": "Mercury II", "categories": ["soil"], "amount": 1.69e-11}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 5.4e-09}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 5.4e-09}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.44e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 5.4e-09}, {"name": "Mercury II", "categories": ["water"], "amount": 5.4e-09}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.75e-12}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 1.55e-11}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 1.29e-11}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.05e-12}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.16e-11}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 1.94e-11}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1.94e-11}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 6.97e-13}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5.6e-11}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 5.04e-13}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.9e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 6.52e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 3.23e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.55e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.55e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.23e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.23e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 8.7e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.86e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.86e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5.64e-11}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 7.49e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water"], "amount": 2.34e-14}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 4.81e-11}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-10}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 2.15e-11}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.19e-10}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Methomyl", "categories": ["water"], "amount": 1.96e-10}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 1.82e-11}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-09}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.34e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 9.64e-11}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.85e-10}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 2.11e-09}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.11e-09}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air"], "amount": 8.79e-13}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.79e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 1.67e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water"], "amount": 8.04e-13}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.31e-12}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 4.14e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.04e-12}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.58e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 7.58e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.03e-14}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.17e-13}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.17e-13}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.02e-11}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.28e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water"], "amount": 7.29e-13}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-10}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.4e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.28e-09}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.28e-09}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.28e-09}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.35e-10}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 8.88e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.63e-10}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-08}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 3.05e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.53e-09}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.61e-08}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 4.42e-08}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 4.42e-08}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.77e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.6e-12}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1.37e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-10}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 9.93e-11}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 9.93e-11}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 6.92e-12}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.37e-11}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.37e-11}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.37e-11}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 5.87e-11}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 5.87e-11}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.87e-10}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 5.87e-11}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.87e-11}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 7.82e-12}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 7.19e-13}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 8.98e-12}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 7.74e-12}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 8.13e-10}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.15e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.15e-11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 7.93e-12}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.23e-10}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 1.58e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-08}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-08}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1e-08}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.41e-10}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.41e-10}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.41e-10}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6e-09}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 6e-09}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.37e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6e-09}, {"name": "Nickel II", "categories": ["water"], "amount": 6e-09}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-11}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.16e-11}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 2.04e-12}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.63e-11}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.63e-11}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.24e-11}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-14}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.35e-11}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 9.69e-12}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 3.72e-13}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5.1e-11}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 7.59e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 7.89e-11}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 3.93e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.99e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.99e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.67e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.16e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.11e-10}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7.51e-14}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.59e-10}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.06e-12}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.58e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.78e-11}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air"], "amount": 1.2e-14}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.2e-14}, {"name": "Pentane", "categories": ["water"], "amount": 8.58e-12}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.92e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 3.01e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.6e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.72e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.19e-12}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air"], "amount": 8.91e-13}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.91e-13}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.16e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water"], "amount": 2.49e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.14e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.22e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.22e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 9.12e-10}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 4.91e-11}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.04e-10}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.17e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.26e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.05e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 4.39e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.97e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.59e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.4e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 3.38e-12}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 6.31e-12}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.92e-11}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.98e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.44e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 1.83e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.83e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1.76e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1.76e-09}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.13e-09}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.72e-10}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.69e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 4.1e-09}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.25e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.89e-11}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 1.75e-13}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air"], "amount": 2.52e-13}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.52e-13}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 5.18e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water"], "amount": 5.62e-13}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.26e-11}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air"], "amount": 5.95e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.95e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.99e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water"], "amount": 5.78e-14}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 8.13e-11}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 7.92e-12}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 5.08e-13}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-10}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.94e-11}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.38e-10}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.53e-10}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.53e-10}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.53e-10}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.32e-13}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air"], "amount": 4.83e-13}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.83e-13}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.3e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water"], "amount": 2.9e-13}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 1.05e-15}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.15e-12}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.15e-12}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 3.86e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.94e-12}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 4.88e-11}, {"name": "Pyrene", "categories": ["air"], "amount": 2.25e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.64e-08}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.49e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.09e-13}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.95e-11}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 3.96e-12}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.97e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.39e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.57e-10}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.45e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2.38e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2.38e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.05e-12}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 5.99e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.41e-10}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.38e-11}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 5.23e-09}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.23e-09}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-09}, {"name": "Selenium IV", "categories": ["air"], "amount": 3.66e-09}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 3.66e-09}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 6.67e-11}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.27e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.27e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.27e-10}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 2.01e-09}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 2.01e-09}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.12e-08}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 2.01e-09}, {"name": "Selenium IV", "categories": ["water"], "amount": 2.01e-09}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.56e-12}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 4.31e-11}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 2.89e-07}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.89e-07}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.89e-07}, {"name": "Silver I", "categories": ["air"], "amount": 2e-07}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 8.92e-10}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.66e-09}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.66e-09}, {"name": "Silver I", "categories": ["soil"], "amount": 1.66e-09}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 5.74e-08}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 5.74e-08}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 6.22e-07}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 5.74e-08}, {"name": "Silver I", "categories": ["water"], "amount": 5.74e-08}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-10}, {"name": "Simazine", "categories": ["air"], "amount": 3.63e-10}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.96e-11}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.88e-10}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 5.02e-10}, {"name": "Simazine", "categories": ["water"], "amount": 5.02e-10}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air"], "amount": 2.65e-14}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2.65e-14}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 8.56e-14}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water"], "amount": 1.21e-14}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.34e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air"], "amount": 9.96e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.96e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.5e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water"], "amount": 7.56e-13}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.09e-10}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 5.56e-12}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 5.56e-12}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 5.23e-13}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.81e-12}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 3.81e-12}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.34e-10}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-10}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.6e-11}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.14e-10}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.53e-10}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-09}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 2.01e-09}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.32e-09}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.27e-09}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.27e-09}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.66e-08}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2.35e-08}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.89e-09}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 4.74e-08}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 7.77e-12}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.68e-10}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.8e-11}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.06e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.84e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.84e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.5e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.26e-11}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 8.18e-09}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.18e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.18e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 7.74e-09}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 7.74e-09}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 3.16e-09}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 6.75e-09}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 6.75e-09}, {"name": "Thallium I", "categories": ["soil"], "amount": 6.75e-09}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 8.51e-09}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 8.51e-09}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.44e-08}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 8.51e-09}, {"name": "Thallium I", "categories": ["water"], "amount": 8.51e-09}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 6.05e-11}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.05e-11}, {"name": "Thiabendazole", "categories": ["air"], "amount": 5.14e-11}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.29e-11}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.76e-11}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.76e-11}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 7.16e-12}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.72e-11}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.02e-10}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water"], "amount": 2.26e-11}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-10}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.23e-10}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.96e-10}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.96e-10}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.55e-11}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 6.88e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 9.06e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.31e-10}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.31e-10}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.6e-09}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-09}, {"name": "Thiram", "categories": ["air"], "amount": 9.6e-10}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.45e-11}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.16e-10}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.73e-09}, {"name": "Thiram", "categories": ["water"], "amount": 2.73e-09}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 2.68e-09}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.68e-09}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.68e-09}, {"name": "Tin ion", "categories": ["air"], "amount": 1.85e-09}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.85e-09}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 2.77e-12}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 4.66e-12}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 4.66e-12}, {"name": "Tin ion", "categories": ["soil"], "amount": 4.66e-12}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 5.7e-10}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 5.7e-10}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 5.78e-09}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 5.7e-10}, {"name": "Tin ion", "categories": ["water"], "amount": 5.7e-10}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air"], "amount": 3.47e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.47e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 8.99e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water"], "amount": 2.9e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.27e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.27e-13}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 3.49e-11}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.94e-12}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.48e-10}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.45e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.51e-11}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 2.33e-10}, {"name": "Triallate", "categories": ["air"], "amount": 1.05e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.43e-11}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.13e-10}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.66e-09}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 9.93e-09}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 9.31e-09}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.01e-09}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.42e-08}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.38e-12}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 6.82e-11}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.14e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.71e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.67e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.35e-11}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 3.54e-09}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.32e-15}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47e-07}, {"name": "Triflumuron", "categories": ["air"], "amount": 2.5e-07}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 5.36e-08}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 2.87e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 4.48e-07}, {"name": "Triflumuron", "categories": ["water"], "amount": 4.48e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.45e-11}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.03e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.84e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.84e-10}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.16e-11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.59e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water"], "amount": 7.98e-14}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 5.95e-13}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 2.29e-08}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29e-08}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-08}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.62e-08}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.62e-08}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 5.57e-10}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.05e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.05e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.05e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 2.65e-08}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 2.65e-08}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 4.77e-08}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 2.65e-08}, {"name": "Vanadium V", "categories": ["water"], "amount": 2.65e-08}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.91e-12}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air"], "amount": 1.73e-14}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.73e-14}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.78e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water"], "amount": 3.07e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 1.74e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74e-08}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-08}, {"name": "Zinc II", "categories": ["air"], "amount": 1.22e-08}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1.22e-08}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.53e-10}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.5e-10}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.5e-10}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.5e-10}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 3.14e-08}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 3.14e-08}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.59e-08}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 3.14e-08}, {"name": "Zinc II", "categories": ["water"], "amount": 3.14e-08}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.9e-11}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.08e-10}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.11e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 9.34e-13}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.87e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.87e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.32e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.04e-12}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.22e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.22e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 4.23e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 4.35e-14}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air"], "amount": 4.68e-12}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 4.68e-12}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 1.26e-11}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 2.8e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 6.06e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "ecotoxicity: terrestrial"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.14e-12}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.01e-11}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.07e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water"], "amount": 7.92e-12}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.74e-13}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.35e-14}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 6.16e-15}, {"name": "2,4-D", "categories": ["water"], "amount": 6.16e-15}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.1e-18}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 5.32e-20}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 3.8e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.1e-18}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 5.42e-13}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 5.42e-13}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 2.55e-12}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.75e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.1e-12}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.15e-14}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.21e-14}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.14e-13}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.9e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 8.21e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.96e-18}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.1e-15}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.69e-12}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 7.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.84e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.27e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 2.66e-14}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.6e-15}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 9.01e-16}, {"name": "Acephate", "categories": ["water"], "amount": 9.01e-16}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.44e-13}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 3.86e-12}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.04e-11}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.72e-13}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.86e-16}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water"], "amount": 7.63e-14}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 5.07e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water"], "amount": 2.69e-13}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 6.94e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 3.48e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 4.22e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 1.78e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-09}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.45e-16}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water"], "amount": 4.85e-14}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.21e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.21e-10}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 9.88e-12}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.57e-11}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.84e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 8.32e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.32e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.32e-09}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 1.66e-09}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.97e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 7.19e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.3e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.35e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 4.14e-08}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 6.71e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 9.75e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.62e-11}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 4.67e-13}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water"], "amount": 7.09e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 3.97e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.28e-10}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water"], "amount": 8.11e-10}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 7.09e-06}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.09e-06}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.09e-06}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.9100000000000004e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.9100000000000004e-06}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.86e-26}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 3.65e-26}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 3.65e-26}, {"name": "Antimony ion", "categories": ["soil"], "amount": 3.65e-26}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 1.92e-25}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 1.92e-25}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 6.6e-26}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1.92e-25}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.92e-25}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.52e-06}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.52e-06}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52e-06}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.05e-06}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.05e-06}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.77e-28}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.06e-27}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.06e-27}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.06e-27}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.13e-26}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 4.13e-26}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1.63e-26}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.13e-26}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.13e-26}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.98e-13}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.59e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 1.64e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water"], "amount": 1.15e-10}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 6.3e-13}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 7.63e-16}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.98e-09}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 5.77e-16}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.64e-15}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.56e-15}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.95e-16}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.95e-16}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.73e-08}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.73e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.73e-08}, {"name": "Barium II", "categories": ["air"], "amount": 2.58e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.58e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 6.35e-28}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.36e-27}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.36e-27}, {"name": "Barium II", "categories": ["soil"], "amount": 1.36e-27}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.52e-27}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.52e-27}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.42e-28}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.52e-27}, {"name": "Barium II", "categories": ["water"], "amount": 1.52e-27}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.96e-18}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 5.88e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.19e-15}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 7.42e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.28e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.08e-13}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.08e-13}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 3.94e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 2.13e-09}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 6.63e-12}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 4.87e-13}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water"], "amount": 9.79e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.05e-11}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.47e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.85e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 5.52e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 8.95e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.95e-10}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 8.7e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 5.07e-12}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 5.07e-12}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 9.12e-14}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 2.15e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.06e-14}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 5.44e-13}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 5.42e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.42e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.42e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 3.75e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 3.75e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 6.2e-28}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.09e-27}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.09e-27}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.09e-27}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 7.55e-26}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 7.55e-26}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.48e-26}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 7.55e-26}, {"name": "Beryllium II", "categories": ["water"], "amount": 7.55e-26}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.14e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 3.51e-09}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 3.51e-09}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.12e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.49e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.53e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 2.59e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 9.13e-09}, {"name": "Bifenthrin", "categories": ["water"], "amount": 9.13e-09}, {"name": "Bisphenol A", "categories": ["water"], "amount": 7.3e-14}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.14e-16}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 8.57e-18}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.09e-13}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.79e-13}, {"name": "Bromopropane", "categories": ["water"], "amount": 8.91e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.31e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 3.77e-14}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 7.59e-15}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 7.59e-15}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 9.83e-12}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 1.71e-14}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water"], "amount": 2.12e-13}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 3.66e-13}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.01e-13}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water"], "amount": 4.2e-12}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.31e-08}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.43e-09}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 3.17e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.17e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 2.19e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 2.19e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 4.18e-28}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.03e-28}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.03e-28}, {"name": "Cadmium II", "categories": ["soil"], "amount": 8.03e-28}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 9.95e-27}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 9.95e-27}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.86e-26}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9.95e-27}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.95e-27}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.7e-12}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.58e-11}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.58e-11}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.48e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.57e-12}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 9.95e-13}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.75e-13}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.75e-13}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 9.72e-12}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 8.54e-11}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.87e-08}, {"name": "Carboxin", "categories": ["air"], "amount": 3.36e-08}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 7.59e-12}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 5.26e-12}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 2.76e-12}, {"name": "Carboxin", "categories": ["water"], "amount": 2.76e-12}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.12e-17}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.81e-14}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 2.3e-09}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 2.27e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 1.4e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 1.4e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 1.4e-09}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.98e-18}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water"], "amount": 3.72e-17}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 3.76e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 7.06e-12}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 1e-16}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 7.3e-08}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.3e-08}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 4.2e-17}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 7.75e-15}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.5e-12}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 5.27e-12}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.76e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 6.35e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 6.35e-10}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 4.71e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 7.83e-11}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.49e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.06e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.11e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.01e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1.01e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.88e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 8.96e-09}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 3.18e-08}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 3.18e-08}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.86e-09}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 8.15e-17}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 6.91e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.91e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.91e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.78e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4.78e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 2.27e-28}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.49e-28}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.49e-28}, {"name": "Chromium III", "categories": ["soil"], "amount": 4.49e-28}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.76e-27}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.76e-27}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 4.05e-27}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.76e-27}, {"name": "Chromium III", "categories": ["water"], "amount": 1.76e-27}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 2.34e-06}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.62e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.62e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 8.97e-27}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.78e-26}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.78e-26}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.78e-26}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 6.56e-26}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 6.56e-26}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 2.77e-26}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 6.56e-26}, {"name": "Chromium VI", "categories": ["water"], "amount": 6.56e-26}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.51e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 3.75e-13}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 6.75e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.75e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.75e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 4.67e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4.67e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6.92e-29}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.28e-28}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.28e-28}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.28e-28}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.61e-27}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 4.61e-27}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.14e-27}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.61e-27}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.61e-27}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 2e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.38e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.38e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.57e-27}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 2.9e-27}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 2.9e-27}, {"name": "Copper ion", "categories": ["soil"], "amount": 2.9e-27}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.15e-25}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1.15e-25}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.68e-25}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.15e-25}, {"name": "Copper ion", "categories": ["water"], "amount": 1.15e-25}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.57e-13}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water"], "amount": 5.31e-13}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 3.89e-12}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 2.31e-15}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water"], "amount": 7.36e-15}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.25e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.73e-16}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.98e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 1.55e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.7e-19}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.05e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 3.23e-08}, {"name": "Cypermethrin", "categories": ["water"], "amount": 3.23e-08}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.9e-12}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.33e-16}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.78e-10}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 5.78e-14}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-12}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1.3e-13}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 2.23e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1.68e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.57e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.22e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1.04e-22}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 8.6e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 3.11e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 3.27e-11}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.43e-14}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 7.38e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.64e-16}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.64e-16}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.21e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3e-09}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 7.92e-15}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.91e-17}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.91e-17}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 3.71e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6.94e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1.05e-11}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 6.77e-17}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 3.98e-11}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.73e-14}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.73e-14}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.22e-13}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water"], "amount": 8.74e-13}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.1e-11}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.48e-17}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.7e-15}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.33e-07}, {"name": "Difenoconazole", "categories": ["air"], "amount": 1.89e-07}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 8.15e-13}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 7.46e-13}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 5.73e-13}, {"name": "Difenoconazole", "categories": ["water"], "amount": 5.73e-13}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.57e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.41e-08}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.19e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 7.89e-09}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.89e-09}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 8.45e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 7.8e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 3.44e-12}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 9.29e-11}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.15e-07}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.68e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 8.57e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.64e-12}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 1.77e-12}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 3.84e-12}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 7.98e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3e-11}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 5.16e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.16e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.16e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 4.48e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 4.48e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1.62e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1.74e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1.74e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1.74e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 6.04e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 6.04e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.19e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 6.04e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 6.04e-07}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.47e-14}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 4.83e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.94e-17}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.52e-18}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 7.52e-18}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.3e-12}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.26e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.33e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 5.23e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4.31e-11}, {"name": "Diuron", "categories": ["water"], "amount": 2.9100000000000002e-11}, {"name": "Dodecanol", "categories": ["water"], "amount": 8.69e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.45e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 7.83e-16}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.49e-19}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 5.34e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.17e-21}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.82e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.65e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.69e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 1.23e-09}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.71e-10}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.71e-10}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.29e-07}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air"], "amount": 5.06e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 5.06e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.27e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.06e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.06e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.1e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.41e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.49e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.05e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.14e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water"], "amount": 2.99e-13}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 6.4e-17}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.88e-22}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.88e-22}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.45e-11}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 1.64e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1.73e-08}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.17e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.63e-12}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air"], "amount": 1.92e-09}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.92e-09}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 3.52e-13}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water"], "amount": 7.3e-13}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 1.23e-15}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.57e-15}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 5.19e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.79e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.71e-16}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 7.57e-18}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 2.02e-12}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 7.27e-09}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 5.54e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.51e-12}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.09e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.28e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.65e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.31e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.77e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.98e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 3.06e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.65e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1.41e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.3e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.03e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.03e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.03e-08}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 1.44e-07}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 9.95e-08}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.21e-11}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 1.31e-11}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.65e-11}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.65e-11}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.08e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 4.43e-09}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.61e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.13e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 9.13e-10}, {"name": "Fluorene", "categories": ["air"], "amount": 2.07e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.37e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 2.35e-17}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.19e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.94e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.62e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 5.77e-13}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.01e-11}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 5.22e-17}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water"], "amount": 1.04e-14}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.58e-20}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 7.07e-14}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.07e-12}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air"], "amount": 2.79e-14}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.79e-14}, {"name": "Furfural", "categories": ["air"], "amount": 1.81e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 8.38e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.53e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.44e-21}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.99e-16}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.73e-22}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.26e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 9.11e-14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 9.11e-14}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.36e-16}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-16}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 2.92e-09}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.98e-16}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water"], "amount": 2.21e-15}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.23e-14}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.86e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.18e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.55e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 9.06e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.42e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.42e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.63e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 4.41e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.03e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.03e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 8.95e-15}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.49e-11}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.79e-15}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4.92e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 6.83e-17}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 7.03e-21}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.26e-21}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.26e-21}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.79e-08}, {"name": "Indoxacarb", "categories": ["air"], "amount": 6.86e-08}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.13e-10}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 1.14e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.44e-12}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 4.29e-16}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.29e-16}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1e-09}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1e-09}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.95e-12}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 2.28e-12}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.3e-10}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.56e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.28e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.43e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 2.13e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 2.13e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2.13e-07}, {"name": "Lauric acid", "categories": ["air"], "amount": 9.87e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.76e-14}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 7.11e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-07}, {"name": "Lead II", "categories": ["air"], "amount": 4.92e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.92e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.4e-30}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.31e-30}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.31e-30}, {"name": "Lead II", "categories": ["soil"], "amount": 2.31e-30}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2.95e-28}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 2.95e-28}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.45e-28}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2.95e-28}, {"name": "Lead II", "categories": ["water"], "amount": 2.95e-28}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 4.48e-18}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5.81e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.33e-18}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.14e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 7.51e-16}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.25e-16}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.25e-16}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 6.71e-15}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.01e-14}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.01e-14}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.35e-21}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.48e-16}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.17e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 9.63e-15}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.09e-16}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.08e-16}, {"name": "Mancozeb", "categories": ["water"], "amount": 1.08e-16}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 9.9e-15}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.72e-13}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 8.33e-15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 2.1e-24}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2.3e-05}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 1.57e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.57e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 6.3e-29}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 8.84e-29}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 8.84e-29}, {"name": "Mercury II", "categories": ["soil"], "amount": 8.84e-29}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2.38e-26}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 2.38e-26}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 6.36e-26}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2.38e-26}, {"name": "Mercury II", "categories": ["water"], "amount": 2.38e-26}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 8e-09}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-09}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 5.19e-09}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.6e-11}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 9.35e-12}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 3.96e-12}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 5.19e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 3.14e-15}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 2.18e-15}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.3e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.08e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.5e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.5e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 5.61e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.14e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 4.74e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 4.74e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.19e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.61e-11}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 3.48e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water"], "amount": 4.81e-13}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.36e-10}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 4.81e-12}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.35e-12}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water"], "amount": 7.73e-13}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 6.18e-11}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.46e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6.81e-13}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.56e-13}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 5.89e-13}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 5.89e-13}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.6e-11}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.37e-11}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.4e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.19e-11}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.27e-13}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.36e-10}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.36e-10}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.45e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.61e-10}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 8.27e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.1e-10}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.79e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.29e-10}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.66e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 9.76e-12}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.02e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 7.39e-16}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.2e-16}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2e-16}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 2.41e-08}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.41e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.41e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.66e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.66e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 3.39e-29}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 6.71e-29}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 6.71e-29}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 6.71e-29}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.53e-28}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.53e-28}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.14e-28}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.53e-28}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.53e-28}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1.6e-13}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 6.87e-14}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 2.62e-11}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 9.13e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 6.66e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.1e-11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.88e-12}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 6.91e-09}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 3.09e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.13e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 2.13e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 8.13e-28}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.54e-27}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.54e-27}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.54e-27}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.32e-26}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3.32e-26}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.16e-26}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.32e-26}, {"name": "Nickel II", "categories": ["water"], "amount": 3.32e-26}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-09}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 6.05e-09}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 8.3e-19}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 3.78e-19}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.25e-19}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.25e-19}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.39e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.69e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 5.35e-14}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 2.47e-10}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 6.63e-16}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 9.69e-15}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.94e-10}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1.52e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 1.1e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.84e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.34e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.54e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.81e-11}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.35e-19}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.15e-09}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 2.05e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 7.34e-16}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 7.89e-10}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 7.89e-10}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air"], "amount": 2.36e-13}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-13}, {"name": "Pentane", "categories": ["water"], "amount": 2.23e-13}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.32e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.57e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.22e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 6.3e-14}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water"], "amount": 1.12e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.48e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.48e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.82e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.82e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.32e-12}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.55e-12}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.38e-10}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.1e-09}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.74e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.13e-12}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 3.24e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.87e-12}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.22e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 4.56e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 8.37e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-14}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.04e-13}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.73e-15}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 8.88e-10}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 4.31e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 5.75e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 8.81e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 8.81e-10}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 7.27e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 6.22e-10}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 7.72e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.92e-08}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 4.29e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 4.49e-16}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 4.62e-17}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air"], "amount": 7.09e-12}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 7.09e-12}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 2.39e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water"], "amount": 1e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.86e-11}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.42e-14}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water"], "amount": 3.44e-13}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.32e-14}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.61e-11}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.31e-11}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 6.11e-12}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 2.7e-12}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.55e-12}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.19e-15}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.33e-13}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air"], "amount": 5.86e-10}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 5.86e-10}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.76e-13}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water"], "amount": 3.65e-13}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 3.72e-14}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.36e-11}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.36e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.67e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.98e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Pyrene", "categories": ["air"], "amount": 1.38e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 2.64e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 4.89e-15}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1.36e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 7.6e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 3.04e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.06e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.06e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.09e-15}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 4.66e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3.04e-10}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.01e-14}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 1.02e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.08e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 7.08e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 3.82e-28}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 7.3e-28}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 7.3e-28}, {"name": "Selenium IV", "categories": ["soil"], "amount": 7.3e-28}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1e-26}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 1e-26}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 9.44e-27}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1e-26}, {"name": "Selenium IV", "categories": ["water"], "amount": 1e-26}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.77e-13}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.59e-13}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.00011}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00011}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011}, {"name": "Silver I", "categories": ["air"], "amount": 7.6e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7.6e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 5.28e-27}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 9.84e-27}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 9.84e-27}, {"name": "Silver I", "categories": ["soil"], "amount": 9.84e-27}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 2.91e-25}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 2.91e-25}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 5.95e-25}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 2.91e-25}, {"name": "Silver I", "categories": ["water"], "amount": 2.91e-25}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.07e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.91e-11}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.48e-11}, {"name": "Simazine", "categories": ["water"], "amount": 3.48e-11}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.76e-10}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.76e-10}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.5e-32}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water"], "amount": 3.19e-32}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 8.8e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 4.77e-14}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water"], "amount": 1.58e-13}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 9.02e-14}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.43e-08}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.7e-08}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.7e-08}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 7.38e-15}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.96e-21}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.96e-21}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.68e-11}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.03e-12}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.01e-12}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water"], "amount": 9.55e-13}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 8.65e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 8.7e-11}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.36e-11}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.43e-11}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.43e-11}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-06}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.54e-06}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 9.93e-11}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 8.97e-11}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 6.71e-14}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 3.26e-09}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 5.45e-10}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.57e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-12}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 9.59e-07}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.59e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.59e-07}, {"name": "Thallium I", "categories": ["air"], "amount": 6.63e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 6.63e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.01e-26}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.17e-26}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.17e-26}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.17e-26}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.55e-26}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 2.55e-26}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 7.31e-27}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.55e-26}, {"name": "Thallium I", "categories": ["water"], "amount": 2.55e-26}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.24e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 4.04e-14}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.18e-14}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.18e-14}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 7.08e-15}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 5.59e-10}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.31e-15}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water"], "amount": 2.43e-13}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 1.11e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.34e-09}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.34e-09}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.16e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 8.34e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.68e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.22e-11}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.22e-11}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air"], "amount": 6.43e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 3.45e-12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.84e-12}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.09e-11}, {"name": "Thiram", "categories": ["water"], "amount": 2.09e-11}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 9.14e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.14e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.14e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 6.33e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 6.33e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1.56e-29}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 2.77e-27}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 2.77e-27}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 5.21e-27}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2.77e-27}, {"name": "Tin ion", "categories": ["water"], "amount": 2.77e-27}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.06e-13}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water"], "amount": 3.43e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.83e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.83e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.32e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.82e-12}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 9.93e-09}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2.06e-10}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.77e-14}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.19e-09}, {"name": "Triallate", "categories": ["air"], "amount": 5.36e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.14e-10}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.07e-10}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 8.53e-13}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 2.11e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.73e-06}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.55e-14}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.1e-14}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.64e-14}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.82e-13}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.03e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.02e-11}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.09e-17}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 2.05e-16}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.67e-05}, {"name": "Triflumuron", "categories": ["air"], "amount": 5.52e-05}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 9.58e-07}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 6.68e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.3e-07}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.29e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.5e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.63e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.63e-10}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.01e-15}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.13e-13}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 7.82e-18}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water"], "amount": 1.47e-16}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 2.26e-15}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 3.09e-06}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.13e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.13e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 3.26e-27}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 6.14e-27}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 6.14e-27}, {"name": "Vanadium V", "categories": ["soil"], "amount": 6.14e-27}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.35e-25}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 1.35e-25}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.88e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.35e-25}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.35e-25}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.67e-11}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 6.28e-14}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water"], "amount": 2.09e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 2.23e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.23e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.23e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 1.55e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1.55e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.38e-27}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.45e-27}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.45e-27}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.45e-27}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.47e-25}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 1.47e-25}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.64e-26}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.47e-25}, {"name": "Zinc II", "categories": ["water"], "amount": 1.47e-25}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 8.48e-10}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 9.19e-14}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.04e-13}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 2.13e-13}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water"], "amount": 7.07e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.14e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 3.88e-13}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air"], "amount": 6.1e-09}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 6.1e-09}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 4.62e-12}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 9.58e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2.13e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "eutrophication: freshwater"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "eutrophication: marine"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "land use"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "photochemical oxidant formation: terrestrial ecosystems"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.71e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.71e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.92e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.15e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.15e-08}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.79e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.79e-09}, {"name": "Acetone", "categories": ["air"], "amount": 4.52e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.52e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.07e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.07e-08}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.62e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.43e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.43e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.54e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air"], "amount": 3.92e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.96e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.96e-08}, {"name": "Cumene", "categories": ["air"], "amount": 2.41e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.11e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.47e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -7.54e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -7.54e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56e-08}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43e-08}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.47e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Formic acid", "categories": ["air"], "amount": 2.26e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Heptane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Hexane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-09}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 8.6e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.6e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 7.54e-10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Methanol", "categories": ["air"], "amount": 9.8e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.97e-07}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.29e-07}, {"name": "Pentane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Phenol", "categories": ["air"], "amount": -3.77e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.77e-09}, {"name": "Propanal", "categories": ["air"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanol", "categories": ["air"], "amount": 3.62e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propionic acid", "categories": ["air"], "amount": 9.8e-09}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Styrene", "categories": ["air"], "amount": 3.77e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77e-09}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.54e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Toluene", "categories": ["air"], "amount": 3.32e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48e-08}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "water use: aquatic ecosystems"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "water use: terrestrial ecosystems"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1.35e-08}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "human health", "climate change: human health"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 9.28e-07}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 9.28e-07}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 9.28e-07}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 9.28e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 1.86e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.86e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.000277}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000277}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000277}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.000277}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.000277}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.00144}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.00144}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000179}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.00611}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.00611}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.00087}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.00087}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000155}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 9.28e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.00892}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00892}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00892}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.00892}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.00892}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.00218}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00218}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00218}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.00218}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.00218}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 8.91e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 8.91e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.000589}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000589}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000589}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.000589}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.000589}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.0079}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0079}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0079}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.0079}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.0079}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.0115}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.00343}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.28e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.28e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.78e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.78e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.00192}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00192}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00192}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00192}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00192}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.00664}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00664}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00664}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.00664}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.00664}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.00195}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.00195}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.0143}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.02e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.02e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0107}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0107}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000166}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000758}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 3.34e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 3.16e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.39e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.39e-05}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 3.16e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.00187}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.00187}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.00682}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.00497}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.00497}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.0129}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0166}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.0088}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0242}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "human health", "human toxicity: carcinogenic"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 2.16e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-06}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 5.75e-06}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 2.16e-07}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Acephate", "categories": ["water"], "amount": 2.69e-07}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 0.000165}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.23e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 7.17e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.83e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 9.87e-05}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air"], "amount": 1.07e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.07e-07}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.23e-10}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water"], "amount": 8.03e-08}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.00191}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00191}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00191}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.00283}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.00283}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.000104}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 6.34e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 6.34e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 6.34e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.00114}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.00114}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 9.65e-05}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.00114}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.00114}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-05}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 9.48e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.44e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 5.11e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 5.11e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 5.11e-06}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.54e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.54e-07}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 3.56e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.24e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.17e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.24e-07}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 4.82e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.43e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.19e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.000312}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000312}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00381}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 6.63e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.63e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.63e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.000879}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.000879}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.49e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.06e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.06e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.06e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.01e-07}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 4.01e-07}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.51e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.01e-07}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.01e-07}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 4.42e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 4.42e-06}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.000209}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000209}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000209}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00077}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.00077}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.000366}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 3.79e-06}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 3.79e-06}, {"name": "Cadmium II", "categories": ["soil"], "amount": 3.79e-06}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 4.6e-06}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 4.6e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.41e-06}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 4.6e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 4.6e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 7.18e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.27e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.09e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.09e-05}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 9.73e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 4.29e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.23e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.86e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.65e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 7.03e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.2e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 3.22e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 3.22e-07}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.0854}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0854}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0854}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.0661}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.0661}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.0146}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.019}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.019}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.019}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.0247}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 0.0247}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.00219}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0247}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0247}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0008}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.64e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 9.01e-05}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.11e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.63e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 307}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 307}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 30.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 243}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 751}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.33e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 2.24e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 2.24e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.68e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.68e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 8.1e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 8.1e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.16e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 7.42e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 7.42e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 2.92e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.45e-05}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 4.32e-06}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000172}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.11e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 4.14e-05}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.08e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4.55e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.12e-09}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.000315}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.000315}, {"name": "Furfural", "categories": ["air"], "amount": 9.63e-07}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air"], "amount": 1.6e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.6e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 3.44e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water"], "amount": 8.81e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.4e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 5.71e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 5.71e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.77e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.84e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 7.54e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 7.54e-06}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 4.26e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.26e-07}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 8.26e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26e-05}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26e-05}, {"name": "Lead II", "categories": ["air"], "amount": 6.17e-05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 6.17e-05}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.15e-06}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.81e-07}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.81e-07}, {"name": "Lead II", "categories": ["soil"], "amount": 2.81e-07}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 1.06e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 4.78e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.06e-06}, {"name": "Lead II", "categories": ["water"], "amount": 1.06e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 4.15e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.37e-07}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.000239}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000239}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000239}, {"name": "Mercury II", "categories": ["air"], "amount": 0.000231}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.000231}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 9.75e-05}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 4e-06}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 4e-06}, {"name": "Mercury II", "categories": ["soil"], "amount": 4e-06}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.00046}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.00046}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.000191}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.00046}, {"name": "Mercury II", "categories": ["water"], "amount": 0.00046}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 4.09e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 4.09e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.93e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.29e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000848}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000848}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000448}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000782}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.25e-06}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.87e-07}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.87e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 5.69e-08}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.82e-07}, {"name": "Naphthalene", "categories": ["air"], "amount": 7.98e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3e-06}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.00167}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00167}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00167}, {"name": "Nickel II", "categories": ["air"], "amount": 0.00124}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.00124}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.000158}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 4.08e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 4.08e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 4.08e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 7.58e-05}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 7.58e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.16e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 7.58e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 7.58e-05}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.82e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.000112}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.000112}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 2.27e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.97e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.92e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.54e-05}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.12e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.21e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.61e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.017}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.17e-05}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.94e-07}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.95e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.21e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.21e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3.16e-07}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.24e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.33e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.73e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.77e-06}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air"], "amount": 4.44e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 4.44e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.13e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water"], "amount": 7.51e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.08e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.35e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1.26e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.26e-05}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air"], "amount": 6.77e-08}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.77e-08}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 8.86e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water"], "amount": 7.62e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.64e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 7.99e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.04e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.04e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.2e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.12e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "human health", "human toxicity: non-carcinogenic"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 3.35e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0044}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.28e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 2e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.22e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.09e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.66e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.66e-07}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 7.34e-05}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.9e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.84e-06}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.42e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water"], "amount": 9.33e-07}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.00088}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.00088}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 4.45e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.16e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.000184}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.0321}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0321}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0321}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0242}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0242}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.00149}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.00111}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.00111}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.00111}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0199}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.0199}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00168}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0199}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0199}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 1.39e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air"], "amount": 0.000192}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.79e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.000103}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.000103}, {"name": "Barium II", "categories": ["soil"], "amount": 0.000103}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.65e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water"], "amount": 4.2e-05}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.08e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3.06e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.86e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 2.96e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.15e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.07e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.44e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000306}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.00627}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00627}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00627}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 5.86e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 5.22e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 5.22e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 5.22e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.02e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.02e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.4e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.02e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.02e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.27e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.76e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.66e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.48e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.64e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.63e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000449}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000449}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.52e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.52e-06}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.0114}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0114}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0114}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00816}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.00816}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.0228}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.000239}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.000239}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.000239}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00029}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 0.00029}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 8.89e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00029}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00029}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.64e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.89e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.89e-06}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.53e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.96e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 2.25e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.36e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.92e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.86e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.48e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.28e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.28e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air"], "amount": 5.43e-08}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.79e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 6.93e-10}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.99e-09}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 9.8e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.0013}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.0013}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 3.24e-06}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.31e-05}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 1.31e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.16e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.31e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.31e-05}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air"], "amount": 7.07e-06}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 7.07e-06}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 4.24e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.63e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 6.52e-07}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.75e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.92e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.92e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 6.38e-08}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 5.86e-06}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.98e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000197}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2.18e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.18e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.85e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.28e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 6.5e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.88e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.88e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.32e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.32e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.72e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1.36e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1.36e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.000126}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.54e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.33e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 7.09e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.02e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air"], "amount": 8.09e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 8.09e-06}, {"name": "Furfural", "categories": ["air"], "amount": 3.63e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.04e-05}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00125}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.57e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 9.28e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 9.28e-06}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.00679}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00679}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00679}, {"name": "Lead II", "categories": ["air"], "amount": 0.00508}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00508}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.000239}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.33e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.33e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 2.33e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 8.71e-05}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 8.71e-05}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.94e-05}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 8.71e-05}, {"name": "Lead II", "categories": ["water"], "amount": 8.71e-05}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.000113}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.02e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.00661}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00661}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00661}, {"name": "Mercury II", "categories": ["air"], "amount": 0.00565}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.00565}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.00267}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.000111}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.000111}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.000111}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0128}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.0128}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.00531}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0128}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0128}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000349}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 3.65e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 3.65e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 7.64e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.61e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8.41e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8.41e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.12e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.12e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000668}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000668}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000353}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000618}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 7.59e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 7.59e-06}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.42e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.0006}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.0006}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.000301}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.2e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.95e-05}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 4.86e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.56e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.51e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.35e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 2.2e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.63e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.63e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.66e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 5.4e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 5.4e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 5.4e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1e-06}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 1e-06}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.53e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 1e-06}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.74e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 3.24e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.11e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.92e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.39e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 9.85e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.89e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000137}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 7.23e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.13e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.72e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 5.29e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 9.76e-08}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 5.15e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.78e-08}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 6.25e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 3.37e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.33e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.21e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air"], "amount": 0.0111}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0111}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0104}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.000172}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.000172}, {"name": "Silver I", "categories": ["soil"], "amount": 0.000172}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 4.58e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water"], "amount": 0.000157}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.05e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water"], "amount": 4.81e-09}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.43e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 2.71e-06}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air"], "amount": 0.00166}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.00166}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.000565}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 8.64e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water"], "amount": 0.00136}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.2e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.63e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 3.51e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.01e-05}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 3.6e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.18e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.12e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.92e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.92e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.69e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air"], "amount": 0.00016}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 0.00016}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.5e-05}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 8.57e-06}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.000138}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4.15e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.58e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0086}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 7.71e-05}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00188}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.88e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.36e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.41e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.16e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "human health", "ionising radiation"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 3.72e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 2.67e-13}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 4.1e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 2.93e-11}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 4.17e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 7.57e-12}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 4.02e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water"], "amount": 7.34e-08}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 4.95e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water"], "amount": 8.5e-08}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 2.32e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water"], "amount": 5.18e-11}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 2.08e-11}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 2.01e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.24e-08}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.44e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 3.5e-13}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water"], "amount": 2.44e-09}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 2.55e-10}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 4.79e-12}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 7.21e-14}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 7.73e-10}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 1.62e-10}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.7e-14}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 7.73e-10}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.23e-11}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 9.27e-12}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 2.01e-12}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 2.55e-10}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 3.87e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water"], "amount": 2.08e-10}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 6.72e-13}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 6.72e-13}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water"], "amount": 2.63e-10}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 7.27e-14}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "human health", "ozone depletion"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 5.84e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.84e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.84e-06}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 5.84e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 5.84e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 9.45e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 9.45e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000353}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000353}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 7.12e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 7.12e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.000143}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000143}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000143}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.000143}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.000143}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 3.56e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.56e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.56e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 3.56e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 3.56e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 5.84e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 5.84e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1.17e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.17e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.17e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.17e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 3.24e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.24e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 3.24e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 3.24e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 3.86e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 3.86e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00039}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00039}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.00466}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00466}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00466}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00466}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00466}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.00747}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00747}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00747}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.00747}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.00747}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.39e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.39e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.000312}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.000312}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.17e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.17e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000475}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000475}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.000531}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.000531}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "human health", "particulate matter formation"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.000151}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.03e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.000107}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 6.92e-05}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000182}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000145}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "human health", "photochemical oxidant formation: human health"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.72e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.82e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.82e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air"], "amount": 1.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.98e-08}, {"name": "Acrolein", "categories": ["air"], "amount": 1.78e-07}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.78e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -6.27e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -6.27e-08}, {"name": "Benzene", "categories": ["air"], "amount": 3.3e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.52e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 2.94e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-07}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air"], "amount": 1.72e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cumene", "categories": ["air"], "amount": 1.06e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 9.24e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.52e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -3.3e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -3.3e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 6.27e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 6.27e-08}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.22e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.22e-07}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.52e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.48e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.48e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.42e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.42e-08}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.3e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Methanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.06e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.63e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.63e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 6.73e-07}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.39e-06}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 9.1e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Phenol", "categories": ["air"], "amount": -1.65e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -1.65e-08}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Styrene", "categories": ["air"], "amount": 1.65e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.3e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 9.57e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.57e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "human health", "water use: human health"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 2.22e-06}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "natural resources", "energy resources: non-renewable, fossil"], "exchanges": [{"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "natural resources", "material resources: metals/minerals"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.132}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0303}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00527}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 17.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.74}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0267}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0705}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0025}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00241}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0113}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00356}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 73.4}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0443}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000654}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 22.3}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.07}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00212}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00133}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 3.07}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.099}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0202}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00874}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 278}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.83}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.918}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "total: ecosystem quality", "ecosystem quality"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.680299999999999e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 6.158999999999999e-10}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.48373e-12}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.6652e-11}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83562e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.52564e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.3411235e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.83520616e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.83520616e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7236e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.083400011e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.492700000532001e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.492700000532001e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7236e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 5.1363e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.083400011e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.492700000532001e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.522999999999999e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.6019e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.995342e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.995342e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.80725e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.7113922e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.7113922e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.5517e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.6551e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.01482e-11}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36004267e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36004267e-08}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.2917e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.5654e-12}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 2.9949e-09}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 2.1337e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.9679973e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.9679973e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.350059938e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.55641e-11}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1.16136e-10}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.311e-11}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.311e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.22876e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.8545e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.320779999999999e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.87616e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.001556000000001e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.24170901e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.24170901e-10}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.1503717e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.1503717e-08}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 8.5333e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04851e-10}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05858e-11}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 4.5908e-13}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.77038805e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.183263e-10}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air"], "amount": 4.5204406e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.5204406e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.4881e-13}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.8318e-12}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.1213e-12}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.801e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 5.8726e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 3.8295e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.7464e-09}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["water"], "amount": 5.3361e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37024635e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.194350000000001e-11}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.37757e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.37757e-10}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.232e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.232e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 3.6996e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.4716e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.783900000000001e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9.863e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.630105e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.630105e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.8867e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 1.347e-09}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 4.0935e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15771e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.647e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.428e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.273e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.093999999999999e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.925140000000001e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.5279e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.3014e-09}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.82132e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air"], "amount": 9.982e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 9.982e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.50817e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.4279e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.022e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.26214e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.49851e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.7676e-10}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 7.158199999999999e-06}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.158199999999999e-06}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.158199999999999e-06}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.979300000000001e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.979300000000001e-06}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 3.579e-08}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 7.201000000000001e-08}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 7.201000000000001e-08}, {"name": "Antimony ion", "categories": ["soil"], "amount": 7.201000000000001e-08}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.843e-07}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 2.843e-07}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.05e-07}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.843e-07}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.843e-07}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.53188e-06}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53188e-06}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53188e-06}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.0588e-06}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.0588e-06}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 9.82e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.843e-09}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.843e-09}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.843e-09}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 5.226000000000001e-08}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 5.226000000000001e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.23e-08}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 5.226000000000001e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 5.226000000000001e-08}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.17828e-10}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1346e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.0689e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.0208e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.26675e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.26675e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.26675e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.1857e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.330007629999999e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.6535e-07}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.39150577e-10}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.698e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.42000164e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.913800156e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.10360000695e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.10360000695e-07}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.7987e-08}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7987e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7987e-08}, {"name": "Barium II", "categories": ["air"], "amount": 2.6925e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.6925e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9.87e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 2.114e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 2.114e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 2.114e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.352e-09}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 2.352e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 5.89e-10}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.352e-09}, {"name": "Barium II", "categories": ["water"], "amount": 2.352e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.606500196e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 2.489e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14409719e-09}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 1.087e-10}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2491e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.9148e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.772679999999999e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.772679999999999e-10}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1.148e-08}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.12803e-06}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.2778e-10}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.8389e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.178899999999999e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.053e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47005026e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47005026e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.875178e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.05076e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.6023e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.6023e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.8812e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 3.2029e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.2029e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.377e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.994e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3.994e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.468506999999999e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.468506999999999e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.44142e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.4232e-11}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 5.1476e-12}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.4135e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.99278e-10}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 5.44603e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.44603e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.44603e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 3.76835e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 3.76835e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 5.251e-10}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 9.460999999999999e-10}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 9.460999999999999e-10}, {"name": "Beryllium II", "categories": ["soil"], "amount": 9.460999999999999e-10}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.645999999999999e-08}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 4.645999999999999e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.27e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.645999999999999e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.645999999999999e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.594e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.834e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.0444e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.523951e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.523951e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 4.794e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.587e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 3.31e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 1.511e-08}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 7.178e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.72113e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.72113e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.1461073e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.38790514e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.077300857e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 7.151109e-09}, {"name": "Bromopropane", "categories": ["air"], "amount": 1.1492e-12}, {"name": "Bromopropane", "categories": ["water"], "amount": 9.086200000000001e-11}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.465e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.907349999999999e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.24030377e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.1697000759e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.1697000759e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 5.120000000000001e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.2437e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.5907e-09}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.9354e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.3043e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.29705e-11}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 2.29266e-10}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.921400000000001e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.812e-11}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5287e-08}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.1259e-07}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 3.18011e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18011e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18011e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 2.19748e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 2.19748e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.957e-10}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.563e-09}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.563e-09}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.563e-09}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.376e-08}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.376e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.05e-08}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.376e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.376e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.81297e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.11696e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.5588e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.133979999999999e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.133979999999999e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19026e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.9898e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.16777e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.8453995e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2267475e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2267475e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9602e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.2783e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.8000765e-09}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.6843e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.6843e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.0889e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.6612e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.5213e-09}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9713e-08}, {"name": "Carboxin", "categories": ["air"], "amount": 3.6626e-08}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.61089e-09}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 9.67546e-09}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.825376e-08}, {"name": "Carboxin", "categories": ["water"], "amount": 1.825376e-08}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.8809164e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.60581e-11}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9851e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 6.719e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 5.1687e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 2.9548e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 2.9548e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 2.9548e-06}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44000000198675e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.515420000372e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.9074e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.811e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.390799999999999e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.8217e-10}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 3.22681e-11}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 7.41839e-08}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.41839e-08}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 1.01000042202e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 6.28250775e-09}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air"], "amount": 5.601193299999999e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.601193299999999e-08}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.10592e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.2319e-10}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 9.1e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 7.039e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 7.039e-10}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.7535e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.32431e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.862e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.846e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.3288e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.323e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 5.893e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 5.893e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.97e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.588e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.28426e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.05128e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.05128e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.6864e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.6952000815e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.01023e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 6.9263e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9263e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9263e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.7933e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4.7933e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 3.2e-10}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6.5e-10}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6.5e-10}, {"name": "Chromium III", "categories": ["soil"], "amount": 6.5e-10}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.859e-09}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.859e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.15e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.859e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.859e-09}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 2.36207e-06}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.36207e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36207e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.6434e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.6434e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.284e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.615e-08}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.615e-08}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.615e-08}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 7.389999999999999e-08}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 7.389999999999999e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.38e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 7.389999999999999e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 7.389999999999999e-08}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.0517e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 6.9229e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 5.144300000000001e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.88435e-10}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 6.77993e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.77993e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.77993e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 4.69136e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4.69136e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1.08e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.037e-10}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.037e-10}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.037e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5.223999999999999e-09}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 5.223999999999999e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.12e-09}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5.223999999999999e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 5.223999999999999e-09}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 2.008049e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.008049e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.008049e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.385711e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.385711e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 2.521e-09}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.73e-09}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.73e-09}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.73e-09}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.323e-07}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1.323e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.65e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.323e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1.323e-07}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air"], "amount": 2.41005783e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41005783e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.496336e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.89631e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.30289e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.6023606e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.810646e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.6665e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.3763373e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5.07e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.0723e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.42870047e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.036e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 6.188000000000001e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.53323e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.53323e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4299e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.0219e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.16150233e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.970099999999999e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.73918e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.54408e-09}, {"name": "Decanoic acid", "categories": ["water"], "amount": 2.11462e-09}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 3.83e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 2.946e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 3.193e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.507600000000001e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.7119000000104e-11}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.5234e-10}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.1811e-08}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.753e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.985034300000001e-09}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73316e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.3729e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.633600264e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.633600264e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 5.548e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3362e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.243e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.677892000000001e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.416600291e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.416600291e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.4928e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.129e-09}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.1337e-08}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.29869e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 3.036e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.112350677e-10}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 7.5216e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.470005178e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.470005178e-08}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.17928e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.17928e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.635339999999999e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.23034e-10}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.125253e-11}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.125253e-11}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.8284957e-14}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.8857e-12}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4135e-07}, {"name": "Difenoconazole", "categories": ["air"], "amount": 2.0617e-07}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.944815e-09}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 5.6190746e-08}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 1.66710573e-07}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1.66710573e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7484e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.2825e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.4422e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.48589e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.48589e-06}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 2.096e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 9.9372e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.37102e-10}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.594e-09}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.154663e-07}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.91574e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 4.07e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.699944e-08}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 6.2347e-10}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.025e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.025e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.48552e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.874200000000001e-10}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 8.340228e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.340228e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.340228e-07}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 8.340228e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 8.340228e-07}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.244924e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.3321e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 9.573e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.573e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.573e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 8.316e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 8.316e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 3.669e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 4.613e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 4.613e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 4.613e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.3984e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 1.3984e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.43246e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.3984e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.3984e-05}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.656187e-10}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 1.09252e-08}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09252e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 6.0432e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.438200645e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.1006000494e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.371400000752e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.371400000752e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.7426e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.4012e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3505e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.5858e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.06405e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.88131e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.563191e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.57777e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.486299999999999e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.530607829999999e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21470000249e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 9.755e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3.039e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.9541500000117e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.7474e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.7474e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 7.047e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2333e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.5985e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.402999999999999e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 3.0565e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.056100000000001e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.056100000000001e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8228e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8.372e-07}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air"], "amount": 6.642e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 6.642e-12}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.340118e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.340118e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.392703872000001e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.392703872000001e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.99014e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.5485e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.5485e-11}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1.8400504e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1.8400504e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2.6300718e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2.6300718e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 4.680128e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.680128e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.680128e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 4.680128e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 4.680128e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.8067055e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.8067055e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 8.6189e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 2.6900736e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6900736e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6900736e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2.6900736e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2.6900736e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 2.6900734e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 2.6900734e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1.7800486e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7800486e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7800486e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.7800486e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.7800486e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 2.3800651e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3800651e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3800651e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 2.3800651e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 2.3800651e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.30259e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.483e-09}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 3.4600944e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4600944e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4600944e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 3.4600944e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 3.4600944e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1.0300282e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0300282e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0300282e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.0300282e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.0300282e-05}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.1756e-13}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.6926e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16852e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.2872064e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.29910000000288e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.29910000000288e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.7672e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 5.7903e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.50894e-08}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43055768e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43055768e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.1162e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.6307e-11}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air"], "amount": 1.94897e-09}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.94897e-09}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.62358e-12}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water"], "amount": 1.41234e-10}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.26866e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.26866e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78123343e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.9706257e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.713000000000001e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 5.327e-11}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 3.4403e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.547900471e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.528000000757e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 5.3141e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.4086e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.2763e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 7.01371e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.3682e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 7.599999999999999e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2464e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.539800000000001e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.956e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.7608e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.2454e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.2177e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.2177e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.8758e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 8.938000000000001e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.451e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.6259e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.6259e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.6259e-06}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 1.5126e-07}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5126e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.1734e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 6.5634e-09}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 4.91221e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.934165e-07}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.934165e-07}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2711e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 3.3676e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.027999999999999e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 3.265e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.35993e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 4.607e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 5.0082e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 5.117e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.154200235e-10}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.6626e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.16056e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.606e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.483852e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.483852e-08}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.15095e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.4358e-10}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.900524070000001e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.943639999999999e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.314100085799999e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.955606999999999e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4224e-10}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air"], "amount": 3.1472e-14}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 3.1472e-14}, {"name": "Furfural", "categories": ["air"], "amount": 1.86695e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.127630000202e-10}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 8.542199999999999e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.9543e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.127630000202e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.98070000000144e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.732769e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.44877699e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.665970000000373e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.665970000000373e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.665970000000373e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8926e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.489e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.29470911e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.29470911e-08}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.640000025104e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.640000025104e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 1.05077e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.60050713e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.827221e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.0654423e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.0826e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.246e-08}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.2557e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 8.063800000000001e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.809164e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39003934e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39003934e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.126764e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 4.4138872e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 4.4138872e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.34455e-12}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.6047e-09}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.37410479e-09}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 6.04271e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04271e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.049849999999999e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.184000683e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.89050000000703e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.44980000000226e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.44980000000226e-09}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.541e-08}, {"name": "Indoxacarb", "categories": ["air"], "amount": 7.971e-08}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 3.081e-09}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2.4405e-08}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.275617e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.46424e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 8.600000047030001e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.600000047030001e-08}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1.026676e-09}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1.026676e-09}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 3.16725e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water"], "amount": 1.24899e-10}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.40115e-09}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.42488e-09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.2617e-08}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.736e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.605e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 4.164e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.4843e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.4843e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.4843e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 1.784e-11}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.0121676e-09}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 7.114746e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.114746e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.114746e-07}, {"name": "Lead II", "categories": ["air"], "amount": 4.9233058e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.9233058e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.3e-12}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 5.539000000000001e-12}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 5.539000000000001e-12}, {"name": "Lead II", "categories": ["soil"], "amount": 5.539000000000001e-12}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.833e-10}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 4.833e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.833e-10}, {"name": "Lead II", "categories": ["water"], "amount": 4.833e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.7714000448e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 8.89e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.5313000233e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.213709999999999e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.21433751e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.144080125e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.144080125e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2503e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.3310671e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.204910100000001e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.204910100000001e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.951499999999999e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.0373100000135e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.1477148e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.10228e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.27494e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.47190963e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.972900040900001e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.4653000108e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.4653000108e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.6736099e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.41742e-10}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 1.0789933e-10}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 6.303300021e-16}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2.3037833e-05}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3037833e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3037833e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 1.57259e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.57259e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.501e-10}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.159e-10}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.159e-10}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.159e-10}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 4e-08}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 4e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.44e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 4e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 4e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.8765e-10}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 8.133500000000001e-09}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.133500000000001e-09}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 5.6209e-09}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.5905e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.40095e-09}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2.34336e-09}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2.34336e-09}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 5.67097e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.565600314e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4050618e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.552e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.885999999999999e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 9.035899999999999e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.53264e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.53264e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 5.800158e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.800158e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.800158e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 5.800158e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 5.800158e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2.0000547e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.0000547e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0000547e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2.0000547e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2.0000547e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5.900161000000001e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5.900161000000001e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 4.330118e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.330118e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.330118e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 4.330118e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 4.330118e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.3062892e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.3062892e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 4.0236e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.231e-11}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3.2300883e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3.2300883e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 5.010137000000001e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.010137000000001e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.010137000000001e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 5.010137000000001e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 5.010137000000001e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2.2900625e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2900625e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2900625e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.2900625e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.2900625e-06}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.0100275e-07}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0100275e-07}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0100275e-07}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.0100275e-07}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0100275e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.52026e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52026e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52026e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 9.52026e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.52026e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 4.275602029999999e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 4.275602029999999e-08}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 9.52026e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52026e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52026e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 9.52026e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 9.52026e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.650227968e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.650227968e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.04391e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.435e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 2.0600562e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.0600562e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0600562e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 2.0600562e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 2.0600562e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.5000409e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.5000409e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 3.880106e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.880106e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.880106e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3.880106e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3.880106e-05}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.1144e-13}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.9244e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.894100000000001e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 2.0765e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74674e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 6.00631e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.322135e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.479677299999999e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.479677299999999e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.479677299999999e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.38e-10}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8735e-07}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.6234e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 7.787081e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 5.5285656e-08}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 1.70110589e-07}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 1.70110589e-07}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.297143e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.297143e-09}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.1759e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 3.4104e-11}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.8277e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.8277e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 5.5654e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.5594e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41003796e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41003796e-08}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.6673e-12}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.416369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.416369999999999e-10}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.142e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.9012e-09}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.47429e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.06189e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.3719e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9329e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.8029e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3719e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.03409e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.03409e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.03409e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63375e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.07254e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.0387276e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26365e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.07675e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.6653000124e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.106100000739e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.56420000032e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.56420000032e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.767999999999999e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 5.336e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 2.42622e-08}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42622e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42622e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.67496e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.67496e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 5.922e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.207e-10}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.207e-10}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.207e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 3.437e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 3.437e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.87e-10}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 3.437e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 3.437e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17798e-09}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2.007877e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.25798e-09}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 9.4494e-10}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.3103e-08}, {"name": "Naphthalene", "categories": ["air"], "amount": 9.302e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.6425e-09}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 9.5681e-10}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.4533e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 3.10699e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.10699e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.10699e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.1425e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 2.1425e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.268e-09}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.441e-09}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.441e-09}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.441e-09}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.8e-08}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3.8e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.37e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.8e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 3.8e-08}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4485e-09}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 6.2896e-09}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1.6504000083e-10}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 8.971000003780001e-10}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.316300000125e-09}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.316300000125e-09}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitric oxide", "categories": ["air"], "amount": 3.14e-07}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.884e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 7.094000000000001e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 5.010137e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.010137e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.010137e-05}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 5.010137e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 5.010137e-05}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 2.053e-07}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 3.436e-09}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.08772e-11}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.1555e-09}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 7.78690663e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.498169e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.305e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11911e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 4.179e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 9.703e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.409e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.409e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.171e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.17877e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.189100000000001e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.956e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 9.015100535000001e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.0009e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.975e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.28060734e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.429e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.1088e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.24349e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.24349e-07}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air"], "amount": 3.020025237e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.020025237e-08}, {"name": "Pentane", "categories": ["water"], "amount": 4.998803000000001e-09}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 2.6600726e-05}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.017e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.002e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 2.0333e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 8.117e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.0794e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.461900645e-10}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air"], "amount": -3.749579e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.749579e-09}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.167158e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.7761e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 3.562e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 3.562e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.472000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.472000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.95232e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.231355e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.757099999999999e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.6404e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 8.9875e-08}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.19505e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.0975e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.12529e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.82659e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.15565e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 5.0829e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.402442000000001e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.68484e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.1031573e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.5872e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.2429e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.6319e-08}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 2.888e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.888e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.888e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 2.777e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 2.777e-09}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.4957e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.0084e-08}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.317e-10}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.413e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.0294e-08}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.3839e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 2.2356e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4117449e-11}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.11750462e-11}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air"], "amount": 5.4307464e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.4307464e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 7.6055e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water"], "amount": 8.1562e-11}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.0292e-09}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air"], "amount": 3.62007158e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62007158e-08}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 2.3687e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.9418e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.561343199999999e-09}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.6402e-10}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.32608e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8246e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.36551e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.11407e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.275855e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.275855e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.275855e-08}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63119919e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09465e-10}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air"], "amount": 6.01583e-10}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 6.01583e-10}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.47729e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water"], "amount": 8.115500000000002e-11}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 4.9125e-13}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.6519e-11}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.6519e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.679e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 7.074e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.3538e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.9068e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 4.448e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.278e-06}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.7413e-07}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.389e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.389e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.511389e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.0395e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.8366e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.887e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.211e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.2767e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.6849e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.9144e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.9144e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.2705209e-10}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.167e-09}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.1445e-08}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2.8868e-09}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.85901e-11}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 1.025698e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.025698e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.025698e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.12337e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 7.12337e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 6.527e-10}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.277e-09}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.277e-09}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.277e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.271e-08}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 1.271e-08}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.12e-08}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.271e-08}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.271e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.904e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.88237e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.193859000000001e-09}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.0001103005}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001103005}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001103005}, {"name": "Silver I", "categories": ["air"], "amount": 7.62133e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7.62133e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 9.992000000000001e-09}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.906e-08}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.906e-08}, {"name": "Silver I", "categories": ["soil"], "amount": 1.906e-08}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 3.944e-07}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 3.944e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 6.22e-07}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 3.944e-07}, {"name": "Silver I", "categories": ["water"], "amount": 3.944e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55942e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.15613e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.0866e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.33571e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.06368e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.06368e-08}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.771265e-10}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.771265e-10}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 8.56e-14}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water"], "amount": 5.7221e-12}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.5114e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air"], "amount": 3.77007198e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77007198e-09}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.505038e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75914e-10}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.52090902e-08}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.14369e-07}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 7.3002e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3002e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3002e-05}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 7.3002e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 7.3002e-05}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.5520356e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.5520356e-07}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.4553038e-10}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.06381000000196e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.06381000000196e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1.003208e-07}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3431e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.28703e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.185009999999999e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.8453955e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7556e-09}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14932e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9.172099999999999e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.7515e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.593736e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.742943e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.742943e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1146e-06}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.7225e-06}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.709199999999999e-08}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 4.898993e-07}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 1.6774897e-06}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.378371e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.4728e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.303e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.7316e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.687849999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.687849999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.53667e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.7108e-10}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 9.7346e-07}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.7346e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7346e-07}, {"name": "Thallium I", "categories": ["air"], "amount": 6.852400000000001e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 6.852400000000001e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.836e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 3.985e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 3.985e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 3.985e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 4.531e-08}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 4.531e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.44e-08}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 4.531e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 4.531e-08}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1.58345e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58345e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.34304e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.138841e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.6029404e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05376318e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05376318e-08}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 8.6416708e-10}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.0562e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.0200131648e-10}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water"], "amount": 6.302843e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8483e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.2836e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.6623e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.11236e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.11236e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03395e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.36888e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.4302e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.3474e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.06432e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.06432e-08}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.531e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.531e-08}, {"name": "Thiram", "categories": ["air"], "amount": 1.15e-08}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.89795e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.391784e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.277509e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.277509e-07}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 9.167724e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.167724e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.167724e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 6.349288e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 6.349288e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 3.077e-11}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 5.306e-11}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 5.306e-11}, {"name": "Tin ion", "categories": ["soil"], "amount": 5.306e-11}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 3.89e-09}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 3.89e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 5.78e-09}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 3.89e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 3.89e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.32003648e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32003648e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.099279999999999e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.7333e-11}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.764e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.764e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 3.62693e-11}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.4476e-10}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 3.5878e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 5.11706e-07}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2151177e-09}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.542e-09}, {"name": "Triallate", "categories": ["air"], "amount": 7.55e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.4183e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.202e-08}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.29660853e-07}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 2.17143e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.87331e-06}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.15100855e-08}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.144200041e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.7988e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.508216400000001e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19007233e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19007233e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.738967e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.1927e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.7237e-09}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.9184e-07}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49109341e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.26525e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.895e-09}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7987e-05}, {"name": "Triflumuron", "categories": ["air"], "amount": 5.869e-05}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 2.7716e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 1.0785e-05}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.5978e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.5978e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.932e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 4.985e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.763e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.5447e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.5447e-08}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.8260301e-10}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 4.10713e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.2304e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.590078418e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.2279947e-11}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.179726e-11}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 3.11748e-06}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11748e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11748e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.15192e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.15192e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4.837000000000001e-09}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.33e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.33e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 9.33e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.505e-07}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 1.505e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 4.77e-08}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.505e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.505e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.1061e-10}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.81e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.81e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.84498e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08516e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.036e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 2.25177e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.25177e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.25177e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 1.56632e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1.56632e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.213e-09}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.02e-09}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.02e-09}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.02e-09}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.774e-07}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 1.774e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.59e-08}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.774e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.774e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.44e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.7856e-08}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.119496e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.43238e-10}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.880061599999999e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.880061599999999e-08}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.342038e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.66747e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.4114e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.4114e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 5.3951e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 5.0815e-12}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air"], "amount": 6.27268e-09}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 6.27268e-09}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 1.72521e-11}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water"], "amount": 7.9038e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.781e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "total: human health", "human health"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 2.495e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00440673}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376575}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141216}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176269}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176269}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 2.36e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.28e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 0.000165}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 5.26e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 5.26e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.139e-06}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 6.92e-06}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 3.72e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 2.67e-13}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137924}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137924}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0001721}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.9e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.84e-06}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 4.1e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 2.93e-11}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.000151}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.317e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.317e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.543e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water"], "amount": 1.0133e-06}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.00088}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.00088}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 4.45e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.16e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.000184}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 4.17e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 7.57e-12}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.03401}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03401}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03401}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.02703}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.02703}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.001594}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0011734}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0011734}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0011734}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.02104}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.02104}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.0017765}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.02104}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.02104}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-05}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.206e-06}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 3.106e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.5e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.5e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.5e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air"], "amount": 0.000192}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.79e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.000103}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.000103}, {"name": "Barium II", "categories": ["soil"], "amount": 0.000103}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.65e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water"], "amount": 4.2e-05}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.67e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.67e-07}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.640000000000001e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.546e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.2386e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.536e-07}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.97e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.5207e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.434e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0003369}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0003369}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.004116}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.0063363}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0063363}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0063363}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146879}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146879}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 8.35e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 7.280000000000001e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 7.280000000000001e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 7.280000000000001e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.421e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.421e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.951e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.421e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.421e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.27e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.76e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.66e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.48e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.64e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.63e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000449}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000449}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 6.234e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.234e-06}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.011609}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.011609}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011609}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00893}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.00893}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.023166}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00024279}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00024279}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.00024279}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.0002946}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 0.0002946}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 9.031000000000001e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.0002946}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.0002946}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 4.02e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water"], "amount": 7.34e-08}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 4.95e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water"], "amount": 8.5e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.498e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.838e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.784e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.279e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.279e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 2.32e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water"], "amount": 5.18e-11}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.53e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.169e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.54e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 2.776e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.776e-05}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.59e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 5.780000000000001e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.096e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.125e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.673e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9.679999999999999e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.602e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.602e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air"], "amount": 5.43e-08}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.79e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 6.93e-10}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.99e-09}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.085498}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.085498}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.085498}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.0674}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.0674}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.01460324}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.01901}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.01901}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.01901}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.0247131}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 0.0247131}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.00219116}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0247131}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0247131}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 2.08e-11}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 2.01e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.24e-08}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air"], "amount": 7.07e-06}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 7.07e-06}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 4.24e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.63e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 6.52e-07}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0008}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.75e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.92e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.92e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.748e-07}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 5.86e-06}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 4.62e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002871}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.738e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.738e-07}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.11e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.63e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.85e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.28e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.00028284}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00028284}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00028284}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.00028284}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.00028284}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 307}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 307}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 30.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 243}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 751}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.98e-05}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0014402428}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0014402428}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0002735699}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0002735699}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.72e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.89e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.89e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.00646436}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.00646436}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.00094201}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.00094201}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000155}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 9.388e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 9.388e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.16e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.009063000000000002}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.009063000000000002}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.009063000000000002}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.009063000000000002}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.009063000000000002}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.0022156}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0022156}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0022156}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.0022156}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.0022156}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 9.5682e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 9.5682e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.0006007}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0006007}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0006007}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0006007}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0006007}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.007932400000000001}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.007932400000000001}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007932400000000001}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.007932400000000001}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.007932400000000001}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.0001115}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0001705}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.0115}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.00343}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.54e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.33e-09}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 7.81e-06}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000172}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.11e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 4.14e-05}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.1509e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.57e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.412e-09}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.00032309}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00032309}, {"name": "Furfural", "categories": ["air"], "amount": 4.593e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.04e-05}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.5e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.5e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.1144e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8881e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00125}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.4e-05}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 8.98e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 8.98e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.527e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.077e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 3.35042e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 3.35042e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.44e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 3.5e-13}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water"], "amount": 2.44e-09}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 2.55e-10}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 4.79e-12}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 8.019999999999999e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.019999999999999e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 7.21e-14}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.0068726}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0068726}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0068726}, {"name": "Lead II", "categories": ["air"], "amount": 0.0051417}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0051417}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.00024215}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.3581e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.3581e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 2.3581e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 8.816e-05}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 8.816e-05}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.9878e-05}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 8.816e-05}, {"name": "Lead II", "categories": ["water"], "amount": 8.816e-05}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 7.73e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.0001545}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.339e-06}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 1.62e-10}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.006849}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006849}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006849}, {"name": "Mercury II", "categories": ["air"], "amount": 0.005881}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.005881}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0027675}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.000115}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.000115}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.000115}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.01326}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.01326}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.005501}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.01326}, {"name": "Mercury II", "categories": ["water"], "amount": 0.01326}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00074178}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00074178}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.00658}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00658}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00658}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00658}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00658}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.01411}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01411}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01411}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.01411}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.01411}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 4.09e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 4.09e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0019739365}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0019739365}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.0143}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.42399e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.42399e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.057e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.239e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0110961}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0110961}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000166}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000758}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 3.34e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 3.16e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.77233e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.77233e-05}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 3.16e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.003861}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.003861}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.0008010000000000001}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.0014}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.00682}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.00550859}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.00550859}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.0129}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 7.67e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.0006}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.0006}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.000301}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.2e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.95e-05}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air"], "amount": 5.274499999999999e-07}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 5.274499999999999e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 5.7386e-08}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.8356e-07}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.049e-05}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3.235e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.001692}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001692}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001692}, {"name": "Nickel II", "categories": ["air"], "amount": 0.0012563}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.0012563}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.00015966}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 4.134e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 4.134e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 4.134e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 7.68e-05}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 7.68e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.1753e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 7.68e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 7.68e-05}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.0973e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.00010839}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 5.14e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6.06e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0166}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.011e-05}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.7e-14}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.11e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.00011337}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.00011337}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 2.662e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.209e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.0088}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 2.905e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 2.329e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000137}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.843e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.623e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.46e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 6.9e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1.1176e-06}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 7.73e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.017}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.685e-05}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 9.818e-07}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.200000000000001e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.58e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 6.54e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 4.37e-07}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.23e-11}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 9.27e-12}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 2.01e-12}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air"], "amount": 0.0111}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0111}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0104}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.000172}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.000172}, {"name": "Silver I", "categories": ["soil"], "amount": 0.000172}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 4.58e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water"], "amount": 0.000157}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 2.55e-10}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 3.87e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water"], "amount": 2.08e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.345e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.3781e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000182}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0242}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000145}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 6.72e-13}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 6.72e-13}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water"], "amount": 2.63e-10}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.43e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-06}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air"], "amount": 0.00166}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.00166}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.000565}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 8.64e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water"], "amount": 0.00136}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air"], "amount": 3.854e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.854e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 5.33e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water"], "amount": 2.381e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 3.51e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.01e-05}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 3.6e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.85e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.688e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.47e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.18e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.18e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.69e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air"], "amount": 0.00016}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 0.00016}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.5e-05}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 8.57e-06}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.000138}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 2.22e-06}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 7.27e-14}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air"], "amount": 4.277e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 4.277e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 5.036e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water"], "amount": 2.342e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0086}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 7.71e-05}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00188}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 7.52e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.159e-06}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.0806e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0806e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.341e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.1816e-07}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "total: natural resources", "natural resources"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.132}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0303}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00527}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 17.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.74}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0267}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0705}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0025}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00241}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0113}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00356}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 73.4}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0443}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000654}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 22.3}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.07}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00212}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00133}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 3.07}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.099}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0202}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00874}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 278}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.83}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.918}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1.35e-08}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "acidification: terrestrial no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.72e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.17e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.63e-08}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.38e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "climate change: freshwater ecosystems no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1.45e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.45e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 1.45e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 6.82e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 8.7e-13}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 8.7e-13}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.83e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.83e-12}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 3.83e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 3.83e-12}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 5.38e-11}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.38e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 8.38e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 8.38e-12}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 9.41e-11}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 9.41e-11}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 3.7e-11}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 3.7e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.34e-12}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.34e-12}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 7.34e-12}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 7.34e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.35e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.35e-14}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 1.12e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 1.12e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.28e-11}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.28e-11}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 7.28e-11}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 7.28e-11}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.23e-12}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.23e-12}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2.71e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2.71e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8.5e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8.5e-11}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.19e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.19e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.83e-11}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.83e-11}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 8.83e-11}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 8.83e-11}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 4.38e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 4.38e-13}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.31e-13}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.31e-13}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-11}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-11}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6.66e-11}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6.66e-11}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 1.13e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 1.13e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 7.66e-11}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 7.66e-11}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1.58e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1.58e-10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 4.79e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 4.79e-13}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1.57e-10}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1.57e-10}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.87e-12}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.87e-12}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 7.87e-12}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 7.87e-12}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 3.52e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 3.52e-11}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-12}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-12}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.23e-12}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.23e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 1.22e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.22e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 6.53e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 6.53e-13}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22e-12}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-12}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1.22e-12}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.22e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.05e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.05e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.08e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.08e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7.08e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7.08e-11}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 1.57e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 1.57e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-10}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 1.86e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.86e-10}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9.21e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-10}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 2.54e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 2.54e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "climate change: terrestrial ecosystems no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 5.32e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.32e-10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 5.32e-10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 2.5e-08}, {"name": "Chloroform", "categories": ["air"], "amount": 3.19e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.19e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-07}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.4e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.97e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.97e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 3.07e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 3.07e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.45e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 3.45e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1.36e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1.36e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.69e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.69e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.6e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.6e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 4.1e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 4.1e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.67e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.67e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.67e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.67e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.55e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.55e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.95e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.95e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 9.95e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 9.95e-07}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 3.12e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 3.12e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.37e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.37e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 4.37e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 4.37e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.24e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3.24e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3.24e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.61e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.61e-08}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 4.79e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 4.79e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.44e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2.44e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2.44e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.15e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 4.15e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 4.15e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.81e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.81e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 5.8e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 5.8e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.76e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.76e-08}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5.75e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5.75e-06}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.89e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.89e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 2.89e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 2.89e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1.29e-06}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.52e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.52e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.52e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.47e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.47e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.39e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.39e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.47e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.47e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.85e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.85e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 2.6e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 2.6e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3.67e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3.67e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 5.75e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 5.75e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 6.81e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 6.81e-06}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 3.38e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.31e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.31e-06}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 9.31e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 9.31e-06}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "ecotoxicity: freshwater no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.51e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.51e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 3.64e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 5.81e-10}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.72e-15}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 2.86e-11}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42e-10}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.51e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.32e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.82e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.82e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1e-11}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.08e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.39e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.39e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1e-11}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1.27e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.08e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.39e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.54e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.97e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.78e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.7e-15}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.73e-11}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 4.28e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 4.28e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.31e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.07e-15}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.31e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.31e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.39e-20}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.54e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.39e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.77e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-11}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.83e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.95e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.18e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.18e-10}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.92e-14}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1e-10}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.05e-18}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.18e-10}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.21e-15}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.51e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.03e-14}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 6.07e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.55e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.16e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.35e-18}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.16e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.16e-11}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1.64e-11}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1.64e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.16e-13}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.06e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-09}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 7.96e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 5.27e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.91e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36e-07}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.87e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.98e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 7.46e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.72e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.44e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.18e-09}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.75e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.32e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.47e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.32e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.32e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.37e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 9.37e-11}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.46e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-10}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-10}, {"name": "Arsenic ion", "categories": ["air"], "amount": 5.98e-10}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.98e-10}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.46e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 2.54e-10}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 2.54e-10}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 2.54e-10}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.15e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 5.8e-30}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.15e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.15e-08}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.46e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 5.95e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.25e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.19e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.63e-07}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.9e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.09e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.09e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.21e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-10}, {"name": "Barium II", "categories": ["air"], "amount": 7.54e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8.14e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.45e-30}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water"], "amount": 1.94e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.58e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.59e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14e-09}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-11}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.82e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.73e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.73e-10}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.17e-10}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.19e-14}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.03e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.2e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.77e-15}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.04e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.71e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-11}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 4.77e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.77e-11}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.06e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.33e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.33e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.41e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.34e-11}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 2.9e-15}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.98e-10}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.09e-10}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-10}, {"name": "Beryllium II", "categories": ["air"], "amount": 4.57e-10}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 4.57e-10}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.04e-11}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.17e-10}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.17e-10}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.17e-10}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.47e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.41e-30}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.47e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.47e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.53e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.92e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.47e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.47e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.62e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 3.54e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-08}, {"name": "Bifenthrin", "categories": ["air"], "amount": 2.75e-08}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.35e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.22e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.36e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.36e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.12e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.36e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.07e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 6.96e-09}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.02e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.91e-09}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.16e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.16e-07}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.16e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.53e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.32e-15}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.27e-11}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.03e-14}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.36e-11}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1e-10}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-10}, {"name": "Cadmium II", "categories": ["air"], "amount": 2.08e-10}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 2.08e-10}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.12e-10}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.02e-10}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.02e-10}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.02e-10}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.04e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 4.9e-31}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.04e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.04e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.8e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-09}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.39e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.05e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.05e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-09}, {"name": "Carbendazim", "categories": ["air"], "amount": 4.88e-09}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.15e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.83e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.19e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.19e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.92e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.84e-08}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 6.91e-14}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.42e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 4.39e-19}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.59e-11}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 6.77e-21}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.51e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.55e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.77e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 4.43e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.73e-10}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.94e-14}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.13e-10}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.84e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.1e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.68e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 4.68e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.29e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.24e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.02e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.02e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.36e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.63e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.01e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.14e-11}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14e-11}, {"name": "Chromium III", "categories": ["air"], "amount": 5.89e-11}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5.89e-11}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.33e-11}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 9.79e-11}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 9.79e-11}, {"name": "Chromium III", "categories": ["soil"], "amount": 9.79e-11}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.41e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 7.98e-32}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.41e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.41e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-09}, {"name": "Chromium VI", "categories": ["air"], "amount": 2.52e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 2.52e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 2.31e-09}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.25e-09}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.25e-09}, {"name": "Chromium VI", "categories": ["soil"], "amount": 4.25e-09}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 5.78e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.37e-29}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 5.78e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.78e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.79e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.61e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.86e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06e-11}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06e-11}, {"name": "Cobalt II", "categories": ["air"], "amount": 5.67e-11}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 5.67e-11}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.56e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.56e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.56e-11}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 3.94e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 3.09e-31}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 3.94e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 3.94e-09}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-09}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-09}, {"name": "Copper ion", "categories": ["air"], "amount": 1.42e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.42e-09}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.42e-10}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.93e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.93e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.93e-10}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 6.88e-30}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1e-07}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 6.35e-15}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.88e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.17e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 5.05e-17}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.8e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.36e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.46e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.01e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.4e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.62e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 5.71e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.37e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.37e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 8.95e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.12e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.07e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.71e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.54e-09}, {"name": "Deltamethrin", "categories": ["air"], "amount": 3.71e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 7.77e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.38e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.63e-11}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.14e-08}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-10}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.29e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.62e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 9.42e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.19e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-11}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.66e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.38e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.38e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 4.02e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.27e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.96e-10}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.1e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.09e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.09e-15}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 3.34e-15}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.21e-10}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.09e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.39e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.38e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.38e-06}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.48e-09}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.34e-09}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.96e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.69e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.76e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.53e-14}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.76e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.76e-10}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.18e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.25e-09}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-10}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.19e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.4e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.06e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.36e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.36e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.81e-09}, {"name": "Diuron", "categories": ["air"], "amount": 2.45e-08}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.06e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.84e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.55e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.56e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.45e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.49e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.82e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.77e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.95e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.25e-12}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 9.25e-12}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 5.09e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48e-09}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.61e-09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 4.58e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 2.85e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 5.83e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.83e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 6.95e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.68e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.14e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.95e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.89e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 3.85e-11}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 3.44e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.47e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.55e-15}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.37e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.27e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.28e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.28e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.59e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.13e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 7.73e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.02e-14}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.14e-11}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 5.72e-11}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 5.72e-11}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.95e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 3.44e-18}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.95e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.95e-10}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.23e-13}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 3.35e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.88e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.52e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.41e-08}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.65e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.19e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 6.99e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.22e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.03e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.48e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.44e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.57e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.21e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.11e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.11e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.77e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.99e-07}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.32e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.17e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.57e-06}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-08}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2.85e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8.5e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 6e-10}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 8.17e-12}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.95e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.86e-09}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.64e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.16e-08}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.77e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.77e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.3e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 3.25e-14}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.3e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.3e-10}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.07e-19}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.93e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.29e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.92e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.41e-10}, {"name": "Furfural", "categories": ["air"], "amount": 4.88e-12}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 4.09e-10}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.66e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1.98e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.23e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.23e-08}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air"], "amount": 4.54e-18}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 4.54e-18}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 7.53e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.12e-18}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.81e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.05e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.23e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 6.48e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.58e-11}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 6.48e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.48e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.04e-15}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.06e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.06e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 9.66e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 4.5e-15}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 9.66e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 9.66e-11}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.5e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.5e-13}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.31e-12}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.24e-09}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.12e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.83e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.36e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.36e-09}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.26e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.44e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air"], "amount": 1.19e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.19e-17}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.39e-09}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.64e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 2.85e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.32e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.32e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.32e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.27e-12}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.27e-12}, {"name": "Lead II", "categories": ["air"], "amount": 4.55e-12}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.55e-12}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.41e-13}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 6.86e-13}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 6.86e-13}, {"name": "Lead II", "categories": ["soil"], "amount": 6.86e-13}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.71e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.54e-33}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.71e-10}, {"name": "Lead II", "categories": ["water"], "amount": 3.71e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.71e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.44e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.72e-11}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.2e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.14e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.14e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28e-10}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.32e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.17e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.17e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.42e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.03e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.13e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-09}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.01e-08}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.44e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.93e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.41e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.41e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.65e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.38e-10}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4e-10}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4e-10}, {"name": "Mercury II", "categories": ["air"], "amount": 3.77e-10}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 3.77e-10}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2e-11}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.66e-11}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.66e-11}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.66e-11}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.05e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.1e-31}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.05e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 3.05e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.04e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.52e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.82e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 8.97e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.92e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.92e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.26e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.03e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.85e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3.71e-10}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.73e-15}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.42e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.74e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.95e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35e-09}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.97e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.46e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.58e-10}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 2.54e-13}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.37e-12}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.25e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.42e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.3e-15}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.03e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83e-09}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.54e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.32e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.02e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.58e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.07e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.03e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-07}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 5.37e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.63e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.09e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.52e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.52e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.69e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.25e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.71e-12}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.71e-12}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.1e-11}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.84e-11}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.84e-11}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.84e-11}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.61e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 3.7e-32}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.61e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.61e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 9.39e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.16e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.73e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.44e-10}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.44e-10}, {"name": "Nickel II", "categories": ["air"], "amount": 4.74e-10}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 4.74e-10}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.78e-10}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.17e-10}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.17e-10}, {"name": "Nickel II", "categories": ["soil"], "amount": 3.17e-10}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.9e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.98e-30}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.9e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 2.9e-08}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 9.39e-13}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.28e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.26e-09}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.48e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.09e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 2.24e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.39e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.39e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.18e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.38e-12}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.04e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.95e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.66e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.83e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.22e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.22e-07}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.23e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.53e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.99e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 9.48e-11}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.96e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.44e-10}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.73e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 8.59e-15}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.73e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.73e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 9.42e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 9.42e-11}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.67e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.67e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.32e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.32e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.85e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.15e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.16e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.32e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.22e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 3.76e-13}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.09e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.58e-13}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.81e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 2.65e-14}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 4.23e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.04e-15}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.65e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.06e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.68e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.18e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 9.21e-09}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 2.99e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 9.78e-09}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.25e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.22e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1e-09}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air"], "amount": 8.14e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 8.14e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.67e-15}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.54e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.49e-09}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.18e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.34e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.1e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.21e-08}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 9.17e-18}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09e-10}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.76e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 8.17e-10}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.26e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.5e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5.62e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.68e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 3.13e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.97e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.64e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.88e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.88e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.26e-10}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.93e-10}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93e-10}, {"name": "Selenium IV", "categories": ["air"], "amount": 1.85e-10}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.85e-10}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 9.36e-11}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.68e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.68e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.68e-10}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 9.68e-09}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 9.45e-31}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 9.68e-09}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.68e-09}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.87e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.15e-09}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.41e-09}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.41e-09}, {"name": "Silver I", "categories": ["air"], "amount": 4.48e-09}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 4.48e-09}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.36e-09}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.39e-09}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.39e-09}, {"name": "Silver I", "categories": ["soil"], "amount": 2.39e-09}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 2.99e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.13e-29}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 2.99e-07}, {"name": "Silver I", "categories": ["water"], "amount": 2.99e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-09}, {"name": "Simazine", "categories": ["air"], "amount": 8.29e-09}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.95e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.31e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4e-08}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.68e-15}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75e-10}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 9.92e-08}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 9.99e-08}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-09}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.28e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.12e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.81e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7e-09}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.35e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.05e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 2.73e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.55e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 9.74e-14}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.52e-10}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.39e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.39e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 9.68e-09}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 9.68e-09}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.09e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.16e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.16e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.16e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.65e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 2.29e-29}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.65e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 3.65e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.75e-10}, {"name": "Thiabendazole", "categories": ["air"], "amount": 9.79e-10}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.12e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.58e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.48e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28e-09}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 8.81e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.5e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.02e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-10}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.03e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.34e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.24e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air"], "amount": 4.11e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.88e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.25e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.25e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.02e-11}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.02e-11}, {"name": "Tin ion", "categories": ["air"], "amount": 3.67e-11}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 3.67e-11}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 4.11e-12}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 6.56e-12}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 6.56e-12}, {"name": "Tin ion", "categories": ["soil"], "amount": 6.56e-12}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 2.95e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.17e-31}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2.95e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 2.95e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.66e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 3.28e-15}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.66e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.66e-11}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 2.55e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.96e-07}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.21e-09}, {"name": "Triallate", "categories": ["air"], "amount": 1.14e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.16e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.04e-08}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.52e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.46e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 7.68e-15}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.18e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.68e-09}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.22e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 3.41e-20}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.22e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.22e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.38e-09}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-11}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.05e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.51e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.46e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.46e-08}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.18e-20}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.22e-11}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.15e-11}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-09}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-09}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.05e-09}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.05e-09}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 7.8e-10}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.38e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.38e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.38e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.22e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 2.24e-29}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.22e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.22e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 3.81e-10}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 2.17e-15}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.62e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-09}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-09}, {"name": "Zinc II", "categories": ["air"], "amount": 2.11e-09}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 2.11e-09}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 4.03e-10}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 6.76e-10}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 6.76e-10}, {"name": "Zinc II", "categories": ["soil"], "amount": 6.76e-10}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.71e-29}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.46e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.27e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.06e-15}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.42e-10}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 7.37e-15}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.65e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 9.12e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "ecotoxicity: marine no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 8.74e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.48e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.68e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water"], "amount": 1.32e-13}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-11}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.1e-12}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.53e-11}, {"name": "2,4-D", "categories": ["water"], "amount": 1.53e-11}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.41e-12}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 9.28e-12}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 9.28e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.41e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 6.54e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 9.28e-12}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 6.35e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.5e-11}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.5e-11}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 6.5e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.39e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.39e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 5.67e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.51e-13}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.7e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.31e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.31e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.05e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.14e-14}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.74e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.74e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.35e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.63e-13}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.12e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.12e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.63e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.23e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.63e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6.63e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.66e-12}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 7.4e-13}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.17e-12}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 5.2e-12}, {"name": "Acephate", "categories": ["water"], "amount": 5.2e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 5.39e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 5.39e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 7.51e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 9.91e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.76e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water"], "amount": 2.5e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air"], "amount": 6.27e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 6.27e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 9.38e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water"], "amount": 5.28e-14}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.07e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.51e-13}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.6e-11}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["water"], "amount": 3.4e-10}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.94e-13}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.94e-13}, {"name": "Acrylate", "categories": ["water"], "amount": 1.94e-13}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air"], "amount": 3.57e-13}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 3.57e-13}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.69e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.69e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 5.45e-12}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 2.67e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 5.45e-12}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 5.45e-12}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-10}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.06e-12}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.48e-10}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.8e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.76e-10}, {"name": "Allyl chloride", "categories": ["water"], "amount": 5.73e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.81e-07}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 5.04e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.13e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 2.8e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 1.58e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 3.05e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.41e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.81e-10}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.21e-13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.21e-13}, {"name": "Aniline", "categories": ["air"], "amount": 1.13e-13}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.13e-13}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.46e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water"], "amount": 2.7e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 4.9e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 3.05e-09}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.23e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 3.05e-09}, {"name": "Anthracene", "categories": ["water"], "amount": 3.05e-09}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 2.07e-12}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.39e-09}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.39e-09}, {"name": "Arsenic ion", "categories": ["air"], "amount": 2.35e-09}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 2.35e-09}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.8e-12}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1e-11}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1e-11}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1e-11}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 2.52e-09}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 7.55e-09}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 2.52e-09}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2.52e-09}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.29e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.44e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.57e-09}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.57e-09}, {"name": "Atrazine", "categories": ["water"], "amount": 1.57e-09}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.91e-12}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.38e-09}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.97e-11}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.36e-10}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.36e-09}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.36e-09}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-10}, {"name": "Barium II", "categories": ["air"], "amount": 1.11e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.11e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 5.14e-11}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.08e-10}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.08e-10}, {"name": "Barium II", "categories": ["soil"], "amount": 1.08e-10}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.32e-10}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.32e-10}, {"name": "Barium II", "categories": ["water"], "amount": 1.32e-10}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.65e-13}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 3.1e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 4.11e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.51e-12}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.22e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.97e-12}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.97e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.63e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.63e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.15e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.36e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water"], "amount": 5.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.73e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 3.96e-12}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.8e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.56e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.56e-11}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.56e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.94e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.94e-10}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.14e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 2.16e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.78e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.78e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.82e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.82e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 1.27e-09}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 1.27e-09}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 1.23e-13}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.51e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.38e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 7.34e-13}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.17e-09}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.17e-09}, {"name": "Beryllium II", "categories": ["air"], "amount": 4.96e-09}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 4.96e-09}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.16e-12}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.58e-12}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.58e-12}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.58e-12}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.63e-09}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.57e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.63e-09}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.63e-09}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.09e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 5.37e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4.02e-07}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4.02e-07}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 8.57e-09}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.33e-11}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.45e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.57e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.91e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2.29e-07}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2.29e-07}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.61e-10}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 7.81e-12}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 1.73e-13}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.97e-10}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.44e-10}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.64e-10}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.74e-10}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.74e-10}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.14e-11}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.84e-14}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.1e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.84e-14}, {"name": "Butanol", "categories": ["water"], "amount": 5.84e-14}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.1e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water"], "amount": 3.2e-13}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-09}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-09}, {"name": "Cadmium II", "categories": ["air"], "amount": 1.76e-09}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1.76e-09}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 2.87e-12}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 5.16e-12}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 5.16e-12}, {"name": "Cadmium II", "categories": ["soil"], "amount": 5.16e-12}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 3.99e-10}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 5.62e-09}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 3.99e-10}, {"name": "Cadmium II", "categories": ["water"], "amount": 3.99e-10}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.26e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-10}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 5.4e-11}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.77e-10}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.77e-10}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-10}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.19e-10}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.63e-11}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.54e-10}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.68e-10}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.68e-10}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.12e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.55e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.55e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.76e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.44e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.87e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.4e-13}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.76e-10}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.76e-10}, {"name": "Chloramine", "categories": ["air"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water"], "amount": 5.42e-10}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.31e-11}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.35e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.05e-10}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.13e-12}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 4.68e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.68e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 4.93e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.85e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 4.93e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 4.93e-12}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.86e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 8.25e-09}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.11e-08}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.99e-08}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1.99e-08}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.08e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.48e-08}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2.77e-07}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2.77e-07}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 5.02e-10}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 9.46e-11}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 8.43e-12}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.76e-10}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.76e-10}, {"name": "Chromium III", "categories": ["air"], "amount": 2.61e-10}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.61e-10}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.21e-12}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.22e-12}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.22e-12}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.22e-12}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 4.79e-11}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 8.22e-10}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 4.79e-11}, {"name": "Chromium III", "categories": ["water"], "amount": 4.79e-11}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.25e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.25e-09}, {"name": "Chromium VI", "categories": ["air"], "amount": 3.68e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3.68e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1e-10}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.83e-10}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.83e-10}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.83e-10}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.82e-09}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.16e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.82e-09}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.82e-09}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.31e-12}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 3.42e-12}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.07e-12}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-10}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-10}, {"name": "Cobalt II", "categories": ["air"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.67e-13}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 6.37e-13}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 6.37e-13}, {"name": "Cobalt II", "categories": ["soil"], "amount": 6.37e-13}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 1.41e-10}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.38e-09}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 1.41e-10}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.41e-10}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56e-08}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-08}, {"name": "Copper ion", "categories": ["air"], "amount": 1.08e-08}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.08e-08}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 8.13e-12}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.41e-11}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.41e-11}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.41e-11}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 3.42e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 3.42e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 3.42e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-14}, {"name": "Cumene", "categories": ["air"], "amount": 6.62e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 6.62e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.47e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water"], "amount": 1.1e-12}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.47e-10}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.9e-14}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.59e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.9e-14}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.9e-14}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.65e-13}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.44e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 5.7e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.86e-14}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.43e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 8.57e-09}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 2.13e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.21e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 1.21e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.74e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.11e-10}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.11e-12}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 5.24e-11}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.34e-13}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-11}, {"name": "Deltamethrin", "categories": ["air"], "amount": 8.94e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 8.45e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.53e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 8.17e-13}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-11}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.36e-11}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.36e-11}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 3.99e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.29e-12}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 4.73e-13}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 3.68e-12}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 3.68e-12}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.31e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.78e-10}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 8.22e-12}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 7.45e-10}, {"name": "Diethanolamine", "categories": ["water"], "amount": 2.34e-13}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.01e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.4e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.4e-15}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-12}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-12}, {"name": "Diethylamine", "categories": ["air"], "amount": 1.89e-12}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.89e-12}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.21e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.16e-12}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.66e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.03e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.98e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.63e-08}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.63e-08}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.09e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.75e-11}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.43e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 9.68e-11}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air"], "amount": 4.02e-12}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 4.02e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.1e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 2.44e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 6.49e-13}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 6.94e-11}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 5.97e-13}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-11}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3.3e-11}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 7.85e-12}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 5.09e-11}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.15e-10}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.15e-10}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 4.99e-11}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2e-11}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-09}, {"name": "Diuron", "categories": ["air"], "amount": 1.08e-09}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 8.86e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.74e-10}, {"name": "Diuron", "categories": ["water"], "amount": 1.3e-09}, {"name": "Dodecanol", "categories": ["water"], "amount": 9.08e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.18e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.07e-12}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 4.69e-13}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2.76e-12}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 4.14e-13}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.37e-11}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.25e-10}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.34e-10}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.41e-10}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 8.24e-10}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 1.67e-09}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1.67e-09}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.87e-07}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.31e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.26e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.26e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 7.39e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 7.39e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 7.39e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.6e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.6e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.87e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.95e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 6.49e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.95e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.95e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 7.2e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.08e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 7.2e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 7.2e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.35e-14}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 9.45e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.35e-14}, {"name": "Ethanol", "categories": ["water"], "amount": 2.35e-14}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-12}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.74e-13}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.91e-12}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.91e-12}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 7.25e-12}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.05e-12}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 4.95e-11}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 2.76e-13}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.76e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 9.26e-13}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 2.77e-13}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.57e-12}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 1.57e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1.06e-12}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.4e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.87e-12}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 4.01e-11}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 3.78e-11}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.25e-09}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.18e-10}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.06e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.84e-11}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 6.57e-11}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.48e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.37e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.36e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.36e-11}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.55e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.7e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.7e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.44e-08}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 2.23e-09}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.49e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 4.49e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 4.49e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 4.49e-08}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.23e-09}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.3e-10}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.07e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.52e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 6.07e-09}, {"name": "Fluorene", "categories": ["air"], "amount": 1.72e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 3.45e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 9.52e-11}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.05e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.56e-10}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.48e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.63e-12}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.63e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 2.49e-12}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.09e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.49e-12}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.49e-12}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.88e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water"], "amount": 1.26e-13}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 2.5e-12}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.18e-12}, {"name": "Furfural", "categories": ["air"], "amount": 8.18e-13}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 7.66e-13}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.53e-11}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 7.66e-13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.07e-11}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7e-12}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 8.8e-13}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 5.98e-12}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 5.98e-12}, {"name": "Glyphosate", "categories": ["water"], "amount": 5.98e-12}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.28e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 3.05e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.36e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.36e-10}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air"], "amount": 1.05e-17}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.05e-17}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 8.82e-11}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.59e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water"], "amount": 1.7e-13}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.91e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.94e-10}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.06e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.38e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.58e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.58e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.58e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.58e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 5.8e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.8e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 5.8e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 5.8e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 4e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 4e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.15e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 9.46e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.15e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.15e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.47e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.43e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.43e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 1.57e-14}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.74e-11}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.83e-11}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.13e-11}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.06e-11}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 7.99e-11}, {"name": "Imidacloprid", "categories": ["water"], "amount": 7.99e-11}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 3.56e-11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.06e-11}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air"], "amount": 2.94e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-17}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.83e-11}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.53e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5.2e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 1.01e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 1.01e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 1.01e-06}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-10}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-10}, {"name": "Lead II", "categories": ["air"], "amount": 7.72e-11}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 7.72e-11}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 8.47e-15}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 1.31e-14}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 1.31e-14}, {"name": "Lead II", "categories": ["soil"], "amount": 1.31e-14}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.06e-11}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.44e-10}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.06e-11}, {"name": "Lead II", "categories": ["water"], "amount": 1.06e-11}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.13e-12}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.32e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 8.13e-12}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.64e-12}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 4.35e-13}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.08e-12}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.08e-12}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-11}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.11e-12}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 3.5e-11}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 3.5e-11}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.16e-11}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 7.31e-13}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 7.71e-14}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.06e-10}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.95e-10}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.22e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.31e-10}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.55e-10}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.55e-10}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.4e-11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.01e-12}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.2e-09}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.2e-09}, {"name": "Mercury II", "categories": ["air"], "amount": 6.28e-09}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6.28e-09}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 4.21e-13}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 5.57e-13}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 5.57e-13}, {"name": "Mercury II", "categories": ["soil"], "amount": 5.57e-13}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 9.61e-10}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.88e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 9.61e-10}, {"name": "Mercury II", "categories": ["water"], "amount": 9.61e-10}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.76e-12}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5.62e-11}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 5.06e-13}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.89e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 6.55e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 3.24e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.48e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.48e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.49e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.49e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.22e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.22e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 8.72e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 8.72e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 8.72e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.05e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.02e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.02e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.12e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5e-11}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 2.33e-14}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 7.48e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.33e-14}, {"name": "Methanol", "categories": ["water"], "amount": 2.33e-14}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 4.83e-11}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.66e-10}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-10}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 2.16e-11}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.19e-10}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.97e-10}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.97e-10}, {"name": "Methomyl", "categories": ["water"], "amount": 1.97e-10}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 1.83e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.32e-12}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.32e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.03e-12}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 4.13e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.03e-12}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.03e-12}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.6e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 7.6e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.02e-14}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.03e-11}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 7.3e-13}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.28e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 7.3e-13}, {"name": "Methylamine", "categories": ["water"], "amount": 7.3e-13}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 1.93e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.06e-10}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 8.23e-11}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.38e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.29e-09}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.29e-09}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.29e-09}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-10}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 8.92e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.67e-10}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.13e-08}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 3.02e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.5e-09}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.61e-08}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 4.42e-08}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 4.42e-08}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.78e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.65e-12}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-11}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-11}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.98e-11}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.98e-11}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2.98e-13}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.44e-13}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.44e-13}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 5.44e-13}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.09e-11}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.74e-11}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.09e-11}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.09e-11}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 7.85e-12}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 7.19e-13}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 9.02e-12}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 8.17e-10}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.16e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.15e-11}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.24e-10}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-09}, {"name": "Nickel II", "categories": ["air"], "amount": 3.21e-09}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.21e-09}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 5.56e-12}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 9.86e-12}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 9.86e-12}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.86e-12}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.36e-09}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.03e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.36e-09}, {"name": "Nickel II", "categories": ["water"], "amount": 1.36e-09}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62e-11}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62e-11}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.24e-11}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.57e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 3.74e-13}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5.13e-11}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 7.62e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 7.36e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.96e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.96e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.7e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.12e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.16e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.12e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.12e-10}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7.49e-14}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.61e-10}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 9.96e-12}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.06e-12}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.56e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.76e-11}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.55e-09}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.55e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.91e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 3.02e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.61e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.71e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.21e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-12}, {"name": "Phenol", "categories": ["air"], "amount": 8.92e-13}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.92e-13}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.16e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water"], "amount": 2.49e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.14e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.13e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.16e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.16e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.09e-10}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.96e-10}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 4.91e-11}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.05e-10}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.78e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.17e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.26e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 4.38e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.04e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 4.38e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 4.38e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.97e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.59e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.4e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 3.38e-12}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 6.28e-12}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.94e-11}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.95e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.44e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.67e-10}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 4.07e-09}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.24e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.87e-11}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.57e-10}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.25e-11}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air"], "amount": 5.97e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.97e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.99e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water"], "amount": 5.78e-14}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 8.06e-11}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 5.1e-13}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.54e-10}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.92e-11}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.38e-10}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.54e-10}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.54e-10}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.54e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.31e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.31e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.31e-13}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 4.9e-11}, {"name": "Pyrene", "categories": ["air"], "amount": 2.26e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.64e-08}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.46e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.46e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.09e-13}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.89e-11}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 3.98e-12}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.96e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.39e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.54e-10}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.44e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2.37e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2.37e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.06e-12}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 3.81e-13}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-09}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-09}, {"name": "Selenium IV", "categories": ["air"], "amount": 1.07e-09}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.07e-09}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.95e-12}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 5.29e-12}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 5.29e-12}, {"name": "Selenium IV", "categories": ["soil"], "amount": 5.29e-12}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 4.58e-10}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 3.43e-09}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 4.58e-10}, {"name": "Selenium IV", "categories": ["water"], "amount": 4.58e-10}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.57e-12}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 4.33e-11}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.56e-08}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.56e-08}, {"name": "Silver I", "categories": ["air"], "amount": 5.23e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 5.23e-08}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 3.29e-11}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 5.77e-11}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 5.77e-11}, {"name": "Silver I", "categories": ["soil"], "amount": 5.77e-11}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.09e-08}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.67e-07}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.09e-08}, {"name": "Silver I", "categories": ["water"], "amount": 1.09e-08}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.97e-10}, {"name": "Simazine", "categories": ["air"], "amount": 3.6e-10}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.92e-11}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.88e-10}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 5.03e-10}, {"name": "Simazine", "categories": ["water"], "amount": 5.03e-10}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.25e-10}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air"], "amount": 9.97e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.97e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 7.55e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.5e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.55e-13}, {"name": "Styrene", "categories": ["water"], "amount": 7.55e-13}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.7e-10}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.35e-10}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-10}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.59e-11}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.13e-10}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.53e-10}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.16e-11}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 7.8e-12}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.75e-10}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.77e-11}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.05e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.86e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.86e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.85e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.85e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.5e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.26e-11}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 2.04e-09}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 2.04e-09}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 5.63e-10}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1.09e-09}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1.09e-09}, {"name": "Thallium I", "categories": ["soil"], "amount": 1.09e-09}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.61e-09}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 5e-09}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.61e-09}, {"name": "Thallium I", "categories": ["water"], "amount": 2.61e-09}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.08e-11}, {"name": "Thiabendazole", "categories": ["air"], "amount": 5.14e-11}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1.85e-12}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.29e-11}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.76e-11}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.76e-11}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.73e-11}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-10}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.57e-10}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.26e-10}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 9e-10}, {"name": "Thiodicarb", "categories": ["water"], "amount": 9e-10}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.53e-11}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 6.77e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.67e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 9.07e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.32e-10}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.32e-10}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-09}, {"name": "Thiram", "categories": ["air"], "amount": 9.61e-10}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.45e-11}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.16e-10}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.73e-09}, {"name": "Thiram", "categories": ["water"], "amount": 2.73e-09}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.12e-10}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.12e-10}, {"name": "Tin ion", "categories": ["air"], "amount": 4.92e-10}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 4.92e-10}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1.03e-13}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1.63e-13}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1.63e-13}, {"name": "Tin ion", "categories": ["soil"], "amount": 1.63e-13}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.1e-10}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.57e-09}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.1e-10}, {"name": "Tin ion", "categories": ["water"], "amount": 1.1e-10}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air"], "amount": 3.48e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.48e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 8.98e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water"], "amount": 2.9e-13}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.45e-10}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.34e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.5e-11}, {"name": "Triallate", "categories": ["air"], "amount": 1.06e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.41e-11}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.14e-10}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.37e-12}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 6.77e-11}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.15e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.15e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.68e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.71e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.68e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.68e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.33e-11}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.32e-15}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.39e-10}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.41e-11}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.02e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.83e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.83e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.59e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water"], "amount": 7.98e-14}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 5.98e-13}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.45e-09}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.45e-09}, {"name": "Vanadium V", "categories": ["air"], "amount": 5.16e-09}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 5.16e-09}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 3.27e-11}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 5.78e-11}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 5.78e-11}, {"name": "Vanadium V", "categories": ["soil"], "amount": 5.78e-11}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 7.96e-09}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.65e-08}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 7.96e-09}, {"name": "Vanadium V", "categories": ["water"], "amount": 7.96e-09}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.88e-12}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air"], "amount": 1.74e-14}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.74e-14}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.77e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water"], "amount": 3.07e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.43e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 8.57e-09}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.73e-09}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.73e-09}, {"name": "Zinc II", "categories": ["air"], "amount": 2.59e-09}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 2.59e-09}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.45e-11}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.42e-11}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.42e-11}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.42e-11}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 7.47e-09}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 8.59e-09}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 7.47e-09}, {"name": "Zinc II", "categories": ["water"], "amount": 7.47e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.91e-11}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.1e-10}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 9.33e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.11e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 9.33e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 9.33e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.81e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.81e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.31e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.04e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 4.78e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "ecotoxicity: terrestrial no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.14e-12}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.01e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.07e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water"], "amount": 7.92e-12}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.74e-13}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.35e-14}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 6.16e-15}, {"name": "2,4-D", "categories": ["water"], "amount": 6.16e-15}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.25e-18}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 5.32e-20}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 3.8e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.25e-18}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 5.42e-13}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 5.42e-13}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 2.55e-12}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.75e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.1e-12}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.15e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.21e-14}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.14e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.96e-18}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.1e-15}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 7.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.84e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.27e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 2.66e-14}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.6e-15}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 9.01e-16}, {"name": "Acephate", "categories": ["water"], "amount": 9.01e-16}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.44e-13}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 3.86e-12}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.86e-16}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water"], "amount": 7.63e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 5.07e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water"], "amount": 2.69e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 6.94e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 3.48e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-09}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.45e-16}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water"], "amount": 4.85e-14}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.21e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.21e-10}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 9.88e-12}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.57e-11}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.84e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 8.32e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.32e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.32e-09}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 1.66e-09}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.97e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 7.17e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.31e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 3.94e-08}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 6.71e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 9.75e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.61e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 4.67e-13}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water"], "amount": 7.09e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 3.97e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.28e-10}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water"], "amount": 8.11e-10}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.63e-07}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.63e-07}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.58e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 4.58e-07}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 2.6e-29}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 4.48e-29}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 4.48e-29}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 4.48e-29}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.28e-26}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 4.63e-27}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.28e-26}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.28e-26}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.59e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 1.64e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water"], "amount": 1.15e-10}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 6.3e-13}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 7.54e-16}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.98e-09}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.64e-15}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.56e-15}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.94e-16}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.94e-16}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-08}, {"name": "Barium II", "categories": ["air"], "amount": 1.13e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.13e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 2.06e-28}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 4.32e-28}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 4.32e-28}, {"name": "Barium II", "categories": ["soil"], "amount": 4.32e-28}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 5.46e-28}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.03e-28}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 5.46e-28}, {"name": "Barium II", "categories": ["water"], "amount": 5.46e-28}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.96e-18}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 5.88e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.19e-15}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.28e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.08e-13}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.08e-13}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 6.63e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 4.87e-13}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water"], "amount": 9.79e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.05e-11}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.47e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.85e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 5.52e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.91e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.91e-10}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 8.89e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.89e-10}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 8.64e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 5.05e-12}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 5.05e-12}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 9.12e-14}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.06e-14}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 5.44e-13}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.37e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.37e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.64e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.64e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.39e-29}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.97e-29}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.97e-29}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.97e-29}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.97e-26}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.93e-26}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.97e-26}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.97e-26}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.08e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.11e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 3.33e-09}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.9e-09}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.12e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.49e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.56e-09}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.56e-09}, {"name": "Bisphenol A", "categories": ["water"], "amount": 7.3e-14}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.14e-16}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 8.57e-18}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.07e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.31e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 3.77e-14}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 7.59e-15}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 7.59e-15}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 1.71e-14}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water"], "amount": 2.12e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.01e-13}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water"], "amount": 4.2e-12}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 9.6e-07}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 9.6e-07}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.65e-29}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.96e-29}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.96e-29}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.96e-29}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2.52e-27}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.08e-27}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2.52e-27}, {"name": "Cadmium II", "categories": ["water"], "amount": 2.52e-27}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.7e-12}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.58e-11}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.58e-11}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.48e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.57e-12}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 9.95e-13}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.75e-13}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.75e-13}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 9.71e-12}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 9.71e-12}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 9.71e-12}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.12e-17}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.81e-14}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.98e-18}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water"], "amount": 3.72e-17}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 3.76e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 7.06e-12}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.5e-12}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 5.27e-12}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.49e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.06e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.11e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.88e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 8.95e-09}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 3.18e-08}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 3.18e-08}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.86e-09}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 8.15e-17}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 2.1e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.1e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.02e-29}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.86e-29}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.86e-29}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.86e-29}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 4.39e-28}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.91e-28}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 4.39e-28}, {"name": "Chromium III", "categories": ["water"], "amount": 4.39e-28}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.09e-07}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.09e-07}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 4.66e-28}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 8.52e-28}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 8.52e-28}, {"name": "Chromium VI", "categories": ["soil"], "amount": 8.52e-28}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2e-26}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 8e-27}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2e-26}, {"name": "Chromium VI", "categories": ["water"], "amount": 2e-26}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.51e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 3.75e-13}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 2.05e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2.05e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.69e-30}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 4.66e-30}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 4.66e-30}, {"name": "Cobalt II", "categories": ["soil"], "amount": 4.66e-30}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 1.21e-27}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.2e-27}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 1.21e-27}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.21e-27}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.73e-06}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.73e-06}, {"name": "Copper ion", "categories": ["air"], "amount": 6.04e-06}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 6.04e-06}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 6.1e-29}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.05e-28}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.05e-28}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.05e-28}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.98e-26}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.1e-26}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.98e-26}, {"name": "Copper ion", "categories": ["water"], "amount": 2.98e-26}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.57e-13}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water"], "amount": 5.31e-13}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 3.84e-12}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 2.31e-15}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water"], "amount": 7.36e-15}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.73e-16}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.94e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 1.55e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.7e-19}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.9e-09}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.02e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 3.08e-08}, {"name": "Cypermethrin", "categories": ["water"], "amount": 3.08e-08}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.9e-12}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.33e-16}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.78e-10}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 5.78e-14}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-12}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1.68e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.57e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.22e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1.04e-22}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 3.11e-10}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 7.38e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.64e-16}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.64e-16}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.21e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3e-09}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 7.92e-15}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.91e-17}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.91e-17}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6.85e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1.05e-11}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.7e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 6.77e-17}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.73e-14}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.73e-14}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.22e-13}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water"], "amount": 8.74e-13}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.17e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 7.85e-09}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.85e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 9.29e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.68e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 8.57e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.64e-12}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 3.84e-12}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 7.98e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3e-11}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.47e-14}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 4.83e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.94e-17}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.52e-18}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 7.52e-18}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.3e-12}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.26e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.33e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 5.23e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4.31e-11}, {"name": "Diuron", "categories": ["water"], "amount": 2.9100000000000002e-11}, {"name": "Dodecanol", "categories": ["water"], "amount": 8.69e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.45e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 7.83e-16}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.49e-19}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 5.34e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.17e-21}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.82e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.64e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.66e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 1.22e-09}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.69e-10}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.69e-10}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.29e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 2.2e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.27e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 2.2e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 2.2e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.06e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.06e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.1e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.41e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.41e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.96e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.14e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water"], "amount": 2.99e-13}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 6.4e-17}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.88e-22}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.88e-22}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.45e-11}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 1.64e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1.73e-08}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.17e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.63e-12}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 1.23e-15}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.57e-15}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 5.19e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.79e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.71e-16}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 7.41e-18}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 7.27e-09}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 5.54e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.51e-12}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.09e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.28e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.65e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.31e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.77e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.98e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 3.06e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.65e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.29e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.02e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.02e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.02e-08}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 4.37e-09}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.61e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.13e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 9.13e-10}, {"name": "Fluorene", "categories": ["air"], "amount": 2.07e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.37e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.14e-09}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.19e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.94e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.62e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 5.77e-13}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.01e-11}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 5.22e-17}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water"], "amount": 1.04e-14}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.58e-20}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 7.07e-14}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.07e-12}, {"name": "Furfural", "categories": ["air"], "amount": 1.81e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.53e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.44e-21}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.99e-16}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.73e-22}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.77e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.26e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 9.09e-14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 9.09e-14}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.36e-16}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-16}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 2.92e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.98e-16}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water"], "amount": 2.21e-15}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.23e-14}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.73e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.18e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.55e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 9.06e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.09e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.37e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.37e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 4.33e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.58e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 4.33e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 4.33e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.98e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.98e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.95e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.95e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 8.95e-15}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4.92e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 6.83e-17}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 7.03e-21}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.26e-21}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.26e-21}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.44e-12}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 4.29e-16}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.29e-16}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.95e-12}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.55e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.14e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.28e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 2.01e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 2.01e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2.01e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11e-07}, {"name": "Lead II", "categories": ["air"], "amount": 2.15e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.15e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 5.2e-32}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.05e-32}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.05e-32}, {"name": "Lead II", "categories": ["soil"], "amount": 8.05e-32}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 7.18e-29}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.15e-28}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 7.18e-29}, {"name": "Lead II", "categories": ["water"], "amount": 7.18e-29}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 4.48e-18}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5.81e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.33e-18}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.14e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 7.51e-16}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.25e-16}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.25e-16}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 6.71e-15}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.01e-14}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.01e-14}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.35e-21}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.48e-16}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.17e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 9.63e-15}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.09e-16}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.08e-16}, {"name": "Mancozeb", "categories": ["water"], "amount": 1.08e-16}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 9.9e-15}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.72e-13}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 6.85e-06}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6.85e-06}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.3e-30}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 3.04e-30}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 3.04e-30}, {"name": "Mercury II", "categories": ["soil"], "amount": 3.04e-30}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 5.84e-27}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 8.49e-27}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 5.84e-27}, {"name": "Mercury II", "categories": ["water"], "amount": 5.84e-27}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 3.14e-15}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 2.18e-15}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.3e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.08e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.5e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.5e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 5.61e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.14e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.48e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 8.37e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.48e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.48e-11}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 3.48e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water"], "amount": 4.81e-13}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.36e-10}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 4.81e-12}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.35e-12}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water"], "amount": 7.73e-13}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 6.18e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.4e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.19e-11}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.27e-13}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.45e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.61e-10}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 8.27e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.1e-10}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.79e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.29e-10}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.66e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 9.76e-12}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.02e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 7.39e-16}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.2e-16}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2e-16}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 7.28e-09}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 7.28e-09}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.61e-30}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.93e-30}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.93e-30}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.93e-30}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 6.93e-29}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 5.11e-29}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 6.93e-29}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 6.93e-29}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1.6e-13}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 6.87e-14}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 9.13e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 6.66e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.1e-11}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 6.91e-09}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 9.36e-07}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9.36e-07}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.31e-29}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 5.85e-29}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 5.85e-29}, {"name": "Nickel II", "categories": ["soil"], "amount": 5.85e-29}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 9.01e-27}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.89e-27}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 9.01e-27}, {"name": "Nickel II", "categories": ["water"], "amount": 9.01e-27}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.39e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.69e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 9.69e-15}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.94e-10}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1.52e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 1.08e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.34e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.54e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.81e-11}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.35e-19}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.15e-09}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 2.05e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 7.34e-16}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 7.89e-10}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 7.89e-10}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.32e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.57e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.22e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.41e-17}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 6.3e-14}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water"], "amount": 1.12e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.48e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.48e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.67e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.67e-08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.79e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.79e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.3e-12}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.53e-12}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.38e-10}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.1e-09}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.74e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.13e-12}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 3.24e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.87e-12}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.22e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 4.56e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 8.37e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-14}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.04e-13}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.73e-15}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 8.88e-10}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 4.31e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 5.75e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 6.12e-10}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.92e-08}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 4.29e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 4.49e-16}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.86e-11}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.42e-14}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water"], "amount": 3.44e-13}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.32e-14}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.31e-11}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 6.11e-12}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 2.7e-12}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.55e-12}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.19e-15}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.33e-13}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Pyrene", "categories": ["air"], "amount": 1.38e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 4.89e-15}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1.36e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 7.6e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 3.04e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.06e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.06e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.09e-15}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.01e-14}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.48e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 3.1e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 3.1e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.57e-29}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 2.83e-29}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 2.83e-29}, {"name": "Selenium IV", "categories": ["soil"], "amount": 2.83e-29}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 2.72e-27}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 2.07e-27}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 2.72e-27}, {"name": "Selenium IV", "categories": ["water"], "amount": 2.72e-27}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.77e-13}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.59e-13}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.81e-05}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.81e-05}, {"name": "Silver I", "categories": ["air"], "amount": 3.33e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 3.33e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 2.02e-28}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 3.52e-28}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 3.52e-28}, {"name": "Silver I", "categories": ["soil"], "amount": 3.52e-28}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 7.32e-26}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 9.31e-26}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 7.32e-26}, {"name": "Silver I", "categories": ["water"], "amount": 7.32e-26}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.07e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.91e-11}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.48e-11}, {"name": "Simazine", "categories": ["water"], "amount": 3.48e-11}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 8.76e-10}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 4.77e-14}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water"], "amount": 1.58e-13}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.43e-08}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.68e-11}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.03e-12}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.01e-12}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water"], "amount": 9.55e-13}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 6.71e-14}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 3.26e-09}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 5.45e-10}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.57e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-12}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2e-07}, {"name": "Thallium I", "categories": ["air"], "amount": 2.91e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 2.91e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.7e-27}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 3.27e-27}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 3.27e-27}, {"name": "Thallium I", "categories": ["soil"], "amount": 3.27e-27}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 8.58e-27}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 2.21e-27}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 8.58e-27}, {"name": "Thallium I", "categories": ["water"], "amount": 8.58e-27}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.24e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 4.04e-14}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.18e-14}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.18e-14}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 5.59e-10}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 1.11e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.34e-09}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.34e-09}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.16e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 8.34e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.68e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.22e-11}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.22e-11}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air"], "amount": 6.43e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 3.45e-12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.84e-12}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.09e-11}, {"name": "Thiram", "categories": ["water"], "amount": 2.09e-11}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 2.77e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 2.77e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 5.92e-31}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 7.01e-28}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 8.49e-28}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 7.01e-28}, {"name": "Tin ion", "categories": ["water"], "amount": 7.01e-28}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.06e-13}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water"], "amount": 3.43e-13}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 9.93e-09}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2.02e-10}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.77e-14}, {"name": "Triallate", "categories": ["air"], "amount": 5.36e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.14e-10}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.07e-10}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.64e-14}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.82e-13}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.03e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.02e-11}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.09e-17}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 2.05e-16}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.88e-10}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.29e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.5e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.63e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.63e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 7.82e-18}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water"], "amount": 1.47e-16}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 2.26e-15}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.62e-28}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2.85e-28}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2.85e-28}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2.85e-28}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 4.48e-26}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.15e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 4.48e-26}, {"name": "Vanadium V", "categories": ["water"], "amount": 4.48e-26}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.67e-11}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 6.28e-14}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water"], "amount": 2.09e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.9e-09}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8e-07}, {"name": "Zinc II", "categories": ["air"], "amount": 6.78e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 6.78e-07}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 8.39e-29}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4e-28}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4e-28}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.4e-28}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 5.72e-26}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 8.11e-27}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 5.72e-26}, {"name": "Zinc II", "categories": ["water"], "amount": 5.72e-26}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 8.48e-10}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 9.19e-14}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.04e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 2.13e-13}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water"], "amount": 7.07e-13}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2.09e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "eutrophication: freshwater no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "eutrophication: marine no LT"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "land use no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "photochemical oxidant formation: terrestrial ecosystems no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.71e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.71e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.92e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.15e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.15e-08}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.79e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.79e-09}, {"name": "Acetone", "categories": ["air"], "amount": 4.52e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.52e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.07e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.07e-08}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.62e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.43e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.43e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.54e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air"], "amount": 3.92e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.96e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.96e-08}, {"name": "Cumene", "categories": ["air"], "amount": 2.41e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.11e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.47e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -7.54e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -7.54e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56e-08}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.47e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Formic acid", "categories": ["air"], "amount": 2.26e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Heptane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Hexane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-09}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 8.6e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.6e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 7.54e-10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Methanol", "categories": ["air"], "amount": 9.8e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.97e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.29e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Phenol", "categories": ["air"], "amount": -3.77e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.77e-09}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanol", "categories": ["air"], "amount": 3.62e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propionic acid", "categories": ["air"], "amount": 9.8e-09}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Styrene", "categories": ["air"], "amount": 3.77e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77e-09}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.54e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Toluene", "categories": ["air"], "amount": 3.32e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48e-08}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "water use: aquatic ecosystems no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "human health no LT", "climate change: human health no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 8.12e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 1.25e-05}, {"name": "Chloroform", "categories": ["air"], "amount": 4.87e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.87e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-05}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.14e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.14e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.000301}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.000301}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.69e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.69e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000527}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000527}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.000207}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.000207}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 4.11e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.44e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.44e-07}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000626}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000626}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.000626}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.000626}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000408}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000408}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.000408}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.000408}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 2.37e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 2.37e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000152}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000152}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.000152}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.000152}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000476}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000476}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.000476}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.000476}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.000667}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.000495}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.45e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.45e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 7.31e-07}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 7.31e-07}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000373}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000373}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.000373}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.000373}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000633}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000633}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.000633}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.000633}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.000429}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.000429}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.000885}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.68e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.68e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.000877}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.000877}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 4.41e-05}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000197}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.9e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 6.82e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.65e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.65e-06}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 6.82e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000283}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000283}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.000396}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.00056}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.00056}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.000877}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00104}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.000516}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00142}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "human health no LT", "human toxicity: carcinogenic no LT"], "exchanges": [{"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.00156}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.00156}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 4.18e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 4.37e-06}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 4.37e-06}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 4.37e-06}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.84e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1e-24}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.84e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 3.84e-05}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.24e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.17e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.42e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.19e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.000311}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000311}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00381}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.000859}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.000859}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.91e-08}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 4.02e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 4.02e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 4.02e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.53e-07}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.29e-25}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.53e-07}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.53e-07}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.000645}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.000645}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 6.49e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 6.66e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 6.66e-07}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2.04e-07}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.12e-25}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2.04e-07}, {"name": "Cadmium II", "categories": ["water"], "amount": 2.04e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 9.72e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 4.29e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.23e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.86e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.65e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 7.03e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.2e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 3.22e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 3.22e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.64e-05}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.33e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.17e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 2.73e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.23e-05}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.41e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.41e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.08e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4.55e-07}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.000315}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.000315}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.39e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.38e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.38e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 5.31e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 5.31e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.78e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.67e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.78e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.78e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 6.21e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 6.21e-06}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 4.26e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.26e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-06}, {"name": "Lead II", "categories": ["air"], "amount": 5.58e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 5.58e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 5.25e-08}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 5.36e-08}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 5.36e-08}, {"name": "Lead II", "categories": ["soil"], "amount": 5.36e-08}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.45e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 6.05e-28}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.45e-08}, {"name": "Lead II", "categories": ["water"], "amount": 3.45e-08}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 4.15e-05}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 8.13e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 8.13e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.5e-07}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.55e-07}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.55e-07}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.55e-07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.28e-06}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.95e-26}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.28e-06}, {"name": "Mercury II", "categories": ["water"], "amount": 1.28e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.28e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.93e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.28e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.28e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000755}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000755}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000783}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000783}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000719}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000409}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000719}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000719}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.97e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.97e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 0.000104}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.000104}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 6.88e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 7.09e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 7.09e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 7.09e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.13e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.68e-25}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.13e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 1.13e-05}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.82e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.000108}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.000108}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.06e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.06e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.06e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.93e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.54e-05}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.95e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.21e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.24e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.33e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 3.76e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.74e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 3.76e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.76e-06}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "human health no LT", "human toxicity: non-carcinogenic no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 3.35e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0044}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.28e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 2e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.22e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.09e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.66e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.66e-07}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 7.34e-05}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.89e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.81e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.75e-06}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.42e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water"], "amount": 9.33e-07}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 7.82e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 7.82e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 8.19e-07}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.69e-25}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.94e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000565}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000565}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.00204}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.00204}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 2.37e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 7.62e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 7.62e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 7.62e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.000666}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 4.38e-24}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.000666}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.000666}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 1.39e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air"], "amount": 2.33e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.33e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.04e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.72e-25}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water"], "amount": 9.67e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.08e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3.06e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.86e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 2.96e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.15e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.07e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.44e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000306}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.83e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.83e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00618}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00618}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.89e-10}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.02e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.02e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.02e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.88e-07}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 8.91e-23}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.88e-07}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.88e-07}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.25e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.67e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.63e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.63e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.47e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.44e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000438}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000438}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.52e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.52e-06}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.19e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.19e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.000326}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.000326}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.4e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.2e-05}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.2e-05}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.2e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.27e-05}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.3e-25}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.27e-05}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.27e-05}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.64e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.89e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.89e-06}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000187}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000187}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.53e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.96e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 2.25e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.36e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.92e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.58e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.86e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.46e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.28e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.28e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 4.65e-09}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4.65e-09}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 4.22e-12}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.26e-30}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water"], "amount": 1.11e-10}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00126}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00126}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.32e-25}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 7.82e-07}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 4.77e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 4.77e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 9.9e-11}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 5.15e-28}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water"], "amount": 2.87e-08}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.01e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.72e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.86e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.86e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 6.38e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.98e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000197}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2.18e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.18e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.82e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 6.5e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.84e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.84e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.3e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.3e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.69e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5.04e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.04e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.000119}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.66e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.000119}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.000119}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.54e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.33e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 7.09e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.02e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air"], "amount": 8.09e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 8.09e-06}, {"name": "Furfural", "categories": ["air"], "amount": 3.63e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00122}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.57e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 9.03e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 9.03e-06}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000122}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000122}, {"name": "Lead II", "categories": ["air"], "amount": 0.000451}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.000451}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.4e-09}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 4.42e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 4.42e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 4.42e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2.83e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 4.95e-26}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2.83e-06}, {"name": "Lead II", "categories": ["water"], "amount": 2.83e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.000113}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.02e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000561}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000561}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0015}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0015}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.35e-08}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 7.09e-06}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 7.09e-06}, {"name": "Mercury II", "categories": ["soil"], "amount": 7.09e-06}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.53e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.02e-25}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.53e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 3.53e-05}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000349}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 3.63e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 3.63e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 7.64e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.61e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3.58e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3.58e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.12e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.12e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000591}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000591}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000611}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000611}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000563}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000319}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000563}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000563}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.79e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4.79e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.42e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 4.79e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 4.79e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2.35e-07}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 8.82e-26}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 6.02e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 4.86e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.56e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.51e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.35e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-07}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-07}, {"name": "Nickel II", "categories": ["air"], "amount": 1.33e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.33e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 9.26e-10}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 9.39e-08}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 9.39e-08}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.39e-08}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.49e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.1e-27}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.49e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 1.49e-07}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.74e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 3.24e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.02e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.92e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.39e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 9.8e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.89e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000137}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 7.23e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.13e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.72e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 5.29e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 9.76e-08}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 5.13e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.78e-08}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 6.25e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 3.37e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.28e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.21e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air"], "amount": 0.000465}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.000465}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 6.95e-08}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.76e-25}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water"], "amount": 1.51e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.05e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water"], "amount": 4.81e-09}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.42e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 2.71e-06}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 9.01e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 9.01e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 9.26e-06}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.04e-25}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water"], "amount": 3.1e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.2e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.63e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.18e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.12e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.92e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.92e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.66e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.35e-05}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.35e-05}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4.06e-08}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.6e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water"], "amount": 6.29e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4.15e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.58e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 7.2e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 7.2e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.55e-08}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.86e-26}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 5.61e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.88e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.36e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.41e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.16e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "human health no LT", "ionising radiation no LT"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 2.92e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 2.07e-13}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 3.22e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 2.28e-11}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 3.34e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 6.06e-12}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 3.22e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water"], "amount": 5.88e-08}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 3.96e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water"], "amount": 6.18e-08}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 1.86e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water"], "amount": 2.35e-11}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 1.67e-11}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 1.6e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 1.8e-08}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 2.45e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.77e-13}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 1.51e-10}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water"], "amount": 1.71e-09}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 2.04e-10}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 3.84e-12}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 4.1e-14}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 1.3e-10}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.82e-14}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 6.18e-10}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 9.86e-12}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 7.41e-12}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 1.6e-12}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 2.04e-10}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 3.09e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water"], "amount": 8.64e-11}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 5.32e-13}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 5.32e-13}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water"], "amount": 5.13e-11}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 5.81e-14}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "human health no LT", "ozone depletion no LT"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-06}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.66e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.66e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 9.39e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 9.39e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000119}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000119}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 6.52e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 6.52e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.91e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.91e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 3.91e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 3.91e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.63e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.63e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.63e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.63e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 5.93e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 5.93e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.16e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.16e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.58e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.58e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7.58e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7.58e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 3.06e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 3.06e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000391}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000391}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00357}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00357}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00357}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00357}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00281}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00281}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.00281}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.00281}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.01e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.01e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 9.98e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 9.98e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.19e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.19e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000285}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000285}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.000237}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.000237}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "human health no LT", "particulate matter formation no LT"], "exchanges": [{"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "human health no LT", "photochemical oxidant formation: human health no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.72e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.82e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.82e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air"], "amount": 1.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.98e-08}, {"name": "Acrolein", "categories": ["air"], "amount": 1.78e-07}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.78e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -6.27e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -6.27e-08}, {"name": "Benzene", "categories": ["air"], "amount": 3.3e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.52e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 2.94e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air"], "amount": 1.72e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cumene", "categories": ["air"], "amount": 1.06e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 9.24e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.52e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -3.3e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -3.3e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 6.27e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 6.27e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.22e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.22e-07}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.52e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.48e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.48e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.42e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.42e-08}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.3e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Methanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.06e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.63e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.63e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 6.73e-07}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.39e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 9.1e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Phenol", "categories": ["air"], "amount": -1.65e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -1.65e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Styrene", "categories": ["air"], "amount": 1.65e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.3e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 9.57e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.57e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "human health no LT", "water use: human health no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 3.1e-06}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "natural resources no LT", "energy resources: non-renewable, fossil no LT"], "exchanges": [{"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "natural resources no LT", "material resources: metals/minerals no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0161}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0161}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.165}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0142}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00216}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 13.4}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.441}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0124}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.037}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.037}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.00889}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00889}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0352}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.000968}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.000933}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 0.639}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.639}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0049}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00142}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 14.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 14.8}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 61.9}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0213}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000229}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 17.2}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 18.4}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 18.4}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.04}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.04}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.098}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.098}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.006}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.006}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 1.33}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 0.711}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00081}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.000492}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 107}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 107}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 2.04}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.0507}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.00918}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00372}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 9.02}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 9.02}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 2.94}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.94}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 260}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.834}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.834}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.15}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.7}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.556}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0184}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "total: ecosystem quality no LT", "ecosystem quality no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5151e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5151e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.6904e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 6.158999999999999e-10}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.48272e-12}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.6652e-11}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83573e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.53574e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.3311235e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.83530616e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.83530616e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7241e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.0934000125e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.482800000532e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.482800000532e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7241e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 5.1354e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.0934000125e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.482800000532e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.525999999999999e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.632100000000001e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.995542e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.995542e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.847549999999999e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.7113923e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.7113923e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.5517e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.6551e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.01485e-11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36004269e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36004269e-08}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.5554e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.2917e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.5554e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.5554e-12}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.530280000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.530280000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.9679974e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.9679974e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.350059939e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.55641e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.313e-11}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.313e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.854700000000002e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.23877e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.854700000000002e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.854700000000002e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.32086e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.90666e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.991756000000001e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.232009010000001e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.232009010000001e-10}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.1503718e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.1503718e-08}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 8.523199999999999e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04851e-10}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.76038805e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.183263e-10}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air"], "amount": 4.5204408e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.5204408e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.4871e-13}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.8318e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.1213e-12}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.801e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.756e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["water"], "amount": 5.336e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.18425e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37024635e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.18425e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.18425e-11}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.37757e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.37757e-10}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.233999999999999e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.233999999999999e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.4715e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 3.6996e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.4715e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.4715e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7847e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9.902e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.630106e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.630106e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.8868e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 1.341e-09}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 4.113600000000001e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.1577e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.617e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.408e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.238e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 7.871000000000001e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.88194e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.5376e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.3116e-09}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.82971e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7341e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7341e-11}, {"name": "Aniline", "categories": ["air"], "amount": 9.983e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 9.983e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.4179e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.50817e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.4179e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.4179e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.024e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.49861e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.27217e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.49861e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.49861e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.7777e-10}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.67141e-07}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.67141e-07}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.60948e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 4.60948e-07}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.518e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 2.64e-10}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 2.64e-10}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 2.64e-10}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.402e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 7.55e-09}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.402e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.402e-08}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1347e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.0688e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.0408e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.26685e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.26685e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.26685e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.1954e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.337007539999999e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.6636e-07}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.697e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.41970164e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.923600156e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.10360000694e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.10360000694e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6734e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6734e-08}, {"name": "Barium II", "categories": ["air"], "amount": 1.2165e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.2165e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8.653999999999999e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.858e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.858e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 1.858e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.072e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.072e-09}, {"name": "Barium II", "categories": ["water"], "amount": 2.072e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.596500196e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 2.488e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14411719e-09}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2501e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.925000000000001e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.77278e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.77278e-10}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.564e-11}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.564e-11}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.2778e-10}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.8589e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.178899999999999e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.053e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.313999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.313999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47005027e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47005027e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.40085e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.875177e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.40085e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.40085e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6084e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6084e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.5863e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.5863e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.8792e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0586e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0586e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 3.0567e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.0567e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.3624e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.704999999999999e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.704999999999999e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.984e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3.984e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.457505e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.457505e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.43142e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.4131e-11}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.4135e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.99278e-10}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.377779e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.377779e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.645417e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.645417e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.255999999999999e-11}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.2058e-10}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.2058e-10}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.2058e-10}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.633e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.57e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.633e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.633e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.568e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.747e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.9848e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.510533e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.510533e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.467e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 4.793e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.431999999999999e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 3.215e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 1.439e-08}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.864e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.597560000000001e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.597560000000001e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.1461073e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.43810514e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.087300857e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 7.157107e-09}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.474e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.907739999999999e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.24030377e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.1697400759e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.1697400759e-07}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.2827e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.6008e-09}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.29704e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.3042e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.29704e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.29704e-11}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.9213e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.812e-11}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39275e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39275e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 9.619679999999998e-07}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 9.619679999999998e-07}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.1487e-10}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.0716e-10}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.0716e-10}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.0716e-10}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.0799e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 5.62e-09}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.0799e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.0799e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.82287e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.11716e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.588999999999999e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.12428e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.12428e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19034e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.9899e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.17787e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.8454995e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2168475e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2168475e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9804e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.2884e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.320145e-10}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.6742e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.6742e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.6611e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.07891e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.6611e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.6611e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.870916389999999e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.60581e-11}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.031176e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.031176e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44000000198677e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.515420000372e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.9171e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.8311e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.4105e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.8319e-10}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0423e-11}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0423e-11}, {"name": "Chloroform", "categories": ["air"], "amount": 3.1911283e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.1911283e-08}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.232e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.10594e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.232e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.232e-10}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.856e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.841e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.3265e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.321e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 5.879e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 5.879e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.94e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.586e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.28375e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.05088e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.05088e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.6962e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.7246000815e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.02027e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.024174e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.024174e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 2.103199e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.103199e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.451e-11}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.0012e-10}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.0012e-10}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.0012e-10}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.4579e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 8.22e-10}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.4579e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.4579e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.027e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.027e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.152e-07}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.152e-07}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.433e-09}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.433e-09}, {"name": "Chromium VI", "categories": ["soil"], "amount": 4.433e-09}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 6.162e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.16e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 6.162e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 6.162e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 6.9531e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 5.154200000000001e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.90445e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.966536e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.966536e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 2.054597e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2.054597e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1.5067e-11}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.6237e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.6237e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.6237e-11}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.081e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.38e-09}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.081e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.081e-09}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74739e-06}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74739e-06}, {"name": "Copper ion", "categories": ["air"], "amount": 6.05222e-06}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 6.05222e-06}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.5013e-10}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 6.071e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 6.071e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 6.071e-10}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.0342e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.0342e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1.0342e-07}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.154000000000001e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.154000000000001e-13}, {"name": "Cumene", "categories": ["air"], "amount": 2.41005784e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41005784e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.486335e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.89631e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.32084e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.810636e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.5923605e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.810636e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.810636e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.3965373e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.84e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.0825e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.42860047e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.012e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.467e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 6.025000000000001e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.494079999999999e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.494079999999999e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4298e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.0709e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.17110233e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 7.0004e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.72918e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.55408e-09}, {"name": "Deltamethrin", "categories": ["air"], "amount": 2.945e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 3.192e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.497500000000001e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.711700000010401e-11}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.1812e-08}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73325e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.383e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.633600264e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.633600264e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 5.551e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3361e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24309e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.708092e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.416800291e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.416800291e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.4931e-08}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.1248e-08}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.28872e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 2.641e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.102340677e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.635e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.635e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.470005178999999e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.470005178999999e-08}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.78406e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78406e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.17929e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.17929e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.635339999999999e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.23034e-10}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7266e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.2893e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.4415e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.484149999999999e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.484149999999999e-06}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.6038e-09}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.91575e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 4.06e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.699944e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.025002e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.025002e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.864200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.48553e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.864200000000001e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.864200000000001e-10}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4000383e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4000383e-07}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.4000383e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.4000383e-07}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.245024e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.3724e-09}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.656217e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09274e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 6.053e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.478500644999999e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.1109000494e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.371500000752e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.371500000752e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.7429e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.4113e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.351e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.5858e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.07409e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.901710000000001e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.563291e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.57777e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.496299999999999e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.520707829999999e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21469000249e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 9.776e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3.011e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.9541400000117e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.7475e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.7475e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 7.047e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23305e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.5744e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.381000000000001e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 3.0544e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.0639e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.0639e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8227e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8.371e-07}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.9700538e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.9700538e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.616799999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.616799999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 3.062639672e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 3.062639672e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 9.309e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.99014e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 9.309e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 9.309e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.5495e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.5495e-11}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.4500941e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 3.4500941e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1.360037e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1.360037e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.6066825e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.6066825e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.486e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 8.6389e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.486e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.486e-11}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6700728e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6700728e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.6700728e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.6700728e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.5500423e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.5500423e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.950271e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.950271e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 9.950271e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 9.950271e-07}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.120085e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.120085e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 3.120085e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 3.120085e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.386e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.22444e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.386e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.386e-09}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.370118999999999e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.370118999999999e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 4.370118999999999e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 4.370118999999999e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2400883e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2400883e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3.2400883e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3.2400883e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.6925e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.1745e-13}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.6925e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.6925e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16852e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.2974064e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.29910000000288e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.29910000000288e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.8075e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 5.8105e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.50795e-08}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43055778e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43055778e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.1162e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.6307e-11}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.26877e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.26877e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.9606257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78123344e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.9606257e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.9606257e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.713000000000001e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 5.327e-11}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 3.4501e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.557800471e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.535000000741e-08}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.4088e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.286e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 7.05391e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.387699999999999e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 7.599999999999999e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2465e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.5801e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.956e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.7706e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.2453e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.2176e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.2176e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4361e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.8734e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 8.923e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.448e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.6251e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.6251e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.6251e-06}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2503e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 3.37e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.067999999999999e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 3.25e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.35983e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 4.607e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 5.0082e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 5.0952e-09}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.6724e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.16156e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.608e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.483852999999999e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.483852999999999e-08}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.4259e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.15095e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.4259e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.4259e-10}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.88052407e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.943639999999999e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.3341000858e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.945707e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4325e-10}, {"name": "Furfural", "categories": ["air"], "amount": 1.86698e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.127660000202e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.9543e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.127660000202e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.98070000000144e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73277e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.43880699e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.665980000000373e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.665980000000373e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.665980000000373e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8818e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.4885e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.29360909e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.29360909e-08}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.640000025104e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.640000025104e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 1.05382e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.59050712e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.827221e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.0755423e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.0823e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.1854e-08}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 8.0538e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.2558e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 8.0538e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 8.0538e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05070138e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05070138e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05070138e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05070138e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.1167e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.809164e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.1167e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.1167e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.695000000000001e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.695000000000001e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39003876e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39003876e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 9.9183e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 9.6225e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 9.9183e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 9.9183e-11}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.702000000000001e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.702000000000001e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.1638068e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.1638068e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.33465e-12}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04264e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.04983e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.233000682999999e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.890600000007031e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.43990000000226e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.43990000000226e-09}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.295717e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.47404e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 8.600000047030001e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.600000047030001e-08}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.42125e-09}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.581e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.531e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 3.998e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.4411e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.4411e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.4411e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1111827e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1111827e-07}, {"name": "Lead II", "categories": ["air"], "amount": 2.1508175e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.1508175e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.4947e-13}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 6.991e-13}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 6.991e-13}, {"name": "Lead II", "categories": ["soil"], "amount": 6.991e-13}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.816e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.44e-10}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.816e-10}, {"name": "Lead II", "categories": ["water"], "amount": 3.816e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.7813000448e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 8.84e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.5213000233e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.21384e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.20435751e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.144080125e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.144080125e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.3311671e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.2050101e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.2050101e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.9416e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.0373100000135e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.1377448e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.10246e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.27495e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.502209629999998e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.9631000409e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.4555000108e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.4555000108e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.7140099e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.45782e-10}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.000974e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.000974e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 6.856657e-06}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6.856657e-06}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.0421e-11}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.7157e-11}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.7157e-11}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.7157e-11}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.1461e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.88e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.1461e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 3.1461e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.8866e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.565620314e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4050818e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.5619e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.9263e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 9.016e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3181e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3181e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 4.921951e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 4.921951e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4400666e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4400666e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2.4400666e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2.4400666e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.150113e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.150113e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 4.150113e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 4.150113e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.8100766e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.8100766e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.800158e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.800158e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 5.800158e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 5.800158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.063e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.063e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.9862528e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.9862528e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.2312e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 4.0236e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.2312e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.2312e-11}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5.750157e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5.750157e-06}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8900787e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8900787e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 2.8900787e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 2.8900787e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2900352e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2900352e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1.2900352e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1.2900352e-06}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.520123e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.520123e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.520123e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.520123e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.470122e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.470122e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.470122e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.470122e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.4654653e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4654653e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.470122e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.470122e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.470122e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.470122e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.6343e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6343e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.850116543e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.850116543e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.358e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.975500000000001e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.358e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.358e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6000708e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6000708e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 2.6000708e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 2.6000708e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3.6701e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3.6701e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.750157e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.750157e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 5.750157e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 5.750157e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.9243e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.1133e-13}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.9243e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.9243e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.9243e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 2.0766e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74674e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.99641e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.322135e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.4797773e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.4797773e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.4797773e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.380999999999999e-10}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.8287e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.8287e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.559300000000001e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 5.5554e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.559300000000001e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.559300000000001e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41003798e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41003798e-08}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.6672e-12}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.145e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.921300000000001e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.0619e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.4743e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.0619e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.0619e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.382e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.933599999999999e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.8323e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3917e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.03419e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.03419e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.03419e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63413e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.08258e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.0387676e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26373e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.07672e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.6750000124e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.116100000739e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.56420000032e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.56420000032e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.748099999999999e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 5.3465e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.053621e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.053621e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 7.3108e-09}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 7.3108e-09}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.0298e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.8944e-11}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.8944e-11}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.8944e-11}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.719e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.74e-11}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.719e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.719e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17801e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2.007877e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.26302e-09}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.3107e-08}, {"name": "Naphthalene", "categories": ["air"], "amount": 9.312e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.6425e-09}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.4734e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.365184e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.365184e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 9.396840000000001e-07}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9.396840000000001e-07}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.8356e-10}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.2686e-10}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.2686e-10}, {"name": "Nickel II", "categories": ["soil"], "amount": 3.2686e-10}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.036e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.03e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.036e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 3.036e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitric oxide", "categories": ["air"], "amount": 3.14e-07}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7912e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7912e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.8839e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 7.094000000000001e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.810186e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.810186e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 6.810186e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 6.810186e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 2.053e-07}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 3.427e-09}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.518369e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.3353e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11914e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 4.056e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.58e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.406e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.406e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.184e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.1901e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.17878e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.1901e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.1901e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.956e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 9.024900535e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.0111e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.9946e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.29060734e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.426e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.1086e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.24339e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.24339e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 3.3800921e-06}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.016e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.001e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 2.0334e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 8.128e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.0793e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.502100741000001e-10}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.411e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.411e-11}, {"name": "Phenol", "categories": ["air"], "amount": -3.749578000000001e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.749578000000001e-09}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.766099999999999e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.167159e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.766099999999999e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.766099999999999e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.822e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.822e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 3.562e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 3.562e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.065e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.065e-07}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.426000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.426000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.9603e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.239752999999999e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.7471e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.6505e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 8.9978e-08}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.19506e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.0975e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.82658e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.11528e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.82658e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.82658e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.15565e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 5.0829e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.402444e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.68484e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.1228573e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.5974e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.2626e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.6319e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.0089e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.4227e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.0333e-08}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.3937e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 2.2457e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4117449e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.0311e-09}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air"], "amount": 3.62007161e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62007161e-08}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 2.3687e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.9418e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.570643199999999e-09}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.3161e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8244e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.37531e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.11407e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.275955000000001e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.275955000000001e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.275955000000001e-08}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09464e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63119917e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09464e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09464e-10}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.3538e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.937e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 4.457e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.278e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.521389e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.0589e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.8668e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.886e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.212e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.2764e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.6948e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.9143e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.9143e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.2706209e-10}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.85911e-11}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.49733e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.49733e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 3.11255e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 3.11255e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 9.655e-11}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.7329e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.7329e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.7329e-10}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.0138e-08}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 3.43e-09}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.0138e-08}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.0138e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9045e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.89247e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.194059e-09}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.818101e-05}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.818101e-05}, {"name": "Silver I", "categories": ["air"], "amount": 3.335678e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 3.335678e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.3929e-09}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4477e-09}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4477e-09}, {"name": "Silver I", "categories": ["soil"], "amount": 2.4477e-09}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 3.099e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.67e-07}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 3.099e-07}, {"name": "Silver I", "categories": ["water"], "amount": 3.099e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55937e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.1565e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.1062e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.34571e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.05378e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.05378e-08}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.5201e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air"], "amount": 3.770071990000001e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.770071990000001e-09}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75913e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.505038e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75913e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75913e-10}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.1427e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.310254e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.310254e-06}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 9.310254e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 9.310254e-06}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.38e-07}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1.008218e-07}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.343e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.29693e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.23401e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.8453955e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7555e-09}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.428671e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.4735e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.3127e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.7415e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4855e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4855e-11}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.687949999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.687949999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.536674e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.7108e-10}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2686e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2686e-07}, {"name": "Thallium I", "categories": ["air"], "amount": 3.0272e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 3.0272e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.1463e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.269e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.269e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.269e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.911e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 5e-09}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.911e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 3.911e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58358e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.34304e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.138941e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.5929404e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05376318e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05376318e-08}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.0663e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8495e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.2867e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.6626e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.1124e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.1124e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03433e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.36977e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.4401e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.3675e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.06442e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.06442e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.532e-08}, {"name": "Thiram", "categories": ["air"], "amount": 1.1501e-08}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.90795e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.391784e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.277509e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.277509e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.007622e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.007622e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 2.775287e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 2.775287e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 4.213e-12}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 6.723e-12}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 6.723e-12}, {"name": "Tin ion", "categories": ["soil"], "amount": 6.723e-12}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 3.06e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.57e-09}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 3.06e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 3.06e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.32003649e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32003649e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.7233e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.089279999999999e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.7233e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.7233e-11}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 3.5975e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 5.096019999999999e-07}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2250177e-09}, {"name": "Triallate", "categories": ["air"], "amount": 7.56e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.4281e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.2021e-08}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.798700000000001e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.5277164e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19007243e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19007243e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.19271e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.738968e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.19271e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.19271e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.7335e-09}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.25525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49109341e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.25525e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.25525e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.907e-09}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.922e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 4.981e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.762e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.5446e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.5446e-08}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.2204e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.590078418e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.2279947e-11}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.210026e-11}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3698e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3698e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.4221e-07}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.4221e-07}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 8.127e-10}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.4378e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.4378e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.4378e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.2996e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.65e-08}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.2996e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.2996e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.1258e-10}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.811e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.811e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.834970000000001e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08516e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.012e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.467e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8647e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8647e-07}, {"name": "Zinc II", "categories": ["air"], "amount": 6.827e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 6.827e-07}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 4.175e-10}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 7.002e-10}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 7.002e-10}, {"name": "Zinc II", "categories": ["soil"], "amount": 7.002e-10}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.5347e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 8.59e-09}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.5347e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.5347e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.4501e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.8058e-08}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.43237e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.119496e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.43237e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.43237e-10}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.22e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.22e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88006161e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88006161e-08}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.332037e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.66747e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.599e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "total: human health no LT", "human health no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 3.35e-10}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0044}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 2.36e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.28e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.22e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.09e-06}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 2.92e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 2.07e-13}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137924}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137924}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 7.34e-05}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.89e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.81e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.75e-06}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 3.22e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 2.28e-11}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.42e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water"], "amount": 9.33e-07}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 7.82e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 7.82e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 8.19e-07}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.69e-25}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.94e-05}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 3.34e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 6.06e-12}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0006602}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0006602}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0036}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0036}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 6.55e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 8.057e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 8.057e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 8.057e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0007044}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 5.38e-24}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0007044}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0007044}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 1.39e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air"], "amount": 2.33e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.33e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.04e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.72e-25}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water"], "amount": 9.67e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.3e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.3e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.08e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.546e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.2386e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 2.96e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.15e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.510699999999999e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.434e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0003359}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0003359}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.004116}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.83e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.83e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0062168}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0062168}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146859}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146859}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.9889e-08}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.422e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.422e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.422e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 5.41e-07}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 8.9629e-23}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 5.41e-07}, {"name": "Beryllium II", "categories": ["water"], "amount": 5.41e-07}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.25e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.67e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.63e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.63e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.47e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.44e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000438}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000438}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.814e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.814e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001209}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001209}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.000971}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.000971}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.89e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.266599999999999e-05}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.266599999999999e-05}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.266599999999999e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.2904e-05}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.42e-25}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.2904e-05}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.2904e-05}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 3.22e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water"], "amount": 5.88e-08}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 3.96e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water"], "amount": 6.18e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.64e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.89e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.89e-06}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000187}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000187}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 1.86e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water"], "amount": 2.35e-11}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.53e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.168e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.54e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.719999999999999e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.719999999999999e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 1.403e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.403e-05}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.59e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 5.780000000000001e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.094e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.125e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.673e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9.66e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.602e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.602e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 4.65e-09}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4.65e-09}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 4.22e-12}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.26e-30}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water"], "amount": 1.11e-10}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00126}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00126}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.32e-25}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 7.82e-07}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 1.67e-11}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 1.6e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 1.8e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 4.77e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 4.77e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 9.9e-11}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 5.15e-28}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water"], "amount": 2.87e-08}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.01e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.72e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.86e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.86e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 6.38e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 4.62e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000197}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.738e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.738e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.82e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.306e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.306e-05}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.306e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.306e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.98e-05}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0003010184}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0003010184}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0001408697}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0001408697}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.69e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000646504}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000646504}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.0002722}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.0002722}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 4.11e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.704e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.704e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.17e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0004343}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0004343}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.0004343}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.0004343}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 2.963e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 2.963e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001636}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001636}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0001636}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0001636}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00048358}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00048358}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.00048358}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.00048358}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.0001613}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.0001039}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0001613}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0001613}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.000667}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.000495}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.54e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.33e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.41e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.41e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.1509e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.57e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.00032309}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00032309}, {"name": "Furfural", "categories": ["air"], "amount": 3.63e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.34e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.34e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00122}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.39e-05}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.88e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.88e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 8.58e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 8.58e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.017e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.427e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.017e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.017e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.36e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.36e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.07742e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.07742e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 2.45e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.77e-13}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 1.51e-10}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water"], "amount": 1.71e-09}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 2.04e-10}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 3.84e-12}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 8.019999999999999e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.019999999999999e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 4.1e-14}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001235}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001235}, {"name": "Lead II", "categories": ["air"], "amount": 0.00045658}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00045658}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 5.59e-08}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 4.4736e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 4.4736e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 4.4736e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2.8645e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 5.0105e-26}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2.8645e-06}, {"name": "Lead II", "categories": ["water"], "amount": 2.8645e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.0001545}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.02e-07}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 1.3e-10}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0005822}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0005822}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0015813}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0015813}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.735e-07}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 7.345e-06}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 7.345e-06}, {"name": "Mercury II", "categories": ["soil"], "amount": 7.345e-06}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.658e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.215e-25}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.658e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 3.658e-05}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.0007407310000000001}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.0007407310000000001}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003942999999999999}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003942999999999999}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.003942999999999999}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.003942999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003443}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003443}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.003443}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.003443}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0004491363}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0004491363}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.000885}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.7199e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 6.7199e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.238e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.057e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.238e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.238e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0010126}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0010126}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 4.41e-05}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000197}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.9e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 6.82e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.76733e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.76733e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 6.82e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001346}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001346}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.001962}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.001962}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.001282}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000728}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.001282}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.001282}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.000396}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.0008017899999999999}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.0008017899999999999}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.000877}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.42e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 4.79e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 4.79e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2.35e-07}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 8.82e-26}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 6.02e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.045e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.045e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 4.86e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.56e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.51e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.35e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0069e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0069e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 0.00010533}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.00010533}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 6.880926e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 7.1839e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 7.1839e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 7.1839e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1449e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.701e-25}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1449e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 1.1449e-05}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 6.73e-07}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.39e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 5.14e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6.06e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00104}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 9.1e-07}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.82e-14}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.02e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.00010937}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.00010937}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.45e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 4.684e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.45e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.45e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.000516}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 2.91e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 2.329e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000137}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 7.23e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.13e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.72e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 5.29e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 9.76e-08}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 6.18e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 5.13e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.78e-08}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.200000000000001e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.58e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.28e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.21e-07}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 9.86e-12}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 7.41e-12}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 1.6e-12}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air"], "amount": 0.000465}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.000465}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 6.95e-08}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.76e-25}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water"], "amount": 1.51e-05}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 2.04e-10}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 3.09e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water"], "amount": 8.64e-11}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.345e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.3781e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00142}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 5.32e-13}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 5.32e-13}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water"], "amount": 5.13e-11}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.42e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.47e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.14e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.47e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.47e-06}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 9.01e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 9.01e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 9.26e-06}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.04e-25}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water"], "amount": 3.1e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air"], "amount": 3.41e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.41e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.2e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.63e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.18e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.12e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.92e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.92e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.66e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.35e-05}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.35e-05}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4.06e-08}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.6e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water"], "amount": 6.29e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 3.1e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 5.81e-14}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4.15e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.58e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 7.2e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 7.2e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.55e-08}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.86e-26}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 5.61e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.88e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.36e-06}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.41e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.16e-09}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "total: natural resources no LT", "natural resources no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0161}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0161}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.165}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0142}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00216}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 13.4}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.441}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0124}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.037}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.037}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.00889}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00889}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0352}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.000968}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.000933}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 0.639}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.639}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0049}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00142}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 14.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 14.8}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 61.9}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0213}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000229}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 17.2}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 18.4}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 18.4}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.04}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.04}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.098}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.098}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.006}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.006}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 1.33}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 0.711}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00081}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.000492}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 107}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 107}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 2.04}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.0507}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.00918}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00372}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 9.02}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 9.02}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 2.94}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.94}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 260}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.834}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.834}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.15}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.7}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.556}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0184}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "acidification: terrestrial"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.72e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.17e-07}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.63e-08}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.38e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "climate change: freshwater ecosystems"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.45e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1.45e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.45e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 1.45e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 6.82e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 8.7e-13}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 8.7e-13}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 3.83e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.83e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.83e-12}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 3.83e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 3.83e-12}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 5.38e-11}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.38e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 8.38e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 8.38e-12}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 9.41e-11}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 9.41e-11}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 3.7e-11}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 3.7e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 7.34e-12}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.34e-12}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.34e-12}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 7.34e-12}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 7.34e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.35e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.35e-14}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 1.12e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 1.12e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 1.12e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 7.28e-11}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.28e-11}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.28e-11}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 7.28e-11}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 7.28e-11}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.23e-12}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.23e-12}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2.71e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2.71e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2.71e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8.5e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8.5e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8.5e-11}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 1.19e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.19e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.19e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 8.83e-11}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.83e-11}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.83e-11}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 8.83e-11}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 8.83e-11}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 4.38e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 4.38e-13}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.31e-13}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.31e-13}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 6.66e-11}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-11}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-11}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6.66e-11}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6.66e-11}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 1.13e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 1.13e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 1.13e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 7.66e-11}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 7.66e-11}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 1.58e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1.58e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1.58e-10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 4.79e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 4.79e-13}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1.57e-10}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1.57e-10}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 7.87e-12}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.87e-12}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.87e-12}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 7.87e-12}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 7.87e-12}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 3.52e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 3.52e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 3.52e-11}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.23e-12}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-12}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-12}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.23e-12}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.23e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.22e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 1.22e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.22e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 6.53e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 6.53e-13}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.22e-12}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22e-12}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-12}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1.22e-12}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.22e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.05e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.05e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7.08e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.08e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.08e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7.08e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7.08e-11}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 1.57e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 1.57e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 1.57e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 1.86e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-10}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 1.86e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.86e-10}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9.21e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 2.54e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-10}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 2.54e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 2.54e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "climate change: terrestrial ecosystems"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 5.32e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 5.32e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.32e-10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 5.32e-10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 2.5e-08}, {"name": "Chloroform", "categories": ["air"], "amount": 3.19e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.19e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 1.4e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-07}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.4e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.97e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.97e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 3.07e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 3.07e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.45e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 3.45e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1.36e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1.36e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 2.69e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.69e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.69e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.6e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.6e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 4.1e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 4.1e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 4.1e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2.67e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.67e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.67e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.67e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.67e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.55e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.55e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 9.95e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.95e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.95e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 9.95e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 9.95e-07}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 3.12e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 3.12e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 3.12e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 4.37e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.37e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.37e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 4.37e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 4.37e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3.24e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.24e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3.24e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3.24e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.61e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.61e-08}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 4.79e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 4.79e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2.44e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.44e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2.44e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2.44e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 4.15e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.15e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 4.15e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 4.15e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.81e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.81e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 5.8e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 5.8e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 5.8e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.76e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.76e-08}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5.75e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5.75e-06}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 2.89e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.89e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.89e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 2.89e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 2.89e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 1.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1.29e-06}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 4.52e-08}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.52e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.52e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.52e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 4.47e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.47e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.47e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.39e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.39e-08}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.47e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.47e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.47e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.85e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.85e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 2.6e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 2.6e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 2.6e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3.67e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3.67e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 5.75e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 5.75e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 5.75e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 6.81e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 6.81e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 6.81e-06}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 3.38e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 9.31e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.31e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.31e-06}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 9.31e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 9.31e-06}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "ecotoxicity: freshwater"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 8.51e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.51e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.51e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 3.64e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 5.81e-10}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.72e-15}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 2.86e-11}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42e-10}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.51e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.32e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.82e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.82e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1e-11}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.08e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.39e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.39e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1e-11}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1.27e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.08e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.39e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.54e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.97e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.78e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.7e-15}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.73e-11}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 4.28e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 4.28e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.31e-12}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.31e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.07e-15}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.31e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.31e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3.69e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.39e-20}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.54e-11}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.39e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.77e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-11}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.83e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.95e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.18e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.18e-10}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.92e-14}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1e-10}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.05e-18}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.18e-10}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.21e-15}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.51e-12}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.03e-14}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 6.07e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.55e-09}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.16e-11}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 9.16e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.35e-18}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.16e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.16e-11}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1.64e-11}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1.64e-11}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.16e-13}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.06e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-09}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 7.96e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 5.27e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.91e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36e-07}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.87e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.98e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 7.46e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.72e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.44e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.18e-09}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.75e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.32e-10}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.32e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.47e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.32e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.32e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.37e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 9.37e-11}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.46e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 7.51e-10}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-10}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-10}, {"name": "Arsenic ion", "categories": ["air"], "amount": 5.98e-10}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.98e-10}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.46e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 2.54e-10}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 2.54e-10}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 2.54e-10}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.15e-08}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 4.15e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 5.8e-30}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.15e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.15e-08}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.46e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 5.95e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.25e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.19e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.63e-07}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.9e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.09e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.09e-07}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.21e-10}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.21e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-10}, {"name": "Barium II", "categories": ["air"], "amount": 7.54e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8.14e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.45e-30}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water"], "amount": 1.94e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.58e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.59e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14e-09}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-11}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.82e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.73e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.73e-10}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.17e-10}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.19e-14}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.03e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.2e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.77e-15}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.04e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.71e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.76e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-11}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 4.77e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.77e-11}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.06e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.33e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.33e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.41e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.34e-11}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 2.9e-15}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.98e-10}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 6.09e-10}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.09e-10}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-10}, {"name": "Beryllium II", "categories": ["air"], "amount": 4.57e-10}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 4.57e-10}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.04e-11}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.17e-10}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.17e-10}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.17e-10}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.47e-08}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 3.47e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.41e-30}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.47e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.47e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.53e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.92e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.47e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.47e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.62e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 3.54e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-08}, {"name": "Bifenthrin", "categories": ["air"], "amount": 2.75e-08}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.35e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.22e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.36e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.36e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.12e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.36e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.07e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 6.96e-09}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.02e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.91e-09}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.16e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.16e-07}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.16e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.53e-09}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.32e-15}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.27e-11}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.03e-14}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.36e-11}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 2.1e-10}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1e-10}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-10}, {"name": "Cadmium II", "categories": ["air"], "amount": 2.08e-10}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 2.08e-10}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.12e-10}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.02e-10}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.02e-10}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.02e-10}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.04e-08}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.04e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 4.9e-31}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.04e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.04e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.8e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-09}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.39e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.05e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.05e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-09}, {"name": "Carbendazim", "categories": ["air"], "amount": 4.88e-09}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.15e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.83e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.19e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.19e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.92e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.84e-08}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 6.91e-14}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.42e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 4.39e-19}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.59e-11}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 6.77e-21}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.51e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.55e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.77e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 4.43e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.73e-10}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.94e-14}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.13e-10}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.84e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.1e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.68e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 4.68e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.29e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.24e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.02e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.02e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.36e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.63e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.01e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 4.14e-11}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.14e-11}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14e-11}, {"name": "Chromium III", "categories": ["air"], "amount": 5.89e-11}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5.89e-11}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.33e-11}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 9.79e-11}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 9.79e-11}, {"name": "Chromium III", "categories": ["soil"], "amount": 9.79e-11}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.41e-09}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.41e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 7.98e-32}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.41e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.41e-09}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 1.75e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-09}, {"name": "Chromium VI", "categories": ["air"], "amount": 2.52e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 2.52e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 2.31e-09}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.25e-09}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.25e-09}, {"name": "Chromium VI", "categories": ["soil"], "amount": 4.25e-09}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 5.78e-08}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 5.78e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.37e-29}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 5.78e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.78e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.79e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.61e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.86e-10}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 7.06e-11}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06e-11}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06e-11}, {"name": "Cobalt II", "categories": ["air"], "amount": 5.67e-11}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 5.67e-11}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.56e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.56e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.56e-11}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 3.94e-09}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 3.94e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 3.09e-31}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 3.94e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 3.94e-09}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1.79e-09}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-09}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-09}, {"name": "Copper ion", "categories": ["air"], "amount": 1.42e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.42e-09}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.42e-10}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.93e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.93e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.93e-10}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1e-07}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 6.88e-30}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1e-07}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 6.35e-15}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.88e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.17e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 5.05e-17}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.8e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.36e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.46e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.01e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.4e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.62e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 5.71e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.37e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.37e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 8.95e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.12e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.07e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.71e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.54e-09}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 4.09e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 3.71e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 7.77e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.38e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.63e-11}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.14e-08}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-10}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.29e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.62e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 9.42e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.19e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-11}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.66e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.38e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.38e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 4.02e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.27e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.96e-10}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.1e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.09e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.09e-15}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 3.34e-15}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.21e-10}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.09e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.39e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.38e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.38e-06}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.48e-09}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 4.26e-10}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.34e-09}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.96e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.69e-08}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.76e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 6.76e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.53e-14}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.76e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.76e-10}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.18e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.25e-09}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 2.74e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-10}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.19e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.4e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.06e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.36e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.36e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.81e-09}, {"name": "Diuron", "categories": ["air"], "amount": 2.45e-08}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.06e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.84e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.55e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.56e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.45e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.49e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.82e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.77e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.95e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.25e-12}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 9.25e-12}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 5.09e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48e-09}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.61e-09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 4.58e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 2.85e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 5.83e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.83e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 6.95e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 5.68e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.68e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.14e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.95e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.89e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 3.85e-11}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 3.44e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.47e-09}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.55e-15}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.37e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.27e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.28e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.28e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.59e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.13e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 7.73e-09}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.02e-14}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.14e-11}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 5.72e-11}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 5.72e-11}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.95e-10}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.95e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 3.44e-18}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.95e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.95e-10}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.23e-13}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 3.35e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.88e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.52e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.41e-08}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.65e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.19e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 6.99e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.22e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.03e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.48e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.44e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.57e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.21e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.11e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.11e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.77e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.99e-07}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.32e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.17e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.57e-06}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-08}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2.85e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8.5e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 6e-10}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 8.17e-12}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.95e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.86e-09}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.64e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.16e-08}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.77e-12}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.77e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.77e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.3e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 6.3e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 3.25e-14}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.3e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.3e-10}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.07e-19}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.93e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.29e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.92e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.41e-10}, {"name": "Furfural", "categories": ["air"], "amount": 4.88e-12}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.44e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 4.09e-10}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.66e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1.98e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.23e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.23e-08}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air"], "amount": 4.54e-18}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 4.54e-18}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 7.53e-09}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.12e-18}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.81e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.05e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.23e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 6.48e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 6.48e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.58e-11}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 6.48e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.48e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.04e-15}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.26e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.06e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.06e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 9.66e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 9.66e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 4.5e-15}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 9.66e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 9.66e-11}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.5e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.5e-13}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.31e-12}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.24e-09}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.12e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.83e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.36e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.36e-09}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.26e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.44e-09}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air"], "amount": 1.19e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.19e-17}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.39e-09}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.64e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 2.85e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.32e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.32e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.32e-05}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 6.27e-12}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.27e-12}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.27e-12}, {"name": "Lead II", "categories": ["air"], "amount": 4.55e-12}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.55e-12}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.41e-13}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 6.86e-13}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 6.86e-13}, {"name": "Lead II", "categories": ["soil"], "amount": 6.86e-13}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.71e-10}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 3.71e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.54e-33}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.71e-10}, {"name": "Lead II", "categories": ["water"], "amount": 3.71e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.71e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.44e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.72e-11}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.2e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.14e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.14e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28e-10}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.32e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.17e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.17e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.42e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.03e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.13e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-09}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.01e-08}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.44e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.93e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.41e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.41e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.65e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.38e-10}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 5.4e-10}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4e-10}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4e-10}, {"name": "Mercury II", "categories": ["air"], "amount": 3.77e-10}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 3.77e-10}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2e-11}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.66e-11}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.66e-11}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.66e-11}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.05e-08}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 3.05e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.1e-31}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.05e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 3.05e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.04e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.52e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.82e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 8.97e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.92e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.92e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.26e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.03e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.85e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3.71e-10}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.73e-15}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.42e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.74e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.95e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35e-09}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.97e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.46e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.58e-10}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 2.54e-13}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.37e-12}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.25e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.42e-09}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.3e-15}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.03e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83e-09}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.54e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.32e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.02e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.58e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.07e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.03e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-07}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 5.37e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.63e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.09e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.52e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.52e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.69e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.25e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 7.71e-12}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.71e-12}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.71e-12}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.1e-11}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.84e-11}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.84e-11}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.84e-11}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.61e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.61e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 3.7e-32}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.61e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.61e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 9.39e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.16e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.73e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 5.44e-10}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.44e-10}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.44e-10}, {"name": "Nickel II", "categories": ["air"], "amount": 4.74e-10}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 4.74e-10}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.78e-10}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.17e-10}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.17e-10}, {"name": "Nickel II", "categories": ["soil"], "amount": 3.17e-10}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.9e-08}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2.9e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.98e-30}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.9e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 2.9e-08}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 9.39e-13}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.28e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.26e-09}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.48e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.09e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 2.24e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 2.39e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.39e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.39e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.18e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.38e-12}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.04e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.95e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.66e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.83e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.22e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.22e-07}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.23e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.53e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.99e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 9.48e-11}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.96e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.44e-10}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.73e-10}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 6.73e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 8.59e-15}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.73e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.73e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 9.52e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 9.42e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 9.42e-11}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 5.67e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.67e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.67e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.32e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.32e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.85e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.15e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.16e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.32e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.22e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 3.76e-13}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.09e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.58e-13}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.81e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 2.65e-14}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 4.23e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.04e-15}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.65e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.06e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.68e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.18e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 9.21e-09}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 2.99e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 9.78e-09}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.25e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.22e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1e-09}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air"], "amount": 8.14e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 8.14e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.67e-15}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.54e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.49e-09}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.18e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.34e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.1e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.21e-08}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 9.17e-18}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09e-10}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.76e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 8.17e-10}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.26e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.5e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5.62e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.68e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 3.13e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.97e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.64e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.88e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.88e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.26e-10}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 1.93e-10}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.93e-10}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93e-10}, {"name": "Selenium IV", "categories": ["air"], "amount": 1.85e-10}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.85e-10}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 9.36e-11}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.68e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.68e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.68e-10}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 9.68e-09}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 9.68e-09}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 9.45e-31}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 9.68e-09}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.68e-09}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.87e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.15e-09}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 5.41e-09}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.41e-09}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.41e-09}, {"name": "Silver I", "categories": ["air"], "amount": 4.48e-09}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 4.48e-09}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.36e-09}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.39e-09}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.39e-09}, {"name": "Silver I", "categories": ["soil"], "amount": 2.39e-09}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 2.99e-07}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 2.99e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.13e-29}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 2.99e-07}, {"name": "Silver I", "categories": ["water"], "amount": 2.99e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-09}, {"name": "Simazine", "categories": ["air"], "amount": 8.29e-09}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.95e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.31e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4e-08}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.68e-15}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75e-10}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 9.92e-08}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 9.99e-08}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-09}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.28e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.12e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.81e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7e-09}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.35e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.05e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 2.73e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.55e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 9.74e-14}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.52e-10}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 4.39e-09}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.39e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.39e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 9.68e-09}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 9.68e-09}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.09e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.16e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.16e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.16e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.65e-08}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 3.65e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 2.29e-29}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.65e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 3.65e-08}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 3.75e-10}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.75e-10}, {"name": "Thiabendazole", "categories": ["air"], "amount": 9.79e-10}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.12e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.58e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.48e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28e-09}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 8.81e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.5e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.02e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-10}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.03e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.34e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.24e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air"], "amount": 4.11e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.88e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.25e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.25e-07}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 5.02e-11}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.02e-11}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.02e-11}, {"name": "Tin ion", "categories": ["air"], "amount": 3.67e-11}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 3.67e-11}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 4.11e-12}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 6.56e-12}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 6.56e-12}, {"name": "Tin ion", "categories": ["soil"], "amount": 6.56e-12}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 2.95e-09}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 2.95e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.17e-31}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2.95e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 2.95e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.66e-11}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 9.66e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 3.28e-15}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.66e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.66e-11}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 2.55e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.96e-07}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.21e-09}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.19e-10}, {"name": "Triallate", "categories": ["air"], "amount": 1.14e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.16e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.04e-08}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.52e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.46e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 7.68e-15}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.18e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.68e-09}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.22e-13}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 9.22e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 3.41e-20}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.22e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.22e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.38e-09}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-11}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.05e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.51e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.46e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.46e-08}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.18e-20}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.22e-11}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.15e-11}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 2.35e-09}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-09}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-09}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.05e-09}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.05e-09}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 7.8e-10}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.38e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.38e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.38e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.22e-07}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 1.22e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 2.24e-29}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.22e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.22e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 3.81e-10}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 2.17e-15}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.62e-08}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 2.74e-09}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-09}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-09}, {"name": "Zinc II", "categories": ["air"], "amount": 2.11e-09}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 2.11e-09}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 4.03e-10}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 6.76e-10}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 6.76e-10}, {"name": "Zinc II", "categories": ["soil"], "amount": 6.76e-10}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.71e-29}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.46e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.27e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.06e-15}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.42e-10}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 7.37e-15}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.65e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 9.12e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "ecotoxicity: marine"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 8.74e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.48e-11}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.68e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water"], "amount": 1.32e-13}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-11}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.1e-12}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.53e-11}, {"name": "2,4-D", "categories": ["water"], "amount": 1.53e-11}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.41e-12}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 9.28e-12}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 9.28e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.41e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 6.54e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 9.28e-12}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 6.35e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.5e-11}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.5e-11}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 6.5e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.39e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.39e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 5.67e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.51e-13}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.7e-14}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.31e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.31e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.05e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.14e-14}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.74e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.74e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.35e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.63e-13}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.12e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.12e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.63e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 6.63e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.23e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.63e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6.63e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.66e-12}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 7.4e-13}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.17e-12}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 5.2e-12}, {"name": "Acephate", "categories": ["water"], "amount": 5.2e-12}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 5.39e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 5.39e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 7.51e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 9.91e-13}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.76e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water"], "amount": 2.5e-13}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air"], "amount": 6.27e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 6.27e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 9.38e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water"], "amount": 5.28e-14}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.07e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.51e-13}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.6e-11}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["water"], "amount": 3.4e-10}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.94e-13}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.94e-13}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.94e-13}, {"name": "Acrylate", "categories": ["water"], "amount": 1.94e-13}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air"], "amount": 3.57e-13}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 3.57e-13}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.69e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.69e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 5.45e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 5.45e-12}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 2.67e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 5.45e-12}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 5.45e-12}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-10}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.06e-12}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.48e-10}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.8e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.76e-10}, {"name": "Allyl chloride", "categories": ["water"], "amount": 5.73e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.81e-07}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 5.04e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.13e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 2.8e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 1.58e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 3.05e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.41e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.81e-10}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 5.21e-13}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.21e-13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.21e-13}, {"name": "Aniline", "categories": ["air"], "amount": 1.13e-13}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.13e-13}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.46e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water"], "amount": 2.7e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 4.9e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 3.05e-09}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 3.05e-09}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.23e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 3.05e-09}, {"name": "Anthracene", "categories": ["water"], "amount": 3.05e-09}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 2.07e-12}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 3.39e-09}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.39e-09}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.39e-09}, {"name": "Arsenic ion", "categories": ["air"], "amount": 2.35e-09}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 2.35e-09}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.8e-12}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1e-11}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1e-11}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1e-11}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 2.52e-09}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 2.52e-09}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 7.55e-09}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 2.52e-09}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2.52e-09}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.29e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.44e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.57e-09}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.57e-09}, {"name": "Atrazine", "categories": ["water"], "amount": 1.57e-09}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.91e-12}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.38e-09}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.97e-11}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.36e-10}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.36e-09}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.36e-09}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1.13e-10}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-10}, {"name": "Barium II", "categories": ["air"], "amount": 1.11e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.11e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 5.14e-11}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.08e-10}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.08e-10}, {"name": "Barium II", "categories": ["soil"], "amount": 1.08e-10}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.32e-10}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.32e-10}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.32e-10}, {"name": "Barium II", "categories": ["water"], "amount": 1.32e-10}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.65e-13}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 3.1e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 4.11e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.51e-12}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.22e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.97e-12}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.97e-12}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.63e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.63e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.63e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.15e-12}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.36e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water"], "amount": 5.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.73e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 3.96e-12}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 6.04e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.8e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.56e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.56e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.56e-11}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.56e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.94e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.94e-10}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.14e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 2.16e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 4.78e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.78e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.78e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.82e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.82e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 1.27e-09}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 1.27e-09}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 1.23e-13}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.51e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.38e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 7.34e-13}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 7.17e-09}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.17e-09}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.17e-09}, {"name": "Beryllium II", "categories": ["air"], "amount": 4.96e-09}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 4.96e-09}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.16e-12}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.58e-12}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.58e-12}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.58e-12}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.63e-09}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.63e-09}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.57e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.63e-09}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.63e-09}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.09e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 5.37e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4.02e-07}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4.02e-07}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 8.57e-09}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.33e-11}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.45e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.57e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.91e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2.29e-07}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2.29e-07}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.61e-10}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 7.81e-12}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 1.73e-13}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.97e-10}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.44e-10}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.64e-10}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.74e-10}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.74e-10}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.14e-11}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.84e-14}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 5.84e-14}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.1e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.84e-14}, {"name": "Butanol", "categories": ["water"], "amount": 5.84e-14}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.1e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water"], "amount": 3.2e-13}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 2.54e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-09}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-09}, {"name": "Cadmium II", "categories": ["air"], "amount": 1.76e-09}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1.76e-09}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 2.87e-12}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 5.16e-12}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 5.16e-12}, {"name": "Cadmium II", "categories": ["soil"], "amount": 5.16e-12}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 3.99e-10}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 3.99e-10}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 5.62e-09}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 3.99e-10}, {"name": "Cadmium II", "categories": ["water"], "amount": 3.99e-10}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.26e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-10}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 5.4e-11}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.77e-10}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.77e-10}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-10}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.19e-10}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.63e-11}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.54e-10}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.68e-10}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.68e-10}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.12e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.55e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.55e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.76e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.44e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.87e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.4e-13}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 8.76e-10}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.76e-10}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.76e-10}, {"name": "Chloramine", "categories": ["air"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water"], "amount": 5.42e-10}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.31e-11}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.35e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.05e-10}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.13e-12}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 4.68e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.68e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 4.93e-12}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 4.93e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.85e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 4.93e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 4.93e-12}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.86e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 8.25e-09}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.11e-08}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.99e-08}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1.99e-08}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.08e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.48e-08}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2.77e-07}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2.77e-07}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 5.02e-10}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 9.46e-11}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 8.43e-12}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 3.76e-10}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.76e-10}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.76e-10}, {"name": "Chromium III", "categories": ["air"], "amount": 2.61e-10}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.61e-10}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.21e-12}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.22e-12}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.22e-12}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.22e-12}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 4.79e-11}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 4.79e-11}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 8.22e-10}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 4.79e-11}, {"name": "Chromium III", "categories": ["water"], "amount": 4.79e-11}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 5.25e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.25e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.25e-09}, {"name": "Chromium VI", "categories": ["air"], "amount": 3.68e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3.68e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1e-10}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.83e-10}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.83e-10}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.83e-10}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.82e-09}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 3.82e-09}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.16e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.82e-09}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.82e-09}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.31e-12}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 3.42e-12}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.07e-12}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 5.83e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-10}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-10}, {"name": "Cobalt II", "categories": ["air"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.67e-13}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 6.37e-13}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 6.37e-13}, {"name": "Cobalt II", "categories": ["soil"], "amount": 6.37e-13}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 1.41e-10}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 1.41e-10}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.38e-09}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 1.41e-10}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.41e-10}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1.56e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56e-08}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-08}, {"name": "Copper ion", "categories": ["air"], "amount": 1.08e-08}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.08e-08}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 8.13e-12}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.41e-11}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.41e-11}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.41e-11}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 3.42e-09}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 3.42e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 3.42e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 3.42e-09}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 8.19e-14}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-14}, {"name": "Cumene", "categories": ["air"], "amount": 6.62e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 6.62e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.47e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water"], "amount": 1.1e-12}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.47e-10}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.9e-14}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.9e-14}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.59e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.9e-14}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.9e-14}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.65e-13}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.44e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 5.7e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.86e-14}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.43e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 8.57e-09}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 2.13e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.21e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 1.21e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.74e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.11e-10}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.11e-12}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 5.24e-11}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.34e-13}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-11}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 1.2e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 8.94e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 8.45e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.53e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 8.17e-13}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-11}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.36e-11}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.36e-11}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 3.99e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.29e-12}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 4.73e-13}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 3.68e-12}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 3.68e-12}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.31e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.78e-10}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 8.22e-12}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 7.45e-10}, {"name": "Diethanolamine", "categories": ["water"], "amount": 2.34e-13}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.01e-15}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.01e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.4e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.4e-15}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.26e-12}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-12}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-12}, {"name": "Diethylamine", "categories": ["air"], "amount": 1.89e-12}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.89e-12}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.21e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.16e-12}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.66e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.03e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.98e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.63e-08}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.63e-08}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.09e-11}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 4.06e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.75e-11}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.43e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 9.68e-11}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air"], "amount": 4.02e-12}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 4.02e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.1e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 2.44e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 6.49e-13}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 6.94e-11}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 5.97e-13}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 5.34e-11}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-11}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3.3e-11}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 7.85e-12}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 5.09e-11}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.15e-10}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.15e-10}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 4.99e-11}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2e-11}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-09}, {"name": "Diuron", "categories": ["air"], "amount": 1.08e-09}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 8.86e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.74e-10}, {"name": "Diuron", "categories": ["water"], "amount": 1.3e-09}, {"name": "Dodecanol", "categories": ["water"], "amount": 9.08e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.18e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.07e-12}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 4.69e-13}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2.76e-12}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 4.14e-13}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.37e-11}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.25e-10}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.34e-10}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.41e-10}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 8.24e-10}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 1.67e-09}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1.67e-09}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.87e-07}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.31e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 7.26e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.26e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.26e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 7.39e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 7.39e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 7.39e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 7.39e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.6e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.6e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.87e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.95e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.95e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 6.49e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.95e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.95e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 7.2e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 7.2e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.08e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 7.2e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 7.2e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.35e-14}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.35e-14}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 9.45e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.35e-14}, {"name": "Ethanol", "categories": ["water"], "amount": 2.35e-14}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-12}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.74e-13}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.91e-12}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.91e-12}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 7.25e-12}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.05e-12}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 4.95e-11}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 2.76e-13}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.76e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 9.26e-13}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 2.77e-13}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.57e-12}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 1.57e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1.06e-12}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.4e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.87e-12}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 4.01e-11}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 3.78e-11}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.25e-09}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.18e-10}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.06e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.84e-11}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 6.57e-11}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.48e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.37e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.36e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.36e-11}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.55e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.7e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.7e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.44e-08}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 2.23e-09}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.49e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 4.49e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 4.49e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 4.49e-08}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.23e-09}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.3e-10}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.07e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.52e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 6.07e-09}, {"name": "Fluorene", "categories": ["air"], "amount": 1.72e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 3.45e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 9.52e-11}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.05e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.56e-10}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.48e-10}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.9e-12}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.63e-12}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.63e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 2.49e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 2.49e-12}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.09e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.49e-12}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.49e-12}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.88e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water"], "amount": 1.26e-13}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 2.5e-12}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.18e-12}, {"name": "Furfural", "categories": ["air"], "amount": 8.18e-13}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 7.66e-13}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.83e-11}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.53e-11}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 7.66e-13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.07e-11}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7e-12}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 8.8e-13}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 5.98e-12}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 5.98e-12}, {"name": "Glyphosate", "categories": ["water"], "amount": 5.98e-12}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.28e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 3.05e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.36e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.36e-10}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air"], "amount": 1.05e-17}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.05e-17}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 8.82e-11}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.59e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water"], "amount": 1.7e-13}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.91e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.94e-10}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.06e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.38e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.58e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.58e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.58e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.58e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 5.8e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 5.8e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.8e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 5.8e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 5.8e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.79e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 4e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 4e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.15e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 2.15e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 9.46e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.15e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.15e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 5.47e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.47e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.43e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.43e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 1.57e-14}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5.74e-11}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.74e-11}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.83e-11}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.13e-11}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.06e-11}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 7.99e-11}, {"name": "Imidacloprid", "categories": ["water"], "amount": 7.99e-11}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 3.56e-11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.06e-11}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air"], "amount": 2.94e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-17}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.83e-11}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.53e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5.2e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 1.01e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 1.01e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 1.01e-06}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 1.12e-10}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-10}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-10}, {"name": "Lead II", "categories": ["air"], "amount": 7.72e-11}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 7.72e-11}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 8.47e-15}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 1.31e-14}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 1.31e-14}, {"name": "Lead II", "categories": ["soil"], "amount": 1.31e-14}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.06e-11}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 1.06e-11}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.44e-10}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.06e-11}, {"name": "Lead II", "categories": ["water"], "amount": 1.06e-11}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.13e-12}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.32e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 8.13e-12}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.64e-12}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 4.35e-13}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.08e-12}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.08e-12}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-11}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.11e-12}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 3.5e-11}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 3.5e-11}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.16e-11}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 7.31e-13}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 7.71e-14}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.06e-10}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.95e-10}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.22e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.31e-10}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.55e-10}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.55e-10}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.4e-11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.01e-12}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 9.2e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.2e-09}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.2e-09}, {"name": "Mercury II", "categories": ["air"], "amount": 6.28e-09}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6.28e-09}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 4.21e-13}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 5.57e-13}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 5.57e-13}, {"name": "Mercury II", "categories": ["soil"], "amount": 5.57e-13}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 9.61e-10}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 9.61e-10}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.88e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 9.61e-10}, {"name": "Mercury II", "categories": ["water"], "amount": 9.61e-10}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.76e-12}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5.62e-11}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 5.06e-13}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.89e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 6.55e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 3.24e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 6.48e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.48e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.48e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.49e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.49e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 8.26e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.22e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.22e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 8.72e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 8.72e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 8.72e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 8.72e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 5.05e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.05e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.02e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.02e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.12e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5e-11}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 2.33e-14}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 2.33e-14}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 7.48e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.33e-14}, {"name": "Methanol", "categories": ["water"], "amount": 2.33e-14}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 4.83e-11}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.66e-10}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-10}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 2.16e-11}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.19e-10}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.97e-10}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.97e-10}, {"name": "Methomyl", "categories": ["water"], "amount": 1.97e-10}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 1.83e-11}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.32e-12}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.32e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.03e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.03e-12}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 4.13e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.03e-12}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.03e-12}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.6e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 7.6e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.02e-14}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.03e-11}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 7.3e-13}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 7.3e-13}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.28e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 7.3e-13}, {"name": "Methylamine", "categories": ["water"], "amount": 7.3e-13}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 1.93e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.06e-10}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 8.23e-11}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.38e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.29e-09}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.29e-09}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.29e-09}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-10}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 8.92e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.67e-10}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.13e-08}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 3.02e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.5e-09}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.61e-08}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 4.42e-08}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 4.42e-08}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.78e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.65e-12}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 2.85e-11}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-11}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-11}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.98e-11}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.98e-11}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2.98e-13}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.44e-13}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.44e-13}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 5.44e-13}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.09e-11}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 1.09e-11}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.74e-11}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.09e-11}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.09e-11}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 7.85e-12}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 7.19e-13}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 9.02e-12}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 8.17e-10}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.16e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.15e-11}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.24e-10}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 4.64e-09}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-09}, {"name": "Nickel II", "categories": ["air"], "amount": 3.21e-09}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.21e-09}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 5.56e-12}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 9.86e-12}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 9.86e-12}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.86e-12}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.36e-09}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 1.36e-09}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.03e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.36e-09}, {"name": "Nickel II", "categories": ["water"], "amount": 1.36e-09}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.62e-11}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62e-11}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62e-11}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.24e-11}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.57e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 3.74e-13}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5.13e-11}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 7.62e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 7.36e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.96e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.96e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.7e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.12e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.12e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.16e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.12e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.12e-10}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7.49e-14}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.61e-10}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 9.96e-12}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.06e-12}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.56e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.76e-11}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.55e-09}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.55e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.91e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 3.02e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.61e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.71e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.21e-12}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1.85e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-12}, {"name": "Phenol", "categories": ["air"], "amount": 8.92e-13}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.92e-13}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.16e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water"], "amount": 2.49e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.24e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.14e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.13e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.13e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.16e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.16e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.09e-10}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.96e-10}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 4.91e-11}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.05e-10}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.78e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.17e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.26e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 4.38e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 4.38e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.04e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 4.38e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 4.38e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.97e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.59e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.4e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 3.38e-12}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 6.28e-12}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.94e-11}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.95e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.44e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.67e-10}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 4.07e-09}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.24e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.87e-11}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.57e-10}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.25e-11}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air"], "amount": 5.97e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.97e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.99e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water"], "amount": 5.78e-14}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 8.06e-11}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 5.1e-13}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.54e-10}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.92e-11}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.38e-10}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.54e-10}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.54e-10}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.54e-10}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.31e-13}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 2.31e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.31e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.31e-13}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 4.9e-11}, {"name": "Pyrene", "categories": ["air"], "amount": 2.26e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.64e-08}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.46e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.46e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.09e-13}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.89e-11}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 3.98e-12}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.96e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.39e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.54e-10}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.44e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2.37e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2.37e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.06e-12}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 3.81e-13}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 1.54e-09}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-09}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-09}, {"name": "Selenium IV", "categories": ["air"], "amount": 1.07e-09}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.07e-09}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.95e-12}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 5.29e-12}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 5.29e-12}, {"name": "Selenium IV", "categories": ["soil"], "amount": 5.29e-12}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 4.58e-10}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 4.58e-10}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 3.43e-09}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 4.58e-10}, {"name": "Selenium IV", "categories": ["water"], "amount": 4.58e-10}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.57e-12}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 4.33e-11}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 7.56e-08}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.56e-08}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.56e-08}, {"name": "Silver I", "categories": ["air"], "amount": 5.23e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 5.23e-08}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 3.29e-11}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 5.77e-11}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 5.77e-11}, {"name": "Silver I", "categories": ["soil"], "amount": 5.77e-11}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.09e-08}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 1.09e-08}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.67e-07}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.09e-08}, {"name": "Silver I", "categories": ["water"], "amount": 1.09e-08}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.97e-10}, {"name": "Simazine", "categories": ["air"], "amount": 3.6e-10}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.92e-11}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.88e-10}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 5.03e-10}, {"name": "Simazine", "categories": ["water"], "amount": 5.03e-10}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.25e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air"], "amount": 9.97e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.97e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 7.55e-13}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 7.55e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.5e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.55e-13}, {"name": "Styrene", "categories": ["water"], "amount": 7.55e-13}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.7e-10}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.35e-10}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-10}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.59e-11}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.13e-10}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.53e-10}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.16e-11}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 7.8e-12}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.75e-10}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.77e-11}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.05e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 7.86e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.86e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.86e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.85e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.85e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.5e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.26e-11}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 2.47e-09}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 2.04e-09}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 2.04e-09}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 5.63e-10}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1.09e-09}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1.09e-09}, {"name": "Thallium I", "categories": ["soil"], "amount": 1.09e-09}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.61e-09}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 2.61e-09}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 5e-09}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.61e-09}, {"name": "Thallium I", "categories": ["water"], "amount": 2.61e-09}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 6.08e-11}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.08e-11}, {"name": "Thiabendazole", "categories": ["air"], "amount": 5.14e-11}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1.85e-12}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.29e-11}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.76e-11}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.76e-11}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.73e-11}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-10}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.57e-10}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.26e-10}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 9e-10}, {"name": "Thiodicarb", "categories": ["water"], "amount": 9e-10}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.53e-11}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 6.77e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.67e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 9.07e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.32e-10}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.32e-10}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.61e-09}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-09}, {"name": "Thiram", "categories": ["air"], "amount": 9.61e-10}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.45e-11}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.16e-10}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.73e-09}, {"name": "Thiram", "categories": ["water"], "amount": 2.73e-09}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 7.12e-10}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.12e-10}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.12e-10}, {"name": "Tin ion", "categories": ["air"], "amount": 4.92e-10}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 4.92e-10}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1.03e-13}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1.63e-13}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1.63e-13}, {"name": "Tin ion", "categories": ["soil"], "amount": 1.63e-13}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.1e-10}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1.1e-10}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.57e-09}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.1e-10}, {"name": "Tin ion", "categories": ["water"], "amount": 1.1e-10}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air"], "amount": 3.48e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.48e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 8.98e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water"], "amount": 2.9e-13}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.45e-10}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.34e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.5e-11}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 2.32e-10}, {"name": "Triallate", "categories": ["air"], "amount": 1.06e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.41e-11}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.14e-10}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.37e-12}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 6.77e-11}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.15e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.15e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.68e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.68e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.71e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.68e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.68e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.33e-11}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.32e-15}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.39e-10}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.41e-11}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.02e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.83e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.83e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.59e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water"], "amount": 7.98e-14}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 5.98e-13}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 7.45e-09}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.45e-09}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.45e-09}, {"name": "Vanadium V", "categories": ["air"], "amount": 5.16e-09}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 5.16e-09}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 3.27e-11}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 5.78e-11}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 5.78e-11}, {"name": "Vanadium V", "categories": ["soil"], "amount": 5.78e-11}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 7.96e-09}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 7.96e-09}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.65e-08}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 7.96e-09}, {"name": "Vanadium V", "categories": ["water"], "amount": 7.96e-09}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.88e-12}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air"], "amount": 1.74e-14}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.74e-14}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.77e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water"], "amount": 3.07e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.43e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 8.57e-09}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 3.73e-09}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.73e-09}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.73e-09}, {"name": "Zinc II", "categories": ["air"], "amount": 2.59e-09}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 2.59e-09}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.45e-11}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.42e-11}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.42e-11}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.42e-11}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 7.47e-09}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 7.47e-09}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 8.59e-09}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 7.47e-09}, {"name": "Zinc II", "categories": ["water"], "amount": 7.47e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.91e-11}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.1e-10}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 9.33e-13}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 9.33e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.11e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 9.33e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 9.33e-13}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.81e-14}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.81e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.81e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.31e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.04e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 4.78e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "ecotoxicity: terrestrial"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.14e-12}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.01e-11}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.07e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water"], "amount": 7.92e-12}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.74e-13}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.35e-14}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 6.16e-15}, {"name": "2,4-D", "categories": ["water"], "amount": 6.16e-15}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.25e-18}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 5.32e-20}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 3.8e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.25e-18}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 5.42e-13}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 5.42e-13}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 2.55e-12}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.75e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.1e-12}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.15e-14}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.21e-14}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.14e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.96e-18}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.1e-15}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 7.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.84e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.27e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 2.66e-14}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.6e-15}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 9.01e-16}, {"name": "Acephate", "categories": ["water"], "amount": 9.01e-16}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.44e-13}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 3.86e-12}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.86e-16}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water"], "amount": 7.63e-14}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 5.07e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water"], "amount": 2.69e-13}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 6.94e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 3.48e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-09}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.45e-16}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water"], "amount": 4.85e-14}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.21e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.21e-10}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 9.88e-12}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.57e-11}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.84e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 8.32e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.32e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.32e-09}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 1.66e-09}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.97e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 7.17e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.31e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 3.94e-08}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 6.71e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 9.75e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.61e-11}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 4.67e-13}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water"], "amount": 7.09e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 3.97e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.28e-10}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water"], "amount": 8.11e-10}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 6.63e-07}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.63e-07}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.63e-07}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.58e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 4.58e-07}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 2.6e-29}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 4.48e-29}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 4.48e-29}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 4.48e-29}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.28e-26}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.28e-26}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 4.63e-27}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.28e-26}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.28e-26}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.59e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 1.64e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water"], "amount": 1.15e-10}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 6.3e-13}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 7.54e-16}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.98e-09}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.64e-15}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.56e-15}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.94e-16}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.94e-16}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1.63e-08}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-08}, {"name": "Barium II", "categories": ["air"], "amount": 1.13e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.13e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 2.06e-28}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 4.32e-28}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 4.32e-28}, {"name": "Barium II", "categories": ["soil"], "amount": 4.32e-28}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 5.46e-28}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 5.46e-28}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.03e-28}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 5.46e-28}, {"name": "Barium II", "categories": ["water"], "amount": 5.46e-28}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.96e-18}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 5.88e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.19e-15}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.28e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.08e-13}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.08e-13}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 6.63e-12}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 4.87e-13}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water"], "amount": 9.79e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.05e-11}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.47e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.85e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 5.52e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8.91e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.91e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.91e-10}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 8.89e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.89e-10}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 8.64e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 5.05e-12}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 5.05e-12}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 9.12e-14}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.06e-14}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 5.44e-13}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 2.37e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.37e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.37e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.64e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.64e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.39e-29}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.97e-29}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.97e-29}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.97e-29}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.97e-26}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.97e-26}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.93e-26}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.97e-26}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.97e-26}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.08e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.11e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 3.33e-09}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.9e-09}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.12e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.49e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.56e-09}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.56e-09}, {"name": "Bisphenol A", "categories": ["water"], "amount": 7.3e-14}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.14e-16}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 8.57e-18}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.07e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.31e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 3.77e-14}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 7.59e-15}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 7.59e-15}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 1.71e-14}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water"], "amount": 2.12e-13}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.01e-13}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water"], "amount": 4.2e-12}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 1.39e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 9.6e-07}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 9.6e-07}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.65e-29}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.96e-29}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.96e-29}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.96e-29}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2.52e-27}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 2.52e-27}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.08e-27}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2.52e-27}, {"name": "Cadmium II", "categories": ["water"], "amount": 2.52e-27}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.7e-12}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.58e-11}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.58e-11}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.48e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.57e-12}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 9.95e-13}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.75e-13}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.75e-13}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 9.71e-12}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 9.71e-12}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 9.71e-12}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 9.71e-12}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.12e-17}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.81e-14}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.98e-18}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water"], "amount": 3.72e-17}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 3.76e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 7.06e-12}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.5e-12}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 5.27e-12}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.49e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.06e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.11e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.88e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 8.95e-09}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 3.18e-08}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 3.18e-08}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.86e-09}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 8.15e-17}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 3.02e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 2.1e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.1e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.02e-29}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.86e-29}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.86e-29}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.86e-29}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 4.39e-28}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 4.39e-28}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.91e-28}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 4.39e-28}, {"name": "Chromium III", "categories": ["water"], "amount": 4.39e-28}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 1.02e-06}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.09e-07}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.09e-07}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 4.66e-28}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 8.52e-28}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 8.52e-28}, {"name": "Chromium VI", "categories": ["soil"], "amount": 8.52e-28}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2e-26}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 2e-26}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 8e-27}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2e-26}, {"name": "Chromium VI", "categories": ["water"], "amount": 2e-26}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.51e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 3.75e-13}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 2.96e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 2.05e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2.05e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.69e-30}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 4.66e-30}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 4.66e-30}, {"name": "Cobalt II", "categories": ["soil"], "amount": 4.66e-30}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 1.21e-27}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 1.21e-27}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.2e-27}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 1.21e-27}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.21e-27}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 8.73e-06}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.73e-06}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.73e-06}, {"name": "Copper ion", "categories": ["air"], "amount": 6.04e-06}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 6.04e-06}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 6.1e-29}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.05e-28}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.05e-28}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.05e-28}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.98e-26}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 2.98e-26}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.1e-26}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.98e-26}, {"name": "Copper ion", "categories": ["water"], "amount": 2.98e-26}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.57e-13}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water"], "amount": 5.31e-13}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 3.84e-12}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 2.31e-15}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water"], "amount": 7.36e-15}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.73e-16}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.94e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 1.55e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.7e-19}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.9e-09}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.02e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 3.08e-08}, {"name": "Cypermethrin", "categories": ["water"], "amount": 3.08e-08}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.9e-12}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.33e-16}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.78e-10}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 5.78e-14}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-12}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 2.23e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1.68e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.57e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.22e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1.04e-22}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 3.11e-10}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 7.38e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.64e-16}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.64e-16}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.21e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3e-09}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 7.92e-15}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.91e-17}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.91e-17}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6.85e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1.05e-11}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.7e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 6.77e-17}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.73e-14}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.73e-14}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.22e-13}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water"], "amount": 8.74e-13}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.17e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 7.85e-09}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.85e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 9.29e-11}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.15e-07}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.68e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 8.57e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.64e-12}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 3.84e-12}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 7.98e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3e-11}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.47e-14}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 4.83e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.94e-17}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.52e-18}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 7.52e-18}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.3e-12}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.26e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.33e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 5.23e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4.31e-11}, {"name": "Diuron", "categories": ["water"], "amount": 2.9100000000000002e-11}, {"name": "Dodecanol", "categories": ["water"], "amount": 8.69e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.45e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 7.83e-16}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.49e-19}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 5.34e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.17e-21}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.82e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.64e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.66e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 1.22e-09}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.69e-10}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.69e-10}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.29e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 2.2e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 2.2e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.27e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 2.2e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 2.2e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.06e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.06e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.1e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.41e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 1.96e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.41e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.96e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.14e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water"], "amount": 2.99e-13}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 6.4e-17}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.88e-22}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.88e-22}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.45e-11}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 1.64e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1.73e-08}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.17e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.63e-12}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 1.23e-15}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.57e-15}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 5.19e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.79e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.71e-16}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 7.41e-18}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 7.27e-09}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 5.54e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.51e-12}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.09e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.28e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.65e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.31e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.77e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.98e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 3.06e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.65e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.29e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.02e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.02e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.02e-08}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 4.37e-09}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.61e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.13e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 9.13e-10}, {"name": "Fluorene", "categories": ["air"], "amount": 2.07e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.37e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.14e-09}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.19e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.94e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.62e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 5.77e-13}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.01e-11}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 5.22e-17}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water"], "amount": 1.04e-14}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.58e-20}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 7.07e-14}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.07e-12}, {"name": "Furfural", "categories": ["air"], "amount": 1.81e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 8.38e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.53e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.44e-21}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.99e-16}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.73e-22}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.77e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.26e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 9.09e-14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 9.09e-14}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.36e-16}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-16}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 2.92e-09}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.98e-16}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water"], "amount": 2.21e-15}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.23e-14}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.73e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.18e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.55e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 9.06e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.09e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.09e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.37e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.37e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 4.33e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 4.33e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.58e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 4.33e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 4.33e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1.98e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.98e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.98e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.95e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.95e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 8.95e-15}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4.92e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 6.83e-17}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 7.03e-21}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.26e-21}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.26e-21}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.44e-12}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 4.29e-16}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.29e-16}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.95e-12}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.55e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.14e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.28e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 2.01e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 2.01e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2.01e-07}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 3.11e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11e-07}, {"name": "Lead II", "categories": ["air"], "amount": 2.15e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.15e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 5.2e-32}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.05e-32}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.05e-32}, {"name": "Lead II", "categories": ["soil"], "amount": 8.05e-32}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 7.18e-29}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 7.18e-29}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.15e-28}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 7.18e-29}, {"name": "Lead II", "categories": ["water"], "amount": 7.18e-29}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 4.48e-18}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5.81e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.33e-18}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.14e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 7.51e-16}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.25e-16}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.25e-16}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 6.71e-15}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.01e-14}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.01e-14}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.35e-21}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.48e-16}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.17e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 9.63e-15}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.09e-16}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.08e-16}, {"name": "Mancozeb", "categories": ["water"], "amount": 1.08e-16}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 9.9e-15}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.72e-13}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 1e-05}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 6.85e-06}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6.85e-06}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.3e-30}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 3.04e-30}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 3.04e-30}, {"name": "Mercury II", "categories": ["soil"], "amount": 3.04e-30}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 5.84e-27}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 5.84e-27}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 8.49e-27}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 5.84e-27}, {"name": "Mercury II", "categories": ["water"], "amount": 5.84e-27}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 3.14e-15}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 2.18e-15}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.3e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.08e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.5e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.5e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 5.61e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.14e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.48e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 1.48e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 8.37e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.48e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.48e-11}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 3.48e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water"], "amount": 4.81e-13}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.36e-10}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 4.81e-12}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.35e-12}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water"], "amount": 7.73e-13}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 6.18e-11}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.4e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.19e-11}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.27e-13}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.45e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.61e-10}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 8.27e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.1e-10}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.79e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.29e-10}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.66e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 9.76e-12}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.02e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 7.39e-16}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.2e-16}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2e-16}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1.05e-08}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 7.28e-09}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 7.28e-09}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.61e-30}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.93e-30}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.93e-30}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.93e-30}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 6.93e-29}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 6.93e-29}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 5.11e-29}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 6.93e-29}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 6.93e-29}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1.6e-13}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 6.87e-14}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 9.13e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 6.66e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.1e-11}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 6.91e-09}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 1.36e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 9.36e-07}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9.36e-07}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.31e-29}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 5.85e-29}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 5.85e-29}, {"name": "Nickel II", "categories": ["soil"], "amount": 5.85e-29}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 9.01e-27}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 9.01e-27}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.89e-27}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 9.01e-27}, {"name": "Nickel II", "categories": ["water"], "amount": 9.01e-27}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.39e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.69e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 9.69e-15}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.94e-10}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1.52e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 1.08e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.34e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.54e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.81e-11}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.35e-19}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.15e-09}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 2.05e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 7.34e-16}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 7.89e-10}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 7.89e-10}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.32e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.57e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.22e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.41e-17}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 6.3e-14}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water"], "amount": 1.12e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.48e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.48e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 9.67e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.67e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.67e-08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.79e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.79e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.3e-12}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.53e-12}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.38e-10}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.1e-09}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.74e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.13e-12}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 3.24e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.87e-12}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.22e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 4.56e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 8.37e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-14}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.04e-13}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.73e-15}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 8.88e-10}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 4.31e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 5.75e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 6.12e-10}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.92e-08}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 4.29e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 4.49e-16}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.86e-11}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.42e-14}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water"], "amount": 3.44e-13}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.32e-14}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.31e-11}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 6.11e-12}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 2.7e-12}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.55e-12}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.19e-15}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.33e-13}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Pyrene", "categories": ["air"], "amount": 1.38e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 4.89e-15}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1.36e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 7.6e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 3.04e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.06e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.06e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.09e-15}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.01e-14}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 4.48e-07}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.48e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 3.1e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 3.1e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.57e-29}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 2.83e-29}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 2.83e-29}, {"name": "Selenium IV", "categories": ["soil"], "amount": 2.83e-29}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 2.72e-27}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 2.72e-27}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 2.07e-27}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 2.72e-27}, {"name": "Selenium IV", "categories": ["water"], "amount": 2.72e-27}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.77e-13}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.59e-13}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 4.81e-05}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.81e-05}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.81e-05}, {"name": "Silver I", "categories": ["air"], "amount": 3.33e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 3.33e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 2.02e-28}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 3.52e-28}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 3.52e-28}, {"name": "Silver I", "categories": ["soil"], "amount": 3.52e-28}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 7.32e-26}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 7.32e-26}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 9.31e-26}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 7.32e-26}, {"name": "Silver I", "categories": ["water"], "amount": 7.32e-26}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.07e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.91e-11}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.48e-11}, {"name": "Simazine", "categories": ["water"], "amount": 3.48e-11}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 8.76e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 4.77e-14}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water"], "amount": 1.58e-13}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.43e-08}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.68e-11}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.03e-12}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.01e-12}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water"], "amount": 9.55e-13}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 6.71e-14}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 3.26e-09}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 5.45e-10}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.57e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-12}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 4.2e-07}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2e-07}, {"name": "Thallium I", "categories": ["air"], "amount": 2.91e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 2.91e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.7e-27}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 3.27e-27}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 3.27e-27}, {"name": "Thallium I", "categories": ["soil"], "amount": 3.27e-27}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 8.58e-27}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 8.58e-27}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 2.21e-27}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 8.58e-27}, {"name": "Thallium I", "categories": ["water"], "amount": 8.58e-27}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.24e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 4.04e-14}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.18e-14}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.18e-14}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 5.59e-10}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 1.11e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.34e-09}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.34e-09}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.16e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 8.34e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.68e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.22e-11}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.22e-11}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air"], "amount": 6.43e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 3.45e-12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.84e-12}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.09e-11}, {"name": "Thiram", "categories": ["water"], "amount": 2.09e-11}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 4e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 2.77e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 2.77e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 5.92e-31}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 7.01e-28}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 7.01e-28}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 8.49e-28}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 7.01e-28}, {"name": "Tin ion", "categories": ["water"], "amount": 7.01e-28}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.06e-13}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water"], "amount": 3.43e-13}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 9.93e-09}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2.02e-10}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.77e-14}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.19e-09}, {"name": "Triallate", "categories": ["air"], "amount": 5.36e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.14e-10}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.07e-10}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.64e-14}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.82e-13}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.03e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.02e-11}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.09e-17}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 2.05e-16}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.88e-10}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.29e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.5e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.63e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.63e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 7.82e-18}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water"], "amount": 1.47e-16}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 2.26e-15}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 1.36e-06}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.62e-28}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2.85e-28}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2.85e-28}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2.85e-28}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 4.48e-26}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 4.48e-26}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.15e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 4.48e-26}, {"name": "Vanadium V", "categories": ["water"], "amount": 4.48e-26}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.67e-11}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 6.28e-14}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water"], "amount": 2.09e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.9e-09}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 9.8e-07}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8e-07}, {"name": "Zinc II", "categories": ["air"], "amount": 6.78e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 6.78e-07}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 8.39e-29}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4e-28}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4e-28}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.4e-28}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 5.72e-26}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 5.72e-26}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 8.11e-27}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 5.72e-26}, {"name": "Zinc II", "categories": ["water"], "amount": 5.72e-26}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 8.48e-10}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 9.19e-14}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.04e-13}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 2.13e-13}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water"], "amount": 7.07e-13}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2.09e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "eutrophication: freshwater"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "eutrophication: marine"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "land use"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "photochemical oxidant formation: terrestrial ecosystems"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.71e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.71e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.92e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.15e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.15e-08}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.79e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.79e-09}, {"name": "Acetone", "categories": ["air"], "amount": 4.52e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.52e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.07e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.07e-08}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.62e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.43e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.43e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.54e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air"], "amount": 3.92e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.96e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.96e-08}, {"name": "Cumene", "categories": ["air"], "amount": 2.41e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.11e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.47e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -7.54e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -7.54e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56e-08}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43e-08}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.47e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Formic acid", "categories": ["air"], "amount": 2.26e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Heptane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Hexane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-09}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 8.6e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.6e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 7.54e-10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Methanol", "categories": ["air"], "amount": 9.8e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.97e-07}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.29e-07}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Phenol", "categories": ["air"], "amount": -3.77e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.77e-09}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanol", "categories": ["air"], "amount": 3.62e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propionic acid", "categories": ["air"], "amount": 9.8e-09}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Styrene", "categories": ["air"], "amount": 3.77e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77e-09}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.54e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Toluene", "categories": ["air"], "amount": 3.32e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48e-08}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "water use: aquatic ecosystems"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "human health", "climate change: human health"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 8.12e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 1.25e-05}, {"name": "Chloroform", "categories": ["air"], "amount": 4.87e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.87e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 2.14e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-05}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.14e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.14e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.000301}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.000301}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.69e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.69e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000527}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000527}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.000207}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.000207}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 4.11e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.44e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.44e-07}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.000626}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000626}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000626}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.000626}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.000626}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.000408}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000408}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000408}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.000408}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.000408}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 2.37e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 2.37e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.000152}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000152}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000152}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.000152}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.000152}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.000476}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000476}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000476}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.000476}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.000476}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.000667}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.000495}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.45e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.45e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 7.31e-07}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 7.31e-07}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.000373}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000373}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000373}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.000373}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.000373}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.000633}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000633}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000633}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.000633}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.000633}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.000429}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.000429}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.000885}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.68e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.68e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.000877}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.000877}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 4.41e-05}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000197}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.9e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 6.82e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.65e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.65e-06}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 6.82e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000283}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000283}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.000396}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.00056}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.00056}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.000877}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00104}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.000516}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00142}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "human health", "human toxicity: carcinogenic"], "exchanges": [{"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 9.52e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.00156}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.00156}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 4.18e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 4.37e-06}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 4.37e-06}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 4.37e-06}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.84e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 3.84e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1e-24}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.84e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 3.84e-05}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.24e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.17e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.42e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.19e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.000311}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000311}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00381}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 3.68e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.000859}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.000859}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.91e-08}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 4.02e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 4.02e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 4.02e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.53e-07}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.53e-07}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.29e-25}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.53e-07}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.53e-07}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 2.9e-05}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.000645}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.000645}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 6.49e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 6.66e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 6.66e-07}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2.04e-07}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 2.04e-07}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.12e-25}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2.04e-07}, {"name": "Cadmium II", "categories": ["water"], "amount": 2.04e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 9.72e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 4.29e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 2.71e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.23e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.86e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.65e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 7.03e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.2e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 3.22e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 3.22e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.64e-05}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.33e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.17e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 4.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 2.73e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.23e-05}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.41e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.41e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.08e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4.55e-07}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.000315}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.000315}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.39e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 5.38e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.38e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.38e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 5.31e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 5.31e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.78e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 1.78e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.67e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.78e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.78e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 4.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 6.21e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 6.21e-06}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 4.26e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.26e-07}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 1.5e-06}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-06}, {"name": "Lead II", "categories": ["air"], "amount": 5.58e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 5.58e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 5.25e-08}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 5.36e-08}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 5.36e-08}, {"name": "Lead II", "categories": ["soil"], "amount": 5.36e-08}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.45e-08}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 3.45e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 6.05e-28}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.45e-08}, {"name": "Lead II", "categories": ["water"], "amount": 3.45e-08}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 4.15e-05}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2.12e-05}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 8.13e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 8.13e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.5e-07}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.55e-07}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.55e-07}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.55e-07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.28e-06}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 1.28e-06}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.95e-26}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.28e-06}, {"name": "Mercury II", "categories": ["water"], "amount": 1.28e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.28e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 6.28e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.93e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.28e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.28e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000755}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000755}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000755}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000783}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000783}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000719}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.000719}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000409}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000719}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000719}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 2.97e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.97e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.97e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 0.000104}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.000104}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 6.88e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 7.09e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 7.09e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 7.09e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.13e-05}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 1.13e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.68e-25}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.13e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 1.13e-05}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.82e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.000108}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.000108}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.06e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.06e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.06e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.06e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.93e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.54e-05}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.95e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.21e-06}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.24e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.33e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 3.76e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 3.76e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.74e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 3.76e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.76e-06}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "human health", "human toxicity: non-carcinogenic"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 3.35e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0044}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.28e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 2e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.22e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.09e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.66e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.66e-07}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 7.34e-05}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.89e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.81e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.75e-06}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.42e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water"], "amount": 9.33e-07}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 7.82e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 7.82e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 8.19e-07}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.69e-25}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.94e-05}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.000565}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000565}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000565}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.00204}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.00204}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 2.37e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 7.62e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 7.62e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 7.62e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.000666}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.000666}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 4.38e-24}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.000666}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.000666}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 1.39e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air"], "amount": 2.33e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.33e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.04e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.72e-25}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water"], "amount": 9.67e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.08e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3.06e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.86e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 2.96e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.15e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.07e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.44e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000306}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.83e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.83e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.00618}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00618}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00618}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.89e-10}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.02e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.02e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.02e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.88e-07}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 3.88e-07}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 8.91e-23}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.88e-07}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.88e-07}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.25e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.67e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.63e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.63e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.47e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.44e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000438}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000438}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.52e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.52e-06}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 9.19e-05}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.19e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.19e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.000326}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.000326}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.4e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.2e-05}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.2e-05}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.2e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.27e-05}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.27e-05}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.3e-25}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.27e-05}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.27e-05}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.64e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.89e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.89e-06}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000187}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000187}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.53e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.96e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 2.25e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.36e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.92e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.58e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.86e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.46e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.28e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.28e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 4.65e-09}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4.65e-09}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 4.22e-12}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.26e-30}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water"], "amount": 1.11e-10}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00126}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00126}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.32e-25}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 7.82e-07}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 4.77e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 4.77e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 9.9e-11}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 5.15e-28}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water"], "amount": 2.87e-08}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.01e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.72e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.86e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.86e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 6.38e-08}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 5.86e-06}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.98e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000197}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2.18e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.18e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.82e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.28e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 6.5e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.84e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.84e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.3e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.3e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.69e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5.04e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.04e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.000119}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 0.000119}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.66e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.000119}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.000119}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.54e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.33e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 7.09e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.02e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air"], "amount": 8.09e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 8.09e-06}, {"name": "Furfural", "categories": ["air"], "amount": 3.63e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.04e-05}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00122}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.57e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 5.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 9.03e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 9.03e-06}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.000122}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000122}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000122}, {"name": "Lead II", "categories": ["air"], "amount": 0.000451}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.000451}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.4e-09}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 4.42e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 4.42e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 4.42e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2.83e-06}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 2.83e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 4.95e-26}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2.83e-06}, {"name": "Lead II", "categories": ["water"], "amount": 2.83e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.000113}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.02e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.000561}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000561}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000561}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0015}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0015}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.35e-08}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 7.09e-06}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 7.09e-06}, {"name": "Mercury II", "categories": ["soil"], "amount": 7.09e-06}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.53e-05}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 3.53e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.02e-25}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.53e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 3.53e-05}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000349}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 3.63e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 3.63e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 7.64e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.61e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3.58e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3.58e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.12e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.12e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000591}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000591}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000591}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000611}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000611}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000563}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.000563}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000319}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000563}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000563}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.79e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4.79e-06}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.42e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 4.79e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 4.79e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2.35e-07}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 8.82e-26}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 6.02e-06}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 4.86e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.56e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.51e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.35e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 3.69e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-07}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-07}, {"name": "Nickel II", "categories": ["air"], "amount": 1.33e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.33e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 9.26e-10}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 9.39e-08}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 9.39e-08}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.39e-08}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.49e-07}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 1.49e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.1e-27}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.49e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 1.49e-07}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.74e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 3.24e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.02e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.92e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.39e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 9.8e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.89e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000137}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 7.23e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.13e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.72e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 5.29e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 9.76e-08}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 5.13e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.78e-08}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 6.25e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 3.37e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.28e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.21e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air"], "amount": 0.000465}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.000465}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 6.95e-08}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.76e-25}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water"], "amount": 1.51e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.05e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water"], "amount": 4.81e-09}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.42e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 2.71e-06}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 9.01e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 9.01e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 9.26e-06}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.04e-25}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water"], "amount": 3.1e-05}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.2e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.63e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 3.51e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1e-05}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 3.6e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.18e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.12e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.92e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.92e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.66e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.35e-05}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.35e-05}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4.06e-08}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.6e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water"], "amount": 6.29e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4.15e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.58e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 7.2e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 7.2e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.55e-08}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.86e-26}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 5.61e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.88e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.36e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.41e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.16e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "human health", "ionising radiation"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 2.92e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 2.07e-13}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 3.22e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 2.28e-11}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 3.34e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 6.06e-12}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 3.22e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water"], "amount": 5.88e-08}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 3.96e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water"], "amount": 6.18e-08}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 1.86e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water"], "amount": 2.35e-11}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 1.67e-11}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 1.6e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 1.8e-08}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 2.45e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.77e-13}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 1.51e-10}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water"], "amount": 1.71e-09}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 2.04e-10}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 3.84e-12}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 4.1e-14}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 1.3e-10}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.82e-14}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 6.18e-10}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 9.86e-12}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 7.41e-12}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 1.6e-12}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 2.04e-10}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 3.09e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water"], "amount": 8.64e-11}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 5.32e-13}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 5.32e-13}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water"], "amount": 5.13e-11}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 5.81e-14}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "human health", "ozone depletion"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 1.66e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-06}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.66e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.66e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 9.39e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 9.39e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000119}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000119}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 6.52e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 6.52e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 3.91e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.91e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.91e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 3.91e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 3.91e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2.63e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.63e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.63e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.63e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.63e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 5.93e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 5.93e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1.16e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.16e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.16e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7.58e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.58e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.58e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7.58e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7.58e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 3.06e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 3.06e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000391}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000391}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.00357}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00357}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00357}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00357}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00357}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.00281}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00281}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00281}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.00281}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.00281}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.01e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.01e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 9.98e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 9.98e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.19e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.19e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000285}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000285}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.000237}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.000237}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "human health", "particulate matter formation"], "exchanges": [{"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "human health", "photochemical oxidant formation: human health"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.72e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.82e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.82e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air"], "amount": 1.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.98e-08}, {"name": "Acrolein", "categories": ["air"], "amount": 1.78e-07}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.78e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -6.27e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -6.27e-08}, {"name": "Benzene", "categories": ["air"], "amount": 3.3e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.52e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 2.94e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-07}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air"], "amount": 1.72e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cumene", "categories": ["air"], "amount": 1.06e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 9.24e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.52e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -3.3e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -3.3e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 6.27e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 6.27e-08}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.22e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.22e-07}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.52e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.48e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.48e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.42e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.42e-08}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.3e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Methanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.06e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.63e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.63e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 6.73e-07}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.39e-06}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 9.1e-07}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Phenol", "categories": ["air"], "amount": -1.65e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -1.65e-08}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Styrene", "categories": ["air"], "amount": 1.65e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.3e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 9.57e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.57e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "human health", "water use: human health"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 3.1e-06}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "natural resources", "energy resources: non-renewable, fossil"], "exchanges": [{"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "natural resources", "material resources: metals/minerals"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0161}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0161}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.165}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0142}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00216}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 13.4}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.441}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0124}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.037}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.037}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.00889}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00889}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0352}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.000968}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.000933}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 0.639}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.639}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0049}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00142}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 14.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 14.8}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 61.9}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0213}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000229}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 17.2}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 18.4}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 18.4}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.04}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.04}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.098}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.098}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.006}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.006}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 1.33}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 0.711}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00081}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.000492}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 107}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 107}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 2.04}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.0507}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.00918}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00372}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 9.02}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 9.02}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 2.94}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.94}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 260}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.834}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.834}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.15}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.7}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.556}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0184}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "total: ecosystem quality", "ecosystem quality"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 3.5151e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5151e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5151e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.6904e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 6.158999999999999e-10}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.48272e-12}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.6652e-11}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83573e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.53574e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.3311235e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.83530616e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.83530616e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7241e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.0934000125e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.482800000532e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.482800000532e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7241e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 5.1354e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.0934000125e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.482800000532e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.525999999999999e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.632100000000001e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.995542e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.995542e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.847549999999999e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.7113923e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.7113923e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.5517e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.6551e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.01485e-11}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36004269e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36004269e-08}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.5554e-12}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.5554e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.2917e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.5554e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.5554e-12}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 6.530280000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.530280000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.530280000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.9679974e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.9679974e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.350059939e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.55641e-11}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.313e-11}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.313e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.854700000000002e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 9.854700000000002e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.23877e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.854700000000002e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.854700000000002e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.32086e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.90666e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.991756000000001e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.232009010000001e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.232009010000001e-10}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.1503718e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.1503718e-08}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 8.523199999999999e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04851e-10}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.76038805e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.183263e-10}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air"], "amount": 4.5204408e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.5204408e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.4871e-13}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.8318e-12}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.1213e-12}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.801e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.756e-09}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["water"], "amount": 5.336e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.18425e-11}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 9.18425e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37024635e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.18425e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.18425e-11}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.37757e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.37757e-10}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.233999999999999e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.233999999999999e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.4715e-10}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.4715e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 3.6996e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.4715e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.4715e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7847e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9.902e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.630106e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.630106e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.8868e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 1.341e-09}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 4.113600000000001e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.1577e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.617e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.408e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.238e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 7.871000000000001e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.88194e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.5376e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.3116e-09}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.82971e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.7341e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7341e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7341e-11}, {"name": "Aniline", "categories": ["air"], "amount": 9.983e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 9.983e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.4179e-10}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.4179e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.50817e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.4179e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.4179e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.024e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.49861e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 2.49861e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.27217e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.49861e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.49861e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.7777e-10}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 6.67141e-07}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.67141e-07}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.67141e-07}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.60948e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 4.60948e-07}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.518e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 2.64e-10}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 2.64e-10}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 2.64e-10}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.402e-08}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 4.402e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 7.55e-09}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.402e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.402e-08}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1347e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.0688e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.0408e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.26685e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.26685e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.26685e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.1954e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.337007539999999e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.6636e-07}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.697e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.41970164e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.923600156e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.10360000694e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.10360000694e-07}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1.6734e-08}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6734e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6734e-08}, {"name": "Barium II", "categories": ["air"], "amount": 1.2165e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.2165e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8.653999999999999e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.858e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.858e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 1.858e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.072e-09}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 2.072e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.072e-09}, {"name": "Barium II", "categories": ["water"], "amount": 2.072e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.596500196e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 2.488e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14411719e-09}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2501e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.925000000000001e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.77278e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.77278e-10}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.564e-11}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.564e-11}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.564e-11}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.2778e-10}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.8589e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.178899999999999e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.053e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 6.313999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.313999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.313999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47005027e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47005027e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.40085e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.40085e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.875177e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.40085e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.40085e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.6084e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6084e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6084e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.5863e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.5863e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.8792e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3.0586e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0586e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0586e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 3.0567e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.0567e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.3624e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 6.704999999999999e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.704999999999999e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.704999999999999e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.984e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3.984e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.457505e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.457505e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.43142e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.4131e-11}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.4135e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.99278e-10}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 2.377779e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.377779e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.377779e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.645417e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.645417e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.255999999999999e-11}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.2058e-10}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.2058e-10}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.2058e-10}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.633e-08}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 3.633e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.57e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.633e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.633e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.568e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.747e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.9848e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.510533e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.510533e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.467e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 4.793e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.431999999999999e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 3.215e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 1.439e-08}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.864e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.597560000000001e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.597560000000001e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.1461073e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.43810514e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.087300857e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 7.157107e-09}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.474e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.907739999999999e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.24030377e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.1697400759e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.1697400759e-07}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.2827e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.6008e-09}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.29704e-11}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.29704e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.3042e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.29704e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.29704e-11}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.9213e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.812e-11}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 1.39275e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39275e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39275e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 9.619679999999998e-07}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 9.619679999999998e-07}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.1487e-10}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.0716e-10}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.0716e-10}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.0716e-10}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.0799e-08}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.0799e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 5.62e-09}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.0799e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.0799e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.82287e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.11716e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.588999999999999e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.12428e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.12428e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19034e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.9899e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.17787e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.8454995e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2168475e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2168475e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9804e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.2884e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.320145e-10}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.6742e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.6742e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.6611e-10}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 2.6611e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.07891e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.6611e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.6611e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.870916389999999e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.60581e-11}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 3.031176e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.031176e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.031176e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44000000198677e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.515420000372e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.9171e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.8311e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.4105e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.8319e-10}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.0423e-11}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0423e-11}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0423e-11}, {"name": "Chloroform", "categories": ["air"], "amount": 3.1911283e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.1911283e-08}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.232e-10}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.232e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.10594e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.232e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.232e-10}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.856e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.841e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.3265e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.321e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 5.879e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 5.879e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.94e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.586e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.28375e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.05088e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.05088e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.6962e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.7246000815e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.02027e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 3.024174e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.024174e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.024174e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 2.103199e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.103199e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.451e-11}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.0012e-10}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.0012e-10}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.0012e-10}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.4579e-09}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.4579e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 8.22e-10}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.4579e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.4579e-09}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 1.027e-06}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.027e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.027e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.152e-07}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.152e-07}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.433e-09}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.433e-09}, {"name": "Chromium VI", "categories": ["soil"], "amount": 4.433e-09}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 6.162e-08}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 6.162e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.16e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 6.162e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 6.162e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 6.9531e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 5.154200000000001e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.90445e-10}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 2.966536e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.966536e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.966536e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 2.054597e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2.054597e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1.5067e-11}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.6237e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.6237e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.6237e-11}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.081e-09}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 4.081e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.38e-09}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.081e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.081e-09}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 8.74739e-06}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74739e-06}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74739e-06}, {"name": "Copper ion", "categories": ["air"], "amount": 6.05222e-06}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 6.05222e-06}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.5013e-10}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 6.071e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 6.071e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 6.071e-10}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.0342e-07}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1.0342e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.0342e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1.0342e-07}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 7.154000000000001e-13}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.154000000000001e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.154000000000001e-13}, {"name": "Cumene", "categories": ["air"], "amount": 2.41005784e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41005784e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.486335e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.89631e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.32084e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.810636e-11}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 3.810636e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.5923605e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.810636e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.810636e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.3965373e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.84e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.0825e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.42860047e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.012e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.467e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 6.025000000000001e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.494079999999999e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.494079999999999e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4298e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.0709e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.17110233e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 7.0004e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.72918e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.55408e-09}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 3.839e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 2.945e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 3.192e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.497500000000001e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.711700000010401e-11}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.1812e-08}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73325e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.383e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.633600264e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.633600264e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 5.551e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3361e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24309e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.708092e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.416800291e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.416800291e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.4931e-08}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.1248e-08}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.28872e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 2.641e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.102340677e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 7.635e-14}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.635e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.635e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.470005178999999e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.470005178999999e-08}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.78406e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.78406e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78406e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.17929e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.17929e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.635339999999999e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.23034e-10}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7266e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.2893e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.4415e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.484149999999999e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.484149999999999e-06}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.6038e-09}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.154666e-07}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.91575e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 4.06e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.699944e-08}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.025002e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.025002e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.864200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 6.864200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.48553e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.864200000000001e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.864200000000001e-10}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 1.4000383e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4000383e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4000383e-07}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.4000383e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.4000383e-07}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.245024e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.3724e-09}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.656217e-10}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 1.09274e-08}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09274e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 6.053e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.478500644999999e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.1109000494e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.371500000752e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.371500000752e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.7429e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.4113e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.351e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.5858e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.07409e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.901710000000001e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.563291e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.57777e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.496299999999999e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.520707829999999e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21469000249e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 9.776e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3.011e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.9541400000117e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.7475e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.7475e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 7.047e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23305e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.5744e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.381000000000001e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 3.0544e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.0639e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.0639e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8227e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8.371e-07}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.9700538e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.9700538e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 9.616799999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.616799999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.616799999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 3.062639672e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 3.062639672e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 9.309e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 9.309e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.99014e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 9.309e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 9.309e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.5495e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.5495e-11}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.4500941e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 3.4500941e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1.360037e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1.360037e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.6066825e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.6066825e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.486e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 4.486e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 8.6389e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.486e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.486e-11}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2.6700728e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6700728e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6700728e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.6700728e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.6700728e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.5500423e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.5500423e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 9.950271e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.950271e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.950271e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 9.950271e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 9.950271e-07}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 3.120085e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.120085e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.120085e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 3.120085e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 3.120085e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.386e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 3.386e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.22444e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.386e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.386e-09}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 4.370118999999999e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.370118999999999e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.370118999999999e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 4.370118999999999e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 4.370118999999999e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3.2400883e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2400883e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2400883e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3.2400883e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3.2400883e-06}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.6925e-12}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 4.6925e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.1745e-13}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.6925e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.6925e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16852e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.2974064e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.29910000000288e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.29910000000288e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.8075e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 5.8105e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.50795e-08}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43055778e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43055778e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.1162e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.6307e-11}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.26877e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.26877e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.9606257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.9606257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78123344e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.9606257e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.9606257e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.713000000000001e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 5.327e-11}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 3.4501e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.557800471e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.535000000741e-08}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.4088e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.286e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 7.05391e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.387699999999999e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 7.599999999999999e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2465e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.5801e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.956e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.7706e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.2453e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.2176e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.2176e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4361e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.8734e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 8.923e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.448e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.6251e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.6251e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.6251e-06}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2503e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 3.37e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.067999999999999e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 3.25e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.35983e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 4.607e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 5.0082e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 5.0952e-09}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.6724e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.16156e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.608e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.483852999999999e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.483852999999999e-08}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.4259e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 6.4259e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.15095e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.4259e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.4259e-10}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.88052407e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.943639999999999e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.3341000858e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.945707e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4325e-10}, {"name": "Furfural", "categories": ["air"], "amount": 1.86698e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.127660000202e-10}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 8.5423e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.9543e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.127660000202e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.98070000000144e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73277e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.43880699e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.665980000000373e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.665980000000373e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.665980000000373e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8818e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.4885e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.29360909e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.29360909e-08}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.640000025104e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.640000025104e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 1.05382e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.59050712e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.827221e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.0755423e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.0823e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.1854e-08}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 8.0538e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 8.0538e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.2558e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 8.0538e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 8.0538e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05070138e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05070138e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05070138e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05070138e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.1167e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.1167e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.809164e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.1167e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.1167e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.695000000000001e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.695000000000001e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.695000000000001e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39003876e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39003876e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 9.9183e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 9.9183e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 9.6225e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 9.9183e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 9.9183e-11}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 7.702000000000001e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.702000000000001e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.702000000000001e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.1638068e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.1638068e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.33465e-12}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 6.04264e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04264e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.04983e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.233000682999999e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.890600000007031e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.43990000000226e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.43990000000226e-09}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.295717e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.47404e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 8.600000047030001e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.600000047030001e-08}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.42125e-09}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.581e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.531e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 3.998e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.4411e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.4411e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.4411e-05}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 3.1111827e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1111827e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1111827e-07}, {"name": "Lead II", "categories": ["air"], "amount": 2.1508175e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.1508175e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.4947e-13}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 6.991e-13}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 6.991e-13}, {"name": "Lead II", "categories": ["soil"], "amount": 6.991e-13}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.816e-10}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 3.816e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.44e-10}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.816e-10}, {"name": "Lead II", "categories": ["water"], "amount": 3.816e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.7813000448e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 8.84e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.5213000233e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.21384e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.20435751e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.144080125e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.144080125e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.3311671e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.2050101e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.2050101e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.9416e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.0373100000135e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.1377448e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.10246e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.27495e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.502209629999998e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.9631000409e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.4555000108e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.4555000108e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.7140099e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.45782e-10}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 1.000974e-05}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.000974e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.000974e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 6.856657e-06}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6.856657e-06}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.0421e-11}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.7157e-11}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.7157e-11}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.7157e-11}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.1461e-08}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 3.1461e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.88e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.1461e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 3.1461e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.8866e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.565620314e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4050818e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.5619e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.9263e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 9.016e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1.3181e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3181e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3181e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 4.921951e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 4.921951e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2.4400666e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4400666e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4400666e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2.4400666e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2.4400666e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 4.150113e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.150113e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.150113e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 4.150113e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 4.150113e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.8100766e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.8100766e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 5.800158e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.800158e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.800158e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 5.800158e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 5.800158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.063e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.063e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.063e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.9862528e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.9862528e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.2312e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.2312e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 4.0236e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.2312e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.2312e-11}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5.750157e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5.750157e-06}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 2.8900787e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8900787e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8900787e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 2.8900787e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 2.8900787e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 1.2900352e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2900352e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2900352e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1.2900352e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1.2900352e-06}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 4.520123e-08}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.520123e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.520123e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.520123e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.520123e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 4.470122e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.470122e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.470122e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.470122e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.470122e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.4654653e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4654653e-08}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.470122e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.470122e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.470122e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.470122e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.470122e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 6.6343e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.6343e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6343e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.850116543e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.850116543e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.358e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 4.358e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.975500000000001e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.358e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.358e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 2.6000708e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6000708e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6000708e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 2.6000708e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 2.6000708e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3.6701e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3.6701e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 5.750157e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.750157e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.750157e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 5.750157e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 5.750157e-06}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.9243e-12}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 3.9243e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.1133e-13}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.9243e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.9243e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.9243e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 2.0766e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74674e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.99641e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.322135e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.4797773e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.4797773e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.4797773e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.380999999999999e-10}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.8287e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.8287e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.559300000000001e-10}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5.559300000000001e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 5.5554e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.559300000000001e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.559300000000001e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41003798e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41003798e-08}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.6672e-12}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.145e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.921300000000001e-09}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.0619e-10}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.0619e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.4743e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.0619e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.0619e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.382e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.933599999999999e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.8323e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3917e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.03419e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.03419e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.03419e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63413e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.08258e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.0387676e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26373e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.07672e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.6750000124e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.116100000739e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.56420000032e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.56420000032e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.748099999999999e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 5.3465e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1.053621e-08}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.053621e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.053621e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 7.3108e-09}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 7.3108e-09}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.0298e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.8944e-11}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.8944e-11}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.8944e-11}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.719e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.719e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.74e-11}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.719e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.719e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17801e-09}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2.007877e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.26302e-09}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.3107e-08}, {"name": "Naphthalene", "categories": ["air"], "amount": 9.312e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.6425e-09}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.4734e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 1.365184e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.365184e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.365184e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 9.396840000000001e-07}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9.396840000000001e-07}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.8356e-10}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.2686e-10}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.2686e-10}, {"name": "Nickel II", "categories": ["soil"], "amount": 3.2686e-10}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.036e-08}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3.036e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.03e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.036e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 3.036e-08}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitric oxide", "categories": ["air"], "amount": 3.14e-07}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.7912e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7912e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7912e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.8839e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 7.094000000000001e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 6.810186e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.810186e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.810186e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 6.810186e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 6.810186e-06}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 2.053e-07}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 3.427e-09}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.518369e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.3353e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11914e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 4.056e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 2.58e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.58e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.406e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.406e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.184e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.1901e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 9.1901e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.17878e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.1901e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.1901e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.956e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 9.024900535e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.0111e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.9946e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.29060734e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.426e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.1086e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.24339e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.24339e-07}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 3.3800921e-06}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.016e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.001e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 2.0334e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 8.128e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.0793e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.502100741000001e-10}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.411e-11}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.411e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.411e-11}, {"name": "Phenol", "categories": ["air"], "amount": -3.749578000000001e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.749578000000001e-09}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.766099999999999e-10}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 6.766099999999999e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.167159e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.766099999999999e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.766099999999999e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 3.822e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.822e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.822e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 3.562e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 3.562e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.065e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.065e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.065e-07}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.426000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.426000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.9603e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.239752999999999e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.7471e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.6505e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 8.9978e-08}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.19506e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.0975e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.82658e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.82658e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.11528e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.82658e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.82658e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.15565e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 5.0829e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.402444e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.68484e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.1228573e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.5974e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.2626e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.6319e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.0089e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.4227e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.0333e-08}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.3937e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 2.2457e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4117449e-11}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.0311e-09}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air"], "amount": 3.62007161e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62007161e-08}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 2.3687e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.9418e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.570643199999999e-09}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.3161e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8244e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.37531e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.11407e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.275955000000001e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.275955000000001e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.275955000000001e-08}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09464e-10}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 1.09464e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63119917e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09464e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09464e-10}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.3538e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.937e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 4.457e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.278e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.521389e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.0589e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.8668e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.886e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.212e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.2764e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.6948e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.9143e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.9143e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.2706209e-10}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.85911e-11}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 4.49733e-07}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.49733e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.49733e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 3.11255e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 3.11255e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 9.655e-11}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.7329e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.7329e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.7329e-10}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.0138e-08}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 1.0138e-08}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 3.43e-09}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.0138e-08}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.0138e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9045e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.89247e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.194059e-09}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 4.818101e-05}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.818101e-05}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.818101e-05}, {"name": "Silver I", "categories": ["air"], "amount": 3.335678e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 3.335678e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.3929e-09}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4477e-09}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4477e-09}, {"name": "Silver I", "categories": ["soil"], "amount": 2.4477e-09}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 3.099e-07}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 3.099e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.67e-07}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 3.099e-07}, {"name": "Silver I", "categories": ["water"], "amount": 3.099e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55937e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.1565e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.1062e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.34571e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.05378e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.05378e-08}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.5201e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air"], "amount": 3.770071990000001e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.770071990000001e-09}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75913e-10}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 2.75913e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.505038e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75913e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75913e-10}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.1427e-07}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 9.310254e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.310254e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.310254e-06}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 9.310254e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 9.310254e-06}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.38e-07}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1.008218e-07}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.343e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.29693e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.23401e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.8453955e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7555e-09}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.428671e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.4735e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.3127e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.7415e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.4855e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4855e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4855e-11}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.687949999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.687949999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.536674e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.7108e-10}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 4.2686e-07}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2686e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2686e-07}, {"name": "Thallium I", "categories": ["air"], "amount": 3.0272e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 3.0272e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.1463e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.269e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.269e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.269e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.911e-08}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 3.911e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 5e-09}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.911e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 3.911e-08}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1.58358e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58358e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.34304e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.138941e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.5929404e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05376318e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05376318e-08}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.0663e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8495e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.2867e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.6626e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.1124e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.1124e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03433e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.36977e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.4401e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.3675e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.06442e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.06442e-08}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.532e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.532e-08}, {"name": "Thiram", "categories": ["air"], "amount": 1.1501e-08}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.90795e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.391784e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.277509e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.277509e-07}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 4.007622e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.007622e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.007622e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 2.775287e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 2.775287e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 4.213e-12}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 6.723e-12}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 6.723e-12}, {"name": "Tin ion", "categories": ["soil"], "amount": 6.723e-12}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 3.06e-09}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 3.06e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.57e-09}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 3.06e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 3.06e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.32003649e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32003649e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.7233e-11}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 9.7233e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.089279999999999e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.7233e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.7233e-11}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 3.5975e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 5.096019999999999e-07}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2250177e-09}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.541e-09}, {"name": "Triallate", "categories": ["air"], "amount": 7.56e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.4281e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.2021e-08}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.798700000000001e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.5277164e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19007243e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19007243e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.19271e-10}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.19271e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.738968e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.19271e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.19271e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.7335e-09}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.25525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 9.25525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49109341e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.25525e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.25525e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.907e-09}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.922e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 4.981e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.762e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.5446e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.5446e-08}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.2204e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.590078418e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.2279947e-11}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.210026e-11}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 1.3698e-06}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3698e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3698e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.4221e-07}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.4221e-07}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 8.127e-10}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.4378e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.4378e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.4378e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.2996e-07}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 1.2996e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.65e-08}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.2996e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.2996e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.1258e-10}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.811e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.811e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.834970000000001e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08516e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.012e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.467e-08}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 9.8647e-07}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8647e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8647e-07}, {"name": "Zinc II", "categories": ["air"], "amount": 6.827e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 6.827e-07}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 4.175e-10}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 7.002e-10}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 7.002e-10}, {"name": "Zinc II", "categories": ["soil"], "amount": 7.002e-10}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.5347e-07}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 1.5347e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 8.59e-09}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.5347e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.5347e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.4501e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.8058e-08}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.43237e-10}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.43237e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.119496e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.43237e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.43237e-10}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 9.22e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.22e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.22e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88006161e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88006161e-08}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.332037e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.66747e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.599e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "total: human health", "human health"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 3.35e-10}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0044}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 2.36e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.28e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.22e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.09e-06}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 2.92e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 2.07e-13}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137924}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137924}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 7.34e-05}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.89e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.81e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.75e-06}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 3.22e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 2.28e-11}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.42e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water"], "amount": 9.33e-07}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 7.82e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 7.82e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 8.19e-07}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.69e-25}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.94e-05}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 3.34e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 6.06e-12}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.0006602}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0006602}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0006602}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0036}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0036}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 6.55e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 8.057e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 8.057e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 8.057e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0007044}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.0007044}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 5.38e-24}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0007044}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0007044}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 1.39e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air"], "amount": 2.33e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.33e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.04e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.72e-25}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water"], "amount": 9.67e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.3e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.3e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.08e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.546e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.2386e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 2.96e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.15e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.510699999999999e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.434e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0003359}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0003359}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.004116}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.83e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.83e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.0062168}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0062168}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0062168}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146859}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146859}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.9889e-08}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.422e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.422e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.422e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 5.41e-07}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 5.41e-07}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 8.9629e-23}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 5.41e-07}, {"name": "Beryllium II", "categories": ["water"], "amount": 5.41e-07}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.25e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.67e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.63e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.63e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.47e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.44e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000438}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000438}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.814e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.814e-06}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.0001209}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001209}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001209}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.000971}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.000971}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.89e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.266599999999999e-05}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.266599999999999e-05}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.266599999999999e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.2904e-05}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.2904e-05}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.42e-25}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.2904e-05}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.2904e-05}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 3.22e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water"], "amount": 5.88e-08}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 3.96e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water"], "amount": 6.18e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.64e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.89e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.89e-06}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000187}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000187}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 1.86e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water"], "amount": 2.35e-11}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.53e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.168e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.54e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.719999999999999e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.719999999999999e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.719999999999999e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 1.403e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.403e-05}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.59e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 5.780000000000001e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.094e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.125e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.673e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9.66e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.602e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.602e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 4.65e-09}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4.65e-09}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 4.22e-12}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.26e-30}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water"], "amount": 1.11e-10}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00126}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00126}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.32e-25}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 7.82e-07}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 1.67e-11}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 1.6e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 1.8e-08}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 4.77e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 4.77e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 9.9e-11}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 5.15e-28}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water"], "amount": 2.87e-08}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.01e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.72e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.86e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.86e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 6.38e-08}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 5.86e-06}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 4.62e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000197}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.738e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.738e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.82e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.28e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 2.306e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.306e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.306e-05}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.306e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.306e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.98e-05}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0003010184}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0003010184}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0001408697}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0001408697}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.69e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000646504}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000646504}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.0002722}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.0002722}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 4.11e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.704e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.704e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.17e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.0004343}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0004343}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0004343}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.0004343}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.0004343}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 2.963e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 2.963e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.0001636}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001636}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001636}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0001636}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0001636}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.00048358}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00048358}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00048358}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.00048358}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.00048358}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.0001613}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0001613}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.0001039}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0001613}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0001613}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.000667}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.000495}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.54e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.33e-09}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.41e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.41e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.1509e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.57e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.00032309}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00032309}, {"name": "Furfural", "categories": ["air"], "amount": 3.63e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.04e-05}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.34e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.34e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00122}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.39e-05}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 6.88e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.88e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.88e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 8.58e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 8.58e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.017e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 2.017e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.427e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.017e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.017e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 9.36e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.36e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.36e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.07742e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.07742e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 2.45e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.77e-13}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 1.51e-10}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water"], "amount": 1.71e-09}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 2.04e-10}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 3.84e-12}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 8.019999999999999e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.019999999999999e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 4.1e-14}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.0001235}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001235}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001235}, {"name": "Lead II", "categories": ["air"], "amount": 0.00045658}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00045658}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 5.59e-08}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 4.4736e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 4.4736e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 4.4736e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2.8645e-06}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 2.8645e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 5.0105e-26}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2.8645e-06}, {"name": "Lead II", "categories": ["water"], "amount": 2.8645e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.0001545}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.02e-07}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 1.3e-10}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.0005822}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0005822}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0005822}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0015813}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0015813}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.735e-07}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 7.345e-06}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 7.345e-06}, {"name": "Mercury II", "categories": ["soil"], "amount": 7.345e-06}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.658e-05}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 3.658e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.215e-25}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.658e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 3.658e-05}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.0007407310000000001}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.0007407310000000001}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.003942999999999999}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003942999999999999}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003942999999999999}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.003942999999999999}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.003942999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.003443}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003443}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003443}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.003443}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.003443}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0004491363}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0004491363}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.000885}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.7199e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 6.7199e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.238e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.238e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.057e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.238e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.238e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0010126}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0010126}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 4.41e-05}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000197}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.9e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 6.82e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.76733e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.76733e-05}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 6.82e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.001346}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001346}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001346}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.001962}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.001962}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.001282}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.001282}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000728}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.001282}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.001282}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.000396}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.0008017899999999999}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.0008017899999999999}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.000877}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.42e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 4.79e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 4.79e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2.35e-07}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 8.82e-26}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 6.02e-06}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.045e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.045e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 4.86e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.56e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.51e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.35e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 3.0069e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0069e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0069e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 0.00010533}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.00010533}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 6.880926e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 7.1839e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 7.1839e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 7.1839e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1449e-05}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 1.1449e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.701e-25}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1449e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 1.1449e-05}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 6.73e-07}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.39e-06}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 5.14e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6.06e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00104}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 9.1e-07}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.82e-14}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.02e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.00010937}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.00010937}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.45e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.45e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 4.684e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.45e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.45e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.000516}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 2.91e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 2.329e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000137}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 7.23e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.13e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.72e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 5.29e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 9.76e-08}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 6.18e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 5.13e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.78e-08}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.200000000000001e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.58e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.28e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.21e-07}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 9.86e-12}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 7.41e-12}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 1.6e-12}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air"], "amount": 0.000465}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.000465}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 6.95e-08}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.76e-25}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water"], "amount": 1.51e-05}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 2.04e-10}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 3.09e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water"], "amount": 8.64e-11}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.345e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.3781e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00142}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 5.32e-13}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 5.32e-13}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water"], "amount": 5.13e-11}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.42e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.47e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.47e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.14e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.47e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.47e-06}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 9.01e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 9.01e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 9.26e-06}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.04e-25}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water"], "amount": 3.1e-05}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air"], "amount": 3.41e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.41e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.2e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.63e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 3.51e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1e-05}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 3.6e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.18e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.12e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.92e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.92e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.66e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.35e-05}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.35e-05}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4.06e-08}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.6e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water"], "amount": 6.29e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 3.1e-06}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 5.81e-14}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4.15e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.58e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 7.2e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 7.2e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.55e-08}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.86e-26}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 5.61e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.88e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.36e-06}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.41e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.16e-09}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "total: natural resources", "natural resources"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0161}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0161}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.165}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0142}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00216}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 13.4}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.441}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0124}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.037}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.037}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.00889}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00889}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0352}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.000968}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.000933}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 0.639}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.639}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0049}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00142}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 14.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 14.8}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 61.9}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0213}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000229}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 17.2}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 18.4}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 18.4}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.04}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.04}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.098}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.098}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.006}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.006}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 1.33}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 0.711}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00081}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.000492}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 107}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 107}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 2.04}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.0507}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.00918}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00372}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 9.02}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 9.02}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 2.94}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.94}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 260}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.834}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.834}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.15}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.7}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.556}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0184}]}, {"unit": "kg SO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "acidification: terrestrial no LT", "terrestrial acidification potential (TAP) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.552}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.36}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}]}, {"unit": "kg CO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "climate change no LT", "global warming potential (GWP1000) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Chloroform", "categories": ["air"], "amount": 2.74}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.74}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 78.8}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 78.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 78.8}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 218}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 218}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 26.8}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 26.8}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 913}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 913}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 913}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 913}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1410}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 131}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 131}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 23}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 23}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 23}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.15}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3490}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 3490}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 3490}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 3490}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 332}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 332}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 332}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 332}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 13.3}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 13.3}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 88.2}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 88.2}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 88.2}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 88.2}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8580}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8580}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8580}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17800}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 17800}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 17800}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 17800}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 546}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 546}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 546}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 546}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.97}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.97}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.394}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.394}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 293}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 293}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 293}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 293}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1340}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 1340}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 1340}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 1340}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 296}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12700}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.49}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.49}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 24.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 24.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 113}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 113}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 113}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 113}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.9}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.9}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.76}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.76}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.04}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.04}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.76}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.76}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 296}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 11000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 875}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 875}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 5660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 5660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 5660}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 12800}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 12800}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34400}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 34400}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 34400}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 34400}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "ecotoxicity: freshwater no LT", "freshwater ecotoxicity potential (FETP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.000522}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.836}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.11e-05}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.0411}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.203}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.91}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 2.62}, {"name": "2,4-D", "categories": ["water"], "amount": 2.62}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0732}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.154}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0732}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.182}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.154}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0644}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.27}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.27}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0248}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.0144}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.98e-06}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.00477}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.7}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.83e-05}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 4.87e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.0653}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.159}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.00199}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water"], "amount": 14.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0663}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.714}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.89}, {"name": "Acephate", "categories": ["water"], "amount": 0.89}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.96e-05}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.144}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000246}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.000411}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.95e-09}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.169}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air"], "amount": 4.32e-05}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.32e-05}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 6.06e-06}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water"], "amount": 0.00217}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.000193}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.000193}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00874}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.000901}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 0.282}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 5.09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air"], "amount": 0.084}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.084}, {"name": "Acrolein", "categories": ["water"], "amount": 69.4}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.95e-09}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water"], "amount": 0.132}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0236}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0236}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.000599}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.441}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 11.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0228}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0228}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 25}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.759}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 56}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.309}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 341}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 271}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 147}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1100}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 82800}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 35}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.13}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 39.4}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air"], "amount": 0.00401}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00401}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.11e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "Aniline", "categories": ["water"], "amount": 1.05}, {"name": "Anthracene", "categories": ["air"], "amount": 0.197}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 354}, {"name": "Anthracene", "categories": ["water"], "amount": 354}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.231}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 47.6}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.6}, {"name": "Antimony ion", "categories": ["air"], "amount": 127}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 127}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 98.6}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 306}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 306}, {"name": "Antimony ion", "categories": ["soil"], "amount": 306}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 340}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 6.58e-17}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 340}, {"name": "Antimony ion", "categories": ["water"], "amount": 340}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55}, {"name": "Arsenic ion", "categories": ["air"], "amount": 21.2}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 21.2}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.72}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 56.4}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 56.4}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 56.4}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 9.62e-18}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water"], "amount": 62.2}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.453}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.83}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14.8}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 85.3}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 179}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 179}, {"name": "Atrazine", "categories": ["water"], "amount": 179}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.452}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.745}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 233}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 0.198}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 27.3}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 156}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 156}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.485}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.485}, {"name": "Barium II", "categories": ["air"], "amount": 1.11}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.11}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil"], "amount": 2.51}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.32e-18}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.79}, {"name": "Barium II", "categories": ["water"], "amount": 2.79}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.066}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0228}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.144}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0548}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.681}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.681}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 2.08}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1590}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.00268}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00268}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.744}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.72e-05}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water"], "amount": 0.0868}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000158}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.748}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 6.88e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.293}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 24.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.069}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.069}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 15.2}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.411}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.411}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 134}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 134}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.0492}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0338}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.00704}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 4.17e-06}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.285}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.51}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.51}, {"name": "Beryllium II", "categories": ["air"], "amount": 18.8}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 18.8}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.43}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 50.9}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 50.9}, {"name": "Beryllium II", "categories": ["soil"], "amount": 50.9}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.33e-18}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water"], "amount": 55.9}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 251}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 37.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 284}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 21200}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 21200}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.509}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.8}, {"name": "Bifenthrin", "categories": ["air"], "amount": 40.3}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 92.9}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 12200}, {"name": "Bifenthrin", "categories": ["water"], "amount": 12200}, {"name": "Bisphenol A", "categories": ["water"], "amount": 44.9}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.0297}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 9.99}, {"name": "Bromopropane", "categories": ["air"], "amount": 3.63e-05}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.129}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.89}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.88}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 167}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 167}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 11.7}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3.63}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air"], "amount": 0.000144}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000144}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 4.79e-06}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water"], "amount": 0.0183}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.327}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.0771}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 444}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.98}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.98}, {"name": "Cadmium II", "categories": ["air"], "amount": 6.04}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 6.04}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 15.2}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 15.2}, {"name": "Cadmium II", "categories": ["soil"], "amount": 15.2}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.02e-19}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water"], "amount": 16.8}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 9.15}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 116}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 116}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57}, {"name": "Carbendazim", "categories": ["air"], "amount": 7.01}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 4.51}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 26.3}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 46}, {"name": "Carbendazim", "categories": ["water"], "amount": 46}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.705}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 9.93e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.349}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 3.47}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28}, {"name": "Carboxin", "categories": ["air"], "amount": 4.21}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 13.8}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Carboxin", "categories": ["water"], "amount": 26.1}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 6.33e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0948}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 107}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 90.7}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 719}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 4130}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 4130}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 4130}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air"], "amount": 39.5}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 39.5}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 9.72e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 217}, {"name": "Chloramine", "categories": ["water"], "amount": 217}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.66}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.396}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 63.4}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.535}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.0461}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1.66}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.66}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 2.9e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 9}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 8.52e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water"], "amount": 0.162}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.26}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 0.0804}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0804}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.000323}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.78}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.8}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 23.7}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 26.5}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 158}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 673}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 673}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.4}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 329}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1780}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 14700}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 14700}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 33.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10.9}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.342}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.342}, {"name": "Chromium III", "categories": ["air"], "amount": 0.875}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.875}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.75}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.07}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.69e-20}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water"], "amount": 2.3}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.9}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.9}, {"name": "Chromium VI", "categories": ["air"], "amount": 33}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 33}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 28.2}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 78}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 78}, {"name": "Chromium VI", "categories": ["soil"], "amount": 78}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.41e-17}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water"], "amount": 86.6}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 14.6}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.829}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.374}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.696}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.579}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.579}, {"name": "Cobalt II", "categories": ["air"], "amount": 2.17}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2.17}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.639}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 5.74}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 5.74}, {"name": "Cobalt II", "categories": ["soil"], "amount": 5.74}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.36e-19}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water"], "amount": 6.34}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.5}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.5}, {"name": "Copper ion", "categories": ["air"], "amount": 55.2}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 55.2}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 147}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 147}, {"name": "Copper ion", "categories": ["soil"], "amount": 147}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 162}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.71e-18}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 162}, {"name": "Copper ion", "categories": ["water"], "amount": 162}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 9.15e-06}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.558}, {"name": "Cumene", "categories": ["water"], "amount": 0.558}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 7.28e-08}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0546}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 1.29e-08}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.0625}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 21.8}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.288}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.00489}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 259}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 841}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 63300}, {"name": "Cypermethrin", "categories": ["water"], "amount": 63300}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 2.01}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 12.8}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.591}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.69}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0535}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 2.2}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3.04}, {"name": "Deltamethrin", "categories": ["air"], "amount": 53.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 6310}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.139}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.776}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 16.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0153}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5.66}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.172}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.328}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.34}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 17.1}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0427}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.081}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.631}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.631}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 17.6}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 0.943}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 5.77}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 3.28}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 0.283}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.159}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 1.02}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.57e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.57e-06}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.8e-06}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.462}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.00036}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.00036}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.26e-10}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.00271}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.52}, {"name": "Difenoconazole", "categories": ["air"], "amount": 21.5}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 78.5}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 233}, {"name": "Difenoconazole", "categories": ["water"], "amount": 233}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 188}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 299}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2000}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 4860}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 4860}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.0156}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 3.91e-05}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.191}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.55}, {"name": "Dimethoate", "categories": ["air"], "amount": 3.37}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 5.71}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 38.7}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.883}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 2.19e-05}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.974}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 11.8}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 218}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 218}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 242}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 242}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 99.5}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 477}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 477}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 477}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 65.7}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 17400}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.391}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.7}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 8.71}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 19.6}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 19.6}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.43}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Diuron", "categories": ["air"], "amount": 35.2}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 15.2}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 98.2}, {"name": "Diuron", "categories": ["water"], "amount": 223}, {"name": "Dodecanol", "categories": ["water"], "amount": 22.5}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.318}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 6.84}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.281}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.732}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 12.6}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.58}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 41.1}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 83.8}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 83.8}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1500}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1000}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.000564}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 8.23e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 8.23e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.52e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000425}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 7.03e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0554}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.00517}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.55}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.24e-06}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water"], "amount": 0.00629}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.0468}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.328}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.328}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.592}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.9e-05}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0164}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.0405}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0405}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.27e-06}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.202}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.93e-09}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.425}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.000707}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.000707}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.000177}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0482}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 2.7}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 6.49}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 63.4}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.755}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.57}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 10}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 7.48}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 43.6}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 107}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.638}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.25}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 87.9}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 87.9}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.5}, {"name": "Fluazinam", "categories": ["air"], "amount": 289}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 105}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 743}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water"], "amount": 2260}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99}, {"name": "Fludioxonil", "categories": ["air"], "amount": 23.7}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 9.31}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 69.8}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 275}, {"name": "Fludioxonil", "categories": ["water"], "amount": 275}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.3}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.87}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 618}, {"name": "Fluorene", "categories": ["air"], "amount": 0.0118}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 7.12}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 4.11}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.164}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 30.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0314}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0314}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 4.68e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.907}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.98e-10}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0854}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00758}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.997}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air"], "amount": 1.3e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Furfural", "categories": ["air"], "amount": 0.00703}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.589}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.28}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.351}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water"], "amount": 2.39}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.85}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 32.1}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 32.1}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air"], "amount": 6.53e-09}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.53e-09}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 10.8}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "Hexane", "categories": ["water"], "amount": 0.141}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.37}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.06}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.0226}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water"], "amount": 93.4}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.5e-06}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.302}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.54e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.54e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 6.68e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.155}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.000362}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.000362}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.00621}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.26}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 6.21}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.79}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.95}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Imidacloprid", "categories": ["water"], "amount": 9.16}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72}, {"name": "Indoxacarb", "categories": ["air"], "amount": 11.8}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 34}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 6.11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.49}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 1.71e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.71e-08}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.0373}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0373}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.04e-05}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.175}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 4.85}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 598}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 68.9}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 423}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 48100}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 48100}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 48100}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.00867}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.45}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0463}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0463}, {"name": "Lead II", "categories": ["air"], "amount": 0.204}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.204}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0236}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.558}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.558}, {"name": "Lead II", "categories": ["soil"], "amount": 0.558}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.606}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 6.17e-22}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.606}, {"name": "Lead II", "categories": ["water"], "amount": 0.606}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.538}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 24.6}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.928}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0965}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.63}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.63}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.183}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 6}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 12.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.293}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0307}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.5}, {"name": "Mancozeb", "categories": ["air"], "amount": 14.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 56.7}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 78}, {"name": "Mancozeb", "categories": ["water"], "amount": 78}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.2}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 9.02e-07}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.29}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.29}, {"name": "Mercury II", "categories": ["air"], "amount": 17.2}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 17.2}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 47}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 47}, {"name": "Mercury II", "categories": ["soil"], "amount": 47}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.04e-19}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water"], "amount": 49.8}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.292}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 0.601}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.347}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.99}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 3.34}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 0.0683}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.202}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00275}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.81e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0292}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.48e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000289}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.534}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air"], "amount": 0.000132}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5e-06}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water"], "amount": 0.00493}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.21}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 28}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 8.61}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 47.7}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water"], "amount": 78.6}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.371}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.41}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 21.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 78.6}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 242}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 242}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.000379}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000379}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 8.04e-05}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water"], "amount": 0.0283}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.000365}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.72}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00341}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.0078}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.0078}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.753}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.89}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air"], "amount": 0.063}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.063}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 6.18e-06}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water"], "amount": 0.292}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.327}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 9.37}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 61.8}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 147}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 147}, {"name": "Metolachlor", "categories": ["water"], "amount": 147}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.41}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 149}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 295}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 772}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 520}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 3000}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 5070}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 5070}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 111}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.61}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0612}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0612}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.156}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.156}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.134}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.37}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.37}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.37}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9e-20}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.41}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 3.13}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.288}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 4.55}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.000708}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 67.7}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Nickel II", "categories": ["air"], "amount": 16.1}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 16.1}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 6.6}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 41.6}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 41.6}, {"name": "Nickel II", "categories": ["soil"], "amount": 41.6}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 46}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.7e-18}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 46}, {"name": "Nickel II", "categories": ["water"], "amount": 46}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.125}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 0.328}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.27}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.87}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.00135}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.76}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.82}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.0156}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.0641}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.73}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 3.04}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.329}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 0.931}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.00485}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 13}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.033}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0129}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 38.1}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.183}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.692}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.63}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 176}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 176}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air"], "amount": 6.29e-06}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 6.29e-06}, {"name": "Pentane", "categories": ["water"], "amount": 7.18}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 5.08}, {"name": "Permethrin", "categories": ["water"], "amount": 2870}, {"name": "Phenanthrene", "categories": ["air"], "amount": 0.136}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 57}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air"], "amount": 0.00867}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00867}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.23e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.969}, {"name": "Phenol", "categories": ["water"], "amount": 0.969}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.136}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.136}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 19.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 5.52}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 45.2}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 8.88}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 33.2}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 60.6}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00054}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 15.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.000949}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 26.1}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 3.81e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.609}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.01e-05}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.24}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.84}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.455}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.196}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 31.7}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 13.2}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.0541}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 429}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.22}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 17.4}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.0201}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 0.0302}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air"], "amount": 0.000176}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.000176}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 5.1e-05}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.102}, {"name": "Propanal", "categories": ["water"], "amount": 0.102}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air"], "amount": 0.000117}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 5.28e-06}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water"], "amount": 0.00942}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 9.32}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 0.332}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.171}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 3.36}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 15.8}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water"], "amount": 74.9}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.32e-08}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.157}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0218}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.86e-06}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water"], "amount": 0.116}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.000651}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.000214}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.0706}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.91}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 8.24}, {"name": "Pyrene", "categories": ["air"], "amount": 1.18}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1810}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 245}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.0358}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 8.05}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.669}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.03}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 4.49}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 28.3}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 235}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2700}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2700}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.147}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 15.9}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.87}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.0405}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75}, {"name": "Selenium IV", "categories": ["air"], "amount": 5.47}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 5.47}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.9}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 13.8}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 13.8}, {"name": "Selenium IV", "categories": ["soil"], "amount": 13.8}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 5.84e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water"], "amount": 15.3}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0962}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.268}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.41}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46.5}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 46.5}, {"name": "Silver I", "categories": ["air"], "amount": 167}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 57.2}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 439}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 439}, {"name": "Silver I", "categories": ["soil"], "amount": 439}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 485}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 3.89e-18}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 485}, {"name": "Silver I", "categories": ["water"], "amount": 485}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.65}, {"name": "Simazine", "categories": ["air"], "amount": 11.9}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 5.66}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 33.1}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 57.7}, {"name": "Simazine", "categories": ["water"], "amount": 57.7}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.00158}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.00158}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 4.16e-26}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water"], "amount": 0.00822}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 19.9}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.86e-06}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.396}, {"name": "Styrene", "categories": ["water"], "amount": 0.396}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 36}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.285}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.285}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.209}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.52}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.52}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.83}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 13.1}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water"], "amount": 40.5}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 72.2}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 39.2}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 227}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 391}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 391}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 83.4}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 228}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 93.7}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 685}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 2350}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 72.6}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.91}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 22.2}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.00014}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.23}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1}, {"name": "Thallium I", "categories": ["air"], "amount": 21}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 21}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 21.8}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 47.7}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 47.7}, {"name": "Thallium I", "categories": ["soil"], "amount": 47.7}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 53}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.01e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 53}, {"name": "Thallium I", "categories": ["water"], "amount": 53}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.538}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.41}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.737}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 5.16}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiabendazole", "categories": ["water"], "amount": 15.1}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.55}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 9.32e-09}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water"], "amount": 9.04}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 12.6}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 79.2}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 147}, {"name": "Thiodicarb", "categories": ["water"], "amount": 147}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.812}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 10.4}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 15.1}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9}, {"name": "Thiram", "categories": ["air"], "amount": 5.91}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 4.12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 19.8}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 468}, {"name": "Thiram", "categories": ["water"], "amount": 468}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.37}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.37}, {"name": "Tin ion", "categories": ["air"], "amount": 1.6}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.6}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.213}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 4.38}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 4.38}, {"name": "Tin ion", "categories": ["soil"], "amount": 4.38}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 3.53e-20}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water"], "amount": 4.77}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.72e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.139}, {"name": "Toluene", "categories": ["water"], "amount": 0.139}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.000153}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.000153}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.1e-05}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.345}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 36.6}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 715}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Triallate", "categories": ["air"], "amount": 0.164}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.66}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 86.9}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 181}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 192}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1630}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.507}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 7.83}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.1e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.17}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.84}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 255}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 4.9e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.00133}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 12}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1500}, {"name": "Triflumuron", "categories": ["air"], "amount": 4670}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 2530}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 14100}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 22200}, {"name": "Triflumuron", "categories": ["water"], "amount": 22200}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0391}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.438}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.61}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 35.4}, {"name": "Trifluralin", "categories": ["water"], "amount": 35.4}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.675}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.574}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.456}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.13e-11}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.0319}, {"name": "Urea", "categories": ["water"], "amount": 0.0319}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.9}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.9}, {"name": "Vanadium V", "categories": ["air"], "amount": 61.9}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 61.9}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 24.4}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 161}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 161}, {"name": "Vanadium V", "categories": ["soil"], "amount": 161}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 178}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 7.82e-17}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 178}, {"name": "Vanadium V", "categories": ["water"], "amount": 178}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.545}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Xylene", "categories": ["water"], "amount": 0.155}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 259}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.3}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.3}, {"name": "Zinc II", "categories": ["air"], "amount": 71.1}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 71.1}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 13.3}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 192}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 192}, {"name": "Zinc II", "categories": ["soil"], "amount": 192}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.13e-16}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 211}, {"name": "Zinc II", "categories": ["water"], "amount": 211}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.25}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 52.9}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 4.4e-06}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.492}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.06e-05}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.525}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.29e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.29e-05}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.61e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.0067}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air"], "amount": 0.241}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 0.241}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 4.62e-05}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 1.12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.38}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "ecotoxicity: marine no LT", "marine ecotoxicity potential (METP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.831}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.141}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.00732}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.00125}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.145}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0199}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.105}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "2,4-D", "categories": ["water"], "amount": 0.145}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0711}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.0128}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 0.0883}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 0.0883}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0711}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.0631}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.0128}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 0.0883}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.00603}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.237}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.237}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.616}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0054}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.00144}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00073}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.000314}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000314}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.000997}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.000299}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 0.332}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.0124}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0026}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0026}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.007}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00155}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.00425}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.0485}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.0485}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 11.7}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.63}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0446}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.007}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.0395}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.0492}, {"name": "Acephate", "categories": ["water"], "amount": 0.0492}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.00512}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00512}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0716}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.00944}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000141}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.02e-05}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.0168}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00238}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air"], "amount": 0.000595}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.000595}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.000894}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water"], "amount": 0.000503}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.00283}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00283}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.00388}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00239}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.151}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 0.0853}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air"], "amount": 1.34}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.34}, {"name": "Acrolein", "categories": ["water"], "amount": 3.24}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.0131}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00186}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0034}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0034}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.0445}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.255}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.052}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.99}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.98}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0195}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0195}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.62}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.00546}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9640}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 4960}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 303}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 16200}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.93}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.323}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.59}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air"], "amount": 0.00107}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.139}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water"], "amount": 0.0257}, {"name": "Anthracene", "categories": ["air"], "amount": 4.65}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 306}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water"], "amount": 28.9}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860000}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 860000}, {"name": "Antimony ion", "categories": ["air"], "amount": 797000}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 797000}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 212000}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 657000}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 657000}, {"name": "Antimony ion", "categories": ["soil"], "amount": 657000}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 730000}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1520000}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 730000}, {"name": "Antimony ion", "categories": ["water"], "amount": 730000}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 187000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 187000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 171000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 171000}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 13600}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 135000}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 135000}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 135000}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 148000}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 347000}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 148000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 148000}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.67}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.24}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water"], "amount": 14.9}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0375}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.143}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 13.1}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 0.011}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.75}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.26}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 13}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 13}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18000}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 18000}, {"name": "Barium II", "categories": ["air"], "amount": 18200}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8730}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 18700}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 18700}, {"name": "Barium II", "categories": ["soil"], "amount": 18700}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 20800}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 28900}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 20800}, {"name": "Barium II", "categories": ["water"], "amount": 20800}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.00157}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0296}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0389}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.0132}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0239}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.00305}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 58}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 151}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0233}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0233}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0395}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air"], "amount": 0.00235}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.00235}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.089}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water"], "amount": 0.00485}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.451}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.0377}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.00563}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.66}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.66}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 11}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 21.9}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 26.9}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 26.9}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 12.2}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.00117}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.00336}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.000405}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0322}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.00699}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 94000}, {"name": "Beryllium II", "categories": ["air"], "amount": 72800}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 72800}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1700}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 25300}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 25300}, {"name": "Beryllium II", "categories": ["soil"], "amount": 25300}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 27700}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 180000}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 27700}, {"name": "Beryllium II", "categories": ["water"], "amount": 27700}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6950}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 11.8}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 60}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4150}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4150}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2520}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1470}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 27.5}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 43.7}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2500}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2500}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.49}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 0.0742}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.00164}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.00138}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.00353}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.977}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.23}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.23}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 13.5}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.971}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.00499}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air"], "amount": 0.000583}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000583}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.00295}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water"], "amount": 0.000557}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.0181}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0296}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.00305}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.49}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 11.1}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23600}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 23600}, {"name": "Cadmium II", "categories": ["air"], "amount": 17700}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 17700}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1020}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4510}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4510}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4510}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 5000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 46200}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 5000}, {"name": "Cadmium II", "categories": ["water"], "amount": 5000}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.16}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.512}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.42}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.42}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.24}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.46}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.54}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.54}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.039}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.32}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.263}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.137}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Carboxin", "categories": ["air"], "amount": 1.01}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.764}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.44}, {"name": "Carboxin", "categories": ["water"], "amount": 1.44}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 0.00941}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00133}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 485}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 18}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 139}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 795}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 795}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 795}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air"], "amount": 7.51}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.51}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 23.2}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water"], "amount": 5.16}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 0.318}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.0223}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 5.79}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.0296}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.00255}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 0.323}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 0.964}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 0.214}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.176}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water"], "amount": 0.0469}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 0.124}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 0.124}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.215}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 0.0572}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 186}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 182}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 80.8}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 193}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 193}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 176}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 104}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 337}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2680}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2680}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 4.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.907}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.0799}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2990}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2990}, {"name": "Chromium III", "categories": ["air"], "amount": 2220}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2220}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 170}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 469}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 469}, {"name": "Chromium III", "categories": ["soil"], "amount": 469}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 520}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5830}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 520}, {"name": "Chromium III", "categories": ["water"], "amount": 520}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 410000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 410000}, {"name": "Chromium VI", "categories": ["air"], "amount": 369000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 369000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 101000}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 279000}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 279000}, {"name": "Chromium VI", "categories": ["soil"], "amount": 279000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 309000}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 728000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 309000}, {"name": "Chromium VI", "categories": ["water"], "amount": 309000}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 2.88}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.0504}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.0327}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0387}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9630}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9630}, {"name": "Cobalt II", "categories": ["air"], "amount": 7420}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 7420}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 273}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2450}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2450}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2450}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2710}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 18700}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2710}, {"name": "Cobalt II", "categories": ["water"], "amount": 2710}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 229000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 229000}, {"name": "Copper ion", "categories": ["air"], "amount": 175000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 175000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5560}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 53500}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 53500}, {"name": "Copper ion", "categories": ["soil"], "amount": 53500}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 59000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 447000}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 59000}, {"name": "Copper ion", "categories": ["water"], "amount": 59000}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air"], "amount": 0.00063}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.00063}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.331}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water"], "amount": 0.0105}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.42}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.68e-06}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.68e-06}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0342}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000944}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.68e-06}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.12e-07}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.00346}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 151}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.0541}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.000273}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 232}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 12400}, {"name": "Cypermethrin", "categories": ["water"], "amount": 12400}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.167}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.049}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.497}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00127}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.122}, {"name": "Decanoic acid", "categories": ["water"], "amount": 0.0428}, {"name": "Deltamethrin", "categories": ["air"], "amount": 852}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 80.7}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 718}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.0078}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.0452}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.957}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.26}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.524}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.0182}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 0.129}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 0.129}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.377}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.54}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0314}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.00448}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.0349}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.0349}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.03}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 0.983}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.69}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.078}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.00224}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 0.0605}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.23e-05}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0179}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0179}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.0496}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.011}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.41e-05}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.41e-05}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 0.000268}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.81e-05}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.2}, {"name": "Difenoconazole", "categories": ["air"], "amount": 21.7}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2.14}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 15.1}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 44.9}, {"name": "Difenoconazole", "categories": ["water"], "amount": 44.9}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 452}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 58.6}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 384}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 933}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 933}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.0163}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.087}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.00631}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.297}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.166}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.0733}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.0381}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0381}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.0232}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.00617}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 40500}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 40500}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 5940}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 9610}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 9610}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 9610}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 13700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 136000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 13700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 13700}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00566}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.506}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 0.316}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 0.0745}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 0.482}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.09}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.09}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 0.472}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.3}, {"name": "Diuron", "categories": ["air"], "amount": 10.3}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.84}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.43}, {"name": "Diuron", "categories": ["water"], "amount": 12.3}, {"name": "Dodecanol", "categories": ["water"], "amount": 0.864}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.0208}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.0291}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.00447}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.0262}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 193}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.00395}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.13}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 7.96}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 16.1}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 16.1}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5600}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.0113}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.0113}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.0705}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.0437}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.0177}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0177}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0617}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0185}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 11}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 7.7}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.000901}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water"], "amount": 0.000225}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.00259}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.0182}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.0182}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.0687}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.0384}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.47}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.00262}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00262}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00882}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.00264}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.00829}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.00829}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0216}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.0048}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.0455}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.0101}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.0324}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0178}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.384}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 12.2}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.01}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 0.39}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 0.631}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 141}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 0.225}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.03}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 0.226}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.35}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.35}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 275}, {"name": "Fluazinam", "categories": ["air"], "amount": 236}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 21.7}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 144}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 434}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 434}, {"name": "Fluazinam", "categories": ["water"], "amount": 434}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.2}, {"name": "Fludioxonil", "categories": ["air"], "amount": 12.8}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 5.8}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 22.8}, {"name": "Fludioxonil", "categories": ["water"], "amount": 22.8}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 41}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Fluoranthene", "categories": ["air"], "amount": 14.6}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 57.9}, {"name": "Fluorene", "categories": ["air"], "amount": 0.164}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 0.329}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 0.924}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.0136}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.3}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.025}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.025}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.0237}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00847}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0012}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0237}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0112}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air"], "amount": 2.54e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.54e-05}, {"name": "Furfural", "categories": ["air"], "amount": 0.00776}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.00726}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.145}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.00726}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0923}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.00835}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.0569}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.95}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.16}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.16}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air"], "amount": 9.98e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 9.98e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 0.835}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0629}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water"], "amount": 0.00162}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.242}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.0375}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 13.5}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 10.1}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.27}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.171}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.00553}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.000388}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.000388}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.106}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0037}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0527}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0527}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000148}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 0.189}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.515}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.554}, {"name": "Imidacloprid", "categories": ["air"], "amount": 0.558}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.577}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Imidacloprid", "categories": ["water"], "amount": 0.76}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Indoxacarb", "categories": ["air"], "amount": 27.7}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 0.838}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 6.58}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.338}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air"], "amount": 2.8e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.8e-07}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.00644}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.00644}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0188}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.00418}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.268}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.405}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26300}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 474}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 553}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 10700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 10700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 10700}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.0185}, {"name": "Lauric acid", "categories": ["water"], "amount": 0.0205}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 762}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 762}, {"name": "Lead II", "categories": ["air"], "amount": 556}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.95}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 93.4}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 93.4}, {"name": "Lead II", "categories": ["soil"], "amount": 93.4}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 101}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1500}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 101}, {"name": "Lead II", "categories": ["water"], "amount": 101}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.0299}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 130}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.0774}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0629}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.00413}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 0.0389}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 0.0389}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.317}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.0105}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.332}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.332}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.3}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.00696}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.000731}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.75}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.589}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.13}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.31}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.31}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.606}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0664}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.00848}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 66900}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 66900}, {"name": "Mercury II", "categories": ["air"], "amount": 48600}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 48600}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 219}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 9280}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 9280}, {"name": "Mercury II", "categories": ["soil"], "amount": 9280}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 9820}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 125000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 9820}, {"name": "Mercury II", "categories": ["water"], "amount": 9820}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.0167}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 0.123}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 0.11}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 0.185}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 0.185}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 0.00664}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.534}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.0048}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0621}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.308}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.624}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.00784}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.00784}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0328}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.00829}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00368}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00368}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.905}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.537}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air"], "amount": 0.000451}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000451}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000713}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water"], "amount": 0.000223}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.57}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.08}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.205}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.13}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water"], "amount": 1.87}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 12.8}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 0.918}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.52}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 20.1}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 20.1}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.00837}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00837}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.0159}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water"], "amount": 0.00765}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.022}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.394}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.0385}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.000722}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.000722}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.000669}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.00206}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.00206}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 0.382}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air"], "amount": 0.012}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.012}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.0312}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water"], "amount": 0.00695}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.0183}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.789}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.14}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water"], "amount": 12.2}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.95}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.846}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.21}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 300}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 291}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43.2}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 249}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 421}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 421}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.0819}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 856}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 856}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 690}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 690}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 115}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 318}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 318}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 318}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 353}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1610}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 353}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 353}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.0745}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00684}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 0.0855}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.0737}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.0205}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.0755}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.98}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 69100}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 69100}, {"name": "Nickel II", "categories": ["air"], "amount": 54900}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 54900}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3630}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 22900}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 22900}, {"name": "Nickel II", "categories": ["soil"], "amount": 22900}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 25300}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 133000}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 25300}, {"name": "Nickel II", "categories": ["water"], "amount": 25300}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.111}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 0.11}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 0.106}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 0.155}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.152}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.228}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.118}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.000226}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0922}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00355}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.485}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.0723}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.752}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 0.374}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.56}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.56}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.187}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.000715}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 0.0956}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.0101}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.36}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air"], "amount": 0.000114}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.000114}, {"name": "Pentane", "categories": ["water"], "amount": 0.0817}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 498}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 18.3}, {"name": "Permethrin", "categories": ["water"], "amount": 287}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.43}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.35}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.0589}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air"], "amount": 0.00849}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00849}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water"], "amount": 0.0237}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 30.7}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 30.7}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.68}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.468}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1.94}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.405}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.418}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.0664}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.0152}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.419}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.0322}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.0601}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.278}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.0379}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 16.8}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 16.8}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 20.3}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.59}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 39.1}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.275}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.00111}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 0.00167}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air"], "amount": 0.0024}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.0024}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.0493}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water"], "amount": 0.00535}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.12}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air"], "amount": 0.000566}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000566}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0019}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water"], "amount": 0.00055}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 0.0755}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.00484}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.34}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.31}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.22}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.22}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.22}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.00593}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00593}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.0156}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.00221}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0046}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0046}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0124}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water"], "amount": 0.00276}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 9.96e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.0204}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0367}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.0185}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 0.465}, {"name": "Pyrene", "categories": ["air"], "amount": 21.5}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 156}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.00199}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 0.757}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.0377}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.8}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 13.2}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.25}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 23.3}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 227}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 227}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.01}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 5.7}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 0.322}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.00362}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23500}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 23500}, {"name": "Selenium IV", "categories": ["air"], "amount": 18700}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 18700}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1640}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 7830}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 7830}, {"name": "Selenium IV", "categories": ["soil"], "amount": 7830}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 8670}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 45100}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 8670}, {"name": "Selenium IV", "categories": ["water"], "amount": 8670}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0149}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.41}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 652000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 652000}, {"name": "Silver I", "categories": ["air"], "amount": 487000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 487000}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 15000}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 115000}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 115000}, {"name": "Silver I", "categories": ["soil"], "amount": 115000}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 128000}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1280000}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 128000}, {"name": "Silver I", "categories": ["water"], "amount": 128000}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.83}, {"name": "Simazine", "categories": ["air"], "amount": 3.46}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.472}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.78}, {"name": "Simazine", "categories": ["water"], "amount": 4.78}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.000253}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.000253}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.000815}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water"], "amount": 0.000116}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air"], "amount": 9.49e-05}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.49e-05}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.238}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water"], "amount": 0.0072}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 1.99}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.33}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.053}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.053}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.00498}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 0.0363}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 0.0363}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.95}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.152}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.36}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 0.207}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.2}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 19.2}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.17}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 12.6}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 21.6}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21.6}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 253}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 224}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 18}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 132}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 451}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.074}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.22}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.97}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.0746}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0746}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.43}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.12}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 470000}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 470000}, {"name": "Thallium I", "categories": ["air"], "amount": 458000}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 458000}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 197000}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 431000}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 431000}, {"name": "Thallium I", "categories": ["soil"], "amount": 431000}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 479000}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 781000}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 479000}, {"name": "Thallium I", "categories": ["water"], "amount": 479000}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.576}, {"name": "Thiabendazole", "categories": ["air"], "amount": 0.489}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.0175}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.123}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.358}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.358}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.0682}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 0.968}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water"], "amount": 0.215}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4.98}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.54}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.54}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.719}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 0.655}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.16}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 0.863}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.25}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.25}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.3}, {"name": "Thiram", "categories": ["air"], "amount": 9.15}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.234}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.1}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 26}, {"name": "Thiram", "categories": ["water"], "amount": 26}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6450}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6450}, {"name": "Tin ion", "categories": ["air"], "amount": 4840}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 4840}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 60.1}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1230}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1230}, {"name": "Tin ion", "categories": ["soil"], "amount": 1230}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1340}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 12600}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1340}, {"name": "Tin ion", "categories": ["water"], "amount": 1340}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air"], "amount": 0.000331}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000331}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0857}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water"], "amount": 0.00276}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.00787}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.00787}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.333}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.0185}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.22}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 138}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.144}, {"name": "Triallate", "categories": ["air"], "amount": 1}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.517}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 7.74}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 34.8}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 88.7}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.62}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 135}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.0226}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.649}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.162}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.00635}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.319}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 33.7}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 0.000142}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.16e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.31}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2360}, {"name": "Triflumuron", "categories": ["air"], "amount": 2380}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 511}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 2730}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 4260}, {"name": "Triflumuron", "categories": ["water"], "amount": 4260}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.614}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.979}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.61}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.61}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.13}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.0109}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 0.00342}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.00076}, {"name": "Urea", "categories": ["water"], "amount": 0.00076}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.00566}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 880000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 880000}, {"name": "Vanadium V", "categories": ["air"], "amount": 861000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 861000}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 124000}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 819000}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 819000}, {"name": "Vanadium V", "categories": ["soil"], "amount": 819000}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 907000}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1580000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 907000}, {"name": "Vanadium V", "categories": ["water"], "amount": 907000}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.0468}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air"], "amount": 0.000165}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000165}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0932}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water"], "amount": 0.00293}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020000}, {"name": "Zinc II", "categories": ["air"], "amount": 2270000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 2270000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 196000}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2830000}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2830000}, {"name": "Zinc II", "categories": ["soil"], "amount": 2830000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 3100000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3510000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 3100000}, {"name": "Zinc II", "categories": ["water"], "amount": 3100000}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.93}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.297}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0089}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.000559}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000559}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.316}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.00991}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.000307}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.000307}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00403}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.000414}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air"], "amount": 0.0446}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0446}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.12}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water"], "amount": 0.0267}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 5.78}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "ecotoxicity: terrestrial no LT", "terrestrial ecotoxicity potential (TETP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.802}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.76}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.062}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.695}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0416}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.00206}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.00054}, {"name": "2,4-D", "categories": ["water"], "amount": 0.00054}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 9.63e-08}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 4.67e-09}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 33.3}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 9.63e-08}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 69.5}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.0475}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.0475}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0855}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.798}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00627}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.00194}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.0188}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 34.2}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.072}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.39}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.23e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 9.68e-05}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.411}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.647}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.61}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 813}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00233}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000491}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 7.9e-05}, {"name": "Acephate", "categories": ["water"], "amount": 7.9e-05}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0828}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.339}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.42}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.0151}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 125}, {"name": "Acetic acid", "categories": ["air"], "amount": 87}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 87}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.39e-05}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00669}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air"], "amount": 0.0305}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00445}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water"], "amount": 0.0236}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0609}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.305}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 3.7}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15.6}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 495}, {"name": "Acrolein", "categories": ["air"], "amount": 287}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 287}, {"name": "Acrolein", "categories": ["water"], "amount": 423}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.15e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00425}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air"], "amount": 45.7}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 45.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.867}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.13}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 8460}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.3}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 146}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.0173}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 123000}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 63100}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1140}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1180}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 3630}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 58.9}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 8.55}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.42}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.13}, {"name": "Aniline", "categories": ["air"], "amount": 0.621}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.621}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.041}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.622}, {"name": "Aniline", "categories": ["water"], "amount": 0.622}, {"name": "Anthracene", "categories": ["air"], "amount": 34.8}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 28.8}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water"], "amount": 71.1}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 671000}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 671000}, {"name": "Antimony ion", "categories": ["air"], "amount": 464000}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 464000}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.33e-13}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 4.14e-13}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 4.14e-13}, {"name": "Antimony ion", "categories": ["soil"], "amount": 4.14e-13}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 4.6e-13}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 9.27e-13}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 4.6e-13}, {"name": "Antimony ion", "categories": ["water"], "amount": 4.6e-13}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 143000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 143000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 99000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 99000}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.01e-14}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 9.91e-14}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 9.91e-14}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 9.91e-14}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.09e-13}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.48e-13}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.09e-13}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.09e-13}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.0174}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 22.7}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14.4}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water"], "amount": 10.1}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0553}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 6.69e-05}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 174}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 5.06e-05}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4680}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.000144}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 0.000137}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.09e-05}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.09e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3520}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3520}, {"name": "Barium II", "categories": ["air"], "amount": 2440}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2440}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 5.14e-15}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.1e-14}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.1e-14}, {"name": "Barium II", "categories": ["soil"], "amount": 1.1e-14}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.22e-14}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.68e-14}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.22e-14}, {"name": "Barium II", "categories": ["water"], "amount": 1.22e-14}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.72e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.516}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.000631}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.651}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0639}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 346}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 187}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.582}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.091}, {"name": "Benzene", "categories": ["air"], "amount": 0.0871}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0871}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0427}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water"], "amount": 0.0859}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.922}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0129}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0425}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 48.4}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 78.5}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 78.5}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 76.3}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.445}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.445}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.008}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0333}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0189}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.00268}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.0477}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 512000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 512000}, {"name": "Beryllium II", "categories": ["air"], "amount": 354000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 354000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.87e-15}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 4.26e-14}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 4.26e-14}, {"name": "Beryllium II", "categories": ["soil"], "amount": 4.26e-14}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.67e-14}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.65e-13}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.67e-14}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.67e-14}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 148000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 96.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 99.6}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 308}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 308}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 9.79}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22500}, {"name": "Bifenthrin", "categories": ["air"], "amount": 13100}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 222}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 227}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 801}, {"name": "Bifenthrin", "categories": ["water"], "amount": 801}, {"name": "Bisphenol A", "categories": ["water"], "amount": 0.0064}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.51e-05}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 7.52e-07}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 0.00957}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.0859}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.0782}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 466}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 42400}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00331}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 0.000666}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 0.000666}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 217}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.9}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.33}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.862}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air"], "amount": 0.035}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.0015}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water"], "amount": 0.0186}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.0321}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0703}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.368}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2900}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 301}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 299000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 299000}, {"name": "Cadmium II", "categories": ["air"], "amount": 207000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 207000}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 8.32e-16}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 3.69e-15}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 3.69e-15}, {"name": "Cadmium II", "categories": ["soil"], "amount": 3.69e-15}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 4.09e-15}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.06e-14}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 4.09e-15}, {"name": "Cadmium II", "categories": ["water"], "amount": 4.09e-15}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9490}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 12.7}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 5.77}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 5.77}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 10300}, {"name": "Carbendazim", "categories": ["air"], "amount": 8320}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.138}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 0.0873}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 0.0417}, {"name": "Carbendazim", "categories": ["water"], "amount": 0.0417}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 372}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.853}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 7.49}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4270}, {"name": "Carboxin", "categories": ["air"], "amount": 2950}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.666}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.461}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 0.242}, {"name": "Carboxin", "categories": ["water"], "amount": 0.242}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00159}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 163000}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 202}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 199}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 123}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 123}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 123}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 265000}, {"name": "Chloramine", "categories": ["air"], "amount": 219000}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 219000}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.74e-07}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water"], "amount": 3.26e-06}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1680}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 8.8e-06}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 6400}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 6400}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.68e-06}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 0.00068}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air"], "amount": 0.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.219}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water"], "amount": 0.462}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 330}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 55.7}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 55.7}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.413}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 6.87}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 22400}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 21800}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 9330}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9770}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 8820}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 8820}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 6180}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1650}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 786}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 251}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.15e-06}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 65300}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 65300}, {"name": "Chromium III", "categories": ["air"], "amount": 45200}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 45200}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.94e-16}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.36e-16}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.36e-16}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.36e-16}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 5.95e-16}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.12e-15}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 5.95e-16}, {"name": "Chromium III", "categories": ["water"], "amount": 5.95e-16}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 221000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 221000}, {"name": "Chromium VI", "categories": ["air"], "amount": 153000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 153000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 8.28e-14}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.29e-13}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.29e-13}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.29e-13}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.54e-13}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 5.85e-13}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.54e-13}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.54e-13}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 9.78}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 22}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0329}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63800}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63800}, {"name": "Cobalt II", "categories": ["air"], "amount": 44200}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 44200}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.55e-16}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.29e-15}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.29e-15}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.29e-15}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.53e-15}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.5e-14}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.53e-15}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.53e-15}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1880000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1880000}, {"name": "Copper ion", "categories": ["air"], "amount": 1300000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.23e-15}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.02e-14}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.02e-14}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.02e-14}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 5.54e-14}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.51e-13}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 5.54e-14}, {"name": "Copper ion", "categories": ["water"], "amount": 5.54e-14}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air"], "amount": 0.0432}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0432}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.0138}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water"], "amount": 0.0466}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.341}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.000203}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000646}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.73e-05}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.27e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1740}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.12e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95800}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 917}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 2830}, {"name": "Cypermethrin", "categories": ["water"], "amount": 2830}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.868}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.04e-05}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 77}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00507}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Decanoic acid", "categories": ["water"], "amount": 0.0114}, {"name": "Deltamethrin", "categories": ["air"], "amount": 14700}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1380}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3700}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.14e-12}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.754}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 2.87}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.00301}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.647}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.32e-05}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.32e-05}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 36.9}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 114}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 282}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.000695}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.55e-06}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.55e-06}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1060}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 32.5}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 609}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.923}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Diethanolamine", "categories": ["water"], "amount": 5.94e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 3.49}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00415}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00415}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 242}, {"name": "Diethylamine", "categories": ["air"], "amount": 186}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 186}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.037}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.0767}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.968}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.968}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 7.44e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.000149}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 20400}, {"name": "Difenoconazole", "categories": ["air"], "amount": 16600}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 0.0715}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 0.0654}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0503}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.0503}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 489000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1240}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1040}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 692}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 692}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.741}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.0684}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.302}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 8.15}, {"name": "Dimethoate", "categories": ["air"], "amount": 2350}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 7.52}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.232}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.155}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air"], "amount": 888}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 888}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.337}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1610000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1610000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1420000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1420000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 207000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 330000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 330000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 330000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 210000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 484000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 210000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 210000}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00217}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 424}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.33e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 6.6e-07}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 6.6e-07}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.114}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 28600}, {"name": "Diuron", "categories": ["air"], "amount": 20400}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.59}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.78}, {"name": "Diuron", "categories": ["water"], "amount": 2.55}, {"name": "Dodecanol", "categories": ["water"], "amount": 7.62}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.215}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 6.87e-05}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.18e-08}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.47}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 468}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 16}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 6710}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 148}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 58.9}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 58.9}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11300}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.444}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.444}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.111}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.194}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.929}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.929}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.184}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.387}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 13.1}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 18}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air"], "amount": 0.072}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0262}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 276}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 5.61e-06}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.53e-11}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.53e-11}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.27}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 14.4}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1520}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.406}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 214}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 214}, {"name": "Ethylamine", "categories": ["air"], "amount": 168}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 168}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0309}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.064}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.000108}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.000225}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.455}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.57}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.13e-05}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 6.64e-07}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.177}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 638}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.483}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 8.99}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2710}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 729}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 26.8}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 26.8}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 206000}, {"name": "Fluazinam", "categories": ["air"], "amount": 145000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1240}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1140}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 900}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 900}, {"name": "Fluazinam", "categories": ["water"], "amount": 900}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12600}, {"name": "Fludioxonil", "categories": ["air"], "amount": 8730}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 1.15}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.45}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.45}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 70900}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 389}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.04}, {"name": "Fluoranthene", "categories": ["air"], "amount": 98.9}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 80.1}, {"name": "Fluorene", "categories": ["air"], "amount": 1.82}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.08}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 190}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 2.06e-06}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 25800}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 142}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air"], "amount": 10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.0506}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.889}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air"], "amount": 66.8}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 66.8}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 4.58e-06}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water"], "amount": 0.000909}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 7.53e-09}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0062}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0939}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00607}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00607}, {"name": "Furan", "categories": ["air"], "amount": 0.00245}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00245}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 573}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.26e-10}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.13e-05}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.27e-11}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2440}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1980}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 0.00799}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 0.00799}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air"], "amount": 2.07e-05}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.07e-05}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 256}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air"], "amount": 0.000196}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000196}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.37e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water"], "amount": 0.000194}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.00371}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.379}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 602}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 367}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water"], "amount": 1360}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00795}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0955}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.03}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.03}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0143}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0387}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.178}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000785}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4320}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 5.99e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.17e-10}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Imidacloprid", "categories": ["water"], "amount": 1.98e-10}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 7710}, {"name": "Indoxacarb", "categories": ["air"], "amount": 6020}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 9.87}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.0103}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.302}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-05}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air"], "amount": 88}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 88}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.216}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.2}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 20.2}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 312000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5510}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5640}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 18700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 18700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 18700}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.866}, {"name": "Lauric acid", "categories": ["water"], "amount": 0.00154}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67200}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 67200}, {"name": "Lead II", "categories": ["air"], "amount": 46500}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 46500}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.26e-18}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.7e-17}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.7e-17}, {"name": "Lead II", "categories": ["soil"], "amount": 7.7e-17}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 8.37e-17}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 8.95e-16}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 8.37e-17}, {"name": "Lead II", "categories": ["water"], "amount": 8.37e-17}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.93e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5100}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.04e-07}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 626}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 6.59e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.1e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.1e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.000589}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.000883}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.000883}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 43}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.18e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.05e-05}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 44400}, {"name": "Mancozeb", "categories": ["air"], "amount": 36600}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.000845}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.59e-05}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 9.45e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 9.45e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.000868}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0677}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.000731}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.84e-13}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2180000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2180000}, {"name": "Mercury II", "categories": ["air"], "amount": 1490000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1490000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.63e-16}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 6.92e-15}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 6.92e-15}, {"name": "Mercury II", "categories": ["soil"], "amount": 6.92e-15}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 7.32e-15}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 6.91e-14}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 7.32e-15}, {"name": "Mercury II", "categories": ["water"], "amount": 7.32e-15}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.27}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 702}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 455}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 0.82}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 0.347}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 0.347}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 45.5}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.000275}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.000191}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.02}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.358}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0492}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0998}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.0416}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.0416}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.806}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.41}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Methanol", "categories": ["air"], "amount": 0.122}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.122}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.00305}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water"], "amount": 0.0422}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 96.2}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 32500}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.422}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 0.206}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water"], "amount": 0.0678}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 5.42}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 15800}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 12800}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 0.0597}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 0.0575}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 0.0517}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 0.0517}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.4}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.4}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.303}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.2}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.23}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.55}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.0199}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air"], "amount": 55.8}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 55.8}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 566}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 40.4}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 397}, {"name": "Methylamine", "categories": ["air"], "amount": 305}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 305}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water"], "amount": 0.216}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 5890}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 18.4}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 15.7}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water"], "amount": 11.3}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 40000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.21}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 0.856}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090000}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 899000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 6.48e-05}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.81e-05}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.81e-05}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.85}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2270}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2270}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1570}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1570}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.31e-17}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.3e-16}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.3e-16}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.3e-16}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.55e-16}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.07e-15}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.55e-16}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.55e-16}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.014}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00603}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 27.6}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 2.3}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 801}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.584}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.967}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.165}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 606}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 292000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 292000}, {"name": "Nickel II", "categories": ["air"], "amount": 202000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 202000}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.25e-15}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.05e-14}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.05e-14}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.05e-14}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.27e-14}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.05e-13}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.27e-14}, {"name": "Nickel II", "categories": ["water"], "amount": 2.27e-14}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 645}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 531}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 7.28e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 3.32e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.1e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.1e-08}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.1}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.8}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 176}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.00469}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 21.7}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 5.82e-05}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00085}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.133}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 9.68}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 24.9}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 38.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.35}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.34}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.4}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 4.69e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 276}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.8}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 6.44e-05}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 490}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 69.2}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 69.2}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air"], "amount": 0.0207}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.0207}, {"name": "Pentane", "categories": ["water"], "amount": 0.0196}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11100}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 401}, {"name": "Permethrin", "categories": ["water"], "amount": 1160}, {"name": "Phenanthrene", "categories": ["air"], "amount": 31.3}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 37}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49}, {"name": "Phenol", "categories": ["air"], "amount": 1.18}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.00553}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water"], "amount": 0.0981}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 13}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 13}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 5980}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 5980}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.116}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.136}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 47.2}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 272}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4160}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.187}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.84}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.603}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 10.7}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.4}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 7.34}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00153}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.00909}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.000503}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 77.9}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.378}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 50.4}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 77.3}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 77.3}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 63.8}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 54.6}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 6.77}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3440}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 37.6}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 885}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 3.94e-05}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 4.05e-06}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06}, {"name": "Propanal", "categories": ["air"], "amount": 0.622}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.622}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.881}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.21}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.881}, {"name": "Propanal", "categories": ["water"], "amount": 0.881}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air"], "amount": 0.0504}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0504}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.003}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water"], "amount": 0.0302}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.00379}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.15}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.536}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.237}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water"], "amount": 0.487}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.0204}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air"], "amount": 51.4}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 51.4}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0154}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water"], "amount": 0.032}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.00326}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.41}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.74}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Pyrene", "categories": ["air"], "amount": 121}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 140}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 232}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.000429}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 119}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 667}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 211}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 267}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 932}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 932}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.000183}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 26.7}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.000889}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96800}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 96800}, {"name": "Selenium IV", "categories": ["air"], "amount": 67000}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 67000}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.33e-15}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 6.33e-15}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 6.33e-15}, {"name": "Selenium IV", "categories": ["soil"], "amount": 6.33e-15}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 7.02e-15}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 3.23e-14}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 7.02e-15}, {"name": "Selenium IV", "categories": ["water"], "amount": 7.02e-15}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0594}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.0666}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400000}, {"name": "Silver I", "categories": ["air"], "amount": 7180000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7180000}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.29e-14}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 9.9e-14}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 9.9e-14}, {"name": "Silver I", "categories": ["soil"], "amount": 9.9e-14}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.09e-13}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.69e-13}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.09e-13}, {"name": "Silver I", "categories": ["water"], "amount": 1.09e-13}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Simazine", "categories": ["air"], "amount": 9400}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 9.4}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.05}, {"name": "Simazine", "categories": ["water"], "amount": 3.05}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air"], "amount": 15.4}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 15.4}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.32e-21}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water"], "amount": 2.8e-21}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 77.2}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air"], "amount": 0.00511}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00418}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water"], "amount": 0.0139}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 0.00791}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1250}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1490}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1490}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.000647}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.72e-10}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.72e-10}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.61}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2820}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.0907}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.0888}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water"], "amount": 0.0838}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.97}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 99300}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 75900}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 7.63}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 4.7}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.13}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.13}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 178000}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 135000}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.95}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.71}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 7.87}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.00589}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 286}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 47.8}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.313}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.568}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90600}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 90600}, {"name": "Thallium I", "categories": ["air"], "amount": 62700}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 62700}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.02e-13}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.22e-13}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.22e-13}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.22e-13}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.47e-13}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 3.99e-13}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.47e-13}, {"name": "Thallium I", "categories": ["water"], "amount": 2.47e-13}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1090}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.00387}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.00354}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.00279}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.00279}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.000621}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 49}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 0.000115}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water"], "amount": 0.0213}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5860}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 977}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 732}, {"name": "Thiodicarb", "categories": ["water"], "amount": 732}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4360}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2770}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 7.32}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.23}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 964}, {"name": "Thiram", "categories": ["air"], "amount": 564}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.303}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.161}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Thiram", "categories": ["water"], "amount": 1.83}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 86400}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 86400}, {"name": "Tin ion", "categories": ["air"], "amount": 59800}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 59800}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 4.89e-17}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.09e-15}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 8.23e-15}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.09e-15}, {"name": "Tin ion", "categories": ["water"], "amount": 1.09e-15}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air"], "amount": 0.0281}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0281}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.00928}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water"], "amount": 0.0301}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.248}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.248}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.116}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.247}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 871}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 18.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.00155}, {"name": "Triallate", "categories": ["air"], "amount": 47}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 70.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 0.0748}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 152000}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.0075}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 0.0036}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.24}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.00144}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0529}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1.77}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 904}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 9.6e-07}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 1.8e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 25.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6730000}, {"name": "Triflumuron", "categories": ["air"], "amount": 4840000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 84000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 58600}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 11400}, {"name": "Triflumuron", "categories": ["water"], "amount": 11400}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 31.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 31.8}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000264}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.00987}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 6.86e-07}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water"], "amount": 1.29e-05}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.000198}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 292000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 292000}, {"name": "Vanadium V", "categories": ["air"], "amount": 202000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 202000}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.02e-13}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 6.73e-13}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 6.73e-13}, {"name": "Vanadium V", "categories": ["soil"], "amount": 6.73e-13}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 7.44e-13}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.27e-12}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 7.44e-13}, {"name": "Vanadium V", "categories": ["water"], "amount": 7.44e-13}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air"], "amount": 0.0139}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0139}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.00551}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water"], "amount": 0.0183}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95800}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 211000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 211000}, {"name": "Zinc II", "categories": ["air"], "amount": 146000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 146000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.46e-13}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.11e-12}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.11e-12}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.11e-12}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.32e-12}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.61e-12}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.32e-12}, {"name": "Zinc II", "categories": ["water"], "amount": 2.32e-12}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 74.4}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.00806}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0267}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.0187}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.062}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.0351}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.01}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.034}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air"], "amount": 535}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 535}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.405}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water"], "amount": 0.84}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 18.7}]}, {"unit": "kg oil-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "energy resources: non-renewable, fossil no LT", "fossil fuel potential (FFP) no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.22}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.42}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.22}]}, {"unit": "kg P-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "eutrophication: freshwater no LT", "freshwater eutrophication potential (FEP) no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "eutrophication: marine no LT", "marine eutrophication potential (MEP) no LT"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.776}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water"], "amount": 0.23}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water"], "amount": 0.0671}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.297}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.0902}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.297}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "human toxicity: carcinogenic no LT", "human toxicity potential (HTPc) no LT"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00065}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.065}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.081}, {"name": "Acephate", "categories": ["water"], "amount": 0.081}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.00325}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.0313}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.434}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.4}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 49.8}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 9.72}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.72}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.216}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1.45}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 41.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 41.4}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air"], "amount": 0.0322}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.0322}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.7e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water"], "amount": 0.0242}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22400}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 22400}, {"name": "Arsenic ion", "categories": ["air"], "amount": 20900}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 20900}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1730}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 16100}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 16100}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 16100}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 17700}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 40500}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 17700}, {"name": "Arsenic ion", "categories": ["water"], "amount": 17700}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.27}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 0.735}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.54}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.54}, {"name": "Atrazine", "categories": ["water"], "amount": 1.54}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0765}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0765}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0107}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.33}, {"name": "Benzene", "categories": ["air"], "amount": 1.44}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.158}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.354}, {"name": "Benzene", "categories": ["water"], "amount": 0.354}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.0375}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.145}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0284}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0961}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 93.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 93.8}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1150}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 36.5}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 36.5}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.8}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.8}, {"name": "Beryllium II", "categories": ["air"], "amount": 268}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 268}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.54}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.06}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.06}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 0.867}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 4.86}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 0.867}, {"name": "Beryllium II", "categories": ["water"], "amount": 0.867}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air"], "amount": 1.33}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.33}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 171}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 171}, {"name": "Cadmium II", "categories": ["air"], "amount": 310}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 310}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 338}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 15.6}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 15.6}, {"name": "Cadmium II", "categories": ["soil"], "amount": 15.6}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 9.89}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 79}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9.89}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.89}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.0216}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.84}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 3.27}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 3.27}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.293}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.29}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air"], "amount": 1.26}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.26}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.369}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water"], "amount": 0.862}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 0.0799}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.0212}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.0361}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 0.097}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 0.097}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 743000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 743000}, {"name": "Chromium VI", "categories": ["air"], "amount": 667000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 667000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 184000}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 500000}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 500000}, {"name": "Chromium VI", "categories": ["soil"], "amount": 500000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 548000}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1270000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 548000}, {"name": "Chromium VI", "categories": ["water"], "amount": 548000}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 241}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0637}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 80.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 39.9}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 7.95}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 27.1}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.0566}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.0566}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.24e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.0109}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 108000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 108000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 99600000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 99600000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 23200000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 27500000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 27500000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 27500000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 227000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 79300000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 227000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 227000000}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 4}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0676}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0676}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 5.07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.244}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.244}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.652}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.223}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.223}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.78}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 13.4}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 3.2e-05}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0012}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.423}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.93}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.3}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.8}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 3.36}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 12.5}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00626}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.137}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00064}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6}, {"name": "Furan", "categories": ["air"], "amount": 95}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 95}, {"name": "Furfural", "categories": ["air"], "amount": 0.29}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air"], "amount": 0.00483}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.00483}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water"], "amount": 0.00265}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.129}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water"], "amount": 10.2}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.172}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.172}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0234}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0553}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.27}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.27}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air"], "amount": 0.128}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.128}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.7}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.7}, {"name": "Lead II", "categories": ["air"], "amount": 26.5}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 26.5}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.72}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 6.88}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 6.88}, {"name": "Lead II", "categories": ["soil"], "amount": 6.88}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.44}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 16.7}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.44}, {"name": "Lead II", "categories": ["water"], "amount": 1.44}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 12.5}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.222}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4210}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4210}, {"name": "Mercury II", "categories": ["air"], "amount": 3110}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 3110}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 164}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 756}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 756}, {"name": "Mercury II", "categories": ["soil"], "amount": 756}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 734}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7600}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 734}, {"name": "Mercury II", "categories": ["water"], "amount": 734}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 12.3}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 12.3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0881}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 255}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 255}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 135}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 236}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.88}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.147}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.147}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.0171}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.0549}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.4}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.903}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1170}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1170}, {"name": "Nickel II", "categories": ["air"], "amount": 906}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 906}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 210}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 355}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 355}, {"name": "Nickel II", "categories": ["soil"], "amount": 355}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 249}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1190}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 249}, {"name": "Nickel II", "categories": ["water"], "amount": 249}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.0724}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.849}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 33.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 33.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.0684}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.895}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.93}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.93}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.579}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4.64}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.000638}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.0364}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00525}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.486}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.307}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 114}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 114}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 5120}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 3.53}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0588}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.365}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.968}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.0951}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air"], "amount": 1.28}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.28}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00976}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Styrene", "categories": ["water"], "amount": 0.281}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.523}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.13}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air"], "amount": 0.0134}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0134}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.000339}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water"], "amount": 0.00226}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0111}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0371}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0715}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.407}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.8}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air"], "amount": 0.0204}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.000267}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water"], "amount": 0.00229}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 0.241}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.313}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.313}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00964}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.0338}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "human toxicity: non-carcinogenic no LT", "human toxicity potential (HTPnc) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.414}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.9}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.1}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 3.81}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 5.24}, {"name": "2,4-D", "categories": ["water"], "amount": 5.24}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.105}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 1.88}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 1.88}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0377}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00147}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.9e-06}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00878}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.0297}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.19}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 19300}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 16500}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 620}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 773}, {"name": "Acephate", "categories": ["water"], "amount": 773}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.056}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.545}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Acetone", "categories": ["air"], "amount": 0.0878}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0878}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water"], "amount": 0.0132}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0204}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.131}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 310}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 310}, {"name": "Acrolein", "categories": ["air"], "amount": 9490}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 9490}, {"name": "Acrolein", "categories": ["water"], "amount": 294}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.74e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water"], "amount": 0.0752}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air"], "amount": 707}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 707}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.85}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 9.16}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.36}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.36}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 36}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 322}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.48}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.1}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 30.4}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.835}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 0.808}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 25.6}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 6.95}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.65}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.361}, {"name": "Aniline", "categories": ["air"], "amount": 5.32}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 5.32}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.00623}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 4.09}, {"name": "Aniline", "categories": ["water"], "amount": 4.09}, {"name": "Anthracene", "categories": ["air"], "amount": 0.0511}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water"], "amount": 0.723}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42500}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 42500}, {"name": "Antimony ion", "categories": ["air"], "amount": 38600}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 38600}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 10300}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 30400}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 30400}, {"name": "Antimony ion", "categories": ["soil"], "amount": 30400}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 32200}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 65500}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 32200}, {"name": "Antimony ion", "categories": ["water"], "amount": 32200}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 5190000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5190000}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 439000}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 4090000}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 4090000}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 4090000}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4480000}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 10300000}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4480000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4480000}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 6.7}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.9}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.92}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water"], "amount": 6.11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 21000}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 21000}, {"name": "Barium II", "categories": ["air"], "amount": 21000}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 21000}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9980}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 21100}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 21100}, {"name": "Barium II", "categories": ["soil"], "amount": 21100}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 23200}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 32000}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 23200}, {"name": "Barium II", "categories": ["water"], "amount": 23200}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0841}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0331}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.3}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.331}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 2.75}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 2.75}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0475}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28}, {"name": "Benzene", "categories": ["air"], "amount": 1.22}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.301}, {"name": "Benzene", "categories": ["water"], "amount": 0.301}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.505}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.00398}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.107}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1340}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 126}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 126}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 500}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27600}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27600}, {"name": "Beryllium II", "categories": ["air"], "amount": 641000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 641000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 131}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 113}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 113}, {"name": "Beryllium II", "categories": ["soil"], "amount": 113}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 32}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 179}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 32}, {"name": "Beryllium II", "categories": ["water"], "amount": 32}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 372}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.994}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.21}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 72.7}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 72.7}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 101}, {"name": "Bifenthrin", "categories": ["air"], "amount": 65}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 4.23}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 15.9}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 1970}, {"name": "Bifenthrin", "categories": ["water"], "amount": 1970}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.77}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.96}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.5}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.26}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.6}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.6}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.79}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air"], "amount": 6.67}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.67}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air"], "amount": 0.431}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.431}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.000981}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water"], "amount": 0.0541}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 150000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 150000}, {"name": "Cadmium II", "categories": ["air"], "amount": 107000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 107000}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 310000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 14300}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 14300}, {"name": "Cadmium II", "categories": ["soil"], "amount": 14300}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 9090}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 72500}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9090}, {"name": "Cadmium II", "categories": ["water"], "amount": 9090}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.779}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.9}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.16}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.3}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.3}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.5}, {"name": "Carbendazim", "categories": ["air"], "amount": 29.5}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.05}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Carbendazim", "categories": ["water"], "amount": 1.83}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 140}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 823}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 823}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 215}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 667}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 14}, {"name": "Carboxin", "categories": ["air"], "amount": 12.3}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.249}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.855}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Carboxin", "categories": ["water"], "amount": 1.61}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 3.52e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0152}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air"], "amount": 12.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.73e-05}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water"], "amount": 0.619}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 921}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 4.27}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.861}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water"], "amount": 9.89}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air"], "amount": 21.8}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.96}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water"], "amount": 12.8}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 8.14}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.72}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 10}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 10}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 79.8}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 338}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 88.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.748}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.571}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.571}, {"name": "Chromium III", "categories": ["air"], "amount": 0.425}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.425}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.0827}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.131}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.131}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.131}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 0.049}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 0.454}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.049}, {"name": "Chromium III", "categories": ["water"], "amount": 0.049}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5960}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5960}, {"name": "Chromium VI", "categories": ["air"], "amount": 10700}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 10700}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1410}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 3850}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 3850}, {"name": "Chromium VI", "categories": ["soil"], "amount": 3850}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 4220}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 9800}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 4220}, {"name": "Chromium VI", "categories": ["water"], "amount": 4220}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 149}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 149}, {"name": "Copper ion", "categories": ["air"], "amount": 111}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 111}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 83.4}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 31.3}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 31.3}, {"name": "Copper ion", "categories": ["soil"], "amount": 31.3}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 24.3}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 163}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 24.3}, {"name": "Copper ion", "categories": ["water"], "amount": 24.3}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air"], "amount": 0.18}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00479}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.066}, {"name": "Cumene", "categories": ["water"], "amount": 0.066}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0041}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0438}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.48}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.935}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 0.768}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 21.6}, {"name": "Cypermethrin", "categories": ["water"], "amount": 21.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.04}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 31.3}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 253}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 38}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.2}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4.13}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.59}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.59}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 86.9}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 865}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 42.1}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0958}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0958}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.7}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.88}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 17.3}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 41.9}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 41.9}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 66.2}, {"name": "Dimethoate", "categories": ["air"], "amount": 20.3}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.0765}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 14.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.702}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 255}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 30.3}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 68.3}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 68.3}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 46.2}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.554}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 88.7}, {"name": "Diuron", "categories": ["air"], "amount": 78.7}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 2.03}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.36}, {"name": "Diuron", "categories": ["water"], "amount": 12.1}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.00919}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.61}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 28.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0826}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.321}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.163}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.281}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 7.06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 7.06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 361}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 553}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 67.6}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 5.47}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 5.47}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 266}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0844}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0844}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0147}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00288}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0147}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0147}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00143}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 0.244}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2.73}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 22300}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.96}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.31}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.34}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Fipronil", "categories": ["air"], "amount": 1520}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 615}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 1570}, {"name": "Fipronil", "categories": ["water"], "amount": 1570}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.788}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 20.7}, {"name": "Fluorene", "categories": ["air"], "amount": 0.692}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 1.3}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 15.4}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 6.78}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00311}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.447}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00128}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.972}, {"name": "Furan", "categories": ["air"], "amount": 35.5}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 49.2}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 3.53}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.768}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.2}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "Hexane", "categories": ["air"], "amount": 2.2}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.2}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0475}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Hexane", "categories": ["water"], "amount": 1.23}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.504}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 5490}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00218}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0273}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0332}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.104}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 40.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 40.7}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.67}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 0.197}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 0.253}, {"name": "Imazethapyr", "categories": ["water"], "amount": 0.253}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air"], "amount": 57.1}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 2.07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.73}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.73}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 0.113}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42900}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 42900}, {"name": "Lead II", "categories": ["air"], "amount": 31800}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 31800}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 5670}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8260}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8260}, {"name": "Lead II", "categories": ["soil"], "amount": 8260}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1730}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 20000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1730}, {"name": "Lead II", "categories": ["water"], "amount": 1730}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 495}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.197}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 252}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 9.59}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 21.2}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 21.2}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.086}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.22}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.22}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.0736}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.74}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0272}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.2}, {"name": "Mancozeb", "categories": ["air"], "amount": 47.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2.75}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 1.77}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2.43}, {"name": "Mancozeb", "categories": ["water"], "amount": 2.43}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.00733}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1710000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1710000}, {"name": "Mercury II", "categories": ["air"], "amount": 1260000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1260000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 66400}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 307000}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 307000}, {"name": "Mercury II", "categories": ["soil"], "amount": 307000}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 297000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 3080000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 297000}, {"name": "Mercury II", "categories": ["water"], "amount": 297000}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.53}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 75}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1530}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.16}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 402}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 402}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 404}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 404}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 9.31}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 9.31}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2930}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2930}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1550}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2710}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33.1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 33.5}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 33.5}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Methanol", "categories": ["air"], "amount": 0.156}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.156}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000666}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water"], "amount": 0.0194}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.22}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 456}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.72}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 9.35}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water"], "amount": 15.4}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00853}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 89.8}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.11}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.342}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.43}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water"], "amount": 3.37}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.7}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 2.42}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.9}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 12.7}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 0.695}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 1.18}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 1.18}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 77.5}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 9.48}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6530}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 6530}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 5000}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 5000}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 3130}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1890}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1890}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1890}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1130}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 4760}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1130}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1130}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.00213}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.00684}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 213}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.514}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Naphthalene", "categories": ["air"], "amount": 11}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.03}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.206}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 226}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 226}, {"name": "Nickel II", "categories": ["air"], "amount": 174}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 174}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 40.5}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 68.4}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 68.4}, {"name": "Nickel II", "categories": ["soil"], "amount": 68.4}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 48.1}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 230}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 48.1}, {"name": "Nickel II", "categories": ["water"], "amount": 48.1}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.2}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.2}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0148}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 0.0138}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.172}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.05}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.6}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0604}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 8.97}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.71}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.162}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 2.52}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Permethrin", "categories": ["water"], "amount": 10.8}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "Phenol", "categories": ["air"], "amount": 0.493}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.493}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.000864}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.315}, {"name": "Phenol", "categories": ["water"], "amount": 0.315}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 734}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 734}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.32}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 34.6}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 17.8}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 605}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00317}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.181}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.00406}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.251}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 23.2}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 9.62}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.428}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 6.83}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 22.6}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.399}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 27.9}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.881}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.385}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.477}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1.87}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.4}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 7.72}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water"], "amount": 36.6}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 3.2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 2.74}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water"], "amount": 14.8}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 7.19}, {"name": "Pyrene", "categories": ["air"], "amount": 0.624}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 11.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.342}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 0.573}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 31.1}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 31.1}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 14.6}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.531}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.608}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.492}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 10.9}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 129000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 129000}, {"name": "Silver I", "categories": ["air"], "amount": 92400}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 92400}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 186000}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 15200}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 15200}, {"name": "Silver I", "categories": ["soil"], "amount": 15200}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4040}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 33800}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4040}, {"name": "Silver I", "categories": ["water"], "amount": 4040}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 418}, {"name": "Simazine", "categories": ["air"], "amount": 344}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 17.3}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 19.3}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 33.5}, {"name": "Simazine", "categories": ["water"], "amount": 33.5}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air"], "amount": 0.855}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.855}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.0046}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water"], "amount": 0.0211}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 32}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 5.51}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water"], "amount": 17.1}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 24.4}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.47}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.52}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1860}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1560}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 62.5}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 280}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 959}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 0.0552}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 342}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 6.15}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 11.9}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1120000}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1120000}, {"name": "Thallium I", "categories": ["air"], "amount": 1090000}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1090000}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 471000}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1030000}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1030000}, {"name": "Thallium I", "categories": ["soil"], "amount": 1030000}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 1140000}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1850000}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 1140000}, {"name": "Thallium I", "categories": ["water"], "amount": 1140000}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air"], "amount": 26.8}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.72}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.72}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 7.5}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.67}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 4.65}, {"name": "Thiodicarb", "categories": ["water"], "amount": 4.65}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.3}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 15.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.905}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.33}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.91}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.91}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23}, {"name": "Thiram", "categories": ["air"], "amount": 11.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.0675}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.208}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 4.91}, {"name": "Thiram", "categories": ["water"], "amount": 4.91}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067}, {"name": "Toluene", "categories": ["air"], "amount": 0.858}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.858}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0184}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water"], "amount": 0.0714}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.318}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.14}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Triallate", "categories": ["air"], "amount": 9.42}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.76}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 72.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 44.1}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 144}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.78}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 17.9}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 15.8}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.16}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.7}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 128}, {"name": "Trifluralin", "categories": ["water"], "amount": 128}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.381}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63300}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 63300}, {"name": "Vanadium V", "categories": ["air"], "amount": 61900}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 61900}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 9120}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 58700}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 58700}, {"name": "Vanadium V", "categories": ["soil"], "amount": 58700}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 64700}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 111000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 64700}, {"name": "Vanadium V", "categories": ["water"], "amount": 64700}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.68}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air"], "amount": 1.58}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0182}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water"], "amount": 0.0692}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1770000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1770000}, {"name": "Zinc II", "categories": ["air"], "amount": 1970000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1970000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 341000}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2400000}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2400000}, {"name": "Zinc II", "categories": ["soil"], "amount": 2400000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2640000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2970000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2640000}, {"name": "Zinc II", "categories": ["water"], "amount": 2640000}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5.95}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.0062}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.027}]}, {"unit": "kg Co-60-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "ionising radiation no LT", "ionising radiation potential (IRP) no LT"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 0.00292}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 0.000461}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 0.00292}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 0.00292}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.5}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.5}, {"name": "Americium-241", "categories": ["air"], "amount": 55.5}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 55.5}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 0.00364}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 0.0482}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 0.00364}, {"name": "Americium-241", "categories": ["water"], "amount": 0.00364}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0491}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.000891}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00473}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water"], "amount": 8.64}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00582}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 10}, {"name": "Caesium-137", "categories": ["water"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["air"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.0127}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0273}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.0127}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.0127}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00245}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.64}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 3.45}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 4.05e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 4.12e-05}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 207}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 207}, {"name": "Iodine-129", "categories": ["air"], "amount": 207}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 207}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 155}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 155}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 155}, {"name": "Iodine-129", "categories": ["water"], "amount": 155}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.03}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 8.48e-06}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0191}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.88e-06}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 4}, {"name": "Plutonium-238", "categories": ["air"], "amount": 4}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 4}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 4.45}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["air"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 0.00773}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 0.00773}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.00773}, {"name": "Radium-226", "categories": ["water"], "amount": 0.00773}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00145}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.000236}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water"], "amount": 0.03}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.0282}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000455}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.0282}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.0282}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 0.000109}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 0.000109}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water"], "amount": 0.0309}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.73}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.73}, {"name": "Thorium-230", "categories": ["air"], "amount": 2.73}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 2.73}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["air"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["water", "ground-"], "amount": 0.136}, {"name": "Uranium alpha", "categories": ["water", "ocean"], "amount": 0.000833}, {"name": "Uranium alpha", "categories": ["water", "surface water"], "amount": 0.136}, {"name": "Uranium alpha", "categories": ["water"], "amount": 0.136}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["air"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 0.00136}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.145}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.145}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["air"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 0.136}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 0.00203}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.136}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.136}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 0.136}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 0.000833}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.136}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.136}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 8.55e-06}]}, {"unit": "m2*a crop-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "land use no LT", "agricultural land occupation (LOP) no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -36.75}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}]}, {"unit": "kg Cu-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "material resources: metals/minerals no LT", "surplus ore potential (SOP) no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.169}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.169}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.572}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.131}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0228}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 76.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.32}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.32}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.0951}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0951}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.305}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0108}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0104}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 6.57}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.57}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0488}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.0154}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 83.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 83.8}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 317}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.192}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.00283}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 96.7}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 103}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 103}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 7.09}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 7.09}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.79}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.79}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.0823}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0823}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 8.96}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 5.2}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00916}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00576}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 528}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 528}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 13.3}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.428}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0875}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.0378}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 52.9}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 52.9}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 18.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 18.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 1200}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 5.03}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.03}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 7.78}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 25.2}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 3.97}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.153}]}, {"unit": "kg CFC-11-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "ozone depletion no LT", "ozone depletion potential (ODPinfinite) no LT"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.017}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.017}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.16}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.85}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.85}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.58}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.58}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.58}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.58}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.57}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.57}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.00662}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.00662}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.66}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.66}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 7.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 7.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 15.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 15.9}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.04}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.04}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.82}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.82}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.82}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.82}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg PM2.5-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "particulate matter formation no LT", "particulate matter formation potential (PMFP) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.17}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.11}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.29}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.23}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "photochemical oxidant formation: human health no LT", "photochemical oxidant formation potential: humans (HOFP) no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.345}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.131}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.131}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.149}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0653}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.199}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0326}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0326}, {"name": "Acetone", "categories": ["air"], "amount": 0.0218}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Acrolein", "categories": ["air"], "amount": 0.196}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.174}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.0689}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.0689}, {"name": "Benzene", "categories": ["air"], "amount": 0.0363}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0363}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.167}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Butadiene", "categories": ["air"], "amount": 0.323}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.112}, {"name": "Butane", "categories": ["air"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.112}, {"name": "Butanol", "categories": ["air"], "amount": 0.189}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.228}, {"name": "Butene", "categories": ["air"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.228}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.0943}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0943}, {"name": "Cumene", "categories": ["air"], "amount": 0.116}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.102}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.167}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Ethane", "categories": ["air"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00363}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00363}, {"name": "Ethanol", "categories": ["air"], "amount": 0.123}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.123}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0689}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.363}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.134}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.134}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.167}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0109}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Heptane", "categories": ["air"], "amount": 0.127}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.127}, {"name": "Hexane", "categories": ["air"], "amount": 0.145}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.163}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.163}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0266}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0266}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Isoprene", "categories": ["air"], "amount": 0.413}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.413}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0109}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00363}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Methanol", "categories": ["air"], "amount": 0.0471}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.116}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0399}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0399}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Phenol", "categories": ["air"], "amount": -0.0181}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0181}, {"name": "Propanal", "categories": ["air"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.261}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0508}, {"name": "Propane", "categories": ["air"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0508}, {"name": "Propanol", "categories": ["air"], "amount": 0.174}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.424}, {"name": "Propene", "categories": ["air"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.424}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0471}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Styrene", "categories": ["air"], "amount": 0.0181}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0181}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00363}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Toluene", "categories": ["air"], "amount": 0.16}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.105}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.312}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.312}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.283}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.283}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "photochemical oxidant formation: terrestrial ecosystems no LT", "photochemical oxidant formation potential: ecosystems (EOFP) no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.555}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.21}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.21}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.479}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.105}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.304}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.321}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0526}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0526}, {"name": "Acetone", "categories": ["air"], "amount": 0.0351}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "Acrolein", "categories": ["air"], "amount": 0.316}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.316}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.281}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.111}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.111}, {"name": "Benzene", "categories": ["air"], "amount": 0.0585}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0585}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.269}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Butadiene", "categories": ["air"], "amount": 0.52}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.52}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.181}, {"name": "Butane", "categories": ["air"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.181}, {"name": "Butanol", "categories": ["air"], "amount": 0.304}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Butene", "categories": ["air"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.152}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Cumene", "categories": ["air"], "amount": 0.187}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.164}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.269}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.0468}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00585}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00585}, {"name": "Ethanol", "categories": ["air"], "amount": 0.199}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.111}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.111}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.585}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.216}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.216}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.269}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0175}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Heptane", "categories": ["air"], "amount": 0.205}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.205}, {"name": "Hexane", "categories": ["air"], "amount": 0.234}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.263}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.263}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0429}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Isoprene", "categories": ["air"], "amount": 0.666}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.666}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0175}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00585}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Methanol", "categories": ["air"], "amount": 0.076}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.187}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0643}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0643}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Phenol", "categories": ["air"], "amount": -0.0292}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0292}, {"name": "Propanal", "categories": ["air"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.421}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0818}, {"name": "Propane", "categories": ["air"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0818}, {"name": "Propanol", "categories": ["air"], "amount": 0.281}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.684}, {"name": "Propene", "categories": ["air"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.684}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.076}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Styrene", "categories": ["air"], "amount": 0.0292}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0292}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00585}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Toluene", "categories": ["air"], "amount": 0.257}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.17}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.503}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.503}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.456}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.456}]}, {"unit": "cubic meter", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "water use no LT", "water consumption potential (WCP) no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Water", "categories": ["air"], "amount": 1}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg SO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "acidification: terrestrial", "terrestrial acidification potential (TAP)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.552}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.36}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}]}, {"unit": "kg CO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "climate change", "global warming potential (GWP1000)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Chloroform", "categories": ["air"], "amount": 2.74}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.74}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 78.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 78.8}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 78.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 78.8}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 218}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 218}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 26.8}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 26.8}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 913}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 913}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 913}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 913}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 913}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1410}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 131}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 131}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 23}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 23}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 23}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 23}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.15}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 3490}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3490}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 3490}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 3490}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 3490}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 332}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 332}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 332}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 332}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 332}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 13.3}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 13.3}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 88.2}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 88.2}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 88.2}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 88.2}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 88.2}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8580}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8580}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8580}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8580}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 17800}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17800}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 17800}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 17800}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 17800}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 546}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 546}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 546}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 546}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 546}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.97}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.97}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.394}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.394}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 293}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 293}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 293}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 293}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 293}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 1340}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1340}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 1340}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 1340}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 1340}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 296}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 12700}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12700}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.49}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.49}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 24.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 24.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 24.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 113}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 113}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 113}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 113}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 113}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 4.9}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.9}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.9}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 4.76}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.76}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.76}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.04}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.04}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.76}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.76}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.76}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 296}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 11000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 11000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 875}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 875}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 5660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 5660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 5660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 5660}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 12800}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 12800}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 34400}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34400}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 34400}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 34400}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 34400}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "ecotoxicity: freshwater", "freshwater ecotoxicity potential (FETP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.000522}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.836}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.11e-05}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.0411}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.203}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.91}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 2.62}, {"name": "2,4-D", "categories": ["water"], "amount": 2.62}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0732}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.154}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0732}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.182}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.154}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0644}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.27}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.27}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0248}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.0144}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.98e-06}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.00477}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.7}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.83e-05}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 4.87e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.0653}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.159}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.00199}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water"], "amount": 14.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0663}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.714}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.89}, {"name": "Acephate", "categories": ["water"], "amount": 0.89}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.96e-05}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.144}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000246}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.000411}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.95e-09}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.169}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air"], "amount": 4.32e-05}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.32e-05}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 6.06e-06}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water"], "amount": 0.00217}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.000193}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.000193}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00874}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.000901}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 0.282}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 5.09}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air"], "amount": 0.084}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.084}, {"name": "Acrolein", "categories": ["water"], "amount": 69.4}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.95e-09}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water"], "amount": 0.132}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0236}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0236}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.000599}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.441}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 11.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0228}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0228}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 25}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.759}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 56}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.309}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 341}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 271}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 147}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1100}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 82800}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 35}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.13}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 39.4}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air"], "amount": 0.00401}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00401}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.11e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "Aniline", "categories": ["water"], "amount": 1.05}, {"name": "Anthracene", "categories": ["air"], "amount": 0.197}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 354}, {"name": "Anthracene", "categories": ["water"], "amount": 354}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.231}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 47.6}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 47.6}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.6}, {"name": "Antimony ion", "categories": ["air"], "amount": 127}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 127}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 98.6}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 306}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 306}, {"name": "Antimony ion", "categories": ["soil"], "amount": 306}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 340}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 340}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 6.58e-17}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 340}, {"name": "Antimony ion", "categories": ["water"], "amount": 340}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 5.55}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55}, {"name": "Arsenic ion", "categories": ["air"], "amount": 21.2}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 21.2}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.72}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 56.4}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 56.4}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 56.4}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 9.62e-18}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water"], "amount": 62.2}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.453}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.83}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14.8}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 85.3}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 179}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 179}, {"name": "Atrazine", "categories": ["water"], "amount": 179}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.452}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.745}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 233}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 0.198}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 27.3}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 156}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 156}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.485}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.485}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.485}, {"name": "Barium II", "categories": ["air"], "amount": 1.11}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.11}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil"], "amount": 2.51}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.32e-18}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.79}, {"name": "Barium II", "categories": ["water"], "amount": 2.79}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.066}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0228}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.144}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0548}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.681}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.681}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 2.08}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1590}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.00268}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00268}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.744}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.72e-05}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water"], "amount": 0.0868}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000158}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.748}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 6.88e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.293}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 24.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.069}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.069}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 15.2}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.411}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.411}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 134}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 134}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.0492}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0338}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.00704}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 4.17e-06}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.285}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 4.51}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.51}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.51}, {"name": "Beryllium II", "categories": ["air"], "amount": 18.8}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 18.8}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.43}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 50.9}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 50.9}, {"name": "Beryllium II", "categories": ["soil"], "amount": 50.9}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.33e-18}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water"], "amount": 55.9}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 251}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 37.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 284}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 21200}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 21200}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.509}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.8}, {"name": "Bifenthrin", "categories": ["air"], "amount": 40.3}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 92.9}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 12200}, {"name": "Bifenthrin", "categories": ["water"], "amount": 12200}, {"name": "Bisphenol A", "categories": ["water"], "amount": 44.9}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.0297}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 9.99}, {"name": "Bromopropane", "categories": ["air"], "amount": 3.63e-05}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.129}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.89}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.88}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 167}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 167}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 11.7}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3.63}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air"], "amount": 0.000144}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000144}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 4.79e-06}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water"], "amount": 0.0183}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.327}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.0771}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 444}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 1.98}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.98}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.98}, {"name": "Cadmium II", "categories": ["air"], "amount": 6.04}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 6.04}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 15.2}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 15.2}, {"name": "Cadmium II", "categories": ["soil"], "amount": 15.2}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.02e-19}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water"], "amount": 16.8}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 9.15}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 116}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 116}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57}, {"name": "Carbendazim", "categories": ["air"], "amount": 7.01}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 4.51}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 26.3}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 46}, {"name": "Carbendazim", "categories": ["water"], "amount": 46}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.705}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 9.93e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.349}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 3.47}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28}, {"name": "Carboxin", "categories": ["air"], "amount": 4.21}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 13.8}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Carboxin", "categories": ["water"], "amount": 26.1}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 6.33e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0948}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 107}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 90.7}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 719}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 4130}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 4130}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 4130}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air"], "amount": 39.5}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 39.5}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 9.72e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 217}, {"name": "Chloramine", "categories": ["water"], "amount": 217}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.66}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.396}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 63.4}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.535}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.0461}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1.66}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.66}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 2.9e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 9}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 8.52e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water"], "amount": 0.162}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.26}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 0.0804}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0804}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.000323}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.78}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.8}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 23.7}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 26.5}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 158}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 673}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 673}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.4}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 329}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1780}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 14700}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 14700}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 33.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10.9}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.342}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.342}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.342}, {"name": "Chromium III", "categories": ["air"], "amount": 0.875}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.875}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.75}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.07}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.69e-20}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water"], "amount": 2.3}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 12.9}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.9}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.9}, {"name": "Chromium VI", "categories": ["air"], "amount": 33}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 33}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 28.2}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 78}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 78}, {"name": "Chromium VI", "categories": ["soil"], "amount": 78}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.41e-17}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water"], "amount": 86.6}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 14.6}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.829}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.374}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.696}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 0.579}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.579}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.579}, {"name": "Cobalt II", "categories": ["air"], "amount": 2.17}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2.17}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.639}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 5.74}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 5.74}, {"name": "Cobalt II", "categories": ["soil"], "amount": 5.74}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.36e-19}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water"], "amount": 6.34}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 14.5}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.5}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.5}, {"name": "Copper ion", "categories": ["air"], "amount": 55.2}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 55.2}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 147}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 147}, {"name": "Copper ion", "categories": ["soil"], "amount": 147}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 162}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 162}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.71e-18}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 162}, {"name": "Copper ion", "categories": ["water"], "amount": 162}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 9.15e-06}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.558}, {"name": "Cumene", "categories": ["water"], "amount": 0.558}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 7.28e-08}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0546}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 1.29e-08}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.0625}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 21.8}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.288}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.00489}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 259}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 841}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 63300}, {"name": "Cypermethrin", "categories": ["water"], "amount": 63300}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 2.01}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 12.8}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.591}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.69}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0535}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 2.2}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3.04}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 58.9}, {"name": "Deltamethrin", "categories": ["air"], "amount": 53.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 6310}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.139}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.776}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 16.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0153}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5.66}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.172}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.328}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.34}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 17.1}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0427}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.081}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.631}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.631}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 17.6}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 0.943}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 5.77}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 3.28}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 0.283}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.159}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 1.02}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.57e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.57e-06}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.8e-06}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.462}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.00036}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.00036}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.26e-10}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.00271}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.52}, {"name": "Difenoconazole", "categories": ["air"], "amount": 21.5}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 78.5}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 233}, {"name": "Difenoconazole", "categories": ["water"], "amount": 233}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 188}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 299}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2000}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 4860}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 4860}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.0156}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 3.91e-05}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.191}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.55}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 0.613}, {"name": "Dimethoate", "categories": ["air"], "amount": 3.37}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 5.71}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 38.7}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.883}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 2.19e-05}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.974}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 11.8}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 218}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 218}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 218}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 242}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 242}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 99.5}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 477}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 477}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 477}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 65.7}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 17400}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 0.391}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.391}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.7}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 8.71}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 19.6}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 19.6}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.43}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Diuron", "categories": ["air"], "amount": 35.2}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 15.2}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 98.2}, {"name": "Diuron", "categories": ["water"], "amount": 223}, {"name": "Dodecanol", "categories": ["water"], "amount": 22.5}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.318}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 6.84}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.281}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.732}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 12.6}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.58}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 41.1}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 83.8}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 83.8}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1500}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1000}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.000564}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 8.23e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 8.23e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.52e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000425}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 7.03e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0554}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.00517}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.55}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.24e-06}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water"], "amount": 0.00629}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.0468}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.328}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.328}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.592}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.9e-05}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0164}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.0405}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0405}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.27e-06}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.202}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.93e-09}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.425}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.000707}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.000707}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.000177}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0482}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 2.7}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 6.49}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 63.4}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.755}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.57}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 10}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 7.48}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 43.6}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 107}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.638}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.25}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 87.9}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 87.9}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.5}, {"name": "Fluazinam", "categories": ["air"], "amount": 289}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 105}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 743}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water"], "amount": 2260}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 7.99}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99}, {"name": "Fludioxonil", "categories": ["air"], "amount": 23.7}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 9.31}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 69.8}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 275}, {"name": "Fludioxonil", "categories": ["water"], "amount": 275}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.3}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.87}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 618}, {"name": "Fluorene", "categories": ["air"], "amount": 0.0118}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 7.12}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 4.11}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.164}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 30.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0314}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0314}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 4.68e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.907}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.98e-10}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0854}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00758}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.997}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air"], "amount": 1.3e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Furfural", "categories": ["air"], "amount": 0.00703}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 0.207}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.589}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.28}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.351}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water"], "amount": 2.39}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.85}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 32.1}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 32.1}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air"], "amount": 6.53e-09}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.53e-09}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 10.8}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "Hexane", "categories": ["water"], "amount": 0.141}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.37}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.06}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.0226}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water"], "amount": 93.4}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.5e-06}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.302}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.54e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.54e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 6.68e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.155}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.000362}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.000362}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.00621}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.26}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 6.21}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 0.674}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.79}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.95}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Imidacloprid", "categories": ["water"], "amount": 9.16}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72}, {"name": "Indoxacarb", "categories": ["air"], "amount": 11.8}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 34}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 6.11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.49}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 1.71e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.71e-08}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.0373}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0373}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.04e-05}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.175}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 4.85}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 598}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 68.9}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 423}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 48100}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 48100}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 48100}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.00867}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.45}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.0463}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0463}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0463}, {"name": "Lead II", "categories": ["air"], "amount": 0.204}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.204}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0236}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.558}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.558}, {"name": "Lead II", "categories": ["soil"], "amount": 0.558}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.606}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.606}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 6.17e-22}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.606}, {"name": "Lead II", "categories": ["water"], "amount": 0.606}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.538}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 24.6}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.928}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0965}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.63}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.63}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.183}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 6}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 12.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.293}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0307}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.5}, {"name": "Mancozeb", "categories": ["air"], "amount": 14.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 56.7}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 78}, {"name": "Mancozeb", "categories": ["water"], "amount": 78}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.2}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 9.02e-07}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 3.29}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.29}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.29}, {"name": "Mercury II", "categories": ["air"], "amount": 17.2}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 17.2}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 47}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 47}, {"name": "Mercury II", "categories": ["soil"], "amount": 47}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.04e-19}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water"], "amount": 49.8}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.292}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 0.17}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 0.601}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.347}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.99}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 3.34}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 0.0683}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.202}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00275}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.81e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0292}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.48e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000289}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.534}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air"], "amount": 0.000132}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5e-06}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water"], "amount": 0.00493}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.21}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 28}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 8.61}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 47.7}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water"], "amount": 78.6}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.371}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.41}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 21.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 78.6}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 242}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 242}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.000379}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000379}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 8.04e-05}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water"], "amount": 0.0283}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.000365}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.72}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00341}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.0078}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.0078}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.753}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.89}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air"], "amount": 0.063}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.063}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 6.18e-06}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water"], "amount": 0.292}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.327}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 9.37}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 61.8}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 147}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 147}, {"name": "Metolachlor", "categories": ["water"], "amount": 147}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.41}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 149}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 295}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 772}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 520}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 3000}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 5070}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 5070}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 111}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.61}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.0612}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0612}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0612}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.156}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.156}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.134}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.37}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.37}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.37}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9e-20}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.41}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 3.13}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.288}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 4.55}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.000708}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 67.7}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 4.7}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Nickel II", "categories": ["air"], "amount": 16.1}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 16.1}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 6.6}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 41.6}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 41.6}, {"name": "Nickel II", "categories": ["soil"], "amount": 41.6}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 46}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 46}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.7e-18}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 46}, {"name": "Nickel II", "categories": ["water"], "amount": 46}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.125}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 0.328}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.27}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.87}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.00135}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.76}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.82}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.0156}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.0641}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.73}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 3.04}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.329}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 0.931}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.00485}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 13}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.033}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0129}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 38.1}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.183}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.692}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.63}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 176}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 176}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air"], "amount": 6.29e-06}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 6.29e-06}, {"name": "Pentane", "categories": ["water"], "amount": 7.18}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 5.08}, {"name": "Permethrin", "categories": ["water"], "amount": 2870}, {"name": "Phenanthrene", "categories": ["air"], "amount": 0.136}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 57}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air"], "amount": 0.00867}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00867}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.23e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.969}, {"name": "Phenol", "categories": ["water"], "amount": 0.969}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.136}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.136}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 19.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 5.52}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 45.2}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 8.88}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 33.2}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 60.6}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00054}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 15.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.000949}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 26.1}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 3.81e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.609}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.01e-05}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.24}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.84}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.455}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.196}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 31.7}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 13.2}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.0541}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 429}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.22}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 17.4}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.0201}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 0.0302}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air"], "amount": 0.000176}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.000176}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 0.102}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 5.1e-05}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.102}, {"name": "Propanal", "categories": ["water"], "amount": 0.102}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air"], "amount": 0.000117}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 5.28e-06}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water"], "amount": 0.00942}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 9.32}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 0.332}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.171}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 3.36}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 15.8}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water"], "amount": 74.9}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.32e-08}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.157}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0218}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.86e-06}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water"], "amount": 0.116}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.000651}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.000214}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.0706}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.91}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 8.24}, {"name": "Pyrene", "categories": ["air"], "amount": 1.18}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1810}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 245}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.0358}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 8.05}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.669}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.03}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 4.49}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 28.3}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 235}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2700}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2700}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.147}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 15.9}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.87}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.0405}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 1.75}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75}, {"name": "Selenium IV", "categories": ["air"], "amount": 5.47}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 5.47}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.9}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 13.8}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 13.8}, {"name": "Selenium IV", "categories": ["soil"], "amount": 13.8}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 5.84e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water"], "amount": 15.3}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0962}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.268}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.41}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 46.5}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46.5}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 46.5}, {"name": "Silver I", "categories": ["air"], "amount": 167}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 57.2}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 439}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 439}, {"name": "Silver I", "categories": ["soil"], "amount": 439}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 485}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 485}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 3.89e-18}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 485}, {"name": "Silver I", "categories": ["water"], "amount": 485}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.65}, {"name": "Simazine", "categories": ["air"], "amount": 11.9}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 5.66}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 33.1}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 57.7}, {"name": "Simazine", "categories": ["water"], "amount": 57.7}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.00158}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.00158}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 4.16e-26}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water"], "amount": 0.00822}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 19.9}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.86e-06}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.396}, {"name": "Styrene", "categories": ["water"], "amount": 0.396}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 36}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.285}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.285}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.209}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.52}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.52}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.83}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 13.1}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water"], "amount": 40.5}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 72.2}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 39.2}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 227}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 391}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 391}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 83.4}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 228}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 93.7}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 685}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 2350}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 72.6}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.91}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 22.2}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.00014}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.23}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 9.1}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1}, {"name": "Thallium I", "categories": ["air"], "amount": 21}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 21}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 21.8}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 47.7}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 47.7}, {"name": "Thallium I", "categories": ["soil"], "amount": 47.7}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 53}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 53}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.01e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 53}, {"name": "Thallium I", "categories": ["water"], "amount": 53}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 0.538}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.538}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.41}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.737}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 5.16}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiabendazole", "categories": ["water"], "amount": 15.1}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.55}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 9.32e-09}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water"], "amount": 9.04}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 12.6}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 79.2}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 147}, {"name": "Thiodicarb", "categories": ["water"], "amount": 147}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.812}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 10.4}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 15.1}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 3.9}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9}, {"name": "Thiram", "categories": ["air"], "amount": 5.91}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 4.12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 19.8}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 468}, {"name": "Thiram", "categories": ["water"], "amount": 468}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 0.37}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.37}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.37}, {"name": "Tin ion", "categories": ["air"], "amount": 1.6}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.6}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.213}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 4.38}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 4.38}, {"name": "Tin ion", "categories": ["soil"], "amount": 4.38}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 3.53e-20}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water"], "amount": 4.77}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.72e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.139}, {"name": "Toluene", "categories": ["water"], "amount": 0.139}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.000153}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.000153}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.1e-05}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.345}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 36.6}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 715}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 0.171}, {"name": "Triallate", "categories": ["air"], "amount": 0.164}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.66}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 86.9}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 181}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 74.1}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 192}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1630}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.507}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 7.83}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.1e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.17}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.84}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 255}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 4.9e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.00133}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 12}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1500}, {"name": "Triflumuron", "categories": ["air"], "amount": 4670}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 2530}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 14100}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 22200}, {"name": "Triflumuron", "categories": ["water"], "amount": 22200}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0391}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.438}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.61}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 35.4}, {"name": "Trifluralin", "categories": ["water"], "amount": 35.4}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.675}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.574}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.456}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.13e-11}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.0319}, {"name": "Urea", "categories": ["water"], "amount": 0.0319}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 17.9}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.9}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.9}, {"name": "Vanadium V", "categories": ["air"], "amount": 61.9}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 61.9}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 24.4}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 161}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 161}, {"name": "Vanadium V", "categories": ["soil"], "amount": 161}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 178}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 178}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 7.82e-17}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 178}, {"name": "Vanadium V", "categories": ["water"], "amount": 178}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.545}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Xylene", "categories": ["water"], "amount": 0.155}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 259}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 17.3}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.3}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.3}, {"name": "Zinc II", "categories": ["air"], "amount": 71.1}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 71.1}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 13.3}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 192}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 192}, {"name": "Zinc II", "categories": ["soil"], "amount": 192}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.13e-16}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 211}, {"name": "Zinc II", "categories": ["water"], "amount": 211}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.25}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 52.9}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 4.4e-06}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.492}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.06e-05}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.525}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.29e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.29e-05}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.61e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.0067}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air"], "amount": 0.241}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 0.241}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 4.62e-05}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 1.12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.38}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "ecotoxicity: marine", "marine ecotoxicity potential (METP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.831}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.141}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.00732}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.00125}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.145}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0199}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.105}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "2,4-D", "categories": ["water"], "amount": 0.145}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0711}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.0128}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 0.0883}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 0.0883}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0711}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.0631}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.0128}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 0.0883}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.00603}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.237}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.237}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.616}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0054}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.00144}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00073}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.000314}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000314}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.000997}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.000299}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 0.332}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.0124}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0026}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0026}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.007}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00155}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.00425}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.0485}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.0485}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 11.7}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.63}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0446}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.007}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.0395}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.0492}, {"name": "Acephate", "categories": ["water"], "amount": 0.0492}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.00512}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00512}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0716}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.00944}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000141}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.02e-05}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.0168}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00238}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air"], "amount": 0.000595}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.000595}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.000894}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water"], "amount": 0.000503}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.00283}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00283}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.00388}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00239}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.151}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 0.0853}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air"], "amount": 1.34}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.34}, {"name": "Acrolein", "categories": ["water"], "amount": 3.24}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.0131}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00186}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0034}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0034}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.0445}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.255}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.052}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.99}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.98}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0195}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0195}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.62}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.00546}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9640}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 4960}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 303}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 16200}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.93}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.323}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.59}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air"], "amount": 0.00107}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.139}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water"], "amount": 0.0257}, {"name": "Anthracene", "categories": ["air"], "amount": 4.65}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 306}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water"], "amount": 28.9}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 860000}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860000}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 860000}, {"name": "Antimony ion", "categories": ["air"], "amount": 797000}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 797000}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 212000}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 657000}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 657000}, {"name": "Antimony ion", "categories": ["soil"], "amount": 657000}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 730000}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 730000}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1520000}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 730000}, {"name": "Antimony ion", "categories": ["water"], "amount": 730000}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 187000}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 187000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 187000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 171000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 171000}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 13600}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 135000}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 135000}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 135000}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 148000}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 148000}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 347000}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 148000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 148000}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.67}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.24}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water"], "amount": 14.9}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0375}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.143}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 13.1}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 0.011}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.75}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.26}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 13}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 13}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 18000}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18000}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 18000}, {"name": "Barium II", "categories": ["air"], "amount": 18200}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8730}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 18700}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 18700}, {"name": "Barium II", "categories": ["soil"], "amount": 18700}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 20800}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 20800}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 28900}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 20800}, {"name": "Barium II", "categories": ["water"], "amount": 20800}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.00157}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0296}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0389}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.0132}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0239}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.00305}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 58}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 151}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0233}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0233}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0395}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air"], "amount": 0.00235}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.00235}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.089}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water"], "amount": 0.00485}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.451}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.0377}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.00563}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.66}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.66}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 11}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 21.9}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 26.9}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 26.9}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 12.2}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.00117}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.00336}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.000405}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0322}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.00699}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 94000}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 94000}, {"name": "Beryllium II", "categories": ["air"], "amount": 72800}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 72800}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1700}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 25300}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 25300}, {"name": "Beryllium II", "categories": ["soil"], "amount": 25300}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 27700}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 27700}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 180000}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 27700}, {"name": "Beryllium II", "categories": ["water"], "amount": 27700}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6950}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 11.8}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 60}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4150}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4150}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2520}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1470}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 27.5}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 43.7}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2500}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2500}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.49}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 0.0742}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.00164}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.00138}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.00353}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.977}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.23}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.23}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 13.5}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.971}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.00499}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air"], "amount": 0.000583}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000583}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.00295}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water"], "amount": 0.000557}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.0181}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0296}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.00305}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.49}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 11.1}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 23600}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23600}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 23600}, {"name": "Cadmium II", "categories": ["air"], "amount": 17700}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 17700}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1020}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4510}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4510}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4510}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 5000}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 5000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 46200}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 5000}, {"name": "Cadmium II", "categories": ["water"], "amount": 5000}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.16}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.512}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.42}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.42}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.24}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.46}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.54}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.54}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.039}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.32}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.263}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.137}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Carboxin", "categories": ["air"], "amount": 1.01}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.764}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.44}, {"name": "Carboxin", "categories": ["water"], "amount": 1.44}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 0.00941}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00133}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 485}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 18}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 139}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 795}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 795}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 795}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air"], "amount": 7.51}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.51}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 23.2}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water"], "amount": 5.16}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 0.318}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.0223}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 5.79}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.0296}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.00255}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 0.323}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 0.964}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 0.214}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.176}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water"], "amount": 0.0469}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 0.124}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 0.124}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.215}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 0.0572}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 186}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 182}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 80.8}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 193}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 193}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 176}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 104}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 337}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2680}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2680}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 4.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.907}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.0799}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 2990}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2990}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2990}, {"name": "Chromium III", "categories": ["air"], "amount": 2220}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2220}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 170}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 469}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 469}, {"name": "Chromium III", "categories": ["soil"], "amount": 469}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 520}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 520}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5830}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 520}, {"name": "Chromium III", "categories": ["water"], "amount": 520}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 410000}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 410000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 410000}, {"name": "Chromium VI", "categories": ["air"], "amount": 369000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 369000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 101000}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 279000}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 279000}, {"name": "Chromium VI", "categories": ["soil"], "amount": 279000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 309000}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 309000}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 728000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 309000}, {"name": "Chromium VI", "categories": ["water"], "amount": 309000}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 2.88}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.0504}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.0327}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0387}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 9630}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9630}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9630}, {"name": "Cobalt II", "categories": ["air"], "amount": 7420}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 7420}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 273}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2450}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2450}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2450}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2710}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 2710}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 18700}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2710}, {"name": "Cobalt II", "categories": ["water"], "amount": 2710}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 229000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 229000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 229000}, {"name": "Copper ion", "categories": ["air"], "amount": 175000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 175000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5560}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 53500}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 53500}, {"name": "Copper ion", "categories": ["soil"], "amount": 53500}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 59000}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 59000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 447000}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 59000}, {"name": "Copper ion", "categories": ["water"], "amount": 59000}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air"], "amount": 0.00063}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.00063}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.331}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water"], "amount": 0.0105}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.42}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.68e-06}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.68e-06}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0342}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000944}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.68e-06}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.12e-07}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.00346}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 151}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.0541}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.000273}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 232}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 12400}, {"name": "Cypermethrin", "categories": ["water"], "amount": 12400}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.167}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.049}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.497}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00127}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.122}, {"name": "Decanoic acid", "categories": ["water"], "amount": 0.0428}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 1140}, {"name": "Deltamethrin", "categories": ["air"], "amount": 852}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 80.7}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 718}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.0078}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.0452}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.957}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.26}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.524}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.0182}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 0.129}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 0.129}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.377}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.54}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0314}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.00448}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.0349}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.0349}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.03}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 0.983}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.69}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.078}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.00224}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 0.0605}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.23e-05}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0179}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0179}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.0496}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.011}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.41e-05}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.41e-05}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 0.000268}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.81e-05}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.2}, {"name": "Difenoconazole", "categories": ["air"], "amount": 21.7}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2.14}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 15.1}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 44.9}, {"name": "Difenoconazole", "categories": ["water"], "amount": 44.9}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 452}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 58.6}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 384}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 933}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 933}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.0163}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.087}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.00631}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.297}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 0.384}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.166}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.0733}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.0381}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0381}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.0232}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.00617}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 45800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 40500}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 40500}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 5940}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 9610}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 9610}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 9610}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 13700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 13700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 136000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 13700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 13700}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00566}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 0.506}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.506}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 0.316}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 0.0745}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 0.482}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.09}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.09}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 0.472}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.3}, {"name": "Diuron", "categories": ["air"], "amount": 10.3}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.84}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.43}, {"name": "Diuron", "categories": ["water"], "amount": 12.3}, {"name": "Dodecanol", "categories": ["water"], "amount": 0.864}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.0208}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.0291}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.00447}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.0262}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 193}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.00395}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.13}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 7.96}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 16.1}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 16.1}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5600}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.0113}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.0113}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.0705}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.0437}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.0177}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0177}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0617}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0185}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 11}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 7.7}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.000901}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water"], "amount": 0.000225}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.00259}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.0182}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.0182}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.0687}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.0384}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.47}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.00262}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00262}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00882}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.00264}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.00829}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.00829}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0216}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.0048}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.0455}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.0101}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.0324}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0178}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.384}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 12.2}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.01}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 0.39}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 0.631}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 141}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 0.225}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.03}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 0.226}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.35}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.35}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 275}, {"name": "Fluazinam", "categories": ["air"], "amount": 236}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 21.7}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 144}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 434}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 434}, {"name": "Fluazinam", "categories": ["water"], "amount": 434}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 16.2}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.2}, {"name": "Fludioxonil", "categories": ["air"], "amount": 12.8}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 5.8}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 22.8}, {"name": "Fludioxonil", "categories": ["water"], "amount": 22.8}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 41}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Fluoranthene", "categories": ["air"], "amount": 14.6}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 57.9}, {"name": "Fluorene", "categories": ["air"], "amount": 0.164}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 0.329}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 0.924}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.0136}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.3}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.025}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.025}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.0237}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00847}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0012}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0237}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0112}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air"], "amount": 2.54e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.54e-05}, {"name": "Furfural", "categories": ["air"], "amount": 0.00776}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.00726}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 0.174}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.145}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.00726}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0923}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.00835}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.0569}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.95}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.16}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.16}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air"], "amount": 9.98e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 9.98e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 0.835}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0629}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water"], "amount": 0.00162}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.242}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.0375}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 13.5}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 10.1}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.27}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.171}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.00553}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.000388}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.000388}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.106}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0037}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0527}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0527}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000148}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 0.189}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.515}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 0.554}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.554}, {"name": "Imidacloprid", "categories": ["air"], "amount": 0.558}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.577}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Imidacloprid", "categories": ["water"], "amount": 0.76}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Indoxacarb", "categories": ["air"], "amount": 27.7}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 0.838}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 6.58}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.338}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air"], "amount": 2.8e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.8e-07}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.00644}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.00644}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0188}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.00418}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.268}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.405}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26300}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 474}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 553}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 10700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 10700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 10700}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.0185}, {"name": "Lauric acid", "categories": ["water"], "amount": 0.0205}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 762}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 762}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 762}, {"name": "Lead II", "categories": ["air"], "amount": 556}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.95}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 93.4}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 93.4}, {"name": "Lead II", "categories": ["soil"], "amount": 93.4}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 101}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 101}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1500}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 101}, {"name": "Lead II", "categories": ["water"], "amount": 101}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.0299}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 130}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.0774}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0629}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.00413}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 0.0389}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 0.0389}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.317}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.0105}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.332}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.332}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.3}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.00696}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.000731}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.75}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.589}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.13}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.31}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.31}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.606}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0664}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.00848}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 66900}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 66900}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 66900}, {"name": "Mercury II", "categories": ["air"], "amount": 48600}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 48600}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 219}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 9280}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 9280}, {"name": "Mercury II", "categories": ["soil"], "amount": 9280}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 9820}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 9820}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 125000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 9820}, {"name": "Mercury II", "categories": ["water"], "amount": 9820}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.0167}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 0.148}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 0.123}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 0.11}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 0.185}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 0.185}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 0.00664}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.534}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.0048}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0621}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.308}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.624}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.00784}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.00784}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0328}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.00829}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00368}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00368}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.905}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.537}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air"], "amount": 0.000451}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000451}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000713}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water"], "amount": 0.000223}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.57}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.08}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.205}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.13}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water"], "amount": 1.87}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 12.8}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 0.918}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.52}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 20.1}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 20.1}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.00837}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00837}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.0159}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water"], "amount": 0.00765}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.022}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.394}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.0385}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.000722}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.000722}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.000669}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.00206}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.00206}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 0.382}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air"], "amount": 0.012}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.012}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.0312}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water"], "amount": 0.00695}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.0183}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.789}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.14}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water"], "amount": 12.2}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.95}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.846}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.21}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 300}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 291}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43.2}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 249}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 421}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 421}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.0819}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 856}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 856}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 856}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 690}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 690}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 115}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 318}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 318}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 318}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 353}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 353}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1610}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 353}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 353}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.0745}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00684}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 0.0855}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.0737}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.0205}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.0755}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.98}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 69100}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 69100}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 69100}, {"name": "Nickel II", "categories": ["air"], "amount": 54900}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 54900}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3630}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 22900}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 22900}, {"name": "Nickel II", "categories": ["soil"], "amount": 22900}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 25300}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 25300}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 133000}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 25300}, {"name": "Nickel II", "categories": ["water"], "amount": 25300}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.111}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 0.11}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 0.106}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 0.155}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.152}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.228}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.118}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.000226}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0922}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00355}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.485}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.0723}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.752}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 0.374}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.56}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.56}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.187}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.000715}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 0.0956}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.0101}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.36}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air"], "amount": 0.000114}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.000114}, {"name": "Pentane", "categories": ["water"], "amount": 0.0817}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 498}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 18.3}, {"name": "Permethrin", "categories": ["water"], "amount": 287}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.43}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.35}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.0589}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air"], "amount": 0.00849}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00849}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water"], "amount": 0.0237}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 30.7}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 30.7}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.68}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.468}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1.94}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.405}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.418}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.0664}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.0152}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.419}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.0322}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.0601}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.278}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.0379}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 16.8}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 16.8}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 20.3}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.59}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 39.1}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.275}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.00111}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 0.00167}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air"], "amount": 0.0024}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.0024}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.0493}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water"], "amount": 0.00535}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.12}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air"], "amount": 0.000566}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000566}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0019}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water"], "amount": 0.00055}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 0.0755}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.00484}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.34}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.31}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.22}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.22}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.22}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.00593}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00593}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.0156}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.00221}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0046}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0046}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0124}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water"], "amount": 0.00276}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 9.96e-06}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.0204}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0367}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.0185}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 0.465}, {"name": "Pyrene", "categories": ["air"], "amount": 21.5}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 156}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.00199}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 0.757}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.0377}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.8}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 13.2}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.25}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 23.3}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 227}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 227}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.01}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 5.7}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 0.322}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.00362}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 23500}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23500}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 23500}, {"name": "Selenium IV", "categories": ["air"], "amount": 18700}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 18700}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1640}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 7830}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 7830}, {"name": "Selenium IV", "categories": ["soil"], "amount": 7830}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 8670}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 8670}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 45100}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 8670}, {"name": "Selenium IV", "categories": ["water"], "amount": 8670}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0149}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.41}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 652000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 652000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 652000}, {"name": "Silver I", "categories": ["air"], "amount": 487000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 487000}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 15000}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 115000}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 115000}, {"name": "Silver I", "categories": ["soil"], "amount": 115000}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 128000}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 128000}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1280000}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 128000}, {"name": "Silver I", "categories": ["water"], "amount": 128000}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.83}, {"name": "Simazine", "categories": ["air"], "amount": 3.46}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.472}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.78}, {"name": "Simazine", "categories": ["water"], "amount": 4.78}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.000253}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.000253}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.000815}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water"], "amount": 0.000116}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air"], "amount": 9.49e-05}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.49e-05}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.238}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water"], "amount": 0.0072}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 1.99}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.33}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.053}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.053}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.00498}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 0.0363}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 0.0363}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.95}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.152}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.36}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 0.207}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.2}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 19.2}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.17}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 12.6}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 21.6}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21.6}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 253}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 224}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 18}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 132}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 451}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.074}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.22}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.97}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.0746}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0746}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.43}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.12}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 470000}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 470000}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 470000}, {"name": "Thallium I", "categories": ["air"], "amount": 458000}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 458000}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 197000}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 431000}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 431000}, {"name": "Thallium I", "categories": ["soil"], "amount": 431000}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 479000}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 479000}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 781000}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 479000}, {"name": "Thallium I", "categories": ["water"], "amount": 479000}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 0.576}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.576}, {"name": "Thiabendazole", "categories": ["air"], "amount": 0.489}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.0175}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.123}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.358}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.358}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.0682}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 0.968}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water"], "amount": 0.215}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4.98}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.54}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.54}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.719}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 0.655}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.16}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 0.863}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.25}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.25}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 15.3}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.3}, {"name": "Thiram", "categories": ["air"], "amount": 9.15}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.234}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.1}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 26}, {"name": "Thiram", "categories": ["water"], "amount": 26}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 6450}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6450}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6450}, {"name": "Tin ion", "categories": ["air"], "amount": 4840}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 4840}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 60.1}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1230}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1230}, {"name": "Tin ion", "categories": ["soil"], "amount": 1230}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1340}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1340}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 12600}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1340}, {"name": "Tin ion", "categories": ["water"], "amount": 1340}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air"], "amount": 0.000331}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000331}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0857}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water"], "amount": 0.00276}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.00787}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.00787}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.333}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.0185}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.22}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 138}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.144}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 2.22}, {"name": "Triallate", "categories": ["air"], "amount": 1}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.517}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 7.74}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 34.8}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 94.5}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 88.7}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.62}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 135}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.0226}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.649}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.162}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.00635}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.319}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 33.7}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 0.000142}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.16e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.31}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2360}, {"name": "Triflumuron", "categories": ["air"], "amount": 2380}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 511}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 2730}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 4260}, {"name": "Triflumuron", "categories": ["water"], "amount": 4260}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.614}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.979}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.61}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.61}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.13}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.0109}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 0.00342}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.00076}, {"name": "Urea", "categories": ["water"], "amount": 0.00076}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.00566}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 880000}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 880000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 880000}, {"name": "Vanadium V", "categories": ["air"], "amount": 861000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 861000}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 124000}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 819000}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 819000}, {"name": "Vanadium V", "categories": ["soil"], "amount": 819000}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 907000}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 907000}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1580000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 907000}, {"name": "Vanadium V", "categories": ["water"], "amount": 907000}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.0468}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air"], "amount": 0.000165}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000165}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0932}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water"], "amount": 0.00293}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 2020000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020000}, {"name": "Zinc II", "categories": ["air"], "amount": 2270000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 2270000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 196000}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2830000}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2830000}, {"name": "Zinc II", "categories": ["soil"], "amount": 2830000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 3100000}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 3100000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3510000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 3100000}, {"name": "Zinc II", "categories": ["water"], "amount": 3100000}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.93}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.297}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0089}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.000559}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000559}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.316}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.00991}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.000307}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.000307}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00403}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.000414}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air"], "amount": 0.0446}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0446}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.12}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water"], "amount": 0.0267}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 5.78}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "ecotoxicity: terrestrial", "terrestrial ecotoxicity potential (TETP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.802}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.76}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.062}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.695}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0416}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.00206}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.00054}, {"name": "2,4-D", "categories": ["water"], "amount": 0.00054}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 9.63e-08}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 4.67e-09}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 33.3}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 9.63e-08}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 69.5}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.0475}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.0475}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0855}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.798}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00627}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.00194}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.0188}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 34.2}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.072}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.39}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.23e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 9.68e-05}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.411}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.647}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.61}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 813}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00233}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000491}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 7.9e-05}, {"name": "Acephate", "categories": ["water"], "amount": 7.9e-05}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0828}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.339}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.42}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.0151}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 125}, {"name": "Acetic acid", "categories": ["air"], "amount": 87}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 87}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.39e-05}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00669}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air"], "amount": 0.0305}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00445}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water"], "amount": 0.0236}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0609}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.305}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 3.7}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15.6}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 495}, {"name": "Acrolein", "categories": ["air"], "amount": 287}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 287}, {"name": "Acrolein", "categories": ["water"], "amount": 423}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.15e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00425}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air"], "amount": 45.7}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 45.7}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.867}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.13}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 8460}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.3}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 146}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.0173}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 123000}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 63100}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1140}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1180}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 3630}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 58.9}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 8.55}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.42}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.13}, {"name": "Aniline", "categories": ["air"], "amount": 0.621}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.621}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.041}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.622}, {"name": "Aniline", "categories": ["water"], "amount": 0.622}, {"name": "Anthracene", "categories": ["air"], "amount": 34.8}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 28.8}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water"], "amount": 71.1}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 671000}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 671000}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 671000}, {"name": "Antimony ion", "categories": ["air"], "amount": 464000}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 464000}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.33e-13}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 4.14e-13}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 4.14e-13}, {"name": "Antimony ion", "categories": ["soil"], "amount": 4.14e-13}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 4.6e-13}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 4.6e-13}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 9.27e-13}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 4.6e-13}, {"name": "Antimony ion", "categories": ["water"], "amount": 4.6e-13}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 143000}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 143000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 143000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 99000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 99000}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.01e-14}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 9.91e-14}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 9.91e-14}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 9.91e-14}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.09e-13}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.09e-13}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.48e-13}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.09e-13}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.09e-13}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.0174}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 22.7}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14.4}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water"], "amount": 10.1}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0553}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 6.69e-05}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 174}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 5.06e-05}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4680}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.000144}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 0.000137}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.09e-05}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.09e-05}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3520}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3520}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3520}, {"name": "Barium II", "categories": ["air"], "amount": 2440}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2440}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 5.14e-15}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.1e-14}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.1e-14}, {"name": "Barium II", "categories": ["soil"], "amount": 1.1e-14}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.22e-14}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.22e-14}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.68e-14}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.22e-14}, {"name": "Barium II", "categories": ["water"], "amount": 1.22e-14}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.72e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.516}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.000631}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.651}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0639}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 346}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 187}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.582}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.091}, {"name": "Benzene", "categories": ["air"], "amount": 0.0871}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0871}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0427}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water"], "amount": 0.0859}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.922}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0129}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0425}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 48.4}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 78.5}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 78.5}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 76.3}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.445}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.445}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.008}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0333}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0189}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.00268}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.0477}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 512000}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 512000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 512000}, {"name": "Beryllium II", "categories": ["air"], "amount": 354000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 354000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.87e-15}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 4.26e-14}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 4.26e-14}, {"name": "Beryllium II", "categories": ["soil"], "amount": 4.26e-14}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.67e-14}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 4.67e-14}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.65e-13}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.67e-14}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.67e-14}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 148000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 96.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 99.6}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 308}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 308}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 9.79}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22500}, {"name": "Bifenthrin", "categories": ["air"], "amount": 13100}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 222}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 227}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 801}, {"name": "Bifenthrin", "categories": ["water"], "amount": 801}, {"name": "Bisphenol A", "categories": ["water"], "amount": 0.0064}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.51e-05}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 7.52e-07}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 0.00957}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.0859}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.0782}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 466}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 42400}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00331}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 0.000666}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 0.000666}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 217}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.9}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.33}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.862}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air"], "amount": 0.035}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.0015}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water"], "amount": 0.0186}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.0321}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0703}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.368}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2900}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 301}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 299000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 299000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 299000}, {"name": "Cadmium II", "categories": ["air"], "amount": 207000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 207000}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 8.32e-16}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 3.69e-15}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 3.69e-15}, {"name": "Cadmium II", "categories": ["soil"], "amount": 3.69e-15}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 4.09e-15}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 4.09e-15}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.06e-14}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 4.09e-15}, {"name": "Cadmium II", "categories": ["water"], "amount": 4.09e-15}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9490}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 12.7}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 5.77}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 5.77}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 10300}, {"name": "Carbendazim", "categories": ["air"], "amount": 8320}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.138}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 0.0873}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 0.0417}, {"name": "Carbendazim", "categories": ["water"], "amount": 0.0417}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 372}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.853}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 7.49}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4270}, {"name": "Carboxin", "categories": ["air"], "amount": 2950}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.666}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.461}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 0.242}, {"name": "Carboxin", "categories": ["water"], "amount": 0.242}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00159}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 163000}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 202}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 199}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 123}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 123}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 123}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 265000}, {"name": "Chloramine", "categories": ["air"], "amount": 219000}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 219000}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.74e-07}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water"], "amount": 3.26e-06}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1680}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 8.8e-06}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 6400}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 6400}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.68e-06}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 0.00068}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air"], "amount": 0.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.219}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water"], "amount": 0.462}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 330}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 55.7}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 55.7}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.413}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 6.87}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 22400}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 21800}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 9330}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9770}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 8820}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 8820}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 6180}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1650}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 786}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 251}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.15e-06}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 65300}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 65300}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 65300}, {"name": "Chromium III", "categories": ["air"], "amount": 45200}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 45200}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.94e-16}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.36e-16}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.36e-16}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.36e-16}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 5.95e-16}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 5.95e-16}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.12e-15}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 5.95e-16}, {"name": "Chromium III", "categories": ["water"], "amount": 5.95e-16}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 221000}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 221000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 221000}, {"name": "Chromium VI", "categories": ["air"], "amount": 153000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 153000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 8.28e-14}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.29e-13}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.29e-13}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.29e-13}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.54e-13}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 2.54e-13}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 5.85e-13}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.54e-13}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.54e-13}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 9.78}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 22}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0329}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 63800}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63800}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63800}, {"name": "Cobalt II", "categories": ["air"], "amount": 44200}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 44200}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.55e-16}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.29e-15}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.29e-15}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.29e-15}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.53e-15}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 2.53e-15}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.5e-14}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.53e-15}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.53e-15}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1880000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1880000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1880000}, {"name": "Copper ion", "categories": ["air"], "amount": 1300000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.23e-15}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.02e-14}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.02e-14}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.02e-14}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 5.54e-14}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 5.54e-14}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.51e-13}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 5.54e-14}, {"name": "Copper ion", "categories": ["water"], "amount": 5.54e-14}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air"], "amount": 0.0432}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0432}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.0138}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water"], "amount": 0.0466}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.341}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.000203}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000646}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.73e-05}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.27e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1740}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.12e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95800}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 917}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 2830}, {"name": "Cypermethrin", "categories": ["water"], "amount": 2830}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.868}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.04e-05}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 77}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00507}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Decanoic acid", "categories": ["water"], "amount": 0.0114}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 19600}, {"name": "Deltamethrin", "categories": ["air"], "amount": 14700}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1380}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3700}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.14e-12}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.754}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 2.87}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.00301}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.647}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.32e-05}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.32e-05}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 36.9}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 114}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 282}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.000695}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.55e-06}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.55e-06}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1060}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 32.5}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 609}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.923}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Diethanolamine", "categories": ["water"], "amount": 5.94e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 3.49}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00415}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00415}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 242}, {"name": "Diethylamine", "categories": ["air"], "amount": 186}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 186}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.037}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.0767}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.968}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.968}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 7.44e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.000149}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 20400}, {"name": "Difenoconazole", "categories": ["air"], "amount": 16600}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 0.0715}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 0.0654}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0503}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.0503}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 489000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1240}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1040}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 692}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 692}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.741}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.0684}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.302}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 8.15}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 10100}, {"name": "Dimethoate", "categories": ["air"], "amount": 2350}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 7.52}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.232}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.155}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air"], "amount": 888}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 888}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.337}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1610000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1610000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1610000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1420000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1420000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 207000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 330000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 330000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 330000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 210000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 210000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 484000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 210000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 210000}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00217}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 424}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.33e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 6.6e-07}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 6.6e-07}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.114}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 28600}, {"name": "Diuron", "categories": ["air"], "amount": 20400}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.59}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.78}, {"name": "Diuron", "categories": ["water"], "amount": 2.55}, {"name": "Dodecanol", "categories": ["water"], "amount": 7.62}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.215}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 6.87e-05}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.18e-08}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.47}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 468}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 16}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 6710}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 148}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 58.9}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 58.9}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11300}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.444}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.444}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.111}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.194}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.929}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.929}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.184}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.387}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 13.1}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 18}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air"], "amount": 0.072}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0262}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 276}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 5.61e-06}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.53e-11}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.53e-11}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.27}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 14.4}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1520}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.406}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 214}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 214}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 214}, {"name": "Ethylamine", "categories": ["air"], "amount": 168}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 168}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0309}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.064}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.000108}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.000225}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.455}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.57}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.13e-05}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 6.64e-07}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.177}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 638}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.483}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 8.99}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2710}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 729}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 26.8}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 26.8}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 206000}, {"name": "Fluazinam", "categories": ["air"], "amount": 145000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1240}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1140}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 900}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 900}, {"name": "Fluazinam", "categories": ["water"], "amount": 900}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 12600}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12600}, {"name": "Fludioxonil", "categories": ["air"], "amount": 8730}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 1.15}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.45}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.45}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 70900}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 389}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.04}, {"name": "Fluoranthene", "categories": ["air"], "amount": 98.9}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 80.1}, {"name": "Fluorene", "categories": ["air"], "amount": 1.82}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.08}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 190}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 2.06e-06}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 25800}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 142}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air"], "amount": 10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.0506}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.889}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air"], "amount": 66.8}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 66.8}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 4.58e-06}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water"], "amount": 0.000909}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 7.53e-09}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0062}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0939}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 0.00607}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00607}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00607}, {"name": "Furan", "categories": ["air"], "amount": 0.00245}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00245}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 735}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 573}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.26e-10}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.13e-05}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.27e-11}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2440}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1980}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 0.00799}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 0.00799}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air"], "amount": 2.07e-05}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.07e-05}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 256}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air"], "amount": 0.000196}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000196}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.37e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water"], "amount": 0.000194}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.00371}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.379}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 602}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 367}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water"], "amount": 1360}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00795}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0955}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.03}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.03}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0143}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0387}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.178}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000785}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4320}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 5.99e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.17e-10}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Imidacloprid", "categories": ["water"], "amount": 1.98e-10}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 7710}, {"name": "Indoxacarb", "categories": ["air"], "amount": 6020}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 9.87}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.0103}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.302}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-05}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air"], "amount": 88}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 88}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.216}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.2}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 20.2}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 312000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5510}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5640}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 18700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 18700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 18700}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.866}, {"name": "Lauric acid", "categories": ["water"], "amount": 0.00154}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 67200}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67200}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 67200}, {"name": "Lead II", "categories": ["air"], "amount": 46500}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 46500}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.26e-18}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.7e-17}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.7e-17}, {"name": "Lead II", "categories": ["soil"], "amount": 7.7e-17}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 8.37e-17}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 8.37e-17}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 8.95e-16}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 8.37e-17}, {"name": "Lead II", "categories": ["water"], "amount": 8.37e-17}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.93e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5100}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.04e-07}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 626}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 6.59e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.1e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.1e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.000589}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.000883}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.000883}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 43}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.18e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.05e-05}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 44400}, {"name": "Mancozeb", "categories": ["air"], "amount": 36600}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.000845}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.59e-05}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 9.45e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 9.45e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.000868}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0677}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.000731}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.84e-13}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2180000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2180000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2180000}, {"name": "Mercury II", "categories": ["air"], "amount": 1490000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1490000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.63e-16}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 6.92e-15}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 6.92e-15}, {"name": "Mercury II", "categories": ["soil"], "amount": 6.92e-15}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 7.32e-15}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 7.32e-15}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 6.91e-14}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 7.32e-15}, {"name": "Mercury II", "categories": ["water"], "amount": 7.32e-15}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.27}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 702}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 702}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 455}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 0.82}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 0.347}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 0.347}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 45.5}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.000275}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.000191}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.02}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.358}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0492}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0998}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.0416}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.0416}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.806}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.41}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Methanol", "categories": ["air"], "amount": 0.122}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.122}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.00305}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water"], "amount": 0.0422}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 96.2}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 32500}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.422}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 0.206}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water"], "amount": 0.0678}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 5.42}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 15800}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 12800}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 0.0597}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 0.0575}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 0.0517}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 0.0517}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.4}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.4}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.303}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.2}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.23}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.55}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.0199}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air"], "amount": 55.8}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 55.8}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 566}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 40.4}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 397}, {"name": "Methylamine", "categories": ["air"], "amount": 305}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 305}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water"], "amount": 0.216}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 5890}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 18.4}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 15.7}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water"], "amount": 11.3}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 40000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.21}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 0.856}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090000}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 899000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 6.48e-05}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.81e-05}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.81e-05}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.85}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 2270}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2270}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2270}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1570}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1570}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.31e-17}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.3e-16}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.3e-16}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.3e-16}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.55e-16}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.55e-16}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.07e-15}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.55e-16}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.55e-16}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.014}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00603}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 27.6}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 2.3}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 801}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.584}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.967}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.165}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 606}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 292000}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 292000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 292000}, {"name": "Nickel II", "categories": ["air"], "amount": 202000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 202000}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.25e-15}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.05e-14}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.05e-14}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.05e-14}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.27e-14}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2.27e-14}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.05e-13}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.27e-14}, {"name": "Nickel II", "categories": ["water"], "amount": 2.27e-14}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 645}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 531}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 7.28e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 3.32e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.1e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.1e-08}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.1}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.8}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 176}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.00469}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 21.7}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 5.82e-05}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00085}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.133}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 9.68}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 24.9}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 38.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.35}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.34}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.4}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 4.69e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 276}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.8}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 6.44e-05}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 490}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 69.2}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 69.2}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air"], "amount": 0.0207}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.0207}, {"name": "Pentane", "categories": ["water"], "amount": 0.0196}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11100}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 401}, {"name": "Permethrin", "categories": ["water"], "amount": 1160}, {"name": "Phenanthrene", "categories": ["air"], "amount": 31.3}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 37}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49}, {"name": "Phenol", "categories": ["air"], "amount": 1.18}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.00553}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water"], "amount": 0.0981}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 13}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 13}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 5980}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 5980}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.116}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.136}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 47.2}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 272}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4160}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.187}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.84}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.603}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 10.7}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.4}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 7.34}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00153}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.00909}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.000503}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 77.9}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.378}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 50.4}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 77.3}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 77.3}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 63.8}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 54.6}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 6.77}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3440}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 37.6}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 885}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 3.94e-05}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 4.05e-06}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.06}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06}, {"name": "Propanal", "categories": ["air"], "amount": 0.622}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.622}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.881}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 0.881}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.21}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.881}, {"name": "Propanal", "categories": ["water"], "amount": 0.881}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air"], "amount": 0.0504}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0504}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.003}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water"], "amount": 0.0302}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.00379}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.15}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.536}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.237}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water"], "amount": 0.487}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.0204}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air"], "amount": 51.4}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 51.4}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0154}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water"], "amount": 0.032}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.00326}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.41}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.74}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Pyrene", "categories": ["air"], "amount": 121}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 140}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 232}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.000429}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 119}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 667}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 211}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 267}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 932}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 932}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.000183}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 26.7}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.000889}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 96800}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96800}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 96800}, {"name": "Selenium IV", "categories": ["air"], "amount": 67000}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 67000}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.33e-15}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 6.33e-15}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 6.33e-15}, {"name": "Selenium IV", "categories": ["soil"], "amount": 6.33e-15}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 7.02e-15}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 7.02e-15}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 3.23e-14}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 7.02e-15}, {"name": "Selenium IV", "categories": ["water"], "amount": 7.02e-15}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0594}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.0666}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 10400000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400000}, {"name": "Silver I", "categories": ["air"], "amount": 7180000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7180000}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.29e-14}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 9.9e-14}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 9.9e-14}, {"name": "Silver I", "categories": ["soil"], "amount": 9.9e-14}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.09e-13}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 1.09e-13}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.69e-13}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.09e-13}, {"name": "Silver I", "categories": ["water"], "amount": 1.09e-13}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Simazine", "categories": ["air"], "amount": 9400}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 9.4}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.05}, {"name": "Simazine", "categories": ["water"], "amount": 3.05}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air"], "amount": 15.4}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 15.4}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.32e-21}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water"], "amount": 2.8e-21}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 77.2}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air"], "amount": 0.00511}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00418}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water"], "amount": 0.0139}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 0.00791}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1250}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1490}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1490}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.000647}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.72e-10}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.72e-10}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.61}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2820}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.0907}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.0888}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water"], "amount": 0.0838}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.97}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 99300}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 75900}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 7.63}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 4.7}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.13}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.13}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 178000}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 135000}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.95}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.71}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 7.87}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.00589}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 286}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 47.8}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.313}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.568}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 90600}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90600}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 90600}, {"name": "Thallium I", "categories": ["air"], "amount": 62700}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 62700}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.02e-13}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.22e-13}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.22e-13}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.22e-13}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.47e-13}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 2.47e-13}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 3.99e-13}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.47e-13}, {"name": "Thallium I", "categories": ["water"], "amount": 2.47e-13}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1090}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.00387}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.00354}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.00279}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.00279}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.000621}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 49}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 0.000115}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water"], "amount": 0.0213}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5860}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 977}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 732}, {"name": "Thiodicarb", "categories": ["water"], "amount": 732}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4360}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2770}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 7.32}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.23}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 964}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 964}, {"name": "Thiram", "categories": ["air"], "amount": 564}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.303}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.161}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Thiram", "categories": ["water"], "amount": 1.83}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 86400}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 86400}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 86400}, {"name": "Tin ion", "categories": ["air"], "amount": 59800}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 59800}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 4.89e-17}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.09e-15}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1.09e-15}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 8.23e-15}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.09e-15}, {"name": "Tin ion", "categories": ["water"], "amount": 1.09e-15}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air"], "amount": 0.0281}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0281}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.00928}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water"], "amount": 0.0301}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.248}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.248}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.116}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.247}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 871}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 18.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.00155}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 104}, {"name": "Triallate", "categories": ["air"], "amount": 47}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 70.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 0.0748}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 185000}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 152000}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.0075}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 0.0036}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.24}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.00144}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0529}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1.77}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 904}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 9.6e-07}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 1.8e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 25.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6730000}, {"name": "Triflumuron", "categories": ["air"], "amount": 4840000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 84000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 58600}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 11400}, {"name": "Triflumuron", "categories": ["water"], "amount": 11400}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 31.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 31.8}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000264}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.00987}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 6.86e-07}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water"], "amount": 1.29e-05}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.000198}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 292000}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 292000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 292000}, {"name": "Vanadium V", "categories": ["air"], "amount": 202000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 202000}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.02e-13}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 6.73e-13}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 6.73e-13}, {"name": "Vanadium V", "categories": ["soil"], "amount": 6.73e-13}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 7.44e-13}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 7.44e-13}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.27e-12}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 7.44e-13}, {"name": "Vanadium V", "categories": ["water"], "amount": 7.44e-13}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air"], "amount": 0.0139}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0139}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.00551}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water"], "amount": 0.0183}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95800}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 211000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 211000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 211000}, {"name": "Zinc II", "categories": ["air"], "amount": 146000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 146000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.46e-13}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.11e-12}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.11e-12}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.11e-12}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.32e-12}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 2.32e-12}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.61e-12}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.32e-12}, {"name": "Zinc II", "categories": ["water"], "amount": 2.32e-12}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 74.4}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.00806}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0267}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.0187}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.062}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.0351}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.01}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.034}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air"], "amount": 535}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 535}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.405}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water"], "amount": 0.84}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 18.7}]}, {"unit": "kg oil-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "energy resources: non-renewable, fossil", "fossil fuel potential (FFP)"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.22}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.42}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.22}]}, {"unit": "kg P-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "eutrophication: freshwater", "freshwater eutrophication potential (FEP)"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "eutrophication: marine", "marine eutrophication potential (MEP)"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.776}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water"], "amount": 0.23}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water"], "amount": 0.0671}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.297}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.0902}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.297}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "human toxicity: carcinogenic", "human toxicity potential (HTPc)"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00065}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.065}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.081}, {"name": "Acephate", "categories": ["water"], "amount": 0.081}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.00325}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.0313}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.434}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.4}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 49.8}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 9.72}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.72}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.216}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1.45}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 41.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 41.4}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air"], "amount": 0.0322}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.0322}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.7e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water"], "amount": 0.0242}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 22400}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22400}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 22400}, {"name": "Arsenic ion", "categories": ["air"], "amount": 20900}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 20900}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1730}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 16100}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 16100}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 16100}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 17700}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 17700}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 40500}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 17700}, {"name": "Arsenic ion", "categories": ["water"], "amount": 17700}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.27}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 0.735}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.54}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.54}, {"name": "Atrazine", "categories": ["water"], "amount": 1.54}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0765}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0765}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0107}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.33}, {"name": "Benzene", "categories": ["air"], "amount": 1.44}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.158}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.354}, {"name": "Benzene", "categories": ["water"], "amount": 0.354}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.0375}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.145}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0284}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0961}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 93.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 93.8}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1150}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 36.5}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 36.5}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 23.8}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.8}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.8}, {"name": "Beryllium II", "categories": ["air"], "amount": 268}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 268}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.54}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.06}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.06}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 0.867}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 0.867}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 4.86}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 0.867}, {"name": "Beryllium II", "categories": ["water"], "amount": 0.867}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air"], "amount": 1.33}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.33}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 171}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 171}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 171}, {"name": "Cadmium II", "categories": ["air"], "amount": 310}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 310}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 338}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 15.6}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 15.6}, {"name": "Cadmium II", "categories": ["soil"], "amount": 15.6}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 9.89}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 9.89}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 79}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9.89}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.89}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.0216}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.84}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 3.27}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 3.27}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.293}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.29}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air"], "amount": 1.26}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.26}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.369}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water"], "amount": 0.862}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 0.0799}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.0212}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.0361}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 0.097}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 0.097}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 743000}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 743000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 743000}, {"name": "Chromium VI", "categories": ["air"], "amount": 667000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 667000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 184000}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 500000}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 500000}, {"name": "Chromium VI", "categories": ["soil"], "amount": 500000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 548000}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 548000}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1270000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 548000}, {"name": "Chromium VI", "categories": ["water"], "amount": 548000}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 241}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0637}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 80.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 39.9}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 7.95}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 27.1}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.0566}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.0566}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.24e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.0109}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 108000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 108000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 108000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 99600000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 99600000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 23200000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 27500000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 27500000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 27500000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 227000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 227000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 79300000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 227000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 227000000}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 4}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0676}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0676}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 5.07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.244}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.244}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.652}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.223}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.223}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.78}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 13.4}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 3.2e-05}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0012}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.423}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.93}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.3}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.8}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 3.36}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 12.5}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00626}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.137}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00064}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6}, {"name": "Furan", "categories": ["air"], "amount": 95}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 95}, {"name": "Furfural", "categories": ["air"], "amount": 0.29}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air"], "amount": 0.00483}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.00483}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water"], "amount": 0.00265}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.129}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water"], "amount": 10.2}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.172}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.172}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0234}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0553}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.27}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.27}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air"], "amount": 0.128}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.128}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 35.7}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.7}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.7}, {"name": "Lead II", "categories": ["air"], "amount": 26.5}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 26.5}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.72}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 6.88}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 6.88}, {"name": "Lead II", "categories": ["soil"], "amount": 6.88}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.44}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 1.44}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 16.7}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.44}, {"name": "Lead II", "categories": ["water"], "amount": 1.44}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 12.5}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.222}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 4210}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4210}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4210}, {"name": "Mercury II", "categories": ["air"], "amount": 3110}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 3110}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 164}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 756}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 756}, {"name": "Mercury II", "categories": ["soil"], "amount": 756}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 734}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 734}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7600}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 734}, {"name": "Mercury II", "categories": ["water"], "amount": 734}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 12.3}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 12.3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0881}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 255}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 255}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 135}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 236}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.88}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.147}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.147}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.0171}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.0549}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.4}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.903}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 1170}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1170}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1170}, {"name": "Nickel II", "categories": ["air"], "amount": 906}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 906}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 210}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 355}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 355}, {"name": "Nickel II", "categories": ["soil"], "amount": 355}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 249}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 249}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1190}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 249}, {"name": "Nickel II", "categories": ["water"], "amount": 249}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.0724}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.849}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 33.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 33.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.0684}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.895}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.93}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.93}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.579}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4.64}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.000638}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.0364}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00525}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.486}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.307}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 114}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 114}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 5120}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 3.53}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0588}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.365}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.968}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.0951}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air"], "amount": 1.28}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.28}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00976}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Styrene", "categories": ["water"], "amount": 0.281}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.523}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.13}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air"], "amount": 0.0134}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0134}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.000339}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water"], "amount": 0.00226}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0111}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0371}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0715}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.407}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.8}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air"], "amount": 0.0204}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.000267}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water"], "amount": 0.00229}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 0.241}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.313}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.313}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00964}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.0338}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "human toxicity: non-carcinogenic", "human toxicity potential (HTPnc)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.414}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.9}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.1}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 3.81}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 5.24}, {"name": "2,4-D", "categories": ["water"], "amount": 5.24}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.105}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 1.88}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 1.88}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0377}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00147}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.9e-06}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00878}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.0297}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.19}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 19300}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 16500}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 620}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 773}, {"name": "Acephate", "categories": ["water"], "amount": 773}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.056}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.545}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Acetone", "categories": ["air"], "amount": 0.0878}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0878}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water"], "amount": 0.0132}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0204}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.131}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 310}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 310}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 310}, {"name": "Acrolein", "categories": ["air"], "amount": 9490}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 9490}, {"name": "Acrolein", "categories": ["water"], "amount": 294}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.74e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water"], "amount": 0.0752}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air"], "amount": 707}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 707}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.85}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 9.16}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.36}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.36}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 36}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 322}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.48}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.1}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 30.4}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.835}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 0.808}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 25.6}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 6.95}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.65}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.361}, {"name": "Aniline", "categories": ["air"], "amount": 5.32}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 5.32}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.00623}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 4.09}, {"name": "Aniline", "categories": ["water"], "amount": 4.09}, {"name": "Anthracene", "categories": ["air"], "amount": 0.0511}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water"], "amount": 0.723}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 42500}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42500}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 42500}, {"name": "Antimony ion", "categories": ["air"], "amount": 38600}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 38600}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 10300}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 30400}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 30400}, {"name": "Antimony ion", "categories": ["soil"], "amount": 30400}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 32200}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 32200}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 65500}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 32200}, {"name": "Antimony ion", "categories": ["water"], "amount": 32200}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 5690000}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 5190000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5190000}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 439000}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 4090000}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 4090000}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 4090000}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4480000}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 4480000}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 10300000}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4480000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4480000}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 6.7}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.9}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.92}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water"], "amount": 6.11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 21000}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 21000}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 21000}, {"name": "Barium II", "categories": ["air"], "amount": 21000}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 21000}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9980}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 21100}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 21100}, {"name": "Barium II", "categories": ["soil"], "amount": 21100}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 23200}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 23200}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 32000}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 23200}, {"name": "Barium II", "categories": ["water"], "amount": 23200}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0841}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0331}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.3}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.331}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 2.75}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 2.75}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0475}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28}, {"name": "Benzene", "categories": ["air"], "amount": 1.22}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.301}, {"name": "Benzene", "categories": ["water"], "amount": 0.301}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.505}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.00398}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.107}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1340}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 126}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 126}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 500}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 27600}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27600}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27600}, {"name": "Beryllium II", "categories": ["air"], "amount": 641000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 641000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 131}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 113}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 113}, {"name": "Beryllium II", "categories": ["soil"], "amount": 113}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 32}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 32}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 179}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 32}, {"name": "Beryllium II", "categories": ["water"], "amount": 32}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 372}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.994}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.21}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 72.7}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 72.7}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 101}, {"name": "Bifenthrin", "categories": ["air"], "amount": 65}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 4.23}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 15.9}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 1970}, {"name": "Bifenthrin", "categories": ["water"], "amount": 1970}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.77}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.96}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.5}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.26}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.6}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.6}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.79}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air"], "amount": 6.67}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.67}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air"], "amount": 0.431}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.431}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.000981}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water"], "amount": 0.0541}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 150000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 150000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 150000}, {"name": "Cadmium II", "categories": ["air"], "amount": 107000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 107000}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 310000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 14300}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 14300}, {"name": "Cadmium II", "categories": ["soil"], "amount": 14300}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 9090}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 9090}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 72500}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9090}, {"name": "Cadmium II", "categories": ["water"], "amount": 9090}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.779}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.9}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.16}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.3}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.3}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.5}, {"name": "Carbendazim", "categories": ["air"], "amount": 29.5}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.05}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Carbendazim", "categories": ["water"], "amount": 1.83}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 140}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 823}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 823}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 215}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 667}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 14}, {"name": "Carboxin", "categories": ["air"], "amount": 12.3}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.249}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.855}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Carboxin", "categories": ["water"], "amount": 1.61}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 3.52e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0152}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air"], "amount": 12.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.73e-05}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water"], "amount": 0.619}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 921}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 4.27}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.861}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water"], "amount": 9.89}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air"], "amount": 21.8}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.96}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water"], "amount": 12.8}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 8.14}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.72}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 10}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 10}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 79.8}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 338}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 88.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.748}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.571}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.571}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.571}, {"name": "Chromium III", "categories": ["air"], "amount": 0.425}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.425}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.0827}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.131}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.131}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.131}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 0.049}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 0.049}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 0.454}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.049}, {"name": "Chromium III", "categories": ["water"], "amount": 0.049}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 5960}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5960}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5960}, {"name": "Chromium VI", "categories": ["air"], "amount": 10700}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 10700}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1410}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 3850}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 3850}, {"name": "Chromium VI", "categories": ["soil"], "amount": 3850}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 4220}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 4220}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 9800}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 4220}, {"name": "Chromium VI", "categories": ["water"], "amount": 4220}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 149}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 149}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 149}, {"name": "Copper ion", "categories": ["air"], "amount": 111}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 111}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 83.4}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 31.3}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 31.3}, {"name": "Copper ion", "categories": ["soil"], "amount": 31.3}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 24.3}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 24.3}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 163}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 24.3}, {"name": "Copper ion", "categories": ["water"], "amount": 24.3}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air"], "amount": 0.18}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00479}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.066}, {"name": "Cumene", "categories": ["water"], "amount": 0.066}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0041}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0438}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.48}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.935}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 0.768}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 21.6}, {"name": "Cypermethrin", "categories": ["water"], "amount": 21.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 25.7}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.04}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 31.3}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 253}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 38}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.2}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4.13}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.59}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.59}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 86.9}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 865}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 42.1}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0958}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0958}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.7}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.88}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 17.3}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 41.9}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 41.9}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 66.2}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 56.2}, {"name": "Dimethoate", "categories": ["air"], "amount": 20.3}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.0765}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 14.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.702}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 255}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 30.3}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 68.3}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 68.3}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 46.2}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.554}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 88.7}, {"name": "Diuron", "categories": ["air"], "amount": 78.7}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 2.03}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.36}, {"name": "Diuron", "categories": ["water"], "amount": 12.1}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.00919}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.61}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 28.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0826}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.321}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.163}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.281}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 7.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 7.06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 7.06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 361}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 553}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 67.6}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 5.47}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 5.47}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 266}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0844}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0844}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0147}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0147}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00288}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0147}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0147}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00143}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 0.244}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2.73}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 22300}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.96}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.31}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.34}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Fipronil", "categories": ["air"], "amount": 1520}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 615}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 1570}, {"name": "Fipronil", "categories": ["water"], "amount": 1570}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.788}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 20.7}, {"name": "Fluorene", "categories": ["air"], "amount": 0.692}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 1.3}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 15.4}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 6.78}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00311}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.447}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00128}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.972}, {"name": "Furan", "categories": ["air"], "amount": 35.5}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 45.6}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 49.2}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 3.53}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.768}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.2}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "Hexane", "categories": ["air"], "amount": 2.2}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.2}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0475}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Hexane", "categories": ["water"], "amount": 1.23}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.504}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 5490}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00218}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0273}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0332}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.104}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 40.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 40.7}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.67}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 0.197}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 0.253}, {"name": "Imazethapyr", "categories": ["water"], "amount": 0.253}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air"], "amount": 57.1}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 2.07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.73}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.73}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 0.113}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 42900}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42900}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 42900}, {"name": "Lead II", "categories": ["air"], "amount": 31800}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 31800}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 5670}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8260}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8260}, {"name": "Lead II", "categories": ["soil"], "amount": 8260}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1730}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 1730}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 20000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1730}, {"name": "Lead II", "categories": ["water"], "amount": 1730}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 495}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.197}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 252}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 9.59}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 21.2}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 21.2}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.086}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.22}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.22}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.0736}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.74}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0272}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.2}, {"name": "Mancozeb", "categories": ["air"], "amount": 47.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2.75}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 1.77}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2.43}, {"name": "Mancozeb", "categories": ["water"], "amount": 2.43}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.00733}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 1710000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1710000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1710000}, {"name": "Mercury II", "categories": ["air"], "amount": 1260000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1260000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 66400}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 307000}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 307000}, {"name": "Mercury II", "categories": ["soil"], "amount": 307000}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 297000}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 297000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 3080000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 297000}, {"name": "Mercury II", "categories": ["water"], "amount": 297000}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.53}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 75}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1530}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.16}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 402}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 402}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 402}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 404}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 404}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 9.31}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 9.31}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2930}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2930}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1550}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2710}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 33.1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33.1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 33.5}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 33.5}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Methanol", "categories": ["air"], "amount": 0.156}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.156}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000666}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water"], "amount": 0.0194}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.22}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 456}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.72}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 9.35}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water"], "amount": 15.4}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00853}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 89.8}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.11}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.342}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.43}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water"], "amount": 3.37}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.7}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 2.42}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.9}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 12.7}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 0.695}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 1.18}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 1.18}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 77.5}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 9.48}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 6530}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6530}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 6530}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 5000}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 5000}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 3130}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1890}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1890}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1890}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1130}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 1130}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 4760}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1130}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1130}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.00213}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.00684}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 213}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.514}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Naphthalene", "categories": ["air"], "amount": 11}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.03}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.206}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 226}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 226}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 226}, {"name": "Nickel II", "categories": ["air"], "amount": 174}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 174}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 40.5}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 68.4}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 68.4}, {"name": "Nickel II", "categories": ["soil"], "amount": 68.4}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 48.1}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 48.1}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 230}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 48.1}, {"name": "Nickel II", "categories": ["water"], "amount": 48.1}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.2}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.2}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0148}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 0.0138}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.172}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.05}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.6}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0604}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 8.97}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.71}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.162}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 2.52}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Permethrin", "categories": ["water"], "amount": 10.8}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "Phenol", "categories": ["air"], "amount": 0.493}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.493}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.000864}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.315}, {"name": "Phenol", "categories": ["water"], "amount": 0.315}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 734}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 734}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.32}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 34.6}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 17.8}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 605}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00317}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.181}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.00406}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.251}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 23.2}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 9.62}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.428}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 6.83}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 22.6}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.399}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 27.9}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.881}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.385}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.477}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1.87}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.4}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 7.72}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water"], "amount": 36.6}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 3.2}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 2.74}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water"], "amount": 14.8}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 7.19}, {"name": "Pyrene", "categories": ["air"], "amount": 0.624}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 11.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.342}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 0.573}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 31.1}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 31.1}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 14.6}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.531}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.608}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.492}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 10.9}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 129000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 129000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 129000}, {"name": "Silver I", "categories": ["air"], "amount": 92400}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 92400}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 186000}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 15200}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 15200}, {"name": "Silver I", "categories": ["soil"], "amount": 15200}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4040}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 4040}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 33800}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4040}, {"name": "Silver I", "categories": ["water"], "amount": 4040}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 418}, {"name": "Simazine", "categories": ["air"], "amount": 344}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 17.3}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 19.3}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 33.5}, {"name": "Simazine", "categories": ["water"], "amount": 33.5}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air"], "amount": 0.855}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.855}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.0046}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water"], "amount": 0.0211}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 32}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 5.51}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water"], "amount": 17.1}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 24.4}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.47}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.52}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1860}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1560}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 62.5}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 280}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 959}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 0.0552}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 342}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 6.15}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 11.9}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 1120000}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1120000}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1120000}, {"name": "Thallium I", "categories": ["air"], "amount": 1090000}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1090000}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 471000}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1030000}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1030000}, {"name": "Thallium I", "categories": ["soil"], "amount": 1030000}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 1140000}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 1140000}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1850000}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 1140000}, {"name": "Thallium I", "categories": ["water"], "amount": 1140000}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air"], "amount": 26.8}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.72}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.72}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 7.5}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.67}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 4.65}, {"name": "Thiodicarb", "categories": ["water"], "amount": 4.65}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.3}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 15.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.905}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.33}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.91}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.91}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 5.23}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23}, {"name": "Thiram", "categories": ["air"], "amount": 11.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.0675}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.208}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 4.91}, {"name": "Thiram", "categories": ["water"], "amount": 4.91}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067}, {"name": "Toluene", "categories": ["air"], "amount": 0.858}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.858}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0184}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water"], "amount": 0.0714}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.318}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.14}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.54}, {"name": "Triallate", "categories": ["air"], "amount": 9.42}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.76}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 72.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 44.1}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 158}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 144}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.78}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 17.9}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 15.8}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.16}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.7}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 128}, {"name": "Trifluralin", "categories": ["water"], "amount": 128}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.381}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 63300}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63300}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 63300}, {"name": "Vanadium V", "categories": ["air"], "amount": 61900}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 61900}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 9120}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 58700}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 58700}, {"name": "Vanadium V", "categories": ["soil"], "amount": 58700}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 64700}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 64700}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 111000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 64700}, {"name": "Vanadium V", "categories": ["water"], "amount": 64700}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.68}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air"], "amount": 1.58}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0182}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water"], "amount": 0.0692}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 1770000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1770000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1770000}, {"name": "Zinc II", "categories": ["air"], "amount": 1970000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1970000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 341000}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2400000}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2400000}, {"name": "Zinc II", "categories": ["soil"], "amount": 2400000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2640000}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 2640000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2970000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2640000}, {"name": "Zinc II", "categories": ["water"], "amount": 2640000}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5.95}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.0062}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.027}]}, {"unit": "kg Co-60-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "ionising radiation", "ionising radiation potential (IRP)"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 0.00292}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00292}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 0.000461}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 0.00292}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 0.00292}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 55.5}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.5}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.5}, {"name": "Americium-241", "categories": ["air"], "amount": 55.5}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 55.5}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 0.00364}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 0.00364}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 0.0482}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 0.00364}, {"name": "Americium-241", "categories": ["water"], "amount": 0.00364}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0491}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.000891}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00473}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water"], "amount": 8.64}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00582}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 10}, {"name": "Caesium-137", "categories": ["water"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["air"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.0127}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 0.0127}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0273}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.0127}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.0127}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00245}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.64}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 3.45}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 4.05e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 4.12e-05}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 207}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 207}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 207}, {"name": "Iodine-129", "categories": ["air"], "amount": 207}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 207}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 155}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 155}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 155}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 155}, {"name": "Iodine-129", "categories": ["water"], "amount": 155}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.03}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 8.48e-06}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0191}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.88e-06}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 4}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 4}, {"name": "Plutonium-238", "categories": ["air"], "amount": 4}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 4}, {"name": "Plutonium-alpha", "categories": ["air", "low population density, long-term"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 4.45}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["air"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 0.00773}, {"name": "Radium-226", "categories": ["water", "ground-, long-term"], "amount": 0.00773}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 0.00773}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.00773}, {"name": "Radium-226", "categories": ["water"], "amount": 0.00773}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00145}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.000236}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water"], "amount": 0.03}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.0282}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 0.0282}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000455}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.0282}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.0282}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 0.000109}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 0.000109}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water"], "amount": 0.0309}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 2.73}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.73}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.73}, {"name": "Thorium-230", "categories": ["air"], "amount": 2.73}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 2.73}, {"name": "Uranium alpha", "categories": ["air", "low population density, long-term"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["air"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["water", "ground-"], "amount": 0.136}, {"name": "Uranium alpha", "categories": ["water", "ground-, long-term"], "amount": 0.136}, {"name": "Uranium alpha", "categories": ["water", "ocean"], "amount": 0.000833}, {"name": "Uranium alpha", "categories": ["water", "surface water"], "amount": 0.136}, {"name": "Uranium alpha", "categories": ["water"], "amount": 0.136}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["air"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "Uranium-234", "categories": ["water", "ground-, long-term"], "amount": 0.145}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 0.00136}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.145}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.145}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["air"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 0.136}, {"name": "Uranium-235", "categories": ["water", "ground-, long-term"], "amount": 0.136}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 0.00203}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.136}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.136}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 0.136}, {"name": "Uranium-238", "categories": ["water", "ground-, long-term"], "amount": 0.136}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 0.000833}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.136}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.136}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 8.55e-06}]}, {"unit": "m2*a crop-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "land use", "agricultural land occupation (LOP)"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -36.75}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}]}, {"unit": "kg Cu-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "material resources: metals/minerals", "surplus ore potential (SOP)"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.169}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.169}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.572}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.131}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0228}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 76.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.32}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.32}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.0951}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0951}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.305}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0108}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0104}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 6.57}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.57}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0488}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.0154}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 83.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 83.8}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 317}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.192}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.00283}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 96.7}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 103}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 103}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 7.09}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 7.09}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.79}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.79}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.0823}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0823}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 8.96}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 5.2}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00916}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00576}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 528}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 528}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 13.3}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.428}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0875}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.0378}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 52.9}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 52.9}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 18.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 18.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 1200}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 5.03}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.03}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 7.78}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 25.2}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 3.97}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.153}]}, {"unit": "kg CFC-11-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "ozone depletion", "ozone depletion potential (ODPinfinite)"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.017}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.017}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.017}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.16}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.85}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.85}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.58}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.58}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.58}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.58}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.58}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.57}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.57}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.57}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.00662}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.00662}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.66}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.66}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 7.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 7.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 7.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 15.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 15.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 15.9}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.04}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.04}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.82}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.82}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.82}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.82}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg PM2.5-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "particulate matter formation", "particulate matter formation potential (PMFP)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.17}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.11}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.29}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.23}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "photochemical oxidant formation: human health", "photochemical oxidant formation potential: humans (HOFP)"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.345}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.131}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.131}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.149}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0653}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.199}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0326}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0326}, {"name": "Acetone", "categories": ["air"], "amount": 0.0218}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Acrolein", "categories": ["air"], "amount": 0.196}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.174}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.0689}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.0689}, {"name": "Benzene", "categories": ["air"], "amount": 0.0363}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0363}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.167}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Butadiene", "categories": ["air"], "amount": 0.323}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.112}, {"name": "Butane", "categories": ["air"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.112}, {"name": "Butanol", "categories": ["air"], "amount": 0.189}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.228}, {"name": "Butene", "categories": ["air"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.228}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.0943}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0943}, {"name": "Cumene", "categories": ["air"], "amount": 0.116}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.102}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.167}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Ethane", "categories": ["air"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00363}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00363}, {"name": "Ethanol", "categories": ["air"], "amount": 0.123}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.123}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0689}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.363}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.134}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.134}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.167}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0109}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Heptane", "categories": ["air"], "amount": 0.127}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.127}, {"name": "Hexane", "categories": ["air"], "amount": 0.145}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.163}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.163}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0266}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0266}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Isoprene", "categories": ["air"], "amount": 0.413}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.413}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0109}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00363}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Methanol", "categories": ["air"], "amount": 0.0471}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.116}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0399}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0399}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Phenol", "categories": ["air"], "amount": -0.0181}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0181}, {"name": "Propanal", "categories": ["air"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.261}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0508}, {"name": "Propane", "categories": ["air"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0508}, {"name": "Propanol", "categories": ["air"], "amount": 0.174}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.424}, {"name": "Propene", "categories": ["air"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.424}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0471}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Styrene", "categories": ["air"], "amount": 0.0181}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0181}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00363}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Toluene", "categories": ["air"], "amount": 0.16}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.105}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.312}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.312}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.283}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.283}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "photochemical oxidant formation: terrestrial ecosystems", "photochemical oxidant formation potential: ecosystems (EOFP)"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.555}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.21}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.21}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.479}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.105}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.304}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.321}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0526}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0526}, {"name": "Acetone", "categories": ["air"], "amount": 0.0351}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "Acrolein", "categories": ["air"], "amount": 0.316}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.316}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.281}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.111}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.111}, {"name": "Benzene", "categories": ["air"], "amount": 0.0585}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0585}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.269}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Butadiene", "categories": ["air"], "amount": 0.52}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.52}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.181}, {"name": "Butane", "categories": ["air"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.181}, {"name": "Butanol", "categories": ["air"], "amount": 0.304}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Butene", "categories": ["air"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.152}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Cumene", "categories": ["air"], "amount": 0.187}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.164}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.269}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.0468}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00585}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00585}, {"name": "Ethanol", "categories": ["air"], "amount": 0.199}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.111}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.111}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.585}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.216}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.216}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.269}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0175}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Heptane", "categories": ["air"], "amount": 0.205}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.205}, {"name": "Hexane", "categories": ["air"], "amount": 0.234}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.263}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.263}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0429}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Isoprene", "categories": ["air"], "amount": 0.666}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.666}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0175}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00585}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Methanol", "categories": ["air"], "amount": 0.076}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.187}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0643}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0643}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Phenol", "categories": ["air"], "amount": -0.0292}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0292}, {"name": "Propanal", "categories": ["air"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.421}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0818}, {"name": "Propane", "categories": ["air"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0818}, {"name": "Propanol", "categories": ["air"], "amount": 0.281}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.684}, {"name": "Propene", "categories": ["air"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.684}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.076}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Styrene", "categories": ["air"], "amount": 0.0292}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0292}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00585}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Toluene", "categories": ["air"], "amount": 0.257}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.17}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.503}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.503}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.456}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.456}]}, {"unit": "cubic meter", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "water use", "water consumption potential (WCP)"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Water", "categories": ["air"], "amount": 1}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg SO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "acidification: terrestrial no LT", "terrestrial acidification potential (TAP) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.552}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.36}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}]}, {"unit": "kg CO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "climate change no LT", "global warming potential (GWP1000) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 193}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 193}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 938}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9620}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2350}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 96}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 635}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8520}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3690}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 13.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 13.8}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7150}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2110}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 179}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 817}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 36}, {"name": "Methane, fossil", "categories": ["air"], "amount": 36}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 36}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 34}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 34}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 15}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 34}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2020}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17900}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9480}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26100}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "ecotoxicity: freshwater no LT", "freshwater ecotoxicity potential (FETP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.000522}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.836}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.11e-05}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.0411}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.203}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.91}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 2.62}, {"name": "2,4-D", "categories": ["water"], "amount": 2.62}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0732}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.154}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0732}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.182}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.154}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0644}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.27}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.27}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0248}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.0144}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.98e-06}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.00477}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.7}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.83e-05}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 4.87e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.0653}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.159}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.00199}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water"], "amount": 14.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0663}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.714}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.89}, {"name": "Acephate", "categories": ["water"], "amount": 0.89}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.96e-05}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.144}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000246}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.000411}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.95e-09}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.169}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air"], "amount": 4.32e-05}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.32e-05}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 6.06e-06}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water"], "amount": 0.00217}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.000193}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.000193}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00874}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.000901}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 0.282}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 5.09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air"], "amount": 0.084}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.084}, {"name": "Acrolein", "categories": ["water"], "amount": 69.4}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.95e-09}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water"], "amount": 0.132}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0236}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0236}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.000599}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.441}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 11.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0228}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0228}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 25}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.759}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 56}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.309}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 341}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 271}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 147}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1100}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 82800}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 35}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.13}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 39.4}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air"], "amount": 0.00401}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00401}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.11e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "Aniline", "categories": ["water"], "amount": 1.05}, {"name": "Anthracene", "categories": ["air"], "amount": 0.197}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 354}, {"name": "Anthracene", "categories": ["water"], "amount": 354}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.231}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.3}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.3}, {"name": "Antimony ion", "categories": ["air"], "amount": 45.2}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 45.2}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 45.6}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 92.1}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 92.1}, {"name": "Antimony ion", "categories": ["soil"], "amount": 92.1}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 340}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 2.19e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 340}, {"name": "Antimony ion", "categories": ["water"], "amount": 340}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.99}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.99}, {"name": "Arsenic ion", "categories": ["air"], "amount": 2.1}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 2.1}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.25}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 2.36}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 2.36}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 2.36}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.15e-20}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water"], "amount": 62.2}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.453}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.83}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14.8}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 85.3}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 179}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 179}, {"name": "Atrazine", "categories": ["water"], "amount": 179}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.452}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.745}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 233}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 0.198}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 27.3}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 156}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 156}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.482}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.482}, {"name": "Barium II", "categories": ["air"], "amount": 1.11}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.11}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil"], "amount": 2.51}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 4.57e-21}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.79}, {"name": "Barium II", "categories": ["water"], "amount": 2.79}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.066}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0228}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.144}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0548}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.681}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.681}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 2.08}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1590}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.00268}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00268}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.744}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.72e-05}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water"], "amount": 0.0868}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000158}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.748}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 6.88e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.293}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 24.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.069}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.069}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 15.2}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.411}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.411}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 134}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 134}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.0492}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0338}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.00704}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 4.17e-06}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.285}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.5}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.5}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.678}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.22}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.22}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.22}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.87e-20}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water"], "amount": 55.9}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 251}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 37.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 284}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 21200}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 21200}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.509}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.8}, {"name": "Bifenthrin", "categories": ["air"], "amount": 40.3}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 92.9}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 12200}, {"name": "Bifenthrin", "categories": ["water"], "amount": 12200}, {"name": "Bisphenol A", "categories": ["water"], "amount": 44.9}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.0297}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 9.99}, {"name": "Bromopropane", "categories": ["air"], "amount": 3.63e-05}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.129}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.89}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.88}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 167}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 167}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 11.7}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3.63}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air"], "amount": 0.000144}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000144}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 4.79e-06}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water"], "amount": 0.0183}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.327}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.0771}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 444}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.777}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.777}, {"name": "Cadmium II", "categories": ["air"], "amount": 1.17}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1.17}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.04}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.04}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.04}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.04}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 4.32e-21}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water"], "amount": 16.8}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 9.15}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 116}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 116}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57}, {"name": "Carbendazim", "categories": ["air"], "amount": 7.01}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 4.51}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 26.3}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 46}, {"name": "Carbendazim", "categories": ["water"], "amount": 46}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.705}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 9.93e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.349}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 3.47}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28}, {"name": "Carboxin", "categories": ["air"], "amount": 4.21}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 13.8}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Carboxin", "categories": ["water"], "amount": 26.1}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 6.33e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0948}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 107}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 90.7}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 719}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 4130}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 4130}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 4130}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air"], "amount": 39.5}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 39.5}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 9.72e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 217}, {"name": "Chloramine", "categories": ["water"], "amount": 217}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.66}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.396}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 63.4}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.535}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.0461}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1.66}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.66}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 2.9e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 9}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 8.52e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water"], "amount": 0.162}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.26}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 0.0804}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0804}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.000323}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.78}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.8}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 23.7}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 26.5}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 158}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 673}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 673}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.4}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 329}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1780}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 14700}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 14700}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 33.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10.9}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.202}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.202}, {"name": "Chromium III", "categories": ["air"], "amount": 0.402}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.402}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.418}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.853}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.853}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.853}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.07e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water"], "amount": 2.3}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73}, {"name": "Chromium VI", "categories": ["air"], "amount": 15.5}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 15.5}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 16.1}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 32.9}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 32.9}, {"name": "Chromium VI", "categories": ["soil"], "amount": 32.9}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 8.84e-20}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water"], "amount": 86.6}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 14.6}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.829}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.374}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.696}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.206}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.206}, {"name": "Cobalt II", "categories": ["air"], "amount": 0.224}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 0.224}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.14}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.265}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.265}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.265}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.86e-21}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water"], "amount": 6.34}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.17}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.17}, {"name": "Copper ion", "categories": ["air"], "amount": 5.48}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 5.48}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.28}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 6.17}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 6.17}, {"name": "Copper ion", "categories": ["soil"], "amount": 6.17}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 162}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.32e-20}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 162}, {"name": "Copper ion", "categories": ["water"], "amount": 162}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 9.15e-06}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.558}, {"name": "Cumene", "categories": ["water"], "amount": 0.558}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 7.28e-08}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0546}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 1.29e-08}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.0625}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 21.8}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.288}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.00489}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 259}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 841}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 63300}, {"name": "Cypermethrin", "categories": ["water"], "amount": 63300}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 2.01}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 12.8}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.591}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.69}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0535}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 2.2}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3.04}, {"name": "Deltamethrin", "categories": ["air"], "amount": 53.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 6310}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.139}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.776}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 16.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0153}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5.66}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.172}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.328}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.34}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 17.1}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0427}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.081}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.631}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.631}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 17.6}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 0.943}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 5.77}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 3.28}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 0.283}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.159}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 1.02}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.57e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.57e-06}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.8e-06}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.462}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.00036}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.00036}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.26e-10}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.00271}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.52}, {"name": "Difenoconazole", "categories": ["air"], "amount": 21.5}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 78.5}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 233}, {"name": "Difenoconazole", "categories": ["water"], "amount": 233}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 188}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 299}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2000}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 4860}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 4860}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.0156}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 3.91e-05}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.191}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.55}, {"name": "Dimethoate", "categories": ["air"], "amount": 3.37}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 5.71}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 38.7}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.883}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 2.19e-05}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.974}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 11.8}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 177}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 167}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 37.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 130}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 130}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 130}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 49.7}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 17400}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.391}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.7}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 8.71}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 19.6}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 19.6}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.43}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Diuron", "categories": ["air"], "amount": 35.2}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 15.2}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 98.2}, {"name": "Diuron", "categories": ["water"], "amount": 223}, {"name": "Dodecanol", "categories": ["water"], "amount": 22.5}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.318}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 6.84}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.281}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.732}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 12.6}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.58}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 41.1}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 83.8}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 83.8}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1500}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1000}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.000564}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 8.23e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 8.23e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.52e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000425}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 7.03e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0554}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.00517}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.55}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.24e-06}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water"], "amount": 0.00629}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.0468}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.328}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.328}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.592}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.9e-05}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0164}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.0405}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0405}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.27e-06}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.202}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.93e-09}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.425}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.000707}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.000707}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.000177}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0482}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 2.7}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 6.49}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 63.4}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.755}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.57}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 10}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 7.48}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 43.6}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 107}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.638}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.25}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 87.9}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 87.9}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.5}, {"name": "Fluazinam", "categories": ["air"], "amount": 289}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 105}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 743}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water"], "amount": 2260}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99}, {"name": "Fludioxonil", "categories": ["air"], "amount": 23.7}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 9.31}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 69.8}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 275}, {"name": "Fludioxonil", "categories": ["water"], "amount": 275}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.3}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.87}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 618}, {"name": "Fluorene", "categories": ["air"], "amount": 0.0118}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 7.12}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 4.11}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.164}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 30.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0314}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0314}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 4.68e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.907}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.98e-10}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0854}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00758}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.997}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air"], "amount": 1.3e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Furfural", "categories": ["air"], "amount": 0.00703}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.589}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.28}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.351}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water"], "amount": 2.39}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.85}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 32.1}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 32.1}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air"], "amount": 6.53e-09}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.53e-09}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 10.8}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "Hexane", "categories": ["water"], "amount": 0.141}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.37}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.06}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.0226}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water"], "amount": 93.4}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.5e-06}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.302}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.54e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.54e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 6.68e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.155}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.000362}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.000362}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.00621}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.26}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 6.21}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.79}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.95}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Imidacloprid", "categories": ["water"], "amount": 9.16}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72}, {"name": "Indoxacarb", "categories": ["air"], "amount": 11.8}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 34}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 6.11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.49}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 1.71e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.71e-08}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.0373}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0373}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.04e-05}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.175}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 4.85}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 598}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 68.9}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 423}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 48100}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 48100}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 48100}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.00867}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.45}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0166}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0166}, {"name": "Lead II", "categories": ["air"], "amount": 0.0138}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0138}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.00439}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.00738}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.00738}, {"name": "Lead II", "categories": ["soil"], "amount": 0.00738}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.606}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.29e-23}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.606}, {"name": "Lead II", "categories": ["water"], "amount": 0.606}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.538}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 24.6}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.928}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0965}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.63}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.63}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.183}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 6}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 12.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.293}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0307}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.5}, {"name": "Mancozeb", "categories": ["air"], "amount": 14.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 56.7}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 78}, {"name": "Mancozeb", "categories": ["water"], "amount": 78}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.2}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 9.02e-07}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.34}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34}, {"name": "Mercury II", "categories": ["air"], "amount": 1.01}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.01}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.199}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.286}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.286}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.286}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 3.89e-21}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water"], "amount": 49.8}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.292}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 0.601}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.347}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.99}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 3.34}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 0.0683}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.202}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00275}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.81e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0292}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.48e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000288}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.534}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air"], "amount": 0.000132}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5e-06}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water"], "amount": 0.00493}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.21}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 28}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 8.61}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 47.7}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water"], "amount": 78.6}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.371}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.41}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 21.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 78.6}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 242}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 242}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.000379}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000379}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 8.04e-05}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water"], "amount": 0.0283}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.000365}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.72}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00341}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.0078}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.0078}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.753}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.89}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air"], "amount": 0.063}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.063}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 6.18e-06}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water"], "amount": 0.292}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.327}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 9.37}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 61.8}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 147}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 147}, {"name": "Metolachlor", "categories": ["water"], "amount": 147}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.41}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 149}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 295}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 772}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 520}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 3000}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 5070}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 5070}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 111}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.61}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0363}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0363}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.0724}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.0724}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.0752}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.154}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.154}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.154}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 3.08e-22}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.41}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 3.13}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.288}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 4.55}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.000708}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 67.7}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.71}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71}, {"name": "Nickel II", "categories": ["air"], "amount": 2.16}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 2.16}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.17}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.17}, {"name": "Nickel II", "categories": ["soil"], "amount": 3.17}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 46}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.71e-20}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 46}, {"name": "Nickel II", "categories": ["water"], "amount": 46}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.125}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 0.328}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.27}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.87}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.00135}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.76}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.82}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.0156}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.0641}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.73}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 3.04}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.329}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 0.931}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.00485}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 13}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.033}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0129}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 38.1}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.183}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.692}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.63}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 176}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 176}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air"], "amount": 6.29e-06}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 6.29e-06}, {"name": "Pentane", "categories": ["water"], "amount": 7.18}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 5.08}, {"name": "Permethrin", "categories": ["water"], "amount": 2870}, {"name": "Phenanthrene", "categories": ["air"], "amount": 0.136}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 57}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air"], "amount": 0.00867}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00867}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.23e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.969}, {"name": "Phenol", "categories": ["water"], "amount": 0.969}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.136}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.136}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 19.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 5.52}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 45.2}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 8.88}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 33.2}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 60.6}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00054}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 15.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.000949}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 26.1}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 3.81e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.609}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.01e-05}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.24}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.84}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.455}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.196}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 31.7}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 13.2}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.0541}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 429}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.22}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 17.4}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.0201}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 0.0302}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air"], "amount": 0.000176}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.000176}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 5.1e-05}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.102}, {"name": "Propanal", "categories": ["water"], "amount": 0.102}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air"], "amount": 0.000117}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 5.28e-06}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water"], "amount": 0.00942}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 9.32}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 0.332}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.171}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 3.36}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 15.8}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water"], "amount": 74.9}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.32e-08}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.157}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0218}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.86e-06}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water"], "amount": 0.116}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.000651}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.000214}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.0706}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.91}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 8.24}, {"name": "Pyrene", "categories": ["air"], "amount": 1.18}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1810}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 245}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.0358}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 8.05}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.669}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.03}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 4.49}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 28.3}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 235}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2700}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2700}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.147}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 15.9}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.87}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.0405}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.673}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.673}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.975}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.975}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.843}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.65}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.65}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.65}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 5.99e-21}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water"], "amount": 15.3}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0962}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.268}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.41}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.6}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.6}, {"name": "Silver I", "categories": ["air"], "amount": 19.2}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 19.2}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 13.1}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 25}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 25}, {"name": "Silver I", "categories": ["soil"], "amount": 25}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 485}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.84e-20}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 485}, {"name": "Silver I", "categories": ["water"], "amount": 485}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.65}, {"name": "Simazine", "categories": ["air"], "amount": 11.9}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 5.66}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 33.1}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 57.7}, {"name": "Simazine", "categories": ["water"], "amount": 57.7}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.00158}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.00158}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 4.16e-26}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water"], "amount": 0.00822}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 19.9}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.86e-06}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.396}, {"name": "Styrene", "categories": ["water"], "amount": 0.396}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 36}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.285}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.285}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.209}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.52}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.52}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.83}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 13.1}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water"], "amount": 40.5}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 72.2}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 39.2}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 227}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 391}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 391}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 83.4}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 228}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 93.7}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 685}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 2350}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 72.6}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.91}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 22.2}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.00014}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.23}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.03}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.03}, {"name": "Thallium I", "categories": ["air"], "amount": 20.9}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 20.9}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 21.8}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 47.6}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 47.6}, {"name": "Thallium I", "categories": ["soil"], "amount": 47.6}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 53}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 7.06e-20}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 53}, {"name": "Thallium I", "categories": ["water"], "amount": 53}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.538}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.41}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.737}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 5.16}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiabendazole", "categories": ["water"], "amount": 15.1}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.55}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 9.32e-09}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water"], "amount": 9.04}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 12.6}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 79.2}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 147}, {"name": "Thiodicarb", "categories": ["water"], "amount": 147}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.812}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 10.4}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 15.1}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9}, {"name": "Thiram", "categories": ["air"], "amount": 5.91}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 4.12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 19.8}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 468}, {"name": "Thiram", "categories": ["water"], "amount": 468}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.133}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.133}, {"name": "Tin ion", "categories": ["air"], "amount": 0.113}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 0.113}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.0403}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.0696}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.0696}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.0696}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 7.72e-22}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water"], "amount": 4.77}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.72e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.139}, {"name": "Toluene", "categories": ["water"], "amount": 0.139}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.000153}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.000153}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.1e-05}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.345}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 36.6}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 715}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Triallate", "categories": ["air"], "amount": 0.164}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.66}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 86.9}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 181}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 192}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1630}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.507}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 7.83}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.1e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.17}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.84}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 255}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 4.9e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.00133}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 12}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1500}, {"name": "Triflumuron", "categories": ["air"], "amount": 4670}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 2530}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 14100}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 22200}, {"name": "Triflumuron", "categories": ["water"], "amount": 22200}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0391}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.438}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.61}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 35.4}, {"name": "Trifluralin", "categories": ["water"], "amount": 35.4}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.675}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.574}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.456}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.13e-11}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.0319}, {"name": "Urea", "categories": ["water"], "amount": 0.0319}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.59}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.59}, {"name": "Vanadium V", "categories": ["air"], "amount": 8.23}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 8.23}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 6.16}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 11.9}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 11.9}, {"name": "Vanadium V", "categories": ["soil"], "amount": 11.9}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 178}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 8.2e-20}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 178}, {"name": "Vanadium V", "categories": ["water"], "amount": 178}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.545}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Xylene", "categories": ["water"], "amount": 0.155}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 259}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.28}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.28}, {"name": "Zinc II", "categories": ["air"], "amount": 5.93}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.93}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.82}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 5.14}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 5.14}, {"name": "Zinc II", "categories": ["soil"], "amount": 5.14}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 7.47e-20}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 211}, {"name": "Zinc II", "categories": ["water"], "amount": 211}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.25}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 52.9}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 4.4e-06}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.492}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.06e-05}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.525}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.29e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.29e-05}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.61e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.0067}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air"], "amount": 0.241}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 0.241}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 4.62e-05}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 1.12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.38}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "ecotoxicity: marine no LT", "marine ecotoxicity potential (METP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.831}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.141}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.00732}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.00125}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.145}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0199}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.105}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "2,4-D", "categories": ["water"], "amount": 0.145}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0711}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.0128}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 0.0883}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 0.0883}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0711}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.0631}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.0128}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 0.0883}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.00603}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.237}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.237}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.616}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0054}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.00144}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00073}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.000314}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000314}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.000997}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.000299}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 0.332}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.0124}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0026}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0026}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.007}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00155}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.00425}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.0485}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.0485}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 11.7}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.63}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0446}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.007}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.0395}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.0492}, {"name": "Acephate", "categories": ["water"], "amount": 0.0492}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.00512}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00512}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0716}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.00944}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000141}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.02e-05}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.0168}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00238}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air"], "amount": 0.000595}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.000595}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.000894}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water"], "amount": 0.000503}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.00283}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00283}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.00388}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00239}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.151}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 0.0853}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air"], "amount": 1.34}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.34}, {"name": "Acrolein", "categories": ["water"], "amount": 3.24}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.0131}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00186}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0034}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0034}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.0445}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.255}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.052}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.99}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.98}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0195}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0195}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.62}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.00546}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9640}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 4960}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 303}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 16200}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.93}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.323}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.59}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air"], "amount": 0.00107}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.139}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water"], "amount": 0.0257}, {"name": "Anthracene", "categories": ["air"], "amount": 4.65}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 306}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water"], "amount": 28.9}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 488}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 488}, {"name": "Antimony ion", "categories": ["air"], "amount": 361}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 361}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 39}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 76.3}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 76.3}, {"name": "Antimony ion", "categories": ["soil"], "amount": 76.3}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 460}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1000}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 460}, {"name": "Antimony ion", "categories": ["water"], "amount": 460}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 100}, {"name": "Arsenic ion", "categories": ["air"], "amount": 69.9}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 69.9}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.93}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.93}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.93}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 86.3}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 212}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 86.3}, {"name": "Arsenic ion", "categories": ["water"], "amount": 86.3}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.67}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.24}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water"], "amount": 14.9}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0375}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.143}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 13.1}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 0.011}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.75}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.26}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 13}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 13}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.35}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35}, {"name": "Barium II", "categories": ["air"], "amount": 3.39}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 3.39}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 3.47}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 3.47}, {"name": "Barium II", "categories": ["soil"], "amount": 3.47}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3.93}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 5.61}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3.93}, {"name": "Barium II", "categories": ["water"], "amount": 3.93}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.00157}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0296}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0389}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.0132}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0239}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.00305}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 58}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 151}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0233}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0233}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0395}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air"], "amount": 0.00235}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.00235}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.089}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water"], "amount": 0.00485}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.451}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.0377}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.00563}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.66}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.66}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 11}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 21.9}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 26.9}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 26.9}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 12.2}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.00117}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.00336}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.000405}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0322}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.00699}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 237}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 237}, {"name": "Beryllium II", "categories": ["air"], "amount": 165}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 165}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.515}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.906}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.906}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.906}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 72}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 502}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 72}, {"name": "Beryllium II", "categories": ["water"], "amount": 72}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6950}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 11.8}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 60}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4150}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4150}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2520}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1470}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 27.5}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 43.7}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2500}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2500}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.49}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 0.0742}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.00164}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.00138}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.00353}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.977}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.23}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.23}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 13.5}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.971}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.00499}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air"], "amount": 0.000583}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000583}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.00295}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water"], "amount": 0.000557}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.0181}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0296}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.00305}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.49}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 11.1}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.2}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.2}, {"name": "Cadmium II", "categories": ["air"], "amount": 63.5}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 63.5}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.711}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.36}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.36}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.36}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 19.6}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 196}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 19.6}, {"name": "Cadmium II", "categories": ["water"], "amount": 19.6}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.16}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.512}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.42}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.42}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.24}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.46}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.54}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.54}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.039}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.32}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.263}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.137}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Carboxin", "categories": ["air"], "amount": 1.01}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.764}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.44}, {"name": "Carboxin", "categories": ["water"], "amount": 1.44}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 0.00941}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00133}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 485}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 18}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 139}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 795}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 795}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 795}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air"], "amount": 7.51}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.51}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 23.2}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water"], "amount": 5.16}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 0.318}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.0223}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 5.79}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.0296}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.00255}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 0.323}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 0.964}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 0.214}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.176}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water"], "amount": 0.0469}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 0.124}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 0.124}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.215}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 0.0572}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 186}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 182}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 80.8}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 193}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 193}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 176}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 104}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 337}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2680}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2680}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 4.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.907}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.0799}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.2}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.2}, {"name": "Chromium III", "categories": ["air"], "amount": 10}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.276}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.543}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.543}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.543}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.47}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 30}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.47}, {"name": "Chromium III", "categories": ["water"], "amount": 2.47}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 159}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 159}, {"name": "Chromium VI", "categories": ["air"], "amount": 120}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 120}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 15.7}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 31}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 31}, {"name": "Chromium VI", "categories": ["soil"], "amount": 31}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 130}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 322}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 130}, {"name": "Chromium VI", "categories": ["water"], "amount": 130}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 2.88}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.0504}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.0327}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0387}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.2}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.2}, {"name": "Cobalt II", "categories": ["air"], "amount": 18.9}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 18.9}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.188}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.188}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.188}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 7.85}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 58.3}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 7.85}, {"name": "Cobalt II", "categories": ["water"], "amount": 7.85}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 732}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 732}, {"name": "Copper ion", "categories": ["air"], "amount": 508}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 508}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.19}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.19}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.19}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 193}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1570}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 193}, {"name": "Copper ion", "categories": ["water"], "amount": 193}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air"], "amount": 0.00063}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.00063}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.331}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water"], "amount": 0.0105}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.42}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.68e-06}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.68e-06}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0342}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000944}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.68e-06}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.12e-07}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.00346}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 151}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.0541}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.000273}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 232}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 12400}, {"name": "Cypermethrin", "categories": ["water"], "amount": 12400}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.167}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.049}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.497}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00127}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.122}, {"name": "Decanoic acid", "categories": ["water"], "amount": 0.0428}, {"name": "Deltamethrin", "categories": ["air"], "amount": 852}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 80.7}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 718}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.0078}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.0452}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.957}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.26}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.524}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.0182}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 0.129}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 0.129}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.377}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.54}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0314}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.00448}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.0349}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.0349}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.03}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 0.983}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.69}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.078}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 10.8}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.00224}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 0.0605}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.23e-05}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0179}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0179}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.0496}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.011}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.41e-05}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.41e-05}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 0.000268}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.81e-05}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.2}, {"name": "Difenoconazole", "categories": ["air"], "amount": 21.7}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2.14}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 15.1}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 44.9}, {"name": "Difenoconazole", "categories": ["water"], "amount": 44.9}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 452}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 58.6}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 384}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 933}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 933}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.0163}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.087}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.00631}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.297}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.166}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.0733}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.0381}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0381}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.0232}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.00617}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 40800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1880}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1880}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1880}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 12200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 125000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 12200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 12200}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00566}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.506}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 0.316}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 0.0745}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 0.482}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.09}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.09}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 0.472}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.3}, {"name": "Diuron", "categories": ["air"], "amount": 10.3}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.84}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.43}, {"name": "Diuron", "categories": ["water"], "amount": 12.3}, {"name": "Dodecanol", "categories": ["water"], "amount": 0.864}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.0208}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.0291}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.00447}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.0262}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 193}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.00395}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.13}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 7.96}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 16.1}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 16.1}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5600}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.0113}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.0113}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.0705}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.0437}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.0177}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0177}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0617}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0185}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 11}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 7.7}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.000901}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water"], "amount": 0.000225}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.00259}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.0182}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.0182}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.0687}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.0384}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.47}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.00262}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00262}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00882}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.00264}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.00829}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.00829}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0216}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.0048}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.0455}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.0101}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.0324}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0178}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.384}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 12.2}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.01}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 0.39}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 0.631}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 141}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 0.225}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.03}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 0.226}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.35}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.35}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 275}, {"name": "Fluazinam", "categories": ["air"], "amount": 236}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 21.7}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 144}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 434}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 434}, {"name": "Fluazinam", "categories": ["water"], "amount": 434}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.2}, {"name": "Fludioxonil", "categories": ["air"], "amount": 12.8}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 5.8}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 22.8}, {"name": "Fludioxonil", "categories": ["water"], "amount": 22.8}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 41}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Fluoranthene", "categories": ["air"], "amount": 14.6}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 57.9}, {"name": "Fluorene", "categories": ["air"], "amount": 0.164}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 0.329}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 0.924}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.0136}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.3}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.025}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.025}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.0237}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00847}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0012}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0237}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0112}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air"], "amount": 2.54e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.54e-05}, {"name": "Furfural", "categories": ["air"], "amount": 0.00776}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.00726}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.145}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.00726}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0923}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.00835}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.0569}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.95}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.16}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.16}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air"], "amount": 9.98e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 9.98e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 0.835}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0629}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water"], "amount": 0.00162}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.242}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.0375}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 13.2}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 10.1}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.27}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.171}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.00553}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.000388}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.000388}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.106}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0037}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0527}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0527}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000148}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 0.189}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.515}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.554}, {"name": "Imidacloprid", "categories": ["air"], "amount": 0.558}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.577}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Imidacloprid", "categories": ["water"], "amount": 0.76}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Indoxacarb", "categories": ["air"], "amount": 27.7}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 0.838}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 6.58}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.338}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air"], "amount": 2.8e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.8e-07}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.00644}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.00644}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0188}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.00418}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.268}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.405}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26300}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 474}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 553}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 10700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 10700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 10700}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.0185}, {"name": "Lauric acid", "categories": ["water"], "amount": 0.0205}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41}, {"name": "Lead II", "categories": ["air"], "amount": 3.06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 3.06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.00238}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0039}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0039}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0039}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.593}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.53}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.593}, {"name": "Lead II", "categories": ["water"], "amount": 0.593}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.0299}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 130}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.0774}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0629}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.00413}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 0.0389}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 0.0389}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.317}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.0105}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.332}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.332}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.3}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.00696}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.000731}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.75}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.589}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.13}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.31}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.31}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.606}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0664}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.00848}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 351}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 351}, {"name": "Mercury II", "categories": ["air"], "amount": 240}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 240}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.115}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.161}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.161}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.161}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 51.4}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 709}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 51.4}, {"name": "Mercury II", "categories": ["water"], "amount": 51.4}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.0167}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 0.123}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 0.11}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 0.185}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 0.185}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 0.00664}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.534}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.0048}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0621}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.308}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.624}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.00784}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.00784}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0328}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.00829}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00368}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00368}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.905}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.537}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air"], "amount": 0.000451}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000451}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000713}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water"], "amount": 0.000223}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.57}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.08}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.205}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.13}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water"], "amount": 1.87}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 12.8}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 0.918}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.52}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 20.1}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 20.1}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.00837}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00837}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.0159}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water"], "amount": 0.00765}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.022}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.394}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.0385}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.000722}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.000722}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.000669}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.00206}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.00206}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 0.382}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air"], "amount": 0.012}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.012}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.0312}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water"], "amount": 0.00695}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.0183}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.789}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.14}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water"], "amount": 12.2}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.95}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.846}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.21}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 300}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 291}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43.2}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 249}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 421}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 421}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.0819}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.946}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.946}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.0659}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.13}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.13}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.13}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.56}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.73}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.56}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.56}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.0745}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00684}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 0.0855}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.0737}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.0205}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.0755}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.98}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 150}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 150}, {"name": "Nickel II", "categories": ["air"], "amount": 105}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 105}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.29}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.29}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.29}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 57.1}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 321}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 57.1}, {"name": "Nickel II", "categories": ["water"], "amount": 57.1}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.111}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 0.11}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 0.106}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 0.155}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.152}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.228}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.118}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.000226}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0922}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00355}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.485}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.0723}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.752}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 0.374}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.56}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.56}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.187}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.000715}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 0.0956}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.0101}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.36}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air"], "amount": 0.000114}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.000114}, {"name": "Pentane", "categories": ["water"], "amount": 0.0817}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 498}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 18.3}, {"name": "Permethrin", "categories": ["water"], "amount": 287}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.43}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.35}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.0589}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air"], "amount": 0.00849}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00849}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water"], "amount": 0.0237}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 30.7}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 30.7}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.68}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.468}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1.94}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.405}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.418}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.0664}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.0152}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.419}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.0322}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.0601}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.278}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.0379}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 16.8}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 16.8}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 20.3}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.59}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 39.1}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.275}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.00111}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 0.00167}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air"], "amount": 0.0024}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.0024}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.0493}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water"], "amount": 0.00535}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.12}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air"], "amount": 0.000566}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000566}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0019}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water"], "amount": 0.00055}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 0.0755}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.00484}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.34}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.31}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.22}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.22}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.22}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.00593}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00593}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.0156}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.00221}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0046}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0046}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0124}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water"], "amount": 0.00276}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 9.96e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.0204}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0367}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.0185}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 0.465}, {"name": "Pyrene", "categories": ["air"], "amount": 21.5}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 156}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.00199}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 0.757}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.0377}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.8}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 13.2}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.25}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 23.3}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 227}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 227}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.01}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 5.7}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 0.322}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.00362}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.8}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.8}, {"name": "Selenium IV", "categories": ["air"], "amount": 34.9}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 34.9}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.635}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.21}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.21}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.21}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 19.1}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 106}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 19.1}, {"name": "Selenium IV", "categories": ["water"], "amount": 19.1}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0149}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.41}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2750}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 2750}, {"name": "Silver I", "categories": ["air"], "amount": 1910}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 1910}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 8.5}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 15.8}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 15.8}, {"name": "Silver I", "categories": ["soil"], "amount": 15.8}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 546}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 5930}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 546}, {"name": "Silver I", "categories": ["water"], "amount": 546}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.83}, {"name": "Simazine", "categories": ["air"], "amount": 3.46}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.472}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.78}, {"name": "Simazine", "categories": ["water"], "amount": 4.78}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.000253}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.000253}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.000815}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water"], "amount": 0.000116}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air"], "amount": 9.49e-05}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.49e-05}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.238}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water"], "amount": 0.0072}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 1.99}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.33}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.053}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.053}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.00498}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 0.0363}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 0.0363}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.95}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.152}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.36}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 0.207}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.2}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 19.2}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.17}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 12.6}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 21.6}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21.6}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 253}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 224}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 18}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 132}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 451}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.074}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.22}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.97}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.0746}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0746}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.43}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.12}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 77.9}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 77.9}, {"name": "Thallium I", "categories": ["air"], "amount": 73.7}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 73.7}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 30.1}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 64.3}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 64.3}, {"name": "Thallium I", "categories": ["soil"], "amount": 64.3}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 81}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 137}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 81}, {"name": "Thallium I", "categories": ["water"], "amount": 81}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.576}, {"name": "Thiabendazole", "categories": ["air"], "amount": 0.489}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.0175}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.123}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.358}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.358}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.0682}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 0.968}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water"], "amount": 0.215}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4.98}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.54}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.54}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.719}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 0.655}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.16}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 0.863}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.25}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.25}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.3}, {"name": "Thiram", "categories": ["air"], "amount": 9.15}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.234}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.1}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 26}, {"name": "Thiram", "categories": ["water"], "amount": 26}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.5}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.5}, {"name": "Tin ion", "categories": ["air"], "amount": 17.7}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 17.7}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.0264}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.0444}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.0444}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.0444}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 5.43}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 55.1}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 5.43}, {"name": "Tin ion", "categories": ["water"], "amount": 5.43}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air"], "amount": 0.000331}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000331}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0857}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water"], "amount": 0.00276}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.00787}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.00787}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.333}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.0185}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.22}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 138}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.144}, {"name": "Triallate", "categories": ["air"], "amount": 1}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.517}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 7.74}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 34.8}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 88.7}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.62}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 135}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.0226}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.649}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.162}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.00635}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.319}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 33.7}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 0.000142}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.16e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.31}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2360}, {"name": "Triflumuron", "categories": ["air"], "amount": 2380}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 511}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 2730}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 4260}, {"name": "Triflumuron", "categories": ["water"], "amount": 4260}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.614}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.979}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.61}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.61}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.13}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.0109}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 0.00342}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.00076}, {"name": "Urea", "categories": ["water"], "amount": 0.00076}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.00566}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 218}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 218}, {"name": "Vanadium V", "categories": ["air"], "amount": 154}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 154}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 5.31}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 10}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 10}, {"name": "Vanadium V", "categories": ["soil"], "amount": 10}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 252}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 455}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 252}, {"name": "Vanadium V", "categories": ["water"], "amount": 252}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.0468}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air"], "amount": 0.000165}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000165}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0932}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water"], "amount": 0.00293}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 166}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 166}, {"name": "Zinc II", "categories": ["air"], "amount": 116}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 116}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.41}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.29}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.29}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.29}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 299}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 342}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 299}, {"name": "Zinc II", "categories": ["water"], "amount": 299}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.93}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.297}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0089}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.000559}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000559}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.316}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.00991}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.000307}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.000307}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00403}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.000414}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air"], "amount": 0.0446}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0446}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.12}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water"], "amount": 0.0267}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 5.77}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "ecotoxicity: terrestrial no LT", "terrestrial ecotoxicity potential (TETP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.802}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.76}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.062}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.695}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0416}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.00206}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.00054}, {"name": "2,4-D", "categories": ["water"], "amount": 0.00054}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 9.63e-08}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 4.67e-09}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 33.3}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 9.63e-08}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 69.5}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.0475}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.0475}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0855}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.798}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00627}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.00194}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.0188}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 34.2}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.072}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.39}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.23e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 9.68e-05}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.411}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.647}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.61}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 813}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00233}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000491}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 7.9e-05}, {"name": "Acephate", "categories": ["water"], "amount": 7.9e-05}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0828}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.339}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.42}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.0151}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 125}, {"name": "Acetic acid", "categories": ["air"], "amount": 87}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 87}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.39e-05}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00669}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air"], "amount": 0.0305}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00445}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water"], "amount": 0.0236}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0609}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.305}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 3.7}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15.6}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 495}, {"name": "Acrolein", "categories": ["air"], "amount": 287}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 287}, {"name": "Acrolein", "categories": ["water"], "amount": 423}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.15e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00425}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air"], "amount": 45.7}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 45.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.867}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.13}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 8460}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.3}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 146}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.0173}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 123000}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 63100}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1140}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1180}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 3630}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 58.9}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 8.55}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.42}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.13}, {"name": "Aniline", "categories": ["air"], "amount": 0.621}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.621}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.041}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.622}, {"name": "Aniline", "categories": ["water"], "amount": 0.622}, {"name": "Anthracene", "categories": ["air"], "amount": 34.8}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 28.8}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water"], "amount": 71.1}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 622000}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 622000}, {"name": "Antimony ion", "categories": ["air"], "amount": 431000}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 431000}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.63e-15}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 3.2e-15}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 3.2e-15}, {"name": "Antimony ion", "categories": ["soil"], "amount": 3.2e-15}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 1.68e-14}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 5.79e-15}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1.68e-14}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.68e-14}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 133000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 133000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 91900}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 91900}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.06e-17}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 9.31e-17}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 9.31e-17}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 9.31e-17}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.62e-15}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1.43e-15}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.62e-15}, {"name": "Arsenic ion", "categories": ["water"], "amount": 3.62e-15}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.0174}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 22.7}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14.4}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water"], "amount": 10.1}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0553}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 6.69e-05}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 174}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 5.06e-05}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4680}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.000144}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 0.000137}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.1e-05}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.1e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3270}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3270}, {"name": "Barium II", "categories": ["air"], "amount": 2260}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2260}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 5.57e-17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.19e-16}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.19e-16}, {"name": "Barium II", "categories": ["soil"], "amount": 1.19e-16}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.33e-16}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3e-17}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.33e-16}, {"name": "Barium II", "categories": ["water"], "amount": 1.33e-16}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.72e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.516}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.000631}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.651}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0639}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 346}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 187}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.582}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.091}, {"name": "Benzene", "categories": ["air"], "amount": 0.0871}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0871}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0427}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water"], "amount": 0.0859}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.922}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0129}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0425}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 48.4}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 78.5}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 78.5}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 76.3}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.445}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.445}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.008}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0333}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0189}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.00268}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.0477}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 475000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 475000}, {"name": "Beryllium II", "categories": ["air"], "amount": 329000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 329000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 5.44e-17}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 9.6e-17}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 9.6e-17}, {"name": "Beryllium II", "categories": ["soil"], "amount": 9.6e-17}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 6.62e-15}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 8.32e-15}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 6.62e-15}, {"name": "Beryllium II", "categories": ["water"], "amount": 6.62e-15}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 148000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 96.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 99.6}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 308}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 308}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 9.79}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22500}, {"name": "Bifenthrin", "categories": ["air"], "amount": 13100}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 222}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 227}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 801}, {"name": "Bifenthrin", "categories": ["water"], "amount": 801}, {"name": "Bisphenol A", "categories": ["water"], "amount": 0.0064}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.51e-05}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 7.52e-07}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 0.00957}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.0859}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.0782}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 466}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 42400}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00331}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 0.000666}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 0.000666}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 217}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.9}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.33}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.862}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air"], "amount": 0.035}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.0015}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water"], "amount": 0.0186}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.0321}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0703}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.368}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2900}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 301}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 278000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 278000}, {"name": "Cadmium II", "categories": ["air"], "amount": 192000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 192000}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 3.67e-17}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 7.04e-17}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 7.04e-17}, {"name": "Cadmium II", "categories": ["soil"], "amount": 7.04e-17}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 8.73e-16}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.63e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 8.73e-16}, {"name": "Cadmium II", "categories": ["water"], "amount": 8.73e-16}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9490}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 12.7}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 5.77}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 5.77}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 10300}, {"name": "Carbendazim", "categories": ["air"], "amount": 8320}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.138}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 0.0873}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 0.0417}, {"name": "Carbendazim", "categories": ["water"], "amount": 0.0417}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 372}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.853}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 7.49}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4270}, {"name": "Carboxin", "categories": ["air"], "amount": 2950}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.666}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.461}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 0.242}, {"name": "Carboxin", "categories": ["water"], "amount": 0.242}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00159}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 163000}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 202}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 199}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 123}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 123}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 123}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 265000}, {"name": "Chloramine", "categories": ["air"], "amount": 219000}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 219000}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.74e-07}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water"], "amount": 3.26e-06}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1680}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 8.8e-06}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 6400}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 6400}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.68e-06}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 0.00068}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air"], "amount": 0.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.219}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water"], "amount": 0.462}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 330}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 55.7}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 55.7}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.413}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 6.87}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 22400}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 21800}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 9330}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9770}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 8820}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 8820}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 6180}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1650}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 786}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 251}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.15e-06}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 60600}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 60600}, {"name": "Chromium III", "categories": ["air"], "amount": 41900}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 41900}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.99e-17}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 3.94e-17}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 3.94e-17}, {"name": "Chromium III", "categories": ["soil"], "amount": 3.94e-17}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.54e-16}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.55e-16}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.54e-16}, {"name": "Chromium III", "categories": ["water"], "amount": 1.54e-16}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 205000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 205000}, {"name": "Chromium VI", "categories": ["air"], "amount": 142000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 142000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 7.87e-16}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.56e-15}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.56e-15}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.56e-15}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 5.75e-15}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 2.43e-15}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 5.75e-15}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.75e-15}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 9.78}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 22}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0329}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 59200}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 59200}, {"name": "Cobalt II", "categories": ["air"], "amount": 41000}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 41000}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6.07e-18}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.12e-17}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.12e-17}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.12e-17}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.04e-16}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 5.39e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.04e-16}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.04e-16}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1750000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1750000}, {"name": "Copper ion", "categories": ["air"], "amount": 1210000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1210000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.38e-16}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 2.54e-16}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 2.54e-16}, {"name": "Copper ion", "categories": ["soil"], "amount": 2.54e-16}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.01e-14}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.47e-14}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.01e-14}, {"name": "Copper ion", "categories": ["water"], "amount": 1.01e-14}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air"], "amount": 0.0432}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0432}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.0138}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water"], "amount": 0.0466}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.341}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.000203}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000646}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.73e-05}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.27e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1740}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.12e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95800}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 917}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 2830}, {"name": "Cypermethrin", "categories": ["water"], "amount": 2830}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.868}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.04e-05}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 77}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00507}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Decanoic acid", "categories": ["water"], "amount": 0.0114}, {"name": "Deltamethrin", "categories": ["air"], "amount": 14700}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1380}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3700}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.14e-12}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.754}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 2.87}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.00301}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.647}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.32e-05}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.32e-05}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 36.9}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 114}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 282}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.000695}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.55e-06}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.55e-06}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1060}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 32.5}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 609}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.923}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Diethanolamine", "categories": ["water"], "amount": 5.94e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 3.49}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00415}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00415}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 242}, {"name": "Diethylamine", "categories": ["air"], "amount": 186}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 186}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.037}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.0767}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.968}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.968}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 7.44e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.000149}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 20400}, {"name": "Difenoconazole", "categories": ["air"], "amount": 16600}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 0.0715}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 0.0654}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0503}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.0503}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 489000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1240}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1040}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 692}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 692}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.741}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.0684}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.302}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 8.15}, {"name": "Dimethoate", "categories": ["air"], "amount": 2350}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 7.52}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.232}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.155}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air"], "amount": 888}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 888}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.337}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 453000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 453000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 393000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 393000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 14200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15300}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15300}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 15300}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 53000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 104000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 53000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 53000}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00217}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 424}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.33e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 6.6e-07}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 6.6e-07}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.114}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 28600}, {"name": "Diuron", "categories": ["air"], "amount": 20400}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.59}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.78}, {"name": "Diuron", "categories": ["water"], "amount": 2.55}, {"name": "Dodecanol", "categories": ["water"], "amount": 7.62}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.215}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 6.87e-05}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.18e-08}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.47}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 468}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 16}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 6710}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 148}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 58.9}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 58.9}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11300}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.444}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.444}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.111}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.194}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.929}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.929}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.184}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.387}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 13.1}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 18}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air"], "amount": 0.072}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0262}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 276}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 5.61e-06}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.53e-11}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.53e-11}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.27}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 14.4}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1520}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.406}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 214}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 214}, {"name": "Ethylamine", "categories": ["air"], "amount": 168}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 168}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0309}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.064}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.000108}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.000225}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.455}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.57}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.13e-05}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 6.64e-07}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.177}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 638}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.483}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 8.99}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2710}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 729}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 26.8}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 26.8}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 206000}, {"name": "Fluazinam", "categories": ["air"], "amount": 145000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1240}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1140}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 900}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 900}, {"name": "Fluazinam", "categories": ["water"], "amount": 900}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12600}, {"name": "Fludioxonil", "categories": ["air"], "amount": 8730}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 1.15}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.45}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.45}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 70900}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 389}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.04}, {"name": "Fluoranthene", "categories": ["air"], "amount": 98.9}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 80.1}, {"name": "Fluorene", "categories": ["air"], "amount": 1.82}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.08}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 190}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 2.06e-06}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 25800}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 142}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air"], "amount": 10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.0506}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.889}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air"], "amount": 66.8}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 66.8}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 4.58e-06}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water"], "amount": 0.000909}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 7.53e-09}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0062}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0939}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00607}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00607}, {"name": "Furan", "categories": ["air"], "amount": 0.00245}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00245}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 573}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.26e-10}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.13e-05}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.27e-11}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2440}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1980}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 0.00799}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 0.00799}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air"], "amount": 2.07e-05}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.07e-05}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 256}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air"], "amount": 0.000196}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000196}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.37e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water"], "amount": 0.000194}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.00371}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.379}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 602}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 367}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water"], "amount": 1360}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00795}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0955}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.03}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.03}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0143}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0387}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.178}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000785}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4320}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 5.99e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.17e-10}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Imidacloprid", "categories": ["water"], "amount": 1.98e-10}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 7710}, {"name": "Indoxacarb", "categories": ["air"], "amount": 6020}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 9.87}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.0103}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.302}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-05}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air"], "amount": 88}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 88}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.216}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.2}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 20.2}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 312000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5510}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5640}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 18700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 18700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 18700}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.866}, {"name": "Lauric acid", "categories": ["water"], "amount": 0.00154}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 62400}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 62400}, {"name": "Lead II", "categories": ["air"], "amount": 43200}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 43200}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.23e-19}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.03e-19}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.03e-19}, {"name": "Lead II", "categories": ["soil"], "amount": 2.03e-19}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2.59e-17}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 8.29e-17}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2.59e-17}, {"name": "Lead II", "categories": ["water"], "amount": 2.59e-17}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.93e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5100}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.04e-07}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 626}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 6.59e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.1e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.1e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.000589}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.000883}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.000883}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 43}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.18e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.05e-05}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 44400}, {"name": "Mancozeb", "categories": ["air"], "amount": 36600}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.000845}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.59e-05}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 9.45e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 9.45e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.000868}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0677}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.000731}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.84e-13}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020000}, {"name": "Mercury II", "categories": ["air"], "amount": 1380000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1380000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 5.53e-18}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 7.75e-18}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 7.75e-18}, {"name": "Mercury II", "categories": ["soil"], "amount": 7.75e-18}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2.09e-15}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.58e-15}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2.09e-15}, {"name": "Mercury II", "categories": ["water"], "amount": 2.09e-15}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.27}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 702}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 455}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 0.82}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 0.347}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 0.347}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 45.5}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.000275}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.000191}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.02}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.358}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0492}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0998}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.0416}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.0416}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.806}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.41}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Methanol", "categories": ["air"], "amount": 0.122}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.122}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.00305}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water"], "amount": 0.0422}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 96.2}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 32500}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.422}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 0.206}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water"], "amount": 0.0678}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 5.42}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 15800}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 12800}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 0.0597}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 0.0575}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 0.0517}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 0.0517}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.4}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.4}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.303}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.2}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.23}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.55}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.0199}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air"], "amount": 55.8}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 55.8}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 566}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 40.4}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 397}, {"name": "Methylamine", "categories": ["air"], "amount": 305}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 305}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water"], "amount": 0.216}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 5890}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 18.4}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 15.7}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water"], "amount": 11.3}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 40000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.21}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 0.856}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090000}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 899000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 6.48e-05}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.81e-05}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.81e-05}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.85}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2110}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2110}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1460}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1460}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2.97e-18}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.89e-18}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.89e-18}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 5.89e-18}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.22e-17}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.88e-17}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.22e-17}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.22e-17}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.014}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00603}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 27.6}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 2.3}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 801}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.584}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.967}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.165}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 606}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 271000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 271000}, {"name": "Nickel II", "categories": ["air"], "amount": 187000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 7.13e-17}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.35e-16}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.35e-16}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.35e-16}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.91e-15}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.77e-15}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.91e-15}, {"name": "Nickel II", "categories": ["water"], "amount": 2.91e-15}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 645}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 531}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 7.28e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 3.32e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.1e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.1e-08}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.1}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.8}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 176}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.00469}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 21.7}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 5.82e-05}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00085}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.133}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 9.68}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 24.9}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 38.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.35}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.34}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.4}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 4.69e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 276}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.8}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 6.44e-05}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 490}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 69.2}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 69.2}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air"], "amount": 0.0207}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.0207}, {"name": "Pentane", "categories": ["water"], "amount": 0.0196}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11100}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 401}, {"name": "Permethrin", "categories": ["water"], "amount": 1160}, {"name": "Phenanthrene", "categories": ["air"], "amount": 31.3}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 37}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49}, {"name": "Phenol", "categories": ["air"], "amount": 1.18}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.00553}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water"], "amount": 0.0981}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 13}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 13}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 5980}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 5980}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.116}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.136}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 47.2}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 272}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4160}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.187}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.84}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.603}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 10.7}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.4}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 7.34}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00153}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.00909}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.000503}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 77.9}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.378}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 50.4}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 77.3}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 77.3}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 63.8}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 54.6}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 6.77}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3440}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 37.6}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 885}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 3.94e-05}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 4.05e-06}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06}, {"name": "Propanal", "categories": ["air"], "amount": 0.622}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.622}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.881}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.21}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.881}, {"name": "Propanal", "categories": ["water"], "amount": 0.881}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air"], "amount": 0.0504}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0504}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.003}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water"], "amount": 0.0302}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.00379}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.15}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.536}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.237}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water"], "amount": 0.487}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.0204}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air"], "amount": 51.4}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 51.4}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0154}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water"], "amount": 0.032}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.00326}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.41}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.74}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Pyrene", "categories": ["air"], "amount": 121}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 140}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 232}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.000429}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 119}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 667}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 211}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 267}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 932}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 932}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.000183}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 26.7}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.000889}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 89800}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 89800}, {"name": "Selenium IV", "categories": ["air"], "amount": 62100}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 62100}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 3.35e-17}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 6.4e-17}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 6.4e-17}, {"name": "Selenium IV", "categories": ["soil"], "amount": 6.4e-17}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 8.79e-16}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 8.28e-16}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 8.79e-16}, {"name": "Selenium IV", "categories": ["water"], "amount": 8.79e-16}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0594}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.0666}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9630000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9630000}, {"name": "Silver I", "categories": ["air"], "amount": 6670000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 6670000}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 4.63e-16}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 8.63e-16}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 8.63e-16}, {"name": "Silver I", "categories": ["soil"], "amount": 8.63e-16}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 2.55e-14}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 5.22e-14}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 2.55e-14}, {"name": "Silver I", "categories": ["water"], "amount": 2.55e-14}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Simazine", "categories": ["air"], "amount": 9400}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 9.4}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.05}, {"name": "Simazine", "categories": ["water"], "amount": 3.05}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air"], "amount": 15.4}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 15.4}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.32e-21}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water"], "amount": 2.8e-21}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 77.2}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air"], "amount": 0.00511}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00418}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water"], "amount": 0.0139}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 0.00791}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1250}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1490}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1490}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.000647}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.72e-10}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.72e-10}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.61}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2820}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.0907}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.0888}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water"], "amount": 0.0838}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.97}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 99300}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 75900}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 7.63}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 4.7}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.13}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.13}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 178000}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 135000}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.95}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.71}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 7.87}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.00589}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 286}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 47.8}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.313}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.568}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84100}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 84100}, {"name": "Thallium I", "categories": ["air"], "amount": 58200}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 58200}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.85e-16}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1.9e-15}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1.9e-15}, {"name": "Thallium I", "categories": ["soil"], "amount": 1.9e-15}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.24e-15}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 6.41e-16}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.24e-15}, {"name": "Thallium I", "categories": ["water"], "amount": 2.24e-15}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1090}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.00387}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.00354}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.00279}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.00279}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.000621}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 49}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 0.000115}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water"], "amount": 0.0213}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5860}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 977}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 732}, {"name": "Thiodicarb", "categories": ["water"], "amount": 732}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4360}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2770}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 7.32}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.23}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 964}, {"name": "Thiram", "categories": ["air"], "amount": 564}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.303}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.161}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Thiram", "categories": ["water"], "amount": 1.83}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80200}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 80200}, {"name": "Tin ion", "categories": ["air"], "amount": 55500}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 55500}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1.37e-18}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 2.43e-16}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 4.57e-16}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2.43e-16}, {"name": "Tin ion", "categories": ["water"], "amount": 2.43e-16}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air"], "amount": 0.0281}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0281}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.00928}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water"], "amount": 0.0301}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.248}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.248}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.116}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.247}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 871}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 18.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.00155}, {"name": "Triallate", "categories": ["air"], "amount": 47}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 70.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 0.0748}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 152000}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.0075}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 0.0036}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.24}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.00144}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0529}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1.77}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 904}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 9.6e-07}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 1.8e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 25.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6730000}, {"name": "Triflumuron", "categories": ["air"], "amount": 4840000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 84000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 58600}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 11400}, {"name": "Triflumuron", "categories": ["water"], "amount": 11400}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 31.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 31.8}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000264}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.00987}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 6.86e-07}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water"], "amount": 1.29e-05}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.000198}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 271000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 271000}, {"name": "Vanadium V", "categories": ["air"], "amount": 187000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 2.86e-16}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 5.39e-16}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 5.39e-16}, {"name": "Vanadium V", "categories": ["soil"], "amount": 5.39e-16}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.18e-14}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.4e-15}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.18e-14}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.18e-14}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air"], "amount": 0.0139}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0139}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.00551}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water"], "amount": 0.0183}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95800}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 196000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 196000}, {"name": "Zinc II", "categories": ["air"], "amount": 136000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 136000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.21e-16}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.15e-16}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.15e-16}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.15e-16}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.29e-14}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.32e-15}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.29e-14}, {"name": "Zinc II", "categories": ["water"], "amount": 1.29e-14}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 74.4}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.00806}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0267}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.0187}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.062}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.0351}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.01}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.034}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air"], "amount": 535}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 535}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.405}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water"], "amount": 0.84}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 18.7}]}, {"unit": "kg oil-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "energy resources: non-renewable, fossil no LT", "fossil fuel potential (FFP) no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.22}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.42}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.22}]}, {"unit": "kg P-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "eutrophication: freshwater no LT", "freshwater eutrophication potential (FEP) no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "eutrophication: marine no LT", "marine eutrophication potential (MEP) no LT"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.776}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water"], "amount": 0.23}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water"], "amount": 0.0671}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.297}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.0902}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.297}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "human toxicity: carcinogenic no LT", "human toxicity potential (HTPc) no LT"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00065}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.065}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.081}, {"name": "Acephate", "categories": ["water"], "amount": 0.081}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.00325}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.0313}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.434}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.4}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 49.8}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 9.72}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.72}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.216}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1.45}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 41.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 41.4}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air"], "amount": 0.0322}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.0322}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.7e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water"], "amount": 0.0242}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Arsenic ion", "categories": ["air"], "amount": 852}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 852}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 31.4}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 19.1}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 19.1}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 19.1}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 345}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 29.1}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 345}, {"name": "Arsenic ion", "categories": ["water"], "amount": 345}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.27}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 0.735}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.54}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.54}, {"name": "Atrazine", "categories": ["water"], "amount": 1.54}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0765}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0765}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0107}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.33}, {"name": "Benzene", "categories": ["air"], "amount": 1.44}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.158}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.354}, {"name": "Benzene", "categories": ["water"], "amount": 0.354}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.0375}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.145}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0284}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0961}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 93.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 93.8}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1150}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 36.5}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 36.5}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Beryllium II", "categories": ["air"], "amount": 265}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 265}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.749}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.0621}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.0621}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.0621}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 0.121}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 0.0166}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 0.121}, {"name": "Beryllium II", "categories": ["water"], "amount": 0.121}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air"], "amount": 1.33}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.33}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63}, {"name": "Cadmium II", "categories": ["air"], "amount": 232}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 232}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 110}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.14}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.14}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.14}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.38}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.425}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.38}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.38}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.0216}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.84}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 3.27}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 3.27}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.293}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.29}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air"], "amount": 1.26}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.26}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.369}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water"], "amount": 0.862}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 0.0799}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.0212}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.0361}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 0.097}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 0.097}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25700}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 25700}, {"name": "Chromium VI", "categories": ["air"], "amount": 19900}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 19900}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 4390}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 5720}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 5720}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5720}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 7440}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 660}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 7440}, {"name": "Chromium VI", "categories": ["water"], "amount": 7440}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 241}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0637}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 80.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 39.9}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 7.95}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 27.1}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.0566}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.0566}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.24e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.0109}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 102000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 102000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 92300000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 92300000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 9230000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 7310000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 7310000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 7310000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 226000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 73200000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 226000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 226000000}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 4}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0676}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0676}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 5.07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.244}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.244}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.652}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.223}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.223}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.78}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 13.4}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 3.2e-05}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0012}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.423}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.93}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.3}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.8}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 3.36}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 12.5}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00626}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.137}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00064}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6}, {"name": "Furan", "categories": ["air"], "amount": 95}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 95}, {"name": "Furfural", "categories": ["air"], "amount": 0.29}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air"], "amount": 0.00483}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.00483}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water"], "amount": 0.00265}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.129}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water"], "amount": 10.2}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.172}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.172}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0234}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0553}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.27}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.27}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air"], "amount": 0.128}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.128}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.9}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.9}, {"name": "Lead II", "categories": ["air"], "amount": 18.6}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 18.6}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.949}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0847}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0847}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0847}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.318}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.144}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.318}, {"name": "Lead II", "categories": ["water"], "amount": 0.318}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 12.5}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.222}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.1}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.1}, {"name": "Mercury II", "categories": ["air"], "amount": 69.6}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 69.6}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 29.4}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.21}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.21}, {"name": "Mercury II", "categories": ["soil"], "amount": 1.21}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 139}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 57.4}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 139}, {"name": "Mercury II", "categories": ["water"], "amount": 139}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 12.3}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 12.3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0881}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 255}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 255}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 135}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 236}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.88}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.147}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.147}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.0171}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.0549}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.4}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.903}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 502}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 502}, {"name": "Nickel II", "categories": ["air"], "amount": 373}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 373}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 47.5}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 12.3}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 12.3}, {"name": "Nickel II", "categories": ["soil"], "amount": 12.3}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 22.8}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.49}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 22.8}, {"name": "Nickel II", "categories": ["water"], "amount": 22.8}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.0724}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.849}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 33.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 33.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.0684}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.895}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.93}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.93}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.579}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4.64}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.000638}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.0364}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00525}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.486}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.307}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 114}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 114}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 5120}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 3.53}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0588}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.365}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.968}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.0951}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air"], "amount": 1.28}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.28}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00976}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Styrene", "categories": ["water"], "amount": 0.281}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.523}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.13}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air"], "amount": 0.0134}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0134}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.000339}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water"], "amount": 0.00226}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0111}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0371}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0715}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.407}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.8}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air"], "amount": 0.0204}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.000267}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water"], "amount": 0.00229}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 0.241}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.313}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.313}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00964}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.0338}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "human toxicity: non-carcinogenic no LT", "human toxicity potential (HTPnc) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.414}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.9}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.1}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 3.81}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 5.24}, {"name": "2,4-D", "categories": ["water"], "amount": 5.24}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.105}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 1.88}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 1.88}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0377}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00147}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.9e-06}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00878}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.0297}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.19}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 19300}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 16500}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 620}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 773}, {"name": "Acephate", "categories": ["water"], "amount": 773}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.056}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.545}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Acetone", "categories": ["air"], "amount": 0.0878}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0878}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water"], "amount": 0.0132}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0204}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.131}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 309}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 309}, {"name": "Acrolein", "categories": ["air"], "amount": 9490}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 9490}, {"name": "Acrolein", "categories": ["water"], "amount": 294}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.74e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water"], "amount": 0.0752}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air"], "amount": 707}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 707}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.85}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 9.16}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.36}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.36}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 36}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 322}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.48}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.1}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 30.4}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.835}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 0.808}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 25.6}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 6.95}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.65}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.361}, {"name": "Aniline", "categories": ["air"], "amount": 5.32}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 5.32}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.00623}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 4.09}, {"name": "Aniline", "categories": ["water"], "amount": 4.09}, {"name": "Anthracene", "categories": ["air"], "amount": 0.0511}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water"], "amount": 0.723}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5090}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5090}, {"name": "Antimony ion", "categories": ["air"], "amount": 3860}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3860}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 195}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 657}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 657}, {"name": "Antimony ion", "categories": ["soil"], "amount": 657}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 805}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 50.7}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 805}, {"name": "Antimony ion", "categories": ["water"], "amount": 805}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 141000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 141000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 106000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 106000}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 6550}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 4850}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 4850}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 4850}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 87400}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 7370}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 87400}, {"name": "Arsenic ion", "categories": ["water"], "amount": 87400}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 6.7}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.9}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.92}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water"], "amount": 6.11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1060}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1060}, {"name": "Barium II", "categories": ["air"], "amount": 842}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 842}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 78.5}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 452}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 452}, {"name": "Barium II", "categories": ["soil"], "amount": 452}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 184}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 7.24}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 184}, {"name": "Barium II", "categories": ["water"], "amount": 184}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0841}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0331}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.3}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.331}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 2.75}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 2.75}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0475}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28}, {"name": "Benzene", "categories": ["air"], "amount": 1.22}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.301}, {"name": "Benzene", "categories": ["water"], "amount": 0.301}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.505}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.00398}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.107}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1340}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 126}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 126}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 500}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27500}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27500}, {"name": "Beryllium II", "categories": ["air"], "amount": 641000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 641000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 25.7}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.29}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.29}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.29}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.46}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 0.613}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.46}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.46}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 372}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.994}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.21}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 72.7}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 72.7}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 101}, {"name": "Bifenthrin", "categories": ["air"], "amount": 65}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 4.23}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 15.9}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 1970}, {"name": "Bifenthrin", "categories": ["water"], "amount": 1970}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.77}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.96}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.5}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.26}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.6}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.6}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.79}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air"], "amount": 6.67}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.67}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air"], "amount": 0.431}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.431}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.000981}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water"], "amount": 0.0541}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000}, {"name": "Cadmium II", "categories": ["air"], "amount": 35800}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 35800}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1050}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1050}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1050}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1270}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 390}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1270}, {"name": "Cadmium II", "categories": ["water"], "amount": 1270}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.779}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.9}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.16}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.3}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.3}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.5}, {"name": "Carbendazim", "categories": ["air"], "amount": 29.5}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.05}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Carbendazim", "categories": ["water"], "amount": 1.83}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 140}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 823}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 823}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 215}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 667}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 14}, {"name": "Carboxin", "categories": ["air"], "amount": 12.3}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.249}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.855}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Carboxin", "categories": ["water"], "amount": 1.61}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 3.52e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0152}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air"], "amount": 12.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.73e-05}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water"], "amount": 0.619}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 921}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 4.18}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.861}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water"], "amount": 9.89}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air"], "amount": 21.8}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.96}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water"], "amount": 12.8}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 8.14}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.72}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 10}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 10}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 79.8}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 338}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 88.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.748}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.319}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.319}, {"name": "Chromium III", "categories": ["air"], "amount": 0.238}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.238}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.00785}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.0416}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.0416}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.0416}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 0.00873}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 0.00304}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.00873}, {"name": "Chromium III", "categories": ["water"], "amount": 0.00873}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 430}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 430}, {"name": "Chromium VI", "categories": ["air"], "amount": 5680}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 5680}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 14.2}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 44}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 44}, {"name": "Chromium VI", "categories": ["soil"], "amount": 44}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 57.4}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 5.08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 57.4}, {"name": "Chromium VI", "categories": ["water"], "amount": 57.4}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.3}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.3}, {"name": "Copper ion", "categories": ["air"], "amount": 31}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 31}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 18.6}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.531}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.531}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.531}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.86}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 0.717}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.86}, {"name": "Copper ion", "categories": ["water"], "amount": 2.86}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air"], "amount": 0.18}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00479}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.066}, {"name": "Cumene", "categories": ["water"], "amount": 0.066}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0041}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0438}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.48}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.935}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 0.768}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 21.6}, {"name": "Cypermethrin", "categories": ["water"], "amount": 21.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.04}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 31.3}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 253}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 38}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.2}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4.13}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.59}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.59}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 86.8}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 865}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 42.1}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0958}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0958}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.7}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.88}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 17.3}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 41.9}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 41.9}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 66.2}, {"name": "Dimethoate", "categories": ["air"], "amount": 20.3}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.0765}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 14.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.702}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 255}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 30.3}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 68.3}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 68.3}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 46.2}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.554}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 88.7}, {"name": "Diuron", "categories": ["air"], "amount": 78.7}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 2.03}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.36}, {"name": "Diuron", "categories": ["water"], "amount": 12.1}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.00919}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.61}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 28.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0826}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.321}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.163}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.281}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.92}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.92}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5.95}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.95}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 361}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 553}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 67.6}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 5.47}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 5.47}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 266}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0843}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0843}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00287}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0146}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00143}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 0.244}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2.73}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 22300}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.96}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.31}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.34}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Fipronil", "categories": ["air"], "amount": 1520}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 615}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 1570}, {"name": "Fipronil", "categories": ["water"], "amount": 1570}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.788}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 20.7}, {"name": "Fluorene", "categories": ["air"], "amount": 0.692}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 1.3}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 6.78}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00311}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.447}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00128}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.972}, {"name": "Furan", "categories": ["air"], "amount": 35.5}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 49.2}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 3.53}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.768}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.2}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "Hexane", "categories": ["air"], "amount": 2.2}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.2}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0475}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Hexane", "categories": ["water"], "amount": 1.23}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.504}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 5480}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00218}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0273}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0332}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.104}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 40.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 40.7}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.67}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 0.197}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 0.253}, {"name": "Imazethapyr", "categories": ["water"], "amount": 0.253}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air"], "amount": 57.1}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 2.07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.73}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.73}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 0.113}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29800}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 29800}, {"name": "Lead II", "categories": ["air"], "amount": 22300}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 22300}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1050}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 102}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 102}, {"name": "Lead II", "categories": ["soil"], "amount": 102}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 382}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 173}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 382}, {"name": "Lead II", "categories": ["water"], "amount": 382}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 495}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.197}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 252}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 9.59}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 21.2}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 21.2}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.086}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.22}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.22}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.0736}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.74}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0272}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.2}, {"name": "Mancozeb", "categories": ["air"], "amount": 47.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2.75}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 1.77}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2.43}, {"name": "Mancozeb", "categories": ["water"], "amount": 2.43}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.00733}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 29000}, {"name": "Mercury II", "categories": ["air"], "amount": 24800}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 24800}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 11700}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 489}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 489}, {"name": "Mercury II", "categories": ["soil"], "amount": 489}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 56200}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 23300}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 56200}, {"name": "Mercury II", "categories": ["water"], "amount": 56200}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.53}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 75}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1530}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.16}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 366}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 366}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 369}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 369}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 9.31}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 9.31}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2930}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2930}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1550}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2710}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32.9}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.9}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 33.3}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 33.3}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Methanol", "categories": ["air"], "amount": 0.156}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.156}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000666}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water"], "amount": 0.0194}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.22}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 456}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.72}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 9.35}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water"], "amount": 15.4}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00853}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 89.8}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.11}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.342}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.43}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water"], "amount": 3.37}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.7}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 2.42}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.9}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 12.7}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 0.695}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 1.18}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 1.18}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 77.5}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 9.48}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3550}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 3550}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2630}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2630}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1320}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 419}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 419}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 419}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 85.5}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 9.66}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 85.5}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 85.5}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.00213}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.00684}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 213}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.514}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Naphthalene", "categories": ["air"], "amount": 11}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.03}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.206}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96.3}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 96.3}, {"name": "Nickel II", "categories": ["air"], "amount": 71.5}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 71.5}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 7.3}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.37}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.37}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.37}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 4.4}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 0.673}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 4.4}, {"name": "Nickel II", "categories": ["water"], "amount": 4.4}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.2}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.2}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0148}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 0.0138}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.172}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.05}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.6}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0604}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 8.97}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.71}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.162}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 2.52}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Permethrin", "categories": ["water"], "amount": 10.8}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "Phenol", "categories": ["air"], "amount": 0.493}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.493}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.000864}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.315}, {"name": "Phenol", "categories": ["water"], "amount": 0.315}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 734}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 734}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.32}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 34.6}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 17.8}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 602}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00317}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.181}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.00406}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.251}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 23.2}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 9.61}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.428}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 6.83}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 22.6}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.399}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 27.9}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.881}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.385}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.477}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1.87}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.4}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 7.72}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water"], "amount": 36.6}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 3.2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 2.74}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water"], "amount": 14.8}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 7.19}, {"name": "Pyrene", "categories": ["air"], "amount": 0.624}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 11.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.342}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 0.573}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 31.1}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 31.1}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 14.6}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.531}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.608}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.492}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 10.9}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 68100}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 68100}, {"name": "Silver I", "categories": ["air"], "amount": 48800}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 48800}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 45500}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 756}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 756}, {"name": "Silver I", "categories": ["soil"], "amount": 756}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 689}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 201}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 689}, {"name": "Silver I", "categories": ["water"], "amount": 689}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 418}, {"name": "Simazine", "categories": ["air"], "amount": 344}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 17.3}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 19.3}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 33.5}, {"name": "Simazine", "categories": ["water"], "amount": 33.5}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air"], "amount": 0.855}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.855}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.0046}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water"], "amount": 0.0211}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 32}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 5.51}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water"], "amount": 17.1}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 24.4}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.47}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.52}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1860}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1560}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 62.5}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 280}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 959}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 0.0552}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 342}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 6.15}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 11.9}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Thallium I", "categories": ["air"], "amount": 7300}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 7300}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2480}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 6950}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 6950}, {"name": "Thallium I", "categories": ["soil"], "amount": 6950}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 5950}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 379}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 5950}, {"name": "Thallium I", "categories": ["water"], "amount": 5950}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air"], "amount": 26.8}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.72}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.72}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 7.5}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.67}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 4.65}, {"name": "Thiodicarb", "categories": ["water"], "amount": 4.65}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.3}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 15.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.905}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.33}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.91}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.91}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23}, {"name": "Thiram", "categories": ["air"], "amount": 11.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.0675}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.208}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 4.91}, {"name": "Thiram", "categories": ["water"], "amount": 4.91}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067}, {"name": "Toluene", "categories": ["air"], "amount": 0.858}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.858}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0184}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water"], "amount": 0.0714}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.318}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.14}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Triallate", "categories": ["air"], "amount": 9.42}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.76}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 72.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 44.1}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 144}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.78}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 17.9}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 15.8}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.16}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.7}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 128}, {"name": "Trifluralin", "categories": ["water"], "amount": 128}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.381}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 929}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 929}, {"name": "Vanadium V", "categories": ["air"], "amount": 703}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 703}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 66}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 58.7}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 58.7}, {"name": "Vanadium V", "categories": ["soil"], "amount": 58.7}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 605}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 37.6}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 605}, {"name": "Vanadium V", "categories": ["water"], "amount": 605}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.68}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air"], "amount": 1.58}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0182}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water"], "amount": 0.0692}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11800}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 11800}, {"name": "Zinc II", "categories": ["air"], "amount": 8250}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 8250}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 37700}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 205}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 205}, {"name": "Zinc II", "categories": ["soil"], "amount": 205}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 8240}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 338}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 8240}, {"name": "Zinc II", "categories": ["water"], "amount": 8240}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5.95}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00619}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.027}]}, {"unit": "kg Co-60-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "ionising radiation no LT", "ionising radiation potential (IRP) no LT"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 3.14e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 0.000438}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 3.14e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 3.14e-05}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 54.5}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 0.00345}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 0.0482}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 0.00345}, {"name": "Americium-241", "categories": ["water"], "amount": 0.00345}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0491}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.000891}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00473}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water"], "amount": 8.64}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00582}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 10}, {"name": "Caesium-137", "categories": ["water"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["air"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.00609}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0273}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.00609}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.00609}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00245}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.64}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 4.05e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 4.12e-05}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["air"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 0.287}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 0.287}, {"name": "Iodine-129", "categories": ["water"], "amount": 0.287}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.03}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 8.48e-06}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0191}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.88e-06}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00145}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.000236}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water"], "amount": 0.03}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.0245}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000455}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.0245}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.0245}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 7.91e-05}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 7.91e-05}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water"], "amount": 0.0309}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 8.55e-06}]}, {"unit": "m2*a crop-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "land use no LT", "agricultural land occupation (LOP) no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -36.75}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}]}, {"unit": "kg Cu-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "material resources: metals/minerals no LT", "surplus ore potential (SOP) no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.169}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.169}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.572}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.131}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0228}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 76.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.32}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.32}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.0951}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0951}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.305}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0108}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0104}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 6.57}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.57}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0488}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.0154}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 83.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 83.8}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 317}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.192}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.00283}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 96.7}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 103}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 103}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 7.09}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 7.09}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.79}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.79}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.0823}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0823}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 8.96}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 5.2}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00916}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00576}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 528}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 528}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 13.3}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.428}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0875}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.0378}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 52.9}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 52.9}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 18.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 18.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 1200}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 5.03}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.03}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 7.78}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 25.2}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 3.97}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.153}]}, {"unit": "kg CFC-11-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "ozone depletion no LT", "ozone depletion potential (ODPinfinite) no LT"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.011}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.011}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.178}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.664}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.664}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.134}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.134}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.27}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.067}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.067}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.011}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.061}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.061}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.061}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.061}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.00726}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.00726}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.734}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.734}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.78}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.78}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 8.78}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 8.78}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 14.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 14.1}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.045}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.045}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.587}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.587}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.022}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.895}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.895}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg PM2.5-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "particulate matter formation no LT", "particulate matter formation potential (PMFP) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.17}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.11}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.29}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.23}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "photochemical oxidant formation: human health no LT", "photochemical oxidant formation potential: humans (HOFP) no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.345}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.131}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.131}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.149}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0653}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.199}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0326}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0326}, {"name": "Acetone", "categories": ["air"], "amount": 0.0218}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Acrolein", "categories": ["air"], "amount": 0.196}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.174}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.0689}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.0689}, {"name": "Benzene", "categories": ["air"], "amount": 0.0363}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0363}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.167}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Butadiene", "categories": ["air"], "amount": 0.323}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.112}, {"name": "Butane", "categories": ["air"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.112}, {"name": "Butanol", "categories": ["air"], "amount": 0.189}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.228}, {"name": "Butene", "categories": ["air"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.228}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.0943}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0943}, {"name": "Cumene", "categories": ["air"], "amount": 0.116}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.102}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.167}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Ethane", "categories": ["air"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00363}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00363}, {"name": "Ethanol", "categories": ["air"], "amount": 0.123}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.123}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0689}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.363}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.134}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.134}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.167}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0109}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Heptane", "categories": ["air"], "amount": 0.127}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.127}, {"name": "Hexane", "categories": ["air"], "amount": 0.145}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.163}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.163}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0266}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0266}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Isoprene", "categories": ["air"], "amount": 0.413}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.413}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0109}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00363}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Methanol", "categories": ["air"], "amount": 0.0471}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.116}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0399}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0399}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Phenol", "categories": ["air"], "amount": -0.0181}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0181}, {"name": "Propanal", "categories": ["air"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.261}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0508}, {"name": "Propane", "categories": ["air"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0508}, {"name": "Propanol", "categories": ["air"], "amount": 0.174}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.424}, {"name": "Propene", "categories": ["air"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.424}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0471}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Styrene", "categories": ["air"], "amount": 0.0181}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0181}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00363}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Toluene", "categories": ["air"], "amount": 0.16}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.105}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.312}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.312}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.283}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.283}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "photochemical oxidant formation: terrestrial ecosystems no LT", "photochemical oxidant formation potential: ecosystems (EOFP) no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.555}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.21}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.21}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.479}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.105}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.304}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.321}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0526}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0526}, {"name": "Acetone", "categories": ["air"], "amount": 0.0351}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "Acrolein", "categories": ["air"], "amount": 0.316}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.316}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.281}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.111}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.111}, {"name": "Benzene", "categories": ["air"], "amount": 0.0585}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0585}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.269}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Butadiene", "categories": ["air"], "amount": 0.52}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.52}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.181}, {"name": "Butane", "categories": ["air"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.181}, {"name": "Butanol", "categories": ["air"], "amount": 0.304}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Butene", "categories": ["air"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.152}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Cumene", "categories": ["air"], "amount": 0.187}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.164}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.269}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.0468}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00585}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00585}, {"name": "Ethanol", "categories": ["air"], "amount": 0.199}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.111}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.111}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.585}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.216}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.216}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.269}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0175}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Heptane", "categories": ["air"], "amount": 0.205}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.205}, {"name": "Hexane", "categories": ["air"], "amount": 0.234}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.263}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.263}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0429}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Isoprene", "categories": ["air"], "amount": 0.666}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.666}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0175}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00585}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Methanol", "categories": ["air"], "amount": 0.076}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.187}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0643}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0643}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Phenol", "categories": ["air"], "amount": -0.0292}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0292}, {"name": "Propanal", "categories": ["air"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.421}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0818}, {"name": "Propane", "categories": ["air"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0818}, {"name": "Propanol", "categories": ["air"], "amount": 0.281}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.684}, {"name": "Propene", "categories": ["air"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.684}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.076}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Styrene", "categories": ["air"], "amount": 0.0292}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0292}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00585}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Toluene", "categories": ["air"], "amount": 0.257}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.17}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.503}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.503}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.456}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.456}]}, {"unit": "cubic meter", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "water use no LT", "water consumption potential (WCP) no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Water", "categories": ["air"], "amount": 1}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg SO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "acidification: terrestrial", "terrestrial acidification potential (TAP)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.552}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.36}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}]}, {"unit": "kg CO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "climate change", "global warming potential (GWP1000)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 193}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 193}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 938}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9620}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2350}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 96}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 635}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8520}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3690}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 13.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 13.8}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7150}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2110}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 179}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 817}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 36}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 36}, {"name": "Methane, fossil", "categories": ["air"], "amount": 36}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 36}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 34}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 34}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 34}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 15}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 34}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2020}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17900}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9480}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26100}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "ecotoxicity: freshwater", "freshwater ecotoxicity potential (FETP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.000522}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.836}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.11e-05}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.0411}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.203}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.91}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 2.62}, {"name": "2,4-D", "categories": ["water"], "amount": 2.62}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0732}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.154}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0732}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.182}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.154}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0644}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.27}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.27}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0248}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.0144}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.98e-06}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.00477}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.7}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.83e-05}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 4.87e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.0653}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.159}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.00199}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water"], "amount": 14.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0663}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.714}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.89}, {"name": "Acephate", "categories": ["water"], "amount": 0.89}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.96e-05}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.144}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000246}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.000411}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.95e-09}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.169}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air"], "amount": 4.32e-05}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.32e-05}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 6.06e-06}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water"], "amount": 0.00217}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.000193}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.000193}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00874}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.000901}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 0.282}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 5.09}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air"], "amount": 0.084}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.084}, {"name": "Acrolein", "categories": ["water"], "amount": 69.4}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.95e-09}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water"], "amount": 0.132}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0236}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0236}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.000599}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.441}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 11.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0228}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0228}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 25}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.759}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 56}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.309}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 341}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 271}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 147}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1100}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 82800}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 35}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.13}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 39.4}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air"], "amount": 0.00401}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00401}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.11e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "Aniline", "categories": ["water"], "amount": 1.05}, {"name": "Anthracene", "categories": ["air"], "amount": 0.197}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 354}, {"name": "Anthracene", "categories": ["water"], "amount": 354}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.231}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 24.3}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.3}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.3}, {"name": "Antimony ion", "categories": ["air"], "amount": 45.2}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 45.2}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 45.6}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 92.1}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 92.1}, {"name": "Antimony ion", "categories": ["soil"], "amount": 92.1}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 340}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 340}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 2.19e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 340}, {"name": "Antimony ion", "categories": ["water"], "amount": 340}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.99}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.99}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.99}, {"name": "Arsenic ion", "categories": ["air"], "amount": 2.1}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 2.1}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.25}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 2.36}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 2.36}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 2.36}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.15e-20}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water"], "amount": 62.2}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.453}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.83}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14.8}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 85.3}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 179}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 179}, {"name": "Atrazine", "categories": ["water"], "amount": 179}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.452}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.745}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 233}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 0.198}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 27.3}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 156}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 156}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.482}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.482}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.482}, {"name": "Barium II", "categories": ["air"], "amount": 1.11}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.11}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil"], "amount": 2.51}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 4.57e-21}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.79}, {"name": "Barium II", "categories": ["water"], "amount": 2.79}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.066}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0228}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.144}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0548}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.681}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.681}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 2.08}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1590}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.00268}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00268}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.744}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.72e-05}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water"], "amount": 0.0868}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000158}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.748}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 6.88e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.293}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 24.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.069}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.069}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 15.2}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.411}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.411}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 134}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 134}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.0492}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0338}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.00704}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 4.17e-06}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.285}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 1.63}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.5}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.5}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.678}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.22}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.22}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.22}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.87e-20}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water"], "amount": 55.9}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 251}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 37.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 284}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 21200}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 21200}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.509}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.8}, {"name": "Bifenthrin", "categories": ["air"], "amount": 40.3}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 92.9}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 12200}, {"name": "Bifenthrin", "categories": ["water"], "amount": 12200}, {"name": "Bisphenol A", "categories": ["water"], "amount": 44.9}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.0297}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 9.99}, {"name": "Bromopropane", "categories": ["air"], "amount": 3.63e-05}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.129}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.89}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.88}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 167}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 167}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 11.7}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3.63}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air"], "amount": 0.000144}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000144}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 4.79e-06}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water"], "amount": 0.0183}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.327}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.0771}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 444}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.777}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.777}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.777}, {"name": "Cadmium II", "categories": ["air"], "amount": 1.17}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1.17}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.04}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.04}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.04}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.04}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 4.32e-21}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water"], "amount": 16.8}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 9.15}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 116}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 116}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57}, {"name": "Carbendazim", "categories": ["air"], "amount": 7.01}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 4.51}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 26.3}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 46}, {"name": "Carbendazim", "categories": ["water"], "amount": 46}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.705}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 9.93e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.349}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 3.47}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28}, {"name": "Carboxin", "categories": ["air"], "amount": 4.21}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 13.8}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Carboxin", "categories": ["water"], "amount": 26.1}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 6.33e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0948}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 107}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 90.7}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 719}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 4130}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 4130}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 4130}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air"], "amount": 39.5}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 39.5}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 9.72e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 217}, {"name": "Chloramine", "categories": ["water"], "amount": 217}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.66}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.396}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 63.4}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.535}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.0461}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1.66}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.66}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 2.9e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 9}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 8.52e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water"], "amount": 0.162}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.26}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 0.0804}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0804}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.000323}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.78}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.8}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 23.7}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 26.5}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 158}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 673}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 673}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.4}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 329}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1780}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 14700}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 14700}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 33.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10.9}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.202}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.202}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.202}, {"name": "Chromium III", "categories": ["air"], "amount": 0.402}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.402}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.418}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.853}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.853}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.853}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.07e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water"], "amount": 2.3}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 7.73}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73}, {"name": "Chromium VI", "categories": ["air"], "amount": 15.5}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 15.5}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 16.1}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 32.9}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 32.9}, {"name": "Chromium VI", "categories": ["soil"], "amount": 32.9}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 8.84e-20}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water"], "amount": 86.6}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 14.6}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.829}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.374}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.696}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 0.206}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.206}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.206}, {"name": "Cobalt II", "categories": ["air"], "amount": 0.224}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 0.224}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.14}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.265}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.265}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.265}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.86e-21}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water"], "amount": 6.34}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 5.17}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.17}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.17}, {"name": "Copper ion", "categories": ["air"], "amount": 5.48}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 5.48}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.28}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 6.17}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 6.17}, {"name": "Copper ion", "categories": ["soil"], "amount": 6.17}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 162}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 162}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.32e-20}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 162}, {"name": "Copper ion", "categories": ["water"], "amount": 162}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 9.15e-06}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.558}, {"name": "Cumene", "categories": ["water"], "amount": 0.558}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 7.28e-08}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0546}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 1.29e-08}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.0625}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 21.8}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.288}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.00489}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 259}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 841}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 63300}, {"name": "Cypermethrin", "categories": ["water"], "amount": 63300}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 2.01}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 12.8}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.591}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.69}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0535}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 2.2}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3.04}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 58.9}, {"name": "Deltamethrin", "categories": ["air"], "amount": 53.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 6310}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.139}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.776}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 16.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0153}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5.66}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.172}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.328}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.34}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 17.1}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0427}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.081}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.631}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.631}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 17.6}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 0.943}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 5.77}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 3.28}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 0.283}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.159}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 1.02}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.57e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.57e-06}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.8e-06}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.462}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.00036}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.00036}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.26e-10}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.00271}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.52}, {"name": "Difenoconazole", "categories": ["air"], "amount": 21.5}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 78.5}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 233}, {"name": "Difenoconazole", "categories": ["water"], "amount": 233}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 188}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 299}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2000}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 4860}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 4860}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.0156}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 3.91e-05}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.191}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.55}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 0.613}, {"name": "Dimethoate", "categories": ["air"], "amount": 3.37}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 5.71}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 38.7}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.883}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 2.19e-05}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.974}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 11.8}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 177}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 177}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 167}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 37.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 130}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 130}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 130}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 49.7}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 17400}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 0.391}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.391}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.7}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 8.71}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 19.6}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 19.6}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.43}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Diuron", "categories": ["air"], "amount": 35.2}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 15.2}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 98.2}, {"name": "Diuron", "categories": ["water"], "amount": 223}, {"name": "Dodecanol", "categories": ["water"], "amount": 22.5}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.318}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 6.84}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.281}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.732}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 12.6}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.58}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 41.1}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 83.8}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 83.8}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1500}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1000}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.000564}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 8.23e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 8.23e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.52e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000425}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 7.03e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0554}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.00517}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.55}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.24e-06}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water"], "amount": 0.00629}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.0468}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.328}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.328}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.592}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.9e-05}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0164}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.0405}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0405}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.27e-06}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.202}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.93e-09}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.425}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.000707}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.000707}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.000177}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0482}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 2.7}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 6.49}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 63.4}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.755}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.57}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 10}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 7.48}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 43.6}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 107}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.638}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.25}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 87.9}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 87.9}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.5}, {"name": "Fluazinam", "categories": ["air"], "amount": 289}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 105}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 743}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water"], "amount": 2260}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 7.99}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99}, {"name": "Fludioxonil", "categories": ["air"], "amount": 23.7}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 9.31}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 69.8}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 275}, {"name": "Fludioxonil", "categories": ["water"], "amount": 275}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.3}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.87}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 618}, {"name": "Fluorene", "categories": ["air"], "amount": 0.0118}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 7.12}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 4.11}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.164}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 30.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0314}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0314}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 4.68e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.907}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.98e-10}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0854}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00758}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.997}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air"], "amount": 1.3e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Furfural", "categories": ["air"], "amount": 0.00703}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 0.207}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.589}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.28}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.351}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water"], "amount": 2.39}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.85}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 32.1}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 32.1}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air"], "amount": 6.53e-09}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.53e-09}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 10.8}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "Hexane", "categories": ["water"], "amount": 0.141}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.37}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.06}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.0226}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water"], "amount": 93.4}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.5e-06}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.302}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.54e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.54e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 6.68e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.155}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.000362}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.000362}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.00621}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.26}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 6.21}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 0.674}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.79}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.95}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Imidacloprid", "categories": ["water"], "amount": 9.16}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72}, {"name": "Indoxacarb", "categories": ["air"], "amount": 11.8}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 34}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 6.11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.49}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 1.71e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.71e-08}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.0373}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0373}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.04e-05}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.175}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 4.85}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 598}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 68.9}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 423}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 48100}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 48100}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 48100}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.00867}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.45}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.0166}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0166}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0166}, {"name": "Lead II", "categories": ["air"], "amount": 0.0138}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0138}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.00439}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.00738}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.00738}, {"name": "Lead II", "categories": ["soil"], "amount": 0.00738}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.606}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.606}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.29e-23}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.606}, {"name": "Lead II", "categories": ["water"], "amount": 0.606}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.538}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 24.6}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.928}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0965}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.63}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.63}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.183}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 6}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 12.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.293}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0307}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.5}, {"name": "Mancozeb", "categories": ["air"], "amount": 14.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 56.7}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 78}, {"name": "Mancozeb", "categories": ["water"], "amount": 78}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.2}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 9.02e-07}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 1.34}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.34}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34}, {"name": "Mercury II", "categories": ["air"], "amount": 1.01}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.01}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.199}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.286}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.286}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.286}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 3.89e-21}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water"], "amount": 49.8}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.292}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 0.17}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 0.601}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.347}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.99}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 3.34}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 0.0683}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.202}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00275}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.81e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0292}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.48e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000288}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.534}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air"], "amount": 0.000132}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5e-06}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water"], "amount": 0.00493}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.21}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 28}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 8.61}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 47.7}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water"], "amount": 78.6}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.371}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.41}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 21.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 78.6}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 242}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 242}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.000379}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000379}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 8.04e-05}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water"], "amount": 0.0283}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.000365}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.72}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00341}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.0078}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.0078}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.753}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.89}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air"], "amount": 0.063}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.063}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 6.18e-06}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water"], "amount": 0.292}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.327}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 9.37}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 61.8}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 147}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 147}, {"name": "Metolachlor", "categories": ["water"], "amount": 147}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.41}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 149}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 295}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 772}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 520}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 3000}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 5070}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 5070}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 111}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.61}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.0363}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0363}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0363}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.0724}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.0724}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.0752}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.154}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.154}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.154}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 3.08e-22}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.41}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 3.13}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.288}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 4.55}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.000708}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 67.7}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 1.71}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.71}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71}, {"name": "Nickel II", "categories": ["air"], "amount": 2.16}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 2.16}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.17}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.17}, {"name": "Nickel II", "categories": ["soil"], "amount": 3.17}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 46}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 46}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.71e-20}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 46}, {"name": "Nickel II", "categories": ["water"], "amount": 46}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.125}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 0.328}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.27}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.87}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.00135}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.76}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.82}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.0156}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.0641}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.73}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 3.04}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.329}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 0.931}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.00485}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 13}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.033}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0129}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 38.1}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.183}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.692}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.63}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 176}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 176}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air"], "amount": 6.29e-06}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 6.29e-06}, {"name": "Pentane", "categories": ["water"], "amount": 7.18}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 5.08}, {"name": "Permethrin", "categories": ["water"], "amount": 2870}, {"name": "Phenanthrene", "categories": ["air"], "amount": 0.136}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 57}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air"], "amount": 0.00867}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00867}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.23e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.969}, {"name": "Phenol", "categories": ["water"], "amount": 0.969}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.136}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.136}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 19.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 5.52}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 45.2}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 8.88}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 33.2}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 60.6}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00054}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 15.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.000949}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 26.1}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 3.81e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.609}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.01e-05}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.24}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.84}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.455}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.196}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 31.7}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 13.2}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.0541}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 429}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.22}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 17.4}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.0201}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 0.0302}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air"], "amount": 0.000176}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.000176}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 0.102}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 5.1e-05}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.102}, {"name": "Propanal", "categories": ["water"], "amount": 0.102}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air"], "amount": 0.000117}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 5.28e-06}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water"], "amount": 0.00942}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 9.32}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 0.332}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.171}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 3.36}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 15.8}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water"], "amount": 74.9}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.32e-08}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.157}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0218}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.86e-06}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water"], "amount": 0.116}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.000651}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.000214}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.0706}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.91}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 8.24}, {"name": "Pyrene", "categories": ["air"], "amount": 1.18}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1810}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 245}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.0358}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 8.05}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.669}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.03}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 4.49}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 28.3}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 235}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2700}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2700}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.147}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 15.9}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.87}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.0405}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 0.673}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.673}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.673}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.975}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.975}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.843}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.65}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.65}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.65}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 5.99e-21}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water"], "amount": 15.3}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0962}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.268}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.41}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 16.6}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.6}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.6}, {"name": "Silver I", "categories": ["air"], "amount": 19.2}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 19.2}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 13.1}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 25}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 25}, {"name": "Silver I", "categories": ["soil"], "amount": 25}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 485}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 485}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.84e-20}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 485}, {"name": "Silver I", "categories": ["water"], "amount": 485}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.65}, {"name": "Simazine", "categories": ["air"], "amount": 11.9}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 5.66}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 33.1}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 57.7}, {"name": "Simazine", "categories": ["water"], "amount": 57.7}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.00158}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.00158}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 4.16e-26}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water"], "amount": 0.00822}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 19.9}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.86e-06}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.396}, {"name": "Styrene", "categories": ["water"], "amount": 0.396}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 36}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.285}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.285}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.209}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.52}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.52}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.83}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 13.1}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water"], "amount": 40.5}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 72.2}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 39.2}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 227}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 391}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 391}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 83.4}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 228}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 93.7}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 685}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 2350}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 72.6}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.91}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 22.2}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.00014}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.23}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 9.03}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.03}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.03}, {"name": "Thallium I", "categories": ["air"], "amount": 20.9}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 20.9}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 21.8}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 47.6}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 47.6}, {"name": "Thallium I", "categories": ["soil"], "amount": 47.6}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 53}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 53}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 7.06e-20}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 53}, {"name": "Thallium I", "categories": ["water"], "amount": 53}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 0.538}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.538}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.41}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.737}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 5.16}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiabendazole", "categories": ["water"], "amount": 15.1}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.55}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 9.32e-09}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water"], "amount": 9.04}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 12.6}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 79.2}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 147}, {"name": "Thiodicarb", "categories": ["water"], "amount": 147}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.812}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 10.4}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 15.1}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 3.9}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9}, {"name": "Thiram", "categories": ["air"], "amount": 5.91}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 4.12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 19.8}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 468}, {"name": "Thiram", "categories": ["water"], "amount": 468}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 0.133}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.133}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.133}, {"name": "Tin ion", "categories": ["air"], "amount": 0.113}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 0.113}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.0403}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.0696}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.0696}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.0696}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 7.72e-22}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water"], "amount": 4.77}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.72e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.139}, {"name": "Toluene", "categories": ["water"], "amount": 0.139}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.000153}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.000153}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.1e-05}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.345}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 36.6}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 715}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 0.171}, {"name": "Triallate", "categories": ["air"], "amount": 0.164}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.66}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 86.9}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 181}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 74.1}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 192}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1630}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.507}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 7.83}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.1e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.17}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.84}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 255}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 4.9e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.00133}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 12}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1500}, {"name": "Triflumuron", "categories": ["air"], "amount": 4670}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 2530}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 14100}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 22200}, {"name": "Triflumuron", "categories": ["water"], "amount": 22200}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0391}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.438}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.61}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 35.4}, {"name": "Trifluralin", "categories": ["water"], "amount": 35.4}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.675}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.574}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.456}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.13e-11}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.0319}, {"name": "Urea", "categories": ["water"], "amount": 0.0319}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 6.59}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.59}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.59}, {"name": "Vanadium V", "categories": ["air"], "amount": 8.23}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 8.23}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 6.16}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 11.9}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 11.9}, {"name": "Vanadium V", "categories": ["soil"], "amount": 11.9}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 178}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 178}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 8.2e-20}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 178}, {"name": "Vanadium V", "categories": ["water"], "amount": 178}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.545}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Xylene", "categories": ["water"], "amount": 0.155}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 259}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 6.28}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.28}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.28}, {"name": "Zinc II", "categories": ["air"], "amount": 5.93}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.93}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.82}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 5.14}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 5.14}, {"name": "Zinc II", "categories": ["soil"], "amount": 5.14}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 7.47e-20}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 211}, {"name": "Zinc II", "categories": ["water"], "amount": 211}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.25}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 52.9}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 4.4e-06}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.492}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.06e-05}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.525}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.29e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.29e-05}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.61e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.0067}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air"], "amount": 0.241}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 0.241}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 4.62e-05}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 1.12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.38}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "ecotoxicity: marine", "marine ecotoxicity potential (METP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.831}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.141}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.00732}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.00125}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.145}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0199}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.105}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "2,4-D", "categories": ["water"], "amount": 0.145}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0711}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.0128}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 0.0883}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 0.0883}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0711}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.0631}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.0128}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 0.0883}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.00603}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.237}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.237}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.616}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0054}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.00144}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00073}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.000314}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000314}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.000997}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.000299}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 0.332}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.0124}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0026}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0026}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.007}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00155}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.00425}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.0485}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.0485}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 11.7}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.63}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0446}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.007}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.0395}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.0492}, {"name": "Acephate", "categories": ["water"], "amount": 0.0492}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.00512}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00512}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0716}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.00944}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000141}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.02e-05}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.0168}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00238}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air"], "amount": 0.000595}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.000595}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.000894}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water"], "amount": 0.000503}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.00283}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00283}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.00388}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00239}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.151}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 0.0853}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air"], "amount": 1.34}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.34}, {"name": "Acrolein", "categories": ["water"], "amount": 3.24}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.0131}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00186}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0034}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0034}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.0445}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.255}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.052}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.99}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.98}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0195}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0195}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.62}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.00546}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9640}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 4960}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 303}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 16200}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.93}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.323}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.59}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air"], "amount": 0.00107}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.139}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water"], "amount": 0.0257}, {"name": "Anthracene", "categories": ["air"], "amount": 4.65}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 306}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water"], "amount": 28.9}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 488}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 488}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 488}, {"name": "Antimony ion", "categories": ["air"], "amount": 361}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 361}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 39}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 76.3}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 76.3}, {"name": "Antimony ion", "categories": ["soil"], "amount": 76.3}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 460}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 460}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1000}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 460}, {"name": "Antimony ion", "categories": ["water"], "amount": 460}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 100}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 100}, {"name": "Arsenic ion", "categories": ["air"], "amount": 69.9}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 69.9}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.93}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.93}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.93}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 86.3}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 86.3}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 212}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 86.3}, {"name": "Arsenic ion", "categories": ["water"], "amount": 86.3}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.67}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.24}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water"], "amount": 14.9}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0375}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.143}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 13.1}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 0.011}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.75}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.26}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 13}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 13}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.35}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.35}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35}, {"name": "Barium II", "categories": ["air"], "amount": 3.39}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 3.39}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 3.47}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 3.47}, {"name": "Barium II", "categories": ["soil"], "amount": 3.47}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3.93}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 3.93}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 5.61}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3.93}, {"name": "Barium II", "categories": ["water"], "amount": 3.93}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.00157}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0296}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0389}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.0132}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0239}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.00305}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 58}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 151}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0233}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0233}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0395}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air"], "amount": 0.00235}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.00235}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.089}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water"], "amount": 0.00485}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.451}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.0377}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.00563}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.66}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.66}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 11}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 21.9}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 26.9}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 26.9}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 12.2}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.00117}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.00336}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.000405}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0322}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.00699}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 237}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 237}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 237}, {"name": "Beryllium II", "categories": ["air"], "amount": 165}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 165}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.515}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.906}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.906}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.906}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 72}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 72}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 502}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 72}, {"name": "Beryllium II", "categories": ["water"], "amount": 72}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6950}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 11.8}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 60}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4150}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4150}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2520}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1470}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 27.5}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 43.7}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2500}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2500}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.49}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 0.0742}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.00164}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.00138}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.00353}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.977}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.23}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.23}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 13.5}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.971}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.00499}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air"], "amount": 0.000583}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000583}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.00295}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water"], "amount": 0.000557}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.0181}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0296}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.00305}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.49}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 11.1}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 91.2}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.2}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.2}, {"name": "Cadmium II", "categories": ["air"], "amount": 63.5}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 63.5}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.711}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.36}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.36}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.36}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 19.6}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 19.6}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 196}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 19.6}, {"name": "Cadmium II", "categories": ["water"], "amount": 19.6}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.16}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.512}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.42}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.42}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.24}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.46}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.54}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.54}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.039}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.32}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.263}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.137}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Carboxin", "categories": ["air"], "amount": 1.01}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.764}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.44}, {"name": "Carboxin", "categories": ["water"], "amount": 1.44}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 0.00941}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00133}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 485}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 18}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 139}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 795}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 795}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 795}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air"], "amount": 7.51}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.51}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 23.2}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water"], "amount": 5.16}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 0.318}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.0223}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 5.79}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.0296}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.00255}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 0.323}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 0.964}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 0.214}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.176}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water"], "amount": 0.0469}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 0.124}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 0.124}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.215}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 0.0572}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 186}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 182}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 80.8}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 193}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 193}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 176}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 104}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 337}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2680}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2680}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 4.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.907}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.0799}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 14.2}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.2}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.2}, {"name": "Chromium III", "categories": ["air"], "amount": 10}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.276}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.543}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.543}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.543}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.47}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 2.47}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 30}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.47}, {"name": "Chromium III", "categories": ["water"], "amount": 2.47}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 159}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 159}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 159}, {"name": "Chromium VI", "categories": ["air"], "amount": 120}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 120}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 15.7}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 31}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 31}, {"name": "Chromium VI", "categories": ["soil"], "amount": 31}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 130}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 130}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 322}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 130}, {"name": "Chromium VI", "categories": ["water"], "amount": 130}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 2.88}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.0504}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.0327}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0387}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 27.2}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.2}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.2}, {"name": "Cobalt II", "categories": ["air"], "amount": 18.9}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 18.9}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.188}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.188}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.188}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 7.85}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 7.85}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 58.3}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 7.85}, {"name": "Cobalt II", "categories": ["water"], "amount": 7.85}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 732}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 732}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 732}, {"name": "Copper ion", "categories": ["air"], "amount": 508}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 508}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.19}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.19}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.19}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 193}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 193}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1570}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 193}, {"name": "Copper ion", "categories": ["water"], "amount": 193}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air"], "amount": 0.00063}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.00063}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.331}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water"], "amount": 0.0105}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.42}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.68e-06}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.68e-06}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0342}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000944}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.68e-06}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.12e-07}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.00346}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 151}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.0541}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.000273}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 232}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 12400}, {"name": "Cypermethrin", "categories": ["water"], "amount": 12400}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.167}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.049}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.497}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00127}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.122}, {"name": "Decanoic acid", "categories": ["water"], "amount": 0.0428}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 1140}, {"name": "Deltamethrin", "categories": ["air"], "amount": 852}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 80.7}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 718}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.0078}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.0452}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.957}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.26}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.524}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.0182}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 0.129}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 0.129}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.377}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.54}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0314}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.00448}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.0349}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.0349}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.03}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 0.983}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.69}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.078}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 10.8}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.00224}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 0.0605}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.23e-05}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0179}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0179}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.0496}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.011}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.41e-05}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.41e-05}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 0.000268}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.81e-05}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.2}, {"name": "Difenoconazole", "categories": ["air"], "amount": 21.7}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2.14}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 15.1}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 44.9}, {"name": "Difenoconazole", "categories": ["water"], "amount": 44.9}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 452}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 58.6}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 384}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 933}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 933}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.0163}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.087}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.00631}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.297}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 0.384}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.166}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.0733}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.0381}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0381}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.0232}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.00617}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 40800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 40800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1880}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1880}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1880}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 12200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 12200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 125000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 12200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 12200}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00566}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 0.506}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.506}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 0.316}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 0.0745}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 0.482}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.09}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.09}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 0.472}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.3}, {"name": "Diuron", "categories": ["air"], "amount": 10.3}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.84}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.43}, {"name": "Diuron", "categories": ["water"], "amount": 12.3}, {"name": "Dodecanol", "categories": ["water"], "amount": 0.864}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.0208}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.0291}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.00447}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.0262}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 193}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.00395}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.13}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 7.96}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 16.1}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 16.1}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5600}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.0113}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.0113}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.0705}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.0437}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.0177}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0177}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0617}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0185}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 11}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 7.7}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.000901}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water"], "amount": 0.000225}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.00259}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.0182}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.0182}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.0687}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.0384}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.47}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.00262}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00262}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00882}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.00264}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.00829}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.00829}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0216}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.0048}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.0455}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.0101}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.0324}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0178}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.384}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 12.2}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.01}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 0.39}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 0.631}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 141}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 0.225}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.03}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 0.226}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.35}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.35}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 275}, {"name": "Fluazinam", "categories": ["air"], "amount": 236}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 21.7}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 144}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 434}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 434}, {"name": "Fluazinam", "categories": ["water"], "amount": 434}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 16.2}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.2}, {"name": "Fludioxonil", "categories": ["air"], "amount": 12.8}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 5.8}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 22.8}, {"name": "Fludioxonil", "categories": ["water"], "amount": 22.8}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 41}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Fluoranthene", "categories": ["air"], "amount": 14.6}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 57.9}, {"name": "Fluorene", "categories": ["air"], "amount": 0.164}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 0.329}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 0.924}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.0136}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.3}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.025}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.025}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.0237}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00847}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0012}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0237}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0112}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air"], "amount": 2.54e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.54e-05}, {"name": "Furfural", "categories": ["air"], "amount": 0.00776}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.00726}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 0.174}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.145}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.00726}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0923}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.00835}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.0569}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.95}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.16}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.16}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air"], "amount": 9.98e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 9.98e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 0.835}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0629}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water"], "amount": 0.00162}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.242}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.0375}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 13.2}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 10.1}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.27}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.171}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.00553}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.000388}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.000388}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.106}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0037}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0527}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0527}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000148}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 0.189}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.515}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 0.554}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.554}, {"name": "Imidacloprid", "categories": ["air"], "amount": 0.558}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.577}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Imidacloprid", "categories": ["water"], "amount": 0.76}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Indoxacarb", "categories": ["air"], "amount": 27.7}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 0.838}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 6.58}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.338}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air"], "amount": 2.8e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.8e-07}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.00644}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.00644}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0188}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.00418}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.268}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.405}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26300}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 474}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 553}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 10700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 10700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 10700}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.0185}, {"name": "Lauric acid", "categories": ["water"], "amount": 0.0205}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 4.41}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41}, {"name": "Lead II", "categories": ["air"], "amount": 3.06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 3.06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.00238}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0039}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0039}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0039}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.593}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.593}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.53}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.593}, {"name": "Lead II", "categories": ["water"], "amount": 0.593}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.0299}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 130}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.0774}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0629}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.00413}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 0.0389}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 0.0389}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.317}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.0105}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.332}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.332}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.3}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.00696}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.000731}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.75}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.589}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.13}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.31}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.31}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.606}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0664}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.00848}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 351}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 351}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 351}, {"name": "Mercury II", "categories": ["air"], "amount": 240}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 240}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.115}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.161}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.161}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.161}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 51.4}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 51.4}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 709}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 51.4}, {"name": "Mercury II", "categories": ["water"], "amount": 51.4}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.0167}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 0.148}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 0.123}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 0.11}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 0.185}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 0.185}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 0.00664}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.534}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.0048}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0621}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.308}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.624}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.00784}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.00784}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0328}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.00829}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00368}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00368}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.905}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.537}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air"], "amount": 0.000451}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000451}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000713}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water"], "amount": 0.000223}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.57}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.08}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.205}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.13}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water"], "amount": 1.87}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 12.8}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 0.918}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.52}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 20.1}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 20.1}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.00837}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00837}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.0159}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water"], "amount": 0.00765}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.022}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.394}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.0385}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.000722}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.000722}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.000669}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.00206}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.00206}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 0.382}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air"], "amount": 0.012}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.012}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.0312}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water"], "amount": 0.00695}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.0183}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.789}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.14}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water"], "amount": 12.2}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.95}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.846}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.21}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 300}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 291}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43.2}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 249}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 421}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 421}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.0819}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1.31}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.946}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.946}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.0659}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.13}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.13}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.13}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.56}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 0.56}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.73}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.56}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.56}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.0745}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00684}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 0.0855}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.0737}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.0205}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.0755}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.98}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 150}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 150}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 150}, {"name": "Nickel II", "categories": ["air"], "amount": 105}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 105}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.29}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.29}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.29}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 57.1}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 57.1}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 321}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 57.1}, {"name": "Nickel II", "categories": ["water"], "amount": 57.1}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.111}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 0.11}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 0.106}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 0.155}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.152}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.228}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.118}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.000226}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0922}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00355}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.485}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.0723}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.752}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 0.374}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.56}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.56}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.187}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.000715}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 0.0956}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.0101}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.36}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air"], "amount": 0.000114}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.000114}, {"name": "Pentane", "categories": ["water"], "amount": 0.0817}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 498}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 18.3}, {"name": "Permethrin", "categories": ["water"], "amount": 287}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.43}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.35}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.0589}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air"], "amount": 0.00849}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00849}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water"], "amount": 0.0237}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 30.7}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 30.7}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.68}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.468}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1.94}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.405}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.418}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.0664}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.0152}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.419}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.0322}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.0601}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.278}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.0379}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 16.8}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 16.8}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 20.3}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.59}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 39.1}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.275}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.00111}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 0.00167}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air"], "amount": 0.0024}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.0024}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.0493}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water"], "amount": 0.00535}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.12}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air"], "amount": 0.000566}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000566}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0019}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water"], "amount": 0.00055}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 0.0755}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.00484}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.34}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.31}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.22}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.22}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.22}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.00593}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00593}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.0156}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.00221}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0046}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0046}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0124}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water"], "amount": 0.00276}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 9.96e-06}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.0204}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0367}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.0185}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 0.465}, {"name": "Pyrene", "categories": ["air"], "amount": 21.5}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 156}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.00199}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 0.757}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.0377}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.8}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 13.2}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.25}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 23.3}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 227}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 227}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.01}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 5.7}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 0.322}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.00362}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 49.8}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.8}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.8}, {"name": "Selenium IV", "categories": ["air"], "amount": 34.9}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 34.9}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.635}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.21}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.21}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.21}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 19.1}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 19.1}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 106}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 19.1}, {"name": "Selenium IV", "categories": ["water"], "amount": 19.1}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0149}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.41}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 2750}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2750}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 2750}, {"name": "Silver I", "categories": ["air"], "amount": 1910}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 1910}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 8.5}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 15.8}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 15.8}, {"name": "Silver I", "categories": ["soil"], "amount": 15.8}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 546}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 546}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 5930}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 546}, {"name": "Silver I", "categories": ["water"], "amount": 546}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.83}, {"name": "Simazine", "categories": ["air"], "amount": 3.46}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.472}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.78}, {"name": "Simazine", "categories": ["water"], "amount": 4.78}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.000253}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.000253}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.000815}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water"], "amount": 0.000116}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air"], "amount": 9.49e-05}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.49e-05}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.238}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water"], "amount": 0.0072}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 1.99}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.33}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.053}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.053}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.00498}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 0.0363}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 0.0363}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.95}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.152}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.36}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 0.207}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.2}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 19.2}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.17}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 12.6}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 21.6}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21.6}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 253}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 224}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 18}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 132}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 451}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.074}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.22}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.97}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.0746}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0746}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.43}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.12}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 77.9}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 77.9}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 77.9}, {"name": "Thallium I", "categories": ["air"], "amount": 73.7}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 73.7}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 30.1}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 64.3}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 64.3}, {"name": "Thallium I", "categories": ["soil"], "amount": 64.3}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 81}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 81}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 137}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 81}, {"name": "Thallium I", "categories": ["water"], "amount": 81}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 0.576}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.576}, {"name": "Thiabendazole", "categories": ["air"], "amount": 0.489}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.0175}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.123}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.358}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.358}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.0682}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 0.968}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water"], "amount": 0.215}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4.98}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.54}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.54}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.719}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 0.655}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.16}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 0.863}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.25}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.25}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 15.3}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.3}, {"name": "Thiram", "categories": ["air"], "amount": 9.15}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.234}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.1}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 26}, {"name": "Thiram", "categories": ["water"], "amount": 26}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 25.5}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.5}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.5}, {"name": "Tin ion", "categories": ["air"], "amount": 17.7}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 17.7}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.0264}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.0444}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.0444}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.0444}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 5.43}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 5.43}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 55.1}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 5.43}, {"name": "Tin ion", "categories": ["water"], "amount": 5.43}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air"], "amount": 0.000331}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000331}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0857}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water"], "amount": 0.00276}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.00787}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.00787}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.333}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.0185}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.22}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 138}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.144}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 2.22}, {"name": "Triallate", "categories": ["air"], "amount": 1}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.517}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 7.74}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 34.8}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 94.5}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 88.7}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.62}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 135}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.0226}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.649}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.162}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.00635}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.319}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 33.7}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 0.000142}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.16e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.31}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2360}, {"name": "Triflumuron", "categories": ["air"], "amount": 2380}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 511}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 2730}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 4260}, {"name": "Triflumuron", "categories": ["water"], "amount": 4260}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.614}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.979}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.61}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.61}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.13}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.0109}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 0.00342}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.00076}, {"name": "Urea", "categories": ["water"], "amount": 0.00076}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.00566}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 218}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 218}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 218}, {"name": "Vanadium V", "categories": ["air"], "amount": 154}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 154}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 5.31}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 10}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 10}, {"name": "Vanadium V", "categories": ["soil"], "amount": 10}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 252}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 252}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 455}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 252}, {"name": "Vanadium V", "categories": ["water"], "amount": 252}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.0468}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air"], "amount": 0.000165}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000165}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0932}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water"], "amount": 0.00293}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 166}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 166}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 166}, {"name": "Zinc II", "categories": ["air"], "amount": 116}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 116}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.41}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.29}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.29}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.29}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 299}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 299}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 342}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 299}, {"name": "Zinc II", "categories": ["water"], "amount": 299}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.93}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.297}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0089}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.000559}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000559}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.316}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.00991}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.000307}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.000307}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00403}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.000414}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air"], "amount": 0.0446}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0446}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.12}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water"], "amount": 0.0267}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 5.77}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "ecotoxicity: terrestrial", "terrestrial ecotoxicity potential (TETP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.802}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.76}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.062}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.695}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0416}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.00206}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.00054}, {"name": "2,4-D", "categories": ["water"], "amount": 0.00054}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 9.63e-08}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 4.67e-09}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 33.3}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 9.63e-08}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 69.5}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.0475}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.0475}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0855}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.798}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00627}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.00194}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.0188}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 34.2}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.072}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.39}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.23e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 9.68e-05}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.411}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.647}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.61}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 813}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00233}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000491}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 7.9e-05}, {"name": "Acephate", "categories": ["water"], "amount": 7.9e-05}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0828}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.339}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.42}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.0151}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 125}, {"name": "Acetic acid", "categories": ["air"], "amount": 87}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 87}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.39e-05}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00669}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air"], "amount": 0.0305}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00445}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water"], "amount": 0.0236}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0609}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.305}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 3.7}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15.6}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 495}, {"name": "Acrolein", "categories": ["air"], "amount": 287}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 287}, {"name": "Acrolein", "categories": ["water"], "amount": 423}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.15e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00425}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air"], "amount": 45.7}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 45.7}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.867}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.13}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 8460}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.3}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 146}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.0173}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 123000}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 63100}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1140}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1180}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 3630}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 58.9}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 8.55}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.42}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.13}, {"name": "Aniline", "categories": ["air"], "amount": 0.621}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.621}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.041}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.622}, {"name": "Aniline", "categories": ["water"], "amount": 0.622}, {"name": "Anthracene", "categories": ["air"], "amount": 34.8}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 28.8}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water"], "amount": 71.1}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 622000}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 622000}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 622000}, {"name": "Antimony ion", "categories": ["air"], "amount": 431000}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 431000}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.63e-15}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 3.2e-15}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 3.2e-15}, {"name": "Antimony ion", "categories": ["soil"], "amount": 3.2e-15}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 1.68e-14}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 1.68e-14}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 5.79e-15}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1.68e-14}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.68e-14}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 133000}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 133000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 133000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 91900}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 91900}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.06e-17}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 9.31e-17}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 9.31e-17}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 9.31e-17}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.62e-15}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 3.62e-15}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1.43e-15}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.62e-15}, {"name": "Arsenic ion", "categories": ["water"], "amount": 3.62e-15}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.0174}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 22.7}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14.4}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water"], "amount": 10.1}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0553}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 6.69e-05}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 174}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 5.06e-05}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4680}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.000144}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 0.000137}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.1e-05}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.1e-05}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3270}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3270}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3270}, {"name": "Barium II", "categories": ["air"], "amount": 2260}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2260}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 5.57e-17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.19e-16}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.19e-16}, {"name": "Barium II", "categories": ["soil"], "amount": 1.19e-16}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.33e-16}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.33e-16}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3e-17}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.33e-16}, {"name": "Barium II", "categories": ["water"], "amount": 1.33e-16}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.72e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.516}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.000631}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.651}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0639}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 346}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 187}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.582}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.091}, {"name": "Benzene", "categories": ["air"], "amount": 0.0871}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0871}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0427}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water"], "amount": 0.0859}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.922}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0129}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0425}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 48.4}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 78.5}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 78.5}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 76.3}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.445}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.445}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.008}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0333}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0189}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.00268}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.0477}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 475000}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 475000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 475000}, {"name": "Beryllium II", "categories": ["air"], "amount": 329000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 329000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 5.44e-17}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 9.6e-17}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 9.6e-17}, {"name": "Beryllium II", "categories": ["soil"], "amount": 9.6e-17}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 6.62e-15}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 6.62e-15}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 8.32e-15}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 6.62e-15}, {"name": "Beryllium II", "categories": ["water"], "amount": 6.62e-15}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 148000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 96.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 99.6}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 308}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 308}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 9.79}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22500}, {"name": "Bifenthrin", "categories": ["air"], "amount": 13100}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 222}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 227}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 801}, {"name": "Bifenthrin", "categories": ["water"], "amount": 801}, {"name": "Bisphenol A", "categories": ["water"], "amount": 0.0064}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.51e-05}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 7.52e-07}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 0.00957}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.0859}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.0782}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 466}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 42400}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00331}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 0.000666}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 0.000666}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 217}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.9}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.33}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.862}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air"], "amount": 0.035}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.0015}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water"], "amount": 0.0186}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.0321}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0703}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.368}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2900}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 301}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 278000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 278000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 278000}, {"name": "Cadmium II", "categories": ["air"], "amount": 192000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 192000}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 3.67e-17}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 7.04e-17}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 7.04e-17}, {"name": "Cadmium II", "categories": ["soil"], "amount": 7.04e-17}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 8.73e-16}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 8.73e-16}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.63e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 8.73e-16}, {"name": "Cadmium II", "categories": ["water"], "amount": 8.73e-16}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9490}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 12.7}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 5.77}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 5.77}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 10300}, {"name": "Carbendazim", "categories": ["air"], "amount": 8320}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.138}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 0.0873}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 0.0417}, {"name": "Carbendazim", "categories": ["water"], "amount": 0.0417}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 372}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.853}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 7.49}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4270}, {"name": "Carboxin", "categories": ["air"], "amount": 2950}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.666}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.461}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 0.242}, {"name": "Carboxin", "categories": ["water"], "amount": 0.242}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00159}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 163000}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 202}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 199}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 123}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 123}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 123}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 265000}, {"name": "Chloramine", "categories": ["air"], "amount": 219000}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 219000}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.74e-07}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water"], "amount": 3.26e-06}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1680}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 8.8e-06}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 6400}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 6400}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.68e-06}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 0.00068}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air"], "amount": 0.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.219}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water"], "amount": 0.462}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 330}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 55.7}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 55.7}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.413}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 6.87}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 22400}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 21800}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 9330}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9770}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 8820}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 8820}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 6180}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1650}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 786}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 251}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.15e-06}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 60600}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 60600}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 60600}, {"name": "Chromium III", "categories": ["air"], "amount": 41900}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 41900}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.99e-17}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 3.94e-17}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 3.94e-17}, {"name": "Chromium III", "categories": ["soil"], "amount": 3.94e-17}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.54e-16}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.54e-16}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.55e-16}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.54e-16}, {"name": "Chromium III", "categories": ["water"], "amount": 1.54e-16}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 205000}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 205000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 205000}, {"name": "Chromium VI", "categories": ["air"], "amount": 142000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 142000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 7.87e-16}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.56e-15}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.56e-15}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.56e-15}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 5.75e-15}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 5.75e-15}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 2.43e-15}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 5.75e-15}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.75e-15}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 9.78}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 22}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0329}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 59200}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 59200}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 59200}, {"name": "Cobalt II", "categories": ["air"], "amount": 41000}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 41000}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6.07e-18}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.12e-17}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.12e-17}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.12e-17}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.04e-16}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 4.04e-16}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 5.39e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.04e-16}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.04e-16}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1750000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1750000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1750000}, {"name": "Copper ion", "categories": ["air"], "amount": 1210000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1210000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.38e-16}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 2.54e-16}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 2.54e-16}, {"name": "Copper ion", "categories": ["soil"], "amount": 2.54e-16}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.01e-14}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1.01e-14}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.47e-14}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.01e-14}, {"name": "Copper ion", "categories": ["water"], "amount": 1.01e-14}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air"], "amount": 0.0432}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0432}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.0138}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water"], "amount": 0.0466}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.341}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.000203}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000646}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.73e-05}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.27e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1740}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.12e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95800}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 917}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 2830}, {"name": "Cypermethrin", "categories": ["water"], "amount": 2830}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.868}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.04e-05}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 77}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00507}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Decanoic acid", "categories": ["water"], "amount": 0.0114}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 19600}, {"name": "Deltamethrin", "categories": ["air"], "amount": 14700}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1380}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3700}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.14e-12}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.754}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 2.87}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.00301}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.647}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.32e-05}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.32e-05}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 36.9}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 114}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 282}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.000695}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.55e-06}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.55e-06}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1060}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 32.5}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 609}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.923}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Diethanolamine", "categories": ["water"], "amount": 5.94e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 3.49}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00415}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00415}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 242}, {"name": "Diethylamine", "categories": ["air"], "amount": 186}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 186}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.037}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.0767}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.968}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.968}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 7.44e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.000149}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 20400}, {"name": "Difenoconazole", "categories": ["air"], "amount": 16600}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 0.0715}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 0.0654}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0503}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.0503}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 489000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1240}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1040}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 692}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 692}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.741}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.0684}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.302}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 8.15}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 10100}, {"name": "Dimethoate", "categories": ["air"], "amount": 2350}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 7.52}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.232}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.155}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air"], "amount": 888}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 888}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.337}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 453000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 453000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 453000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 393000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 393000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 14200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15300}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15300}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 15300}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 53000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 53000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 104000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 53000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 53000}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00217}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 424}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.33e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 6.6e-07}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 6.6e-07}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.114}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 28600}, {"name": "Diuron", "categories": ["air"], "amount": 20400}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.59}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.78}, {"name": "Diuron", "categories": ["water"], "amount": 2.55}, {"name": "Dodecanol", "categories": ["water"], "amount": 7.62}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.215}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 6.87e-05}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.18e-08}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.47}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 468}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 16}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 6710}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 148}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 58.9}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 58.9}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11300}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.444}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.444}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.111}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.194}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.929}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.929}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.184}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.387}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 13.1}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 18}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air"], "amount": 0.072}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0262}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 276}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 5.61e-06}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.53e-11}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.53e-11}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.27}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 14.4}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1520}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.406}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 214}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 214}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 214}, {"name": "Ethylamine", "categories": ["air"], "amount": 168}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 168}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0309}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.064}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.000108}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.000225}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.455}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.57}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.13e-05}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 6.64e-07}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.177}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 638}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.483}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 8.99}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2710}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 729}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 26.8}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 26.8}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 206000}, {"name": "Fluazinam", "categories": ["air"], "amount": 145000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1240}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1140}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 900}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 900}, {"name": "Fluazinam", "categories": ["water"], "amount": 900}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 12600}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12600}, {"name": "Fludioxonil", "categories": ["air"], "amount": 8730}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 1.15}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.45}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.45}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 70900}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 389}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.04}, {"name": "Fluoranthene", "categories": ["air"], "amount": 98.9}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 80.1}, {"name": "Fluorene", "categories": ["air"], "amount": 1.82}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.08}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 190}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 2.06e-06}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 25800}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 142}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air"], "amount": 10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.0506}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.889}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air"], "amount": 66.8}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 66.8}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 4.58e-06}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water"], "amount": 0.000909}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 7.53e-09}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0062}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0939}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 0.00607}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00607}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00607}, {"name": "Furan", "categories": ["air"], "amount": 0.00245}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00245}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 735}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 573}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.26e-10}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.13e-05}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.27e-11}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2440}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1980}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 0.00799}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 0.00799}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air"], "amount": 2.07e-05}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.07e-05}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 256}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air"], "amount": 0.000196}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000196}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.37e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water"], "amount": 0.000194}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.00371}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.379}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 602}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 367}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water"], "amount": 1360}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00795}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0955}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.03}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.03}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0143}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0387}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.178}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000785}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4320}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 5.99e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.17e-10}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Imidacloprid", "categories": ["water"], "amount": 1.98e-10}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 7710}, {"name": "Indoxacarb", "categories": ["air"], "amount": 6020}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 9.87}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.0103}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.302}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-05}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air"], "amount": 88}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 88}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.216}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.2}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 20.2}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 312000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5510}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5640}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 18700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 18700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 18700}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.866}, {"name": "Lauric acid", "categories": ["water"], "amount": 0.00154}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 62400}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 62400}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 62400}, {"name": "Lead II", "categories": ["air"], "amount": 43200}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 43200}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.23e-19}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.03e-19}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.03e-19}, {"name": "Lead II", "categories": ["soil"], "amount": 2.03e-19}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2.59e-17}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 2.59e-17}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 8.29e-17}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2.59e-17}, {"name": "Lead II", "categories": ["water"], "amount": 2.59e-17}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.93e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5100}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.04e-07}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 626}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 6.59e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.1e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.1e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.000589}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.000883}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.000883}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 43}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.18e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.05e-05}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 44400}, {"name": "Mancozeb", "categories": ["air"], "amount": 36600}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.000845}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.59e-05}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 9.45e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 9.45e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.000868}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0677}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.000731}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.84e-13}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2020000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020000}, {"name": "Mercury II", "categories": ["air"], "amount": 1380000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1380000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 5.53e-18}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 7.75e-18}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 7.75e-18}, {"name": "Mercury II", "categories": ["soil"], "amount": 7.75e-18}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2.09e-15}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 2.09e-15}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.58e-15}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2.09e-15}, {"name": "Mercury II", "categories": ["water"], "amount": 2.09e-15}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.27}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 702}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 702}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 455}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 0.82}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 0.347}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 0.347}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 45.5}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.000275}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.000191}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.02}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.358}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0492}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0998}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.0416}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.0416}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.806}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.41}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Methanol", "categories": ["air"], "amount": 0.122}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.122}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.00305}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water"], "amount": 0.0422}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 96.2}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 32500}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.422}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 0.206}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water"], "amount": 0.0678}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 5.42}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 15800}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 12800}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 0.0597}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 0.0575}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 0.0517}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 0.0517}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.4}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.4}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.303}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.2}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.23}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.55}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.0199}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air"], "amount": 55.8}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 55.8}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 566}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 40.4}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 397}, {"name": "Methylamine", "categories": ["air"], "amount": 305}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 305}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water"], "amount": 0.216}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 5890}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 18.4}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 15.7}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water"], "amount": 11.3}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 40000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.21}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 0.856}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090000}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 899000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 6.48e-05}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.81e-05}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.81e-05}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.85}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 2110}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2110}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2110}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1460}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1460}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2.97e-18}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.89e-18}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.89e-18}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 5.89e-18}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.22e-17}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.22e-17}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.88e-17}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.22e-17}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.22e-17}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.014}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00603}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 27.6}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 2.3}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 801}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.584}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.967}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.165}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 606}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 271000}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 271000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 271000}, {"name": "Nickel II", "categories": ["air"], "amount": 187000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 7.13e-17}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.35e-16}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.35e-16}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.35e-16}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.91e-15}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2.91e-15}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.77e-15}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.91e-15}, {"name": "Nickel II", "categories": ["water"], "amount": 2.91e-15}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 645}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 531}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 7.28e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 3.32e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.1e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.1e-08}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.1}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.8}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 176}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.00469}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 21.7}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 5.82e-05}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00085}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.133}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 9.68}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 24.9}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 38.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.35}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.34}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.4}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 4.69e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 276}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.8}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 6.44e-05}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 490}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 69.2}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 69.2}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air"], "amount": 0.0207}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.0207}, {"name": "Pentane", "categories": ["water"], "amount": 0.0196}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11100}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 401}, {"name": "Permethrin", "categories": ["water"], "amount": 1160}, {"name": "Phenanthrene", "categories": ["air"], "amount": 31.3}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 37}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49}, {"name": "Phenol", "categories": ["air"], "amount": 1.18}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.00553}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water"], "amount": 0.0981}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 13}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 13}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 5980}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 5980}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.116}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.136}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 47.2}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 272}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4160}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.187}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.84}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.603}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 10.7}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.4}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 7.34}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00153}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.00909}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.000503}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 77.9}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.378}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 50.4}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 77.3}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 77.3}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 63.8}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 54.6}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 6.77}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3440}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 37.6}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 885}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 3.94e-05}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 4.05e-06}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.06}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06}, {"name": "Propanal", "categories": ["air"], "amount": 0.622}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.622}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.881}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 0.881}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.21}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.881}, {"name": "Propanal", "categories": ["water"], "amount": 0.881}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air"], "amount": 0.0504}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0504}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.003}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water"], "amount": 0.0302}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.00379}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.15}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.536}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.237}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water"], "amount": 0.487}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.0204}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air"], "amount": 51.4}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 51.4}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0154}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water"], "amount": 0.032}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.00326}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.41}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.74}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Pyrene", "categories": ["air"], "amount": 121}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 140}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 232}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.000429}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 119}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 667}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 211}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 267}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 932}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 932}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.000183}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 26.7}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.000889}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 89800}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 89800}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 89800}, {"name": "Selenium IV", "categories": ["air"], "amount": 62100}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 62100}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 3.35e-17}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 6.4e-17}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 6.4e-17}, {"name": "Selenium IV", "categories": ["soil"], "amount": 6.4e-17}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 8.79e-16}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 8.79e-16}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 8.28e-16}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 8.79e-16}, {"name": "Selenium IV", "categories": ["water"], "amount": 8.79e-16}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0594}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.0666}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 9630000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9630000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9630000}, {"name": "Silver I", "categories": ["air"], "amount": 6670000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 6670000}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 4.63e-16}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 8.63e-16}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 8.63e-16}, {"name": "Silver I", "categories": ["soil"], "amount": 8.63e-16}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 2.55e-14}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 2.55e-14}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 5.22e-14}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 2.55e-14}, {"name": "Silver I", "categories": ["water"], "amount": 2.55e-14}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Simazine", "categories": ["air"], "amount": 9400}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 9.4}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.05}, {"name": "Simazine", "categories": ["water"], "amount": 3.05}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air"], "amount": 15.4}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 15.4}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.32e-21}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water"], "amount": 2.8e-21}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 77.2}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air"], "amount": 0.00511}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00418}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water"], "amount": 0.0139}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 0.00791}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1250}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1490}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1490}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.000647}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.72e-10}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.72e-10}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.61}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2820}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.0907}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.0888}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water"], "amount": 0.0838}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.97}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 99300}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 75900}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 7.63}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 4.7}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.13}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.13}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 178000}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 135000}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.95}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.71}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 7.87}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.00589}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 286}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 47.8}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.313}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.568}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 84100}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84100}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 84100}, {"name": "Thallium I", "categories": ["air"], "amount": 58200}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 58200}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.85e-16}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1.9e-15}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1.9e-15}, {"name": "Thallium I", "categories": ["soil"], "amount": 1.9e-15}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.24e-15}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 2.24e-15}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 6.41e-16}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.24e-15}, {"name": "Thallium I", "categories": ["water"], "amount": 2.24e-15}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1090}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.00387}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.00354}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.00279}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.00279}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.000621}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 49}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 0.000115}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water"], "amount": 0.0213}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5860}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 977}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 732}, {"name": "Thiodicarb", "categories": ["water"], "amount": 732}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4360}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2770}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 7.32}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.23}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 964}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 964}, {"name": "Thiram", "categories": ["air"], "amount": 564}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.303}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.161}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Thiram", "categories": ["water"], "amount": 1.83}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 80200}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80200}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 80200}, {"name": "Tin ion", "categories": ["air"], "amount": 55500}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 55500}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1.37e-18}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 2.43e-16}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 2.43e-16}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 4.57e-16}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2.43e-16}, {"name": "Tin ion", "categories": ["water"], "amount": 2.43e-16}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air"], "amount": 0.0281}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0281}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.00928}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water"], "amount": 0.0301}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.248}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.248}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.116}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.247}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 871}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 18.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.00155}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 104}, {"name": "Triallate", "categories": ["air"], "amount": 47}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 70.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 0.0748}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 185000}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 152000}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.0075}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 0.0036}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.24}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.00144}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0529}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1.77}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 904}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 9.6e-07}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 1.8e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 25.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6730000}, {"name": "Triflumuron", "categories": ["air"], "amount": 4840000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 84000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 58600}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 11400}, {"name": "Triflumuron", "categories": ["water"], "amount": 11400}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 31.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 31.8}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000264}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.00987}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 6.86e-07}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water"], "amount": 1.29e-05}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.000198}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 271000}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 271000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 271000}, {"name": "Vanadium V", "categories": ["air"], "amount": 187000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 2.86e-16}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 5.39e-16}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 5.39e-16}, {"name": "Vanadium V", "categories": ["soil"], "amount": 5.39e-16}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.18e-14}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 1.18e-14}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.4e-15}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.18e-14}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.18e-14}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air"], "amount": 0.0139}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0139}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.00551}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water"], "amount": 0.0183}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95800}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 196000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 196000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 196000}, {"name": "Zinc II", "categories": ["air"], "amount": 136000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 136000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.21e-16}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.15e-16}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.15e-16}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.15e-16}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.29e-14}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 1.29e-14}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.32e-15}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.29e-14}, {"name": "Zinc II", "categories": ["water"], "amount": 1.29e-14}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 74.4}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.00806}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0267}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.0187}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.062}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.0351}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.01}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.034}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air"], "amount": 535}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 535}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.405}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water"], "amount": 0.84}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 18.7}]}, {"unit": "kg oil-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "energy resources: non-renewable, fossil", "fossil fuel potential (FFP)"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.22}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.42}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.22}]}, {"unit": "kg P-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "eutrophication: freshwater", "freshwater eutrophication potential (FEP)"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "eutrophication: marine", "marine eutrophication potential (MEP)"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.776}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water"], "amount": 0.23}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water"], "amount": 0.0671}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.297}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.0902}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.297}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "human toxicity: carcinogenic", "human toxicity potential (HTPc)"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00065}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.065}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.081}, {"name": "Acephate", "categories": ["water"], "amount": 0.081}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.00325}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.0313}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.434}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.4}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 49.8}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 9.72}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.72}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.216}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1.45}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 41.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 41.4}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air"], "amount": 0.0322}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.0322}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.7e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water"], "amount": 0.0242}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 575}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Arsenic ion", "categories": ["air"], "amount": 852}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 852}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 31.4}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 19.1}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 19.1}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 19.1}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 345}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 345}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 29.1}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 345}, {"name": "Arsenic ion", "categories": ["water"], "amount": 345}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.27}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 0.735}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.54}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.54}, {"name": "Atrazine", "categories": ["water"], "amount": 1.54}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0765}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0765}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0107}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.33}, {"name": "Benzene", "categories": ["air"], "amount": 1.44}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.158}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.354}, {"name": "Benzene", "categories": ["water"], "amount": 0.354}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.0375}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.145}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0284}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0961}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 93.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 93.8}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1150}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 36.5}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 36.5}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 20}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Beryllium II", "categories": ["air"], "amount": 265}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 265}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.749}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.0621}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.0621}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.0621}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 0.121}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 0.121}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 0.0166}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 0.121}, {"name": "Beryllium II", "categories": ["water"], "amount": 0.121}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air"], "amount": 1.33}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.33}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 63}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63}, {"name": "Cadmium II", "categories": ["air"], "amount": 232}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 232}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 110}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.14}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.14}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.14}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.38}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.38}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.425}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.38}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.38}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.0216}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.84}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 3.27}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 3.27}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.293}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.29}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air"], "amount": 1.26}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.26}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.369}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water"], "amount": 0.862}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 0.0799}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.0212}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.0361}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 0.097}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 0.097}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 25700}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25700}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 25700}, {"name": "Chromium VI", "categories": ["air"], "amount": 19900}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 19900}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 4390}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 5720}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 5720}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5720}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 7440}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 7440}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 660}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 7440}, {"name": "Chromium VI", "categories": ["water"], "amount": 7440}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 241}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0637}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 80.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 39.9}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 7.95}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 27.1}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.0566}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.0566}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.24e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.0109}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 102000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 102000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 102000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 92300000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 92300000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 9230000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 7310000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 7310000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 7310000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 226000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 226000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 73200000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 226000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 226000000}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 4}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0676}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0676}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 5.07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.244}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.244}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.652}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.223}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.223}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.78}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 13.4}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 3.2e-05}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0012}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.423}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.93}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.3}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.8}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 3.36}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 12.5}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00626}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.137}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00064}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6}, {"name": "Furan", "categories": ["air"], "amount": 95}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 95}, {"name": "Furfural", "categories": ["air"], "amount": 0.29}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air"], "amount": 0.00483}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.00483}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water"], "amount": 0.00265}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.129}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water"], "amount": 10.2}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.172}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.172}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0234}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0553}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.27}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.27}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air"], "amount": 0.128}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.128}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 24.9}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.9}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.9}, {"name": "Lead II", "categories": ["air"], "amount": 18.6}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 18.6}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.949}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0847}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0847}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0847}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.318}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.318}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.144}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.318}, {"name": "Lead II", "categories": ["water"], "amount": 0.318}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 12.5}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.222}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 72.1}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.1}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.1}, {"name": "Mercury II", "categories": ["air"], "amount": 69.6}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 69.6}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 29.4}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.21}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.21}, {"name": "Mercury II", "categories": ["soil"], "amount": 1.21}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 139}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 139}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 57.4}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 139}, {"name": "Mercury II", "categories": ["water"], "amount": 139}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 12.3}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 12.3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0881}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 255}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 255}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 135}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 236}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.88}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.147}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.147}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.0171}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.0549}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.4}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.903}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 502}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 502}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 502}, {"name": "Nickel II", "categories": ["air"], "amount": 373}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 373}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 47.5}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 12.3}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 12.3}, {"name": "Nickel II", "categories": ["soil"], "amount": 12.3}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 22.8}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 22.8}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.49}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 22.8}, {"name": "Nickel II", "categories": ["water"], "amount": 22.8}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.0724}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.849}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 33.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 33.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.0684}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.895}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.93}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.93}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.579}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4.64}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.000638}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.0364}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00525}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.486}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.307}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 114}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 114}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 5120}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 3.53}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0588}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.365}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.968}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.0951}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air"], "amount": 1.28}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.28}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00976}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Styrene", "categories": ["water"], "amount": 0.281}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.523}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.13}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air"], "amount": 0.0134}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0134}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.000339}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water"], "amount": 0.00226}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0111}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0371}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0715}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.407}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.8}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air"], "amount": 0.0204}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.000267}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water"], "amount": 0.00229}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 0.241}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.313}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.313}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00964}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.0338}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "human toxicity: non-carcinogenic", "human toxicity potential (HTPnc)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.414}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.9}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.1}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 3.81}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 5.24}, {"name": "2,4-D", "categories": ["water"], "amount": 5.24}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.105}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 1.88}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 1.88}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0377}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00147}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.9e-06}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00878}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.0297}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.19}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 19300}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 16500}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 620}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 773}, {"name": "Acephate", "categories": ["water"], "amount": 773}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.056}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.545}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Acetone", "categories": ["air"], "amount": 0.0878}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0878}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water"], "amount": 0.0132}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0204}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.131}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 309}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 309}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 309}, {"name": "Acrolein", "categories": ["air"], "amount": 9490}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 9490}, {"name": "Acrolein", "categories": ["water"], "amount": 294}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.74e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water"], "amount": 0.0752}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air"], "amount": 707}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 707}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.85}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 9.16}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.36}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.36}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 36}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 322}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.48}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.1}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 30.4}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.835}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 0.808}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 25.6}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 6.95}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.65}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.361}, {"name": "Aniline", "categories": ["air"], "amount": 5.32}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 5.32}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.00623}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 4.09}, {"name": "Aniline", "categories": ["water"], "amount": 4.09}, {"name": "Anthracene", "categories": ["air"], "amount": 0.0511}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water"], "amount": 0.723}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 5090}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5090}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5090}, {"name": "Antimony ion", "categories": ["air"], "amount": 3860}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3860}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 195}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 657}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 657}, {"name": "Antimony ion", "categories": ["soil"], "amount": 657}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 805}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 805}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 50.7}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 805}, {"name": "Antimony ion", "categories": ["water"], "amount": 805}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 141000}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 141000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 141000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 106000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 106000}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 6550}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 4850}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 4850}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 4850}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 87400}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 87400}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 7370}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 87400}, {"name": "Arsenic ion", "categories": ["water"], "amount": 87400}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 6.7}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.9}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.92}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water"], "amount": 6.11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1060}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1060}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1060}, {"name": "Barium II", "categories": ["air"], "amount": 842}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 842}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 78.5}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 452}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 452}, {"name": "Barium II", "categories": ["soil"], "amount": 452}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 184}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 184}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 7.24}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 184}, {"name": "Barium II", "categories": ["water"], "amount": 184}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0841}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0331}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.3}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.331}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 2.75}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 2.75}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0475}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28}, {"name": "Benzene", "categories": ["air"], "amount": 1.22}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.301}, {"name": "Benzene", "categories": ["water"], "amount": 0.301}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.505}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.00398}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.107}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1340}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 126}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 126}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 500}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 27500}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27500}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27500}, {"name": "Beryllium II", "categories": ["air"], "amount": 641000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 641000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 25.7}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.29}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.29}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.29}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.46}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 4.46}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 0.613}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.46}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.46}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 372}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.994}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.21}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 72.7}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 72.7}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 101}, {"name": "Bifenthrin", "categories": ["air"], "amount": 65}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 4.23}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 15.9}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 1970}, {"name": "Bifenthrin", "categories": ["water"], "amount": 1970}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.77}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.96}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.5}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.26}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.6}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.6}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.79}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air"], "amount": 6.67}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.67}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air"], "amount": 0.431}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.431}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.000981}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water"], "amount": 0.0541}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 50000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000}, {"name": "Cadmium II", "categories": ["air"], "amount": 35800}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 35800}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1050}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1050}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1050}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1270}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1270}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 390}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1270}, {"name": "Cadmium II", "categories": ["water"], "amount": 1270}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.779}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.9}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.16}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.3}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.3}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.5}, {"name": "Carbendazim", "categories": ["air"], "amount": 29.5}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.05}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Carbendazim", "categories": ["water"], "amount": 1.83}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 140}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 823}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 823}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 215}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 667}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 14}, {"name": "Carboxin", "categories": ["air"], "amount": 12.3}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.249}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.855}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Carboxin", "categories": ["water"], "amount": 1.61}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 3.52e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0152}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air"], "amount": 12.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.73e-05}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water"], "amount": 0.619}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 921}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 4.18}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.861}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water"], "amount": 9.89}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air"], "amount": 21.8}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.96}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water"], "amount": 12.8}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 8.14}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.72}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 10}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 10}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 79.8}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 338}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 88.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.748}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.319}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.319}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.319}, {"name": "Chromium III", "categories": ["air"], "amount": 0.238}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.238}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.00785}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.0416}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.0416}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.0416}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 0.00873}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 0.00873}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 0.00304}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.00873}, {"name": "Chromium III", "categories": ["water"], "amount": 0.00873}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 430}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 430}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 430}, {"name": "Chromium VI", "categories": ["air"], "amount": 5680}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 5680}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 14.2}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 44}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 44}, {"name": "Chromium VI", "categories": ["soil"], "amount": 44}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 57.4}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 57.4}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 5.08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 57.4}, {"name": "Chromium VI", "categories": ["water"], "amount": 57.4}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 42.3}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.3}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.3}, {"name": "Copper ion", "categories": ["air"], "amount": 31}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 31}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 18.6}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.531}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.531}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.531}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.86}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 2.86}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 0.717}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.86}, {"name": "Copper ion", "categories": ["water"], "amount": 2.86}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air"], "amount": 0.18}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00479}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.066}, {"name": "Cumene", "categories": ["water"], "amount": 0.066}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0041}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0438}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.48}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.935}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 0.768}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 21.6}, {"name": "Cypermethrin", "categories": ["water"], "amount": 21.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 25.7}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.04}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 31.3}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 253}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 38}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.2}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4.13}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.59}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.59}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 86.8}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 865}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 42.1}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0958}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0958}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.7}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.88}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 17.3}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 41.9}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 41.9}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 66.2}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 56.2}, {"name": "Dimethoate", "categories": ["air"], "amount": 20.3}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.0765}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 14.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.702}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 255}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 30.3}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 68.3}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 68.3}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 46.2}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.554}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 88.7}, {"name": "Diuron", "categories": ["air"], "amount": 78.7}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 2.03}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.36}, {"name": "Diuron", "categories": ["water"], "amount": 12.1}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.00919}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.61}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 28.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0826}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.321}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.163}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.281}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 5.92}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.92}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.92}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5.95}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.95}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 361}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 553}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 67.6}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 5.47}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 5.47}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 266}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0843}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0843}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00287}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0146}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00143}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 0.244}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2.73}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 22300}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.96}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.31}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.34}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Fipronil", "categories": ["air"], "amount": 1520}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 615}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 1570}, {"name": "Fipronil", "categories": ["water"], "amount": 1570}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.788}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 20.7}, {"name": "Fluorene", "categories": ["air"], "amount": 0.692}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 1.3}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 6.78}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00311}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.447}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00128}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.972}, {"name": "Furan", "categories": ["air"], "amount": 35.5}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 45.6}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 49.2}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 3.53}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.768}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.2}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "Hexane", "categories": ["air"], "amount": 2.2}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.2}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0475}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Hexane", "categories": ["water"], "amount": 1.23}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.504}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 5480}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00218}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0273}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0332}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.104}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 40.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 40.7}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.67}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 0.197}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 0.253}, {"name": "Imazethapyr", "categories": ["water"], "amount": 0.253}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air"], "amount": 57.1}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 2.07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.73}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.73}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 0.113}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 29800}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29800}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 29800}, {"name": "Lead II", "categories": ["air"], "amount": 22300}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 22300}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1050}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 102}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 102}, {"name": "Lead II", "categories": ["soil"], "amount": 102}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 382}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 382}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 173}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 382}, {"name": "Lead II", "categories": ["water"], "amount": 382}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 495}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.197}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 252}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 9.59}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 21.2}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 21.2}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.086}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.22}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.22}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.0736}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.74}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0272}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.2}, {"name": "Mancozeb", "categories": ["air"], "amount": 47.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2.75}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 1.77}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2.43}, {"name": "Mancozeb", "categories": ["water"], "amount": 2.43}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.00733}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 29000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 29000}, {"name": "Mercury II", "categories": ["air"], "amount": 24800}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 24800}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 11700}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 489}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 489}, {"name": "Mercury II", "categories": ["soil"], "amount": 489}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 56200}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 56200}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 23300}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 56200}, {"name": "Mercury II", "categories": ["water"], "amount": 56200}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.53}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 75}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1530}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.16}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 366}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 366}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 366}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 369}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 369}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 9.31}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 9.31}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2930}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2930}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1550}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2710}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 32.9}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32.9}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.9}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 33.3}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 33.3}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Methanol", "categories": ["air"], "amount": 0.156}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.156}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000666}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water"], "amount": 0.0194}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.22}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 456}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.72}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 9.35}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water"], "amount": 15.4}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00853}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 89.8}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.11}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.342}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.43}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water"], "amount": 3.37}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.7}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 2.42}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.9}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 12.7}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 0.695}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 1.18}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 1.18}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 77.5}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 9.48}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 3550}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3550}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 3550}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2630}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2630}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1320}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 419}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 419}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 419}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 85.5}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 85.5}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 9.66}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 85.5}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 85.5}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.00213}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.00684}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 213}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.514}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Naphthalene", "categories": ["air"], "amount": 11}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.03}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.206}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 96.3}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96.3}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 96.3}, {"name": "Nickel II", "categories": ["air"], "amount": 71.5}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 71.5}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 7.3}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.37}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.37}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.37}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 4.4}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 4.4}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 0.673}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 4.4}, {"name": "Nickel II", "categories": ["water"], "amount": 4.4}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.2}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.2}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0148}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 0.0138}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.172}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.05}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.6}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0604}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 8.97}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.71}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.162}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 2.52}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Permethrin", "categories": ["water"], "amount": 10.8}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "Phenol", "categories": ["air"], "amount": 0.493}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.493}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.000864}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.315}, {"name": "Phenol", "categories": ["water"], "amount": 0.315}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 734}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 734}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.32}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 34.6}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 17.8}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 602}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00317}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.181}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.00406}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.251}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 23.2}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 9.61}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.428}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 6.83}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 22.6}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.399}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 27.9}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.881}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.385}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.477}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1.87}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.4}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 7.72}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water"], "amount": 36.6}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 3.2}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 2.74}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water"], "amount": 14.8}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 7.19}, {"name": "Pyrene", "categories": ["air"], "amount": 0.624}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 11.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.342}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 0.573}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 31.1}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 31.1}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 14.6}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.531}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.608}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.492}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 10.9}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 68100}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 68100}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 68100}, {"name": "Silver I", "categories": ["air"], "amount": 48800}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 48800}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 45500}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 756}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 756}, {"name": "Silver I", "categories": ["soil"], "amount": 756}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 689}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 689}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 201}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 689}, {"name": "Silver I", "categories": ["water"], "amount": 689}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 418}, {"name": "Simazine", "categories": ["air"], "amount": 344}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 17.3}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 19.3}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 33.5}, {"name": "Simazine", "categories": ["water"], "amount": 33.5}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air"], "amount": 0.855}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.855}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.0046}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water"], "amount": 0.0211}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 32}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 5.51}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water"], "amount": 17.1}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 24.4}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.47}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.52}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1860}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1560}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 62.5}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 280}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 959}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 0.0552}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 342}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 6.15}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 11.9}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 7840}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Thallium I", "categories": ["air"], "amount": 7300}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 7300}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2480}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 6950}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 6950}, {"name": "Thallium I", "categories": ["soil"], "amount": 6950}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 5950}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 5950}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 379}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 5950}, {"name": "Thallium I", "categories": ["water"], "amount": 5950}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air"], "amount": 26.8}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.72}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.72}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 7.5}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.67}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 4.65}, {"name": "Thiodicarb", "categories": ["water"], "amount": 4.65}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.3}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 15.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.905}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.33}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.91}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.91}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 5.23}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23}, {"name": "Thiram", "categories": ["air"], "amount": 11.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.0675}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.208}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 4.91}, {"name": "Thiram", "categories": ["water"], "amount": 4.91}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067}, {"name": "Toluene", "categories": ["air"], "amount": 0.858}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.858}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0184}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water"], "amount": 0.0714}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.318}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.14}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.54}, {"name": "Triallate", "categories": ["air"], "amount": 9.42}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.76}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 72.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 44.1}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 158}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 144}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.78}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 17.9}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 15.8}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.16}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.7}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 128}, {"name": "Trifluralin", "categories": ["water"], "amount": 128}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.381}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 929}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 929}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 929}, {"name": "Vanadium V", "categories": ["air"], "amount": 703}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 703}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 66}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 58.7}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 58.7}, {"name": "Vanadium V", "categories": ["soil"], "amount": 58.7}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 605}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 605}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 37.6}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 605}, {"name": "Vanadium V", "categories": ["water"], "amount": 605}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.68}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air"], "amount": 1.58}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0182}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water"], "amount": 0.0692}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 11800}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11800}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 11800}, {"name": "Zinc II", "categories": ["air"], "amount": 8250}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 8250}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 37700}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 205}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 205}, {"name": "Zinc II", "categories": ["soil"], "amount": 205}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 8240}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 8240}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 338}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 8240}, {"name": "Zinc II", "categories": ["water"], "amount": 8240}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5.95}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00619}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.027}]}, {"unit": "kg Co-60-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "ionising radiation", "ionising radiation potential (IRP)"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 3.14e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 3.14e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 0.000438}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 3.14e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 3.14e-05}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 54.5}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 0.00345}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 0.00345}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 0.0482}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 0.00345}, {"name": "Americium-241", "categories": ["water"], "amount": 0.00345}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0491}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.000891}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00473}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water"], "amount": 8.64}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00582}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 10}, {"name": "Caesium-137", "categories": ["water"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["air"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.00609}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 0.00609}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0273}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.00609}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.00609}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00245}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.64}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 4.05e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 4.12e-05}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["air"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 0.287}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 0.287}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 0.287}, {"name": "Iodine-129", "categories": ["water"], "amount": 0.287}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.03}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 8.48e-06}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0191}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.88e-06}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00145}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.000236}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water"], "amount": 0.03}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.0245}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 0.0245}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000455}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.0245}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.0245}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 7.91e-05}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 7.91e-05}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water"], "amount": 0.0309}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 8.55e-06}]}, {"unit": "m2*a crop-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "land use", "agricultural land occupation (LOP)"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -36.75}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}]}, {"unit": "kg Cu-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "material resources: metals/minerals", "surplus ore potential (SOP)"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.169}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.169}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.572}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.131}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0228}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 76.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.32}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.32}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.0951}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0951}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.305}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0108}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0104}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 6.57}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.57}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0488}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.0154}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 83.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 83.8}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 317}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.192}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.00283}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 96.7}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 103}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 103}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 7.09}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 7.09}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.79}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.79}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.0823}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0823}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 8.96}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 5.2}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00916}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00576}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 528}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 528}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 13.3}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.428}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0875}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.0378}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 52.9}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 52.9}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 18.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 18.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 1200}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 5.03}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.03}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 7.78}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 25.2}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 3.97}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.153}]}, {"unit": "kg CFC-11-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "ozone depletion", "ozone depletion potential (ODPinfinite)"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.011}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.011}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.011}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.178}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.664}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.664}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.134}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.134}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.27}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.27}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.067}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.067}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.067}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.011}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.061}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.061}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.061}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.061}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.061}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.00726}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.00726}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.734}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.734}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 8.78}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.78}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.78}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 8.78}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 8.78}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 14.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 14.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 14.1}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.045}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.045}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.587}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.587}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.022}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.895}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.895}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg PM2.5-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "particulate matter formation", "particulate matter formation potential (PMFP)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.17}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.11}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.29}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.23}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "photochemical oxidant formation: human health", "photochemical oxidant formation potential: humans (HOFP)"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.345}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.131}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.131}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.149}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0653}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.199}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0326}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0326}, {"name": "Acetone", "categories": ["air"], "amount": 0.0218}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Acrolein", "categories": ["air"], "amount": 0.196}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.174}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.0689}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.0689}, {"name": "Benzene", "categories": ["air"], "amount": 0.0363}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0363}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.167}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Butadiene", "categories": ["air"], "amount": 0.323}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.112}, {"name": "Butane", "categories": ["air"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.112}, {"name": "Butanol", "categories": ["air"], "amount": 0.189}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.228}, {"name": "Butene", "categories": ["air"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.228}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.0943}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0943}, {"name": "Cumene", "categories": ["air"], "amount": 0.116}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.102}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.167}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Ethane", "categories": ["air"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00363}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00363}, {"name": "Ethanol", "categories": ["air"], "amount": 0.123}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.123}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0689}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.363}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.134}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.134}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.167}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0109}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Heptane", "categories": ["air"], "amount": 0.127}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.127}, {"name": "Hexane", "categories": ["air"], "amount": 0.145}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.163}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.163}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0266}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0266}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Isoprene", "categories": ["air"], "amount": 0.413}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.413}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0109}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00363}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Methanol", "categories": ["air"], "amount": 0.0471}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.116}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0399}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0399}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Phenol", "categories": ["air"], "amount": -0.0181}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0181}, {"name": "Propanal", "categories": ["air"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.261}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0508}, {"name": "Propane", "categories": ["air"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0508}, {"name": "Propanol", "categories": ["air"], "amount": 0.174}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.424}, {"name": "Propene", "categories": ["air"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.424}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0471}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Styrene", "categories": ["air"], "amount": 0.0181}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0181}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00363}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Toluene", "categories": ["air"], "amount": 0.16}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.105}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.312}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.312}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.283}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.283}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "photochemical oxidant formation: terrestrial ecosystems", "photochemical oxidant formation potential: ecosystems (EOFP)"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.555}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.21}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.21}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.479}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.105}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.304}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.321}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0526}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0526}, {"name": "Acetone", "categories": ["air"], "amount": 0.0351}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "Acrolein", "categories": ["air"], "amount": 0.316}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.316}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.281}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.111}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.111}, {"name": "Benzene", "categories": ["air"], "amount": 0.0585}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0585}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.269}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Butadiene", "categories": ["air"], "amount": 0.52}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.52}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.181}, {"name": "Butane", "categories": ["air"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.181}, {"name": "Butanol", "categories": ["air"], "amount": 0.304}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Butene", "categories": ["air"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.152}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Cumene", "categories": ["air"], "amount": 0.187}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.164}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.269}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.0468}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00585}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00585}, {"name": "Ethanol", "categories": ["air"], "amount": 0.199}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.111}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.111}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.585}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.216}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.216}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.269}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0175}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Heptane", "categories": ["air"], "amount": 0.205}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.205}, {"name": "Hexane", "categories": ["air"], "amount": 0.234}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.263}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.263}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0429}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Isoprene", "categories": ["air"], "amount": 0.666}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.666}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0175}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00585}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Methanol", "categories": ["air"], "amount": 0.076}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.187}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0643}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0643}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Phenol", "categories": ["air"], "amount": -0.0292}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0292}, {"name": "Propanal", "categories": ["air"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.421}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0818}, {"name": "Propane", "categories": ["air"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0818}, {"name": "Propanol", "categories": ["air"], "amount": 0.281}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.684}, {"name": "Propene", "categories": ["air"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.684}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.076}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Styrene", "categories": ["air"], "amount": 0.0292}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0292}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00585}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Toluene", "categories": ["air"], "amount": 0.257}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.17}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.503}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.503}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.456}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.456}]}, {"unit": "cubic meter", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "water use", "water consumption potential (WCP)"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Water", "categories": ["air"], "amount": 1}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg SO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "acidification: terrestrial no LT", "terrestrial acidification potential (TAP) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.552}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.36}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}]}, {"unit": "kg CO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "climate change no LT", "global warming potential (GWP1000) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air"], "amount": 60}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 60}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 264}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 264}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 264}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 3710}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 3710}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 578}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 578}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 6940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 6940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 6940}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6490}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6490}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2550}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2550}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 506}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 506}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 506}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 506}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7710}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 7710}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 7710}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 7710}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5020}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5020}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5020}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5020}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 292}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 292}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1870}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1870}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1870}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1870}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5860}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 5860}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 5860}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 5860}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8210}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8210}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8210}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8210}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6090}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6090}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6090}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6090}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 30.2}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 30.2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4590}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4590}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4590}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4590}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7800}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7800}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7800}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7800}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5280}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5280}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 10900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 10900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 10900}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 33}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 33}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10800}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10800}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 543}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 543}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 543}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 543}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2430}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2430}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2430}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2430}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 85}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 85}, {"name": "Methane, fossil", "categories": ["air"], "amount": 85}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 85}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 84}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 84}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 84}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 45}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 45}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 84}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 84}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 84}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3480}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3480}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4880}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 4880}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 4880}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 4880}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10800}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 12800}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6350}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 17500}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 17500}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "ecotoxicity: freshwater no LT", "freshwater ecotoxicity potential (FETP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.000523}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.836}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.11e-05}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.0411}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.204}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.9}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 2.62}, {"name": "2,4-D", "categories": ["water"], "amount": 2.62}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0734}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.155}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0734}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.182}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.155}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0648}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.109}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.27}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.27}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0248}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.0144}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.98e-06}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.00477}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 4.88e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.0653}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.00199}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water"], "amount": 14.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0665}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.713}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.889}, {"name": "Acephate", "categories": ["water"], "amount": 0.889}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.96e-05}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.144}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.95e-09}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.169}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air"], "amount": 4.33e-05}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.33e-05}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 6.06e-06}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water"], "amount": 0.00217}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.000194}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.000194}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00873}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00873}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00873}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 5.11}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air"], "amount": 0.084}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.084}, {"name": "Acrolein", "categories": ["water"], "amount": 69.4}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.94e-09}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water"], "amount": 0.132}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0236}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0236}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.000598}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.441}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 11.5}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0228}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0228}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 25.1}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.759}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 56.3}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.309}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 339}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 269}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 144}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1070}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 82400}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 35.1}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.14}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 39.5}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air"], "amount": 0.00401}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00401}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.11e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "Aniline", "categories": ["water"], "amount": 1.05}, {"name": "Anthracene", "categories": ["air"], "amount": 0.197}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.135}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 354}, {"name": "Anthracene", "categories": ["water"], "amount": 354}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.232}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.86}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.86}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.211}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.365}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.365}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.365}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 59.7}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 8.35e-21}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 59.7}, {"name": "Arsenic ion", "categories": ["water"], "amount": 59.7}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.86}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14.8}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 85.6}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 179}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 179}, {"name": "Atrazine", "categories": ["water"], "amount": 179}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.454}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.747}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 234}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 27.3}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 156}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 156}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.461}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.461}, {"name": "Barium II", "categories": ["air"], "amount": 1.09}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.09}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil"], "amount": 2.51}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.53e-21}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.79}, {"name": "Barium II", "categories": ["water"], "amount": 2.79}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.0659}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0228}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0238}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.055}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.68}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.68}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.00269}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00269}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.744}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.72e-05}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water"], "amount": 0.0868}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000158}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.748}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 6.87e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.293}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 24.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0684}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0684}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.0687}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0687}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 15.2}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.412}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.412}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 134}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 134}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.0491}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0337}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 4.17e-06}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.285}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.877}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.877}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.657}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.657}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.101}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.169}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.169}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.169}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 50}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 7.78e-21}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 50}, {"name": "Beryllium II", "categories": ["water"], "amount": 50}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 249}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 36.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 277}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 21100}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 21100}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 110}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.509}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.1}, {"name": "Bifenthrin", "categories": ["air"], "amount": 39.5}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 13.5}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 89.5}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 12000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 12000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 44.9}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.0298}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 10}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.9}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.95}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 167}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 167}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 11.7}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3.65}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air"], "amount": 0.000143}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000143}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 4.78e-06}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water"], "amount": 0.0183}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.0771}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.302}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.302}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.299}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.299}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.291}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.291}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.291}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 15}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 7.05e-22}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 15}, {"name": "Cadmium II", "categories": ["water"], "amount": 15}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 25.9}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 9.19}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 116}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 116}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58}, {"name": "Carbendazim", "categories": ["air"], "amount": 7.02}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 4.53}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 26.3}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 45.9}, {"name": "Carbendazim", "categories": ["water"], "amount": 45.9}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.708}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 9.94e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.349}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 6.32e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0948}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air"], "amount": 39.4}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 39.4}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 9.74e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 217}, {"name": "Chloramine", "categories": ["water"], "amount": 217}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.67}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.398}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 63.7}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.537}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 8.54e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water"], "amount": 0.162}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.8}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 23.7}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 26.5}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 158}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 673}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 673}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.4}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 329}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1790}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 14700}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 14700}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 33.9}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.45}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0595}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0595}, {"name": "Chromium III", "categories": ["air"], "amount": 0.0847}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.0847}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.0767}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.141}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.141}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.141}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.03}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.15e-22}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.03}, {"name": "Chromium III", "categories": ["water"], "amount": 2.03}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52}, {"name": "Chromium VI", "categories": ["air"], "amount": 3.63}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3.63}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 3.32}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6.11}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6.11}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6.11}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 83.2}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.97e-20}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 83.2}, {"name": "Chromium VI", "categories": ["water"], "amount": 83.2}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.833}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.376}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.699}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.102}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.102}, {"name": "Cobalt II", "categories": ["air"], "amount": 0.0816}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 0.0816}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.0211}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.0368}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.0368}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.0368}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5.67}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 4.45e-22}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5.67}, {"name": "Cobalt II", "categories": ["water"], "amount": 5.67}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.57}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57}, {"name": "Copper ion", "categories": ["air"], "amount": 2.04}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2.04}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.492}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.854}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.854}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.854}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 144}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 9.9e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 144}, {"name": "Copper ion", "categories": ["water"], "amount": 144}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 9.14e-06}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.558}, {"name": "Cumene", "categories": ["water"], "amount": 0.558}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 7.43}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 7.27e-08}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0546}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.0628}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.289}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.0049}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 257}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 110}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 821}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 62900}, {"name": "Cypermethrin", "categories": ["water"], "amount": 62900}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 2.02}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 12.9}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.593}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.73}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0534}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 2.21}, {"name": "Deltamethrin", "categories": ["air"], "amount": 53.3}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 6300}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.139}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 16.4}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.173}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.33}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.33}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.135}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 17.1}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0429}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.0814}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.63}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.63}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 17.6}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 5.79}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 3.27}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 0.282}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.159}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.57e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.57e-06}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0314}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0314}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.81e-06}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.462}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 188}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 300}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1990}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 4860}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 4860}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Dimethoate", "categories": ["air"], "amount": 3.37}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 5.7}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 38.7}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0766}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0766}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.973}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 2.2e-05}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.973}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.973}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.394}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.71}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 8.72}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 19.6}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 19.6}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Diuron", "categories": ["air"], "amount": 35.2}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 15.2}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 98.4}, {"name": "Diuron", "categories": ["water"], "amount": 222}, {"name": "Dodecanol", "categories": ["water"], "amount": 22.5}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.353}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.318}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.113}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 6.86}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.281}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.732}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.58}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 12.4}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.59}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 41}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 83.9}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 83.9}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1490}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.18e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.18e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.52e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000425}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 7.04e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0554}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.00495}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.55}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.24e-06}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water"], "amount": 0.00629}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.047}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.328}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.328}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.24}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.594}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.9e-05}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.94e-09}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.425}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.000708}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.000708}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.000176}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0482}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 2.71}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 6.5}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 63.5}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.58}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 7.5}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 43.7}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 108}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.639}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.26}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.5}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 87.9}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 87.9}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.4}, {"name": "Fluazinam", "categories": ["air"], "amount": 287}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 105}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 743}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water"], "amount": 2260}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.2}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 41}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.863}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 618}, {"name": "Fluorene", "categories": ["air"], "amount": 0.0118}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 7.12}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 4.12}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 31.1}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0315}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0315}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 4.68e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.907}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0853}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.98e-10}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0853}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0853}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.0076}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.996}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.202}, {"name": "Furfural", "categories": ["air"], "amount": 0.00702}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.589}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.28}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.35}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water"], "amount": 2.39}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.85}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 32.1}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 32.1}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air"], "amount": 6.53e-09}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.53e-09}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 10.8}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "Hexane", "categories": ["water"], "amount": 0.141}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.39}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 93.3}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.0227}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 93.3}, {"name": "Hydrazine", "categories": ["water"], "amount": 93.3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.5e-06}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.302}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.52e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.52e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.139}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 6.47e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.139}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.139}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000363}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000363}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.00036}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.00036}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.0062}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.676}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.79}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.95}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 9.15}, {"name": "Imidacloprid", "categories": ["water"], "amount": 9.15}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 6.14}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.51}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 1.71e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.71e-08}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 4.87}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 66.7}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 410}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 47700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 47700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 47700}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00902}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00902}, {"name": "Lead II", "categories": ["air"], "amount": 0.00654}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00654}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.000635}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.000987}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.000987}, {"name": "Lead II", "categories": ["soil"], "amount": 0.000987}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.533}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.66e-24}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.533}, {"name": "Lead II", "categories": ["water"], "amount": 0.533}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.539}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 24.6}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.927}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0967}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.63}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.63}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.184}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 6}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 12.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.292}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0307}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.52}, {"name": "Mancozeb", "categories": ["air"], "amount": 14.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 56.6}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 77.9}, {"name": "Mancozeb", "categories": ["water"], "amount": 77.9}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.21}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.777}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.777}, {"name": "Mercury II", "categories": ["air"], "amount": 0.542}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.542}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0288}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0382}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0382}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0382}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 43.9}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.34e-22}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 43.9}, {"name": "Mercury II", "categories": ["water"], "amount": 43.9}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.294}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.19}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00276}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00276}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.81e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0292}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000266}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.534}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air"], "amount": 0.000132}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.49e-06}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water"], "amount": 0.00493}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.25}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 28.1}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 8.59}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 47.6}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water"], "amount": 78.6}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.372}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.000365}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.72}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00341}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.756}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.91}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air"], "amount": 0.063}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.063}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.291}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 6.19e-06}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.291}, {"name": "Methylamine", "categories": ["water"], "amount": 0.291}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.328}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.63}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 9.41}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 62.2}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 147}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 147}, {"name": "Metolachlor", "categories": ["water"], "amount": 147}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.47}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 148}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 297}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 772}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 523}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 3010}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 5070}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 5070}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 111}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.612}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0111}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0111}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.0158}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.0158}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.0144}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.0265}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.0265}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.0265}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.376}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 5.32e-23}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.376}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.376}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 3.12}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.287}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 4.55}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.000708}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 68}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.783}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.783}, {"name": "Nickel II", "categories": ["air"], "amount": 0.682}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.682}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.256}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.456}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.456}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.456}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 41.7}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.29e-21}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 41.7}, {"name": "Nickel II", "categories": ["water"], "amount": 41.7}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.00135}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.76}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.82}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.0644}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.76}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 3.03}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.322}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.344}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.344}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 6.02}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.00486}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 13}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0329}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0129}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 38.3}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.184}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.69}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 175}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 175}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.1}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 5.08}, {"name": "Permethrin", "categories": ["water"], "amount": 2860}, {"name": "Phenanthrene", "categories": ["air"], "amount": 0.136}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 57}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.07}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air"], "amount": 0.00867}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00867}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.24e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.969}, {"name": "Phenol", "categories": ["water"], "amount": 0.969}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.136}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.136}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.15}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.15}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 19}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 5.54}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 45.3}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 8.86}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 33.3}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 60.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00054}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 15.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.000947}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 26.1}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.608}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 3.81e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.608}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.608}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.01e-05}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.24}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.728}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.86}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 22.5}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 13.3}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 430}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.23}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 17.5}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.0202}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air"], "amount": 0.000117}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00941}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 5.28e-06}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00941}, {"name": "Propanol", "categories": ["water"], "amount": 0.00941}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 9.34}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.17}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.15}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 3.37}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 15.8}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water"], "amount": 74.9}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.32e-08}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.157}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 8.29}, {"name": "Pyrene", "categories": ["air"], "amount": 1.18}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1810}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.81}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.81}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.036}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 8.08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.673}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.03}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 4.5}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 28.4}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 236}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2700}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2700}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.182}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.0406}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.277}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.277}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.267}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.267}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.135}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.242}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.242}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.242}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 13.9}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.36e-21}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 13.9}, {"name": "Selenium IV", "categories": ["water"], "amount": 13.9}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0968}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.41}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.79}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.79}, {"name": "Silver I", "categories": ["air"], "amount": 6.44}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 6.44}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.95}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 3.44}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 3.44}, {"name": "Silver I", "categories": ["soil"], "amount": 3.44}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 431}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.63e-20}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 431}, {"name": "Silver I", "categories": ["water"], "amount": 431}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.65}, {"name": "Simazine", "categories": ["air"], "amount": 11.9}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 5.69}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 33.2}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 57.6}, {"name": "Simazine", "categories": ["water"], "amount": 57.6}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 20}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.86e-06}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.396}, {"name": "Styrene", "categories": ["water"], "amount": 0.396}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 144}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.84}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 13.1}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water"], "amount": 40.5}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.45}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 72.6}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.93}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 22.3}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.00014}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.23}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.31}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.31}, {"name": "Thallium I", "categories": ["air"], "amount": 13.9}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 13.9}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 15.7}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 31.1}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 31.1}, {"name": "Thallium I", "categories": ["soil"], "amount": 31.1}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 52.6}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 3.29e-20}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 52.6}, {"name": "Thallium I", "categories": ["water"], "amount": 52.6}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.539}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.41}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.736}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 5.15}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 15}, {"name": "Thiabendazole", "categories": ["water"], "amount": 15}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 12.7}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 79.1}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 147}, {"name": "Thiodicarb", "categories": ["water"], "amount": 147}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.817}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.92}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.93}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 10.4}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 15.1}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9}, {"name": "Thiram", "categories": ["air"], "amount": 5.91}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 19.8}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 468}, {"name": "Thiram", "categories": ["water"], "amount": 468}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0723}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0723}, {"name": "Tin ion", "categories": ["air"], "amount": 0.0529}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 0.0529}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.00592}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.00944}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.00944}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.00944}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 4.25}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.68e-22}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 4.25}, {"name": "Tin ion", "categories": ["water"], "amount": 4.25}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.71e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.139}, {"name": "Toluene", "categories": ["water"], "amount": 0.139}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 36.7}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 714}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.74}, {"name": "Triallate", "categories": ["air"], "amount": 0.164}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.66}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 86.9}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.506}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 7.86}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.11e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.17}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.86}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 4.91e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.00133}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 12.1}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0391}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.438}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.61}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 35.4}, {"name": "Trifluralin", "categories": ["water"], "amount": 35.4}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.455}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.14e-11}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.0319}, {"name": "Urea", "categories": ["water"], "amount": 0.0319}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.38}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.38}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.95}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.95}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.99}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.99}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.99}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 175}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.22e-20}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 175}, {"name": "Vanadium V", "categories": ["water"], "amount": 175}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.548}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Xylene", "categories": ["water"], "amount": 0.155}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 257}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 110}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.94}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94}, {"name": "Zinc II", "categories": ["air"], "amount": 3.03}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 3.03}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.58}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.972}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.972}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.972}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.9e-20}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 211}, {"name": "Zinc II", "categories": ["water"], "amount": 211}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.26}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 53.1}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 4.4e-06}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.492}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.06e-05}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.525}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.31}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "ecotoxicity: marine no LT", "marine ecotoxicity potential (METP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.833}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.141}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.00731}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.00125}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.145}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.02}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.106}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.146}, {"name": "2,4-D", "categories": ["water"], "amount": 0.146}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0706}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.0127}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 0.0884}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 0.0884}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0706}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.0623}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.0127}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 0.0884}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.00605}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.238}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.238}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0054}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.00144}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.000733}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.000315}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000315}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.000996}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.000299}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.00261}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.00261}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.007}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00155}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.152}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.152}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.0488}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.0488}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 0.631}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 11.7}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.631}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.631}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0443}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00705}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.0397}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.0495}, {"name": "Acephate", "categories": ["water"], "amount": 0.0495}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00807}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00807}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.00514}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00514}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.00943}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0716}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.00943}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.00943}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.0168}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00238}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000601}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000601}, {"name": "Acetone", "categories": ["air"], "amount": 0.000597}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.000597}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.000894}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water"], "amount": 0.000503}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.00388}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00239}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 0.438}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air"], "amount": 1.34}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.34}, {"name": "Acrolein", "categories": ["water"], "amount": 3.24}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00185}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.0131}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00185}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00185}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0034}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0034}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.0446}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.0446}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.0519}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.255}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.0519}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.0519}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.974}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0196}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0196}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.57}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.58}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.00546}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9340}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 4800}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 108}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 267}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 15000}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.325}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.44}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00496}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00496}, {"name": "Aniline", "categories": ["air"], "amount": 0.00107}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.139}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water"], "amount": 0.0257}, {"name": "Anthracene", "categories": ["air"], "amount": 4.67}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 29}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 307}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 29}, {"name": "Anthracene", "categories": ["water"], "amount": 29}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32.3}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.3}, {"name": "Arsenic ion", "categories": ["air"], "amount": 22.4}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 22.4}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0553}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0954}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0954}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0954}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 24}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 71.9}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 24}, {"name": "Arsenic ion", "categories": ["water"], "amount": 24}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.58}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water"], "amount": 14.9}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0373}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.14}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 13.1}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.72}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.283}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.25}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 12.9}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 12.9}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07}, {"name": "Barium II", "categories": ["air"], "amount": 1.05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.49}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.03}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.03}, {"name": "Barium II", "categories": ["soil"], "amount": 1.03}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.25}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.94}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.25}, {"name": "Barium II", "categories": ["water"], "amount": 1.25}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.00158}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0295}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0391}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0239}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.00306}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.0378}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.0378}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0346}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0346}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0234}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0234}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0395}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air"], "amount": 0.00235}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.00235}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.00486}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0891}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00486}, {"name": "Benzene", "categories": ["water"], "amount": 0.00486}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.45}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.0377}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.339}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.339}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.339}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.57}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.57}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.46}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.46}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 10.8}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.2}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.2}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 20.1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 20.1}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 20.5}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.5}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.5}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 26.8}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 26.8}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 12.1}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 12.1}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.00118}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.00334}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0322}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.00699}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 68.3}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.3}, {"name": "Beryllium II", "categories": ["air"], "amount": 47.2}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 47.2}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.0205}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.0341}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.0341}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.0341}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 15.5}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 149}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 15.5}, {"name": "Beryllium II", "categories": ["water"], "amount": 15.5}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6710}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 10.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 51.2}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 3830}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 3830}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 81.6}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2380}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1380}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 24.5}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 37.3}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2180}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2180}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.49}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 0.0744}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.00164}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.88}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.982}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.28}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.28}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.964}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air"], "amount": 0.000583}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000583}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.00295}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water"], "amount": 0.000557}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.00304}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0295}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.00304}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.00304}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.2}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.2}, {"name": "Cadmium II", "categories": ["air"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.0273}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.0492}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.0492}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.0492}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 3.8}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 53.5}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 3.8}, {"name": "Cadmium II", "categories": ["water"], "amount": 3.8}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.15}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.515}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.45}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.45}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.23}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.09}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.251}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.47}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.56}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.56}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.0392}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.33}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.138}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.263}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.138}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.138}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 0.0094}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00133}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.34}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.34}, {"name": "Chloramine", "categories": ["air"], "amount": 7.51}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.51}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.17}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 23.2}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.17}, {"name": "Chloramine", "categories": ["water"], "amount": 5.17}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 0.316}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.0224}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 5.76}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.0298}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.047}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.176}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.047}, {"name": "Chloroform", "categories": ["water"], "amount": 0.047}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 181}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 177}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 78.6}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 105}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 189}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 189}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 173}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 103}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 331}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2640}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2640}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 4.78}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.901}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.0802}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.58}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.58}, {"name": "Chromium III", "categories": ["air"], "amount": 2.48}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.48}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.0116}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.0211}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.0211}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.0211}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 0.456}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 7.82}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.456}, {"name": "Chromium III", "categories": ["water"], "amount": 0.456}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 50}, {"name": "Chromium VI", "categories": ["air"], "amount": 35.1}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 35.1}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.953}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.74}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.74}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.74}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 36.4}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 110}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 36.4}, {"name": "Chromium VI", "categories": ["water"], "amount": 36.4}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.0506}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.0326}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0387}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.84}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 3.84}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.00349}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.00607}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.00607}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.00607}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 1.34}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 13.2}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 1.34}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.34}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 148}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 148}, {"name": "Copper ion", "categories": ["air"], "amount": 103}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 103}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.0774}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.134}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.134}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.134}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 32.5}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 352}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 32.5}, {"name": "Copper ion", "categories": ["water"], "amount": 32.5}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Cumene", "categories": ["air"], "amount": 0.00063}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.00063}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.331}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water"], "amount": 0.0105}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.69e-06}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.69e-06}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000942}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0342}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000942}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000942}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.69e-06}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.00347}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 137}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.0543}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.000272}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7070}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 81.6}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 203}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 11500}, {"name": "Cypermethrin", "categories": ["water"], "amount": 11500}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.166}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.0487}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.499}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00128}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.122}, {"name": "Deltamethrin", "categories": ["air"], "amount": 851}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 80.5}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 717}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.00778}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.96}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.119}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.0183}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 0.13}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 0.13}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.38}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0314}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.0045}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.0351}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.0351}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.06}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.6}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.0783}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 7.1}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.00223}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.23e-05}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.018}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.018}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.0496}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.011}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 444}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 57.4}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 379}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 917}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 917}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.295}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.167}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.137}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0457}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0457}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.0383}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0383}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.0232}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.00618}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.661}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00569}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.508}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 0.315}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 0.0748}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 0.485}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.09}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.09}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 0.475}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.3}, {"name": "Diuron", "categories": ["air"], "amount": 10.3}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.844}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.47}, {"name": "Diuron", "categories": ["water"], "amount": 12.4}, {"name": "Dodecanol", "categories": ["water"], "amount": 0.864}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.0208}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.0292}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.00446}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.0263}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 191}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.00395}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.13}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.86}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 6.99}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 7.84}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 15.9}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 15.9}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5590}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0691}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0691}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0688}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0688}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.0704}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.0704}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.0704}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.0438}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0438}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.0178}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0178}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0618}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0185}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6.86}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 10.2}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6.86}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 6.86}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000434}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000434}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.000224}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.0009}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.000224}, {"name": "Ethanol", "categories": ["water"], "amount": 0.000224}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.00261}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.0182}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.0182}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.069}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.0386}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.471}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00277}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00277}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.00263}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00263}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00882}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.00264}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0165}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0165}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.0455}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.0101}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.0324}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0178}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.382}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.36}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.03}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 0.387}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.556}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 0.626}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 141}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 0.226}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 0.225}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.48}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.33}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.33}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 270}, {"name": "Fluazinam", "categories": ["air"], "amount": 232}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 21.3}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 142}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 428}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 428}, {"name": "Fluazinam", "categories": ["water"], "amount": 428}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.3}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 7.91}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Fluoranthene", "categories": ["air"], "amount": 14.4}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 57.8}, {"name": "Fluorene", "categories": ["air"], "amount": 0.164}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 0.328}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 0.907}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.29}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.36}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0251}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0251}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.0237}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00846}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0012}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0238}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0112}, {"name": "Furfural", "categories": ["air"], "amount": 0.00779}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.00729}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.145}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.00729}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0924}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.00838}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.0569}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.9}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.06}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air"], "amount": 9.98e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 9.98e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 0.84}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0628}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water"], "amount": 0.00162}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.243}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.0373}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.52}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 10.1}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.27}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000246}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000246}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000246}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000246}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.00552}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.171}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.00552}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.00552}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000456}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000456}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.000381}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.000381}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0205}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0901}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0205}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0205}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0521}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0521}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0517}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0517}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000149}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.547}, {"name": "Imidacloprid", "categories": ["air"], "amount": 0.555}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.578}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 0.761}, {"name": "Imidacloprid", "categories": ["water"], "amount": 0.761}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.339}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.291}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air"], "amount": 2.8e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.8e-07}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 24900}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 431}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 495}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 9580}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 9580}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 9580}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06}, {"name": "Lead II", "categories": ["air"], "amount": 0.735}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.735}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 8.07e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.000125}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.000125}, {"name": "Lead II", "categories": ["soil"], "amount": 0.000125}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.101}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.33}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.101}, {"name": "Lead II", "categories": ["water"], "amount": 0.101}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.0298}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 126}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.0774}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0633}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.00414}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 0.0389}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 0.0389}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.317}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.0105}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.334}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.334}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.301}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.00697}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.000734}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.87}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.76}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.593}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.15}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.33}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.33}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.609}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0668}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 87.6}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 87.6}, {"name": "Mercury II", "categories": ["air"], "amount": 59.8}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 59.8}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.00401}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0053}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0053}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0053}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 9.15}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 179}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 9.15}, {"name": "Mercury II", "categories": ["water"], "amount": 9.15}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.0168}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.535}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.00482}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.18}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0624}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.617}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.617}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.618}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.618}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.00783}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.00783}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.00831}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0329}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.00831}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.00831}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.478}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.478}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.476}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.869}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.476}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.476}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air"], "amount": 0.000451}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000451}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.000222}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000712}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.000222}, {"name": "Methanol", "categories": ["water"], "amount": 0.000222}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 0.46}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.58}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.206}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.14}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water"], "amount": 1.87}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.174}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.0221}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.0221}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.0384}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.394}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.0384}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.0384}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000754}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000754}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.000724}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.000724}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.000669}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 0.384}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air"], "amount": 0.012}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.012}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.0312}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water"], "amount": 0.00695}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.0184}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.87}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.783}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.12}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water"], "amount": 12.2}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.93}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.85}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.25}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 288}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 42.9}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 249}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 421}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 421}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.65}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.0824}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.271}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.271}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.189}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.00283}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.00519}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.00519}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.00519}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.104}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 0.642}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.104}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.104}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.0747}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00685}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 0.086}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 7.78}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.0206}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.11}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.99}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.2}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.2}, {"name": "Nickel II", "categories": ["air"], "amount": 30.6}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 30.6}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.053}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.0939}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.0939}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.0939}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 13}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 98.3}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 13}, {"name": "Nickel II", "categories": ["water"], "amount": 13}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.154}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.154}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.228}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.118}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00357}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.488}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.0725}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.701}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.53}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.53}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.43}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.000713}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 0.0948}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.0101}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.39}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.358}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 498}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 18.2}, {"name": "Permethrin", "categories": ["water"], "amount": 287}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.43}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.35}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.0591}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0176}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0176}, {"name": "Phenol", "categories": ["air"], "amount": 0.00849}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00849}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water"], "amount": 0.0237}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.3}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.3}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 30.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 30.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.04}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.54}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.468}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1.95}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.6}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.406}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.406}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.406}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.417}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.417}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.417}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.0664}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.0152}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.419}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.0322}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.0598}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.0376}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.54}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 38.8}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.18}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.273}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.5}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.00112}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.119}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air"], "amount": 0.000569}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000569}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0019}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water"], "amount": 0.00055}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.768}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.00486}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.33}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.278}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.31}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.23}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.23}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.23}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00805}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00805}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.00592}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00592}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.0022}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.0155}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.0022}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.0022}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 0.466}, {"name": "Pyrene", "categories": ["air"], "amount": 21.5}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 156}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.00199}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 0.752}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.0379}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.7}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 13.2}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.23}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 23.2}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 226}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 226}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.0101}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.00363}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.7}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.7}, {"name": "Selenium IV", "categories": ["air"], "amount": 10.2}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 10.2}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.0281}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.0504}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.0504}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.0504}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 4.36}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 32.7}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 4.36}, {"name": "Selenium IV", "categories": ["water"], "amount": 4.36}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0149}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.412}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 720}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 720}, {"name": "Silver I", "categories": ["air"], "amount": 498}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 498}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.313}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.549}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.549}, {"name": "Silver I", "categories": ["soil"], "amount": 0.549}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 104}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1590}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 104}, {"name": "Silver I", "categories": ["water"], "amount": 104}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.78}, {"name": "Simazine", "categories": ["air"], "amount": 3.42}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.469}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.75}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.79}, {"name": "Simazine", "categories": ["water"], "amount": 4.79}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.05}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air"], "amount": 9.5e-05}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.5e-05}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.00719}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.238}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.00719}, {"name": "Styrene", "categories": ["water"], "amount": 0.00719}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.33}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.96}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.151}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.36}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 0.205}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.0743}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.28}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.95}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0749}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0749}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.0748}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0748}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.43}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.12}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.5}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.5}, {"name": "Thallium I", "categories": ["air"], "amount": 19.5}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 19.5}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 5.36}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 10.4}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 10.4}, {"name": "Thallium I", "categories": ["soil"], "amount": 10.4}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 24.9}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 47.6}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 24.9}, {"name": "Thallium I", "categories": ["water"], "amount": 24.9}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.579}, {"name": "Thiabendazole", "categories": ["air"], "amount": 0.489}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.0176}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.123}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.359}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.359}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.26}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.96}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.5}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.01}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.58}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.58}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.717}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 0.645}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.159}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 0.864}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.25}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.25}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.3}, {"name": "Thiram", "categories": ["air"], "amount": 9.15}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.234}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.11}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 26}, {"name": "Thiram", "categories": ["water"], "amount": 26}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.78}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.78}, {"name": "Tin ion", "categories": ["air"], "amount": 4.69}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 4.69}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.000976}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.00155}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.00155}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.00155}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 15}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "Tin ion", "categories": ["water"], "amount": 1.05}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air"], "amount": 0.000331}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000331}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0856}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water"], "amount": 0.00276}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.19}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 128}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.143}, {"name": "Triallate", "categories": ["air"], "amount": 1.01}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.516}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 7.75}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.0226}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.645}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.00636}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.163}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.00636}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.00636}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.317}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 0.000142}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.16e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.28}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.611}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.973}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.6}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.6}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.011}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 0.00342}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.00076}, {"name": "Urea", "categories": ["water"], "amount": 0.00076}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.00569}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 71}, {"name": "Vanadium V", "categories": ["air"], "amount": 49.2}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 49.2}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.311}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.551}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.551}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.551}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 75.9}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 157}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 75.9}, {"name": "Vanadium V", "categories": ["water"], "amount": 75.9}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.0464}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000248}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000248}, {"name": "Xylene", "categories": ["air"], "amount": 0.000165}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000165}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00292}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0931}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00292}, {"name": "Xylene", "categories": ["water"], "amount": 0.00292}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7070}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 81.6}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.5}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.5}, {"name": "Zinc II", "categories": ["air"], "amount": 24.6}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 24.6}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.138}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.231}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.231}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.231}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 71.2}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 81.8}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 71.2}, {"name": "Zinc II", "categories": ["water"], "amount": 71.2}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 0.182}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.95}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.00889}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.296}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.00889}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.00889}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000839}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000839}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.00056}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.00056}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.0099}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.315}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.0099}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.0099}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 4.55}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "ecotoxicity: terrestrial no LT", "terrestrial ecotoxicity potential (TETP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.802}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.76}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.062}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.695}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0416}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.00206}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.00054}, {"name": "2,4-D", "categories": ["water"], "amount": 0.00054}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.1e-07}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 4.67e-09}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 33.3}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.1e-07}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 69.5}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.0475}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.0475}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0855}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.798}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00627}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.00194}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.0188}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.23e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 9.68e-05}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.647}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.61}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 813}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00233}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000491}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 7.9e-05}, {"name": "Acephate", "categories": ["water"], "amount": 7.9e-05}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0828}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.339}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 125}, {"name": "Acetic acid", "categories": ["air"], "amount": 87}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 87}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.39e-05}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00669}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air"], "amount": 0.0305}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00445}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water"], "amount": 0.0236}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0609}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.305}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 495}, {"name": "Acrolein", "categories": ["air"], "amount": 287}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 287}, {"name": "Acrolein", "categories": ["water"], "amount": 423}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.15e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00425}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air"], "amount": 45.7}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 45.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.867}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.13}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 8460}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.3}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 146}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.0173}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 123000}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 62900}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1110}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1150}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 3460}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 58.9}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 8.55}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.13}, {"name": "Aniline", "categories": ["air"], "amount": 0.621}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.621}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.041}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.622}, {"name": "Aniline", "categories": ["water"], "amount": 0.622}, {"name": "Anthracene", "categories": ["air"], "amount": 34.8}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 28.8}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water"], "amount": 71.1}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 58200}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 58200}, {"name": "Arsenic ion", "categories": ["air"], "amount": 40200}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 40200}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 2.28e-18}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 3.93e-18}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 3.93e-18}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.93e-18}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.12e-15}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 4.06e-16}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.12e-15}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.12e-15}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 22.7}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14.4}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water"], "amount": 10.1}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0553}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 6.61e-05}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 174}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4680}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.000144}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 0.000137}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.09e-05}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.09e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1430}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Barium II", "categories": ["air"], "amount": 991}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 991}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.81e-17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 3.79e-17}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 3.79e-17}, {"name": "Barium II", "categories": ["soil"], "amount": 3.79e-17}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 4.79e-17}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 9.05e-18}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 4.79e-17}, {"name": "Barium II", "categories": ["water"], "amount": 4.79e-17}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.72e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.516}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.000631}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0639}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.582}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.091}, {"name": "Benzene", "categories": ["air"], "amount": 0.0871}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0871}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0427}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water"], "amount": 0.0859}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.922}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0129}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0425}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 48.4}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.2}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 78.2}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 78}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 78}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 75.8}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.443}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.443}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.008}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0333}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.00268}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.0477}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 208000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 208000}, {"name": "Beryllium II", "categories": ["air"], "amount": 144000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 144000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.1e-18}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.48e-18}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.48e-18}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.48e-18}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.73e-15}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.69e-15}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.73e-15}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.73e-15}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 148000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 94.3}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 97.1}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 292}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 292}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 868}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 9.79}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22500}, {"name": "Bifenthrin", "categories": ["air"], "amount": 13100}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 217}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 222}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 751}, {"name": "Bifenthrin", "categories": ["water"], "amount": 751}, {"name": "Bisphenol A", "categories": ["water"], "amount": 0.0064}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.51e-05}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 7.52e-07}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 0.00939}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 466}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 42400}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00331}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 0.000666}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 0.000666}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.9}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.33}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air"], "amount": 0.035}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.0015}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water"], "amount": 0.0186}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0703}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.368}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 122000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 122000}, {"name": "Cadmium II", "categories": ["air"], "amount": 84200}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 84200}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.45e-18}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.6e-18}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.6e-18}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.6e-18}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2.21e-16}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.7e-16}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2.21e-16}, {"name": "Cadmium II", "categories": ["water"], "amount": 2.21e-16}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9490}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 12.7}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 5.77}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 5.77}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 10300}, {"name": "Carbendazim", "categories": ["air"], "amount": 8320}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.138}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 0.0873}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 0.0417}, {"name": "Carbendazim", "categories": ["water"], "amount": 0.0417}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 372}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.852}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.852}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.852}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00159}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 265000}, {"name": "Chloramine", "categories": ["air"], "amount": 219000}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 219000}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.74e-07}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water"], "amount": 3.26e-06}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1680}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air"], "amount": 0.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.219}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water"], "amount": 0.462}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 22400}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 21800}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 9320}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9770}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 8810}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 8810}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 6180}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1650}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 785}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 251}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.15e-06}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26500}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 26500}, {"name": "Chromium III", "categories": ["air"], "amount": 18400}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 18400}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 8.92e-19}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.63e-18}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.63e-18}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.63e-18}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 3.85e-17}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.18e-17}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 3.85e-17}, {"name": "Chromium III", "categories": ["water"], "amount": 3.85e-17}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 89900}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 89900}, {"name": "Chromium VI", "categories": ["air"], "amount": 62200}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 62200}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 4.09e-17}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 7.47e-17}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 7.47e-17}, {"name": "Chromium VI", "categories": ["soil"], "amount": 7.47e-17}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.75e-15}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.02e-16}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.75e-15}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.75e-15}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 9.78}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 22}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0329}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26000}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 26000}, {"name": "Cobalt II", "categories": ["air"], "amount": 18000}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 18000}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.36e-19}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 4.09e-19}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 4.09e-19}, {"name": "Cobalt II", "categories": ["soil"], "amount": 4.09e-19}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 1.06e-16}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.05e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 1.06e-16}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.06e-16}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 766000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 766000}, {"name": "Copper ion", "categories": ["air"], "amount": 530000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 530000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.35e-18}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 9.23e-18}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 9.23e-18}, {"name": "Copper ion", "categories": ["soil"], "amount": 9.23e-18}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.61e-15}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.72e-15}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.61e-15}, {"name": "Copper ion", "categories": ["water"], "amount": 2.61e-15}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air"], "amount": 0.0432}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0432}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.0138}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water"], "amount": 0.0466}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.337}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.000203}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000646}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.27e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1700}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.12e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95500}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 868}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 895}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 2700}, {"name": "Cypermethrin", "categories": ["water"], "amount": 2700}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.868}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.04e-05}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 77}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00507}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Deltamethrin", "categories": ["air"], "amount": 14700}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1380}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3700}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.14e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.647}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.32e-05}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.32e-05}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 36.9}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 114}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 282}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.000695}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.55e-06}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.55e-06}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1060}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 601}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.923}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149}, {"name": "Diethanolamine", "categories": ["water"], "amount": 5.94e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00415}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00415}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 242}, {"name": "Diethylamine", "categories": ["air"], "amount": 186}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 186}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.037}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.0767}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 487000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1030}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 689}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 689}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 8.15}, {"name": "Dimethoate", "categories": ["air"], "amount": 2350}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 7.52}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.232}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air"], "amount": 888}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 888}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.337}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00217}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 424}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.33e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 6.6e-07}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 6.6e-07}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.114}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 28600}, {"name": "Diuron", "categories": ["air"], "amount": 20400}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.59}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.78}, {"name": "Diuron", "categories": ["water"], "amount": 2.55}, {"name": "Dodecanol", "categories": ["water"], "amount": 7.62}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.215}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 6.87e-05}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.18e-08}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.47}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 468}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 16}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 6700}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 146}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 107}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 58.7}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 58.7}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.193}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.111}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.193}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.193}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.929}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.929}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.184}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.387}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 17.2}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 12.4}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 17.2}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 17.2}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air"], "amount": 0.072}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0262}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 276}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 5.61e-06}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.53e-11}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.53e-11}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.27}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 14.4}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1520}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.406}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.000108}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.000225}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.455}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.57}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.13e-05}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 6.5e-07}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 638}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.483}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 8.99}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2710}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 729}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 26.8}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 26.8}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 205000}, {"name": "Fluazinam", "categories": ["air"], "amount": 145000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1210}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1130}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 896}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 896}, {"name": "Fluazinam", "categories": ["water"], "amount": 896}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 70700}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 383}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.04}, {"name": "Fluoranthene", "categories": ["air"], "amount": 98.9}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 80.1}, {"name": "Fluorene", "categories": ["air"], "amount": 1.82}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.08}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 188}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 25800}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 142}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air"], "amount": 10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.0506}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.889}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air"], "amount": 66.8}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 66.8}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 4.58e-06}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water"], "amount": 0.000909}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 7.53e-09}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0062}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0939}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 573}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.26e-10}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.13e-05}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.27e-11}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2430}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1980}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 0.00797}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 0.00797}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air"], "amount": 2.07e-05}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.07e-05}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 256}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air"], "amount": 0.000196}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000196}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.37e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water"], "amount": 0.000194}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.00371}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.379}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 590}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 367}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water"], "amount": 1360}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00795}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0955}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0359}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0359}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.0296}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.0296}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.038}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0139}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.038}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.038}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.174}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.174}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.171}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.171}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000785}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4320}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 5.99e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.17e-10}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Imidacloprid", "categories": ["water"], "amount": 1.98e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.0103}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.302}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-05}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 311000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5390}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5510}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 17600}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 17600}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 17600}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27300}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27300}, {"name": "Lead II", "categories": ["air"], "amount": 18900}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 18900}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.56e-21}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.06e-21}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.06e-21}, {"name": "Lead II", "categories": ["soil"], "amount": 7.06e-21}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 6.3e-18}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.01e-17}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 6.3e-18}, {"name": "Lead II", "categories": ["water"], "amount": 6.3e-18}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.93e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5100}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.04e-07}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 626}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 6.59e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.1e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.1e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.000589}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.000883}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.000883}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 43}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.18e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.05e-05}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 44400}, {"name": "Mancozeb", "categories": ["air"], "amount": 36600}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.000845}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.59e-05}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 9.45e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 9.45e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.000868}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0677}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 880000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 880000}, {"name": "Mercury II", "categories": ["air"], "amount": 601000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 601000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.02e-19}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.67e-19}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.67e-19}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.67e-19}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 5.12e-16}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.45e-16}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 5.12e-16}, {"name": "Mercury II", "categories": ["water"], "amount": 5.12e-16}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.27}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.000275}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.000191}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.02}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.358}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0492}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0998}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.3}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.734}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.3}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.3}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Methanol", "categories": ["air"], "amount": 0.122}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.122}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.00305}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water"], "amount": 0.0422}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 96.2}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 32500}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.422}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 0.206}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water"], "amount": 0.0678}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 5.42}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.23}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.55}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.0199}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 566}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 40.4}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 397}, {"name": "Methylamine", "categories": ["air"], "amount": 305}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 305}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water"], "amount": 0.216}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 5890}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 18.4}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 15.7}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water"], "amount": 11.3}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 40000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.21}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 0.856}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090000}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 899000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 6.48e-05}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.81e-05}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.81e-05}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.85}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 923}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 923}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 639}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 639}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.41e-19}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.57e-19}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.57e-19}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.57e-19}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 6.08e-18}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 4.48e-18}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 6.08e-18}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 6.08e-18}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.014}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00603}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 27.6}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 801}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.584}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.967}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 606}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 119000}, {"name": "Nickel II", "categories": ["air"], "amount": 82100}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 82100}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.9e-18}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 5.13e-18}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 5.13e-18}, {"name": "Nickel II", "categories": ["soil"], "amount": 5.13e-18}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 7.9e-16}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.04e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 7.9e-16}, {"name": "Nickel II", "categories": ["water"], "amount": 7.9e-16}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.1}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.8}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 176}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00085}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.133}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 9.48}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 38.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.35}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.34}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.4}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 4.69e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 276}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.8}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 6.44e-05}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 490}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 69.2}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 69.2}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11100}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 401}, {"name": "Permethrin", "categories": ["water"], "amount": 1160}, {"name": "Phenanthrene", "categories": ["air"], "amount": 31.3}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 37}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.5e-06}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49}, {"name": "Phenol", "categories": ["air"], "amount": 1.18}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.00553}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water"], "amount": 0.0981}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 13}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 13}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8480}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8480}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 5960}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 5960}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.114}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.134}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 47.2}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 272}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4160}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.187}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.84}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.603}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 10.7}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.4}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 7.34}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00153}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.00909}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.000503}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 77.9}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.378}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 50.4}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 53.7}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3440}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 37.6}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 885}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 3.94e-05}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air"], "amount": 0.0504}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0504}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.003}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water"], "amount": 0.0302}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.00379}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.15}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.536}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.237}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water"], "amount": 0.487}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.0204}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Pyrene", "categories": ["air"], "amount": 121}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 140}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.000429}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 119}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 667}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 211}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 267}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 932}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 932}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.000183}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.000889}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39300}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 39300}, {"name": "Selenium IV", "categories": ["air"], "amount": 27200}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 27200}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.38e-18}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 2.48e-18}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 2.48e-18}, {"name": "Selenium IV", "categories": ["soil"], "amount": 2.48e-18}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 2.39e-16}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.82e-16}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 2.39e-16}, {"name": "Selenium IV", "categories": ["water"], "amount": 2.39e-16}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0594}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.0666}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4220000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4220000}, {"name": "Silver I", "categories": ["air"], "amount": 2920000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 2920000}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.77e-17}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 3.09e-17}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 3.09e-17}, {"name": "Silver I", "categories": ["soil"], "amount": 3.09e-17}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 6.42e-15}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.17e-15}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 6.42e-15}, {"name": "Silver I", "categories": ["water"], "amount": 6.42e-15}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Simazine", "categories": ["air"], "amount": 9400}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 9.4}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.05}, {"name": "Simazine", "categories": ["water"], "amount": 3.05}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 76.8}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air"], "amount": 0.00511}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00418}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water"], "amount": 0.0139}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1250}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.61}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2820}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.0907}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.0888}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water"], "amount": 0.0838}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.97}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.00589}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 286}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 47.8}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.313}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.568}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36800}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 36800}, {"name": "Thallium I", "categories": ["air"], "amount": 25500}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 25500}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.49e-16}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.87e-16}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.87e-16}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.87e-16}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 7.53e-16}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.94e-16}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 7.53e-16}, {"name": "Thallium I", "categories": ["water"], "amount": 7.53e-16}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1090}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.00387}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.00354}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.00279}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.00279}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 49}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5860}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 977}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 732}, {"name": "Thiodicarb", "categories": ["water"], "amount": 732}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4360}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2770}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 7.32}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.23}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 964}, {"name": "Thiram", "categories": ["air"], "amount": 564}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.303}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.161}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Thiram", "categories": ["water"], "amount": 1.83}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35100}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 35100}, {"name": "Tin ion", "categories": ["air"], "amount": 24300}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 24300}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 5.19e-20}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 6.15e-17}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 7.45e-17}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 6.15e-17}, {"name": "Tin ion", "categories": ["water"], "amount": 6.15e-17}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air"], "amount": 0.0281}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0281}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.00928}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water"], "amount": 0.0301}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 871}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.00155}, {"name": "Triallate", "categories": ["air"], "amount": 47}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 70.8}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.24}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.00144}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0529}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1.77}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 9.6e-07}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 1.8e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 25.3}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 31.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 31.8}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 6.86e-07}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water"], "amount": 1.29e-05}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.000198}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 119000}, {"name": "Vanadium V", "categories": ["air"], "amount": 82000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 82000}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.42e-17}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2.5e-17}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2.5e-17}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2.5e-17}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 3.93e-15}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.01e-15}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 3.93e-15}, {"name": "Vanadium V", "categories": ["water"], "amount": 3.93e-15}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air"], "amount": 0.0139}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0139}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.00551}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water"], "amount": 0.0183}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95500}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 868}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 86000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 86000}, {"name": "Zinc II", "categories": ["air"], "amount": 59500}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 59500}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 7.36e-18}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.23e-17}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.23e-17}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.23e-17}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 5.02e-15}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 7.11e-16}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 5.02e-15}, {"name": "Zinc II", "categories": ["water"], "amount": 5.02e-15}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 74.4}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.00806}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0267}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.0187}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.062}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 18.3}]}, {"unit": "kg oil-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "energy resources: non-renewable, fossil no LT", "fossil fuel potential (FFP) no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.22}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.42}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.22}]}, {"unit": "kg P-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "eutrophication: freshwater no LT", "freshwater eutrophication potential (FEP) no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "eutrophication: marine no LT", "marine eutrophication potential (MEP) no LT"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.776}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water"], "amount": 0.23}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water"], "amount": 0.0671}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.297}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.0902}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.297}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "human toxicity: carcinogenic no LT", "human toxicity potential (HTPc) no LT"], "exchanges": [{"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.00325}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.0313}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.433}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 41.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 41.4}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.7}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.7}, {"name": "Arsenic ion", "categories": ["air"], "amount": 470}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 470}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.26}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.32}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.32}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.32}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 11.6}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.02e-19}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 11.6}, {"name": "Arsenic ion", "categories": ["water"], "amount": 11.6}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.33}, {"name": "Benzene", "categories": ["air"], "amount": 1.44}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.158}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.354}, {"name": "Benzene", "categories": ["water"], "amount": 0.354}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0284}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0961}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.7}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.7}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 93.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 93.6}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1150}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 36.5}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 36.5}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.1}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.1}, {"name": "Beryllium II", "categories": ["air"], "amount": 259}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 259}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.0118}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.0121}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.0121}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.0121}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 0.046}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.59e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 0.046}, {"name": "Beryllium II", "categories": ["water"], "amount": 0.046}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.75}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.75}, {"name": "Cadmium II", "categories": ["air"], "amount": 194}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 194}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.195}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.201}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.201}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.201}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.0614}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.36e-20}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.0614}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.0614}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.293}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.29}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.815}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.815}, {"name": "Chloroform", "categories": ["air"], "amount": 1.26}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.26}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.861}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.371}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.861}, {"name": "Chloroform", "categories": ["water"], "amount": 0.861}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0408}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 0.0798}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.0212}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.0361}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 0.097}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 0.097}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 80.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 39.9}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 7.94}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 4}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.79}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.653}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.79}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.79}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 12.8}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.22}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 12.8}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 12.8}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 3.2e-05}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0012}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.423}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.93}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00626}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.137}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6}, {"name": "Furan", "categories": ["air"], "amount": 95}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 95}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.129}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water"], "amount": 10.2}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0162}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0162}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.16}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0535}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0231}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0535}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0535}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.87}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.87}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air"], "amount": 0.128}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.128}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.453}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.453}, {"name": "Lead II", "categories": ["air"], "amount": 1.68}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 1.68}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0158}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0161}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0161}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0161}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.0104}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.82e-22}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.0104}, {"name": "Lead II", "categories": ["water"], "amount": 0.0104}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 12.5}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4}, {"name": "Mercury II", "categories": ["air"], "amount": 24.5}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 24.5}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0752}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0769}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0769}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0769}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.386}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.86e-21}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.386}, {"name": "Mercury II", "categories": ["water"], "amount": 0.386}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0884}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 227}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 227}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 217}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 123}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 217}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 217}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.96}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.96}, {"name": "Nickel II", "categories": ["air"], "amount": 31.3}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 31.3}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.07}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.14}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.14}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.14}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.41}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 5.05e-20}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.41}, {"name": "Nickel II", "categories": ["water"], "amount": 3.41}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.0724}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.849}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 32.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 32.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 0.032}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.0023}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.032}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.032}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.92}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.92}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.58}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4.65}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0588}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.365}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air"], "amount": 1.28}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.28}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00975}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Styrene", "categories": ["water"], "amount": 0.281}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.962}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.962}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.525}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0112}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0371}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "human toxicity: non-carcinogenic no LT", "human toxicity potential (HTPnc) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.414}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.9}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.1}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 3.81}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 5.24}, {"name": "2,4-D", "categories": ["water"], "amount": 5.24}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.105}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 1.88}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 1.88}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0377}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00147}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.9e-06}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00878}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.0297}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.19}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 19300}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 16500}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 620}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 773}, {"name": "Acephate", "categories": ["water"], "amount": 773}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.056}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.545}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Acetone", "categories": ["air"], "amount": 0.0878}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0878}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water"], "amount": 0.0132}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0204}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.131}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 309}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 309}, {"name": "Acrolein", "categories": ["air"], "amount": 9490}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 9490}, {"name": "Acrolein", "categories": ["water"], "amount": 294}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.74e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water"], "amount": 0.0752}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air"], "amount": 707}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 707}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.85}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 9.16}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.36}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.36}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 36}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 322}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.48}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.1}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 30.4}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.831}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 0.792}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 25.2}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 6.95}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.65}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.361}, {"name": "Aniline", "categories": ["air"], "amount": 5.32}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 5.32}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.00623}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 4.09}, {"name": "Aniline", "categories": ["water"], "amount": 4.09}, {"name": "Anthracene", "categories": ["air"], "amount": 0.0511}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water"], "amount": 0.723}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 103}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 103}, {"name": "Antimony ion", "categories": ["air"], "amount": 343}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 343}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 3.59}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 108}, {"name": "Antimony ion", "categories": ["soil"], "amount": 108}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 129}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.41e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 129}, {"name": "Antimony ion", "categories": ["water"], "amount": 129}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2480}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2480}, {"name": "Arsenic ion", "categories": ["air"], "amount": 8940}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 10.4}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 334}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 334}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 334}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 2920}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1.92e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 2920}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2920}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 6.7}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.9}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.92}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water"], "amount": 6.11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.5}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.5}, {"name": "Barium II", "categories": ["air"], "amount": 102}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 102}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 323}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 323}, {"name": "Barium II", "categories": ["soil"], "amount": 323}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 42.4}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 7.53e-19}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 42.4}, {"name": "Barium II", "categories": ["water"], "amount": 42.4}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.084}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0331}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.3}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.331}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 2.75}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 2.75}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0475}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28}, {"name": "Benzene", "categories": ["air"], "amount": 1.22}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.301}, {"name": "Benzene", "categories": ["water"], "amount": 0.301}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.505}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.00398}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.107}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.3}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.3}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1340}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.9}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 124}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 124}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 498}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27100}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27100}, {"name": "Beryllium II", "categories": ["air"], "amount": 641000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 641000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.00346}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.447}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.447}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.447}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.7}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.91e-16}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.7}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.7}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 372}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.986}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.17}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 71.6}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 71.6}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.926}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 99.8}, {"name": "Bifenthrin", "categories": ["air"], "amount": 64.3}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 15.1}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 1920}, {"name": "Bifenthrin", "categories": ["water"], "amount": 1920}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.77}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.96}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.5}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.26}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.6}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.6}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.79}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air"], "amount": 6.67}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.67}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air"], "amount": 0.431}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.431}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.000981}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water"], "amount": 0.0541}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 403}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 403}, {"name": "Cadmium II", "categories": ["air"], "amount": 1430}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1430}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.612}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 184}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 184}, {"name": "Cadmium II", "categories": ["soil"], "amount": 184}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 55.9}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.01e-18}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 55.9}, {"name": "Cadmium II", "categories": ["water"], "amount": 55.9}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.779}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.9}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.16}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.3}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.3}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.5}, {"name": "Carbendazim", "categories": ["air"], "amount": 29.5}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.05}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Carbendazim", "categories": ["water"], "amount": 1.83}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 140}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 751}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 751}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 822}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 822}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 666}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 215}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 666}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 666}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 14}, {"name": "Carboxin", "categories": ["air"], "amount": 12.3}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.249}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.855}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Carboxin", "categories": ["water"], "amount": 1.61}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 3.52e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0152}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air"], "amount": 12.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.73e-05}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water"], "amount": 0.619}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 921}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 4.18}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.861}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water"], "amount": 9.89}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air"], "amount": 21.8}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.96}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water"], "amount": 12.8}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 8.14}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.71}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 10}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 10}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 79.7}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 338}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 88.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.748}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00623}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00623}, {"name": "Chromium III", "categories": ["air"], "amount": 0.0204}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.85e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.00918}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.00918}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.00918}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 0.000485}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.43e-23}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.000485}, {"name": "Chromium III", "categories": ["water"], "amount": 0.000485}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 240}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 240}, {"name": "Chromium VI", "categories": ["air"], "amount": 5540}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 5540}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.139}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 5.63}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 5.63}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.63}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.43}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.21e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.43}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.43}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.573}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.573}, {"name": "Copper ion", "categories": ["air"], "amount": 2.09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2.09}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.000434}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.0778}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.0778}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.0778}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 0.126}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.26e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 0.126}, {"name": "Copper ion", "categories": ["water"], "amount": 0.126}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air"], "amount": 0.18}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00479}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.066}, {"name": "Cumene", "categories": ["water"], "amount": 0.066}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0041}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0438}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.43}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.935}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.926}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 0.755}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 21.3}, {"name": "Cypermethrin", "categories": ["water"], "amount": 21.3}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.04}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 31.3}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 253}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 38}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.2}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4.13}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.59}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.59}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 86.8}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 862}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 42.1}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0958}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0958}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.7}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.87}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 17.3}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 41.9}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 41.9}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 66.2}, {"name": "Dimethoate", "categories": ["air"], "amount": 20.3}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.0764}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 14.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.702}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 255}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 30.3}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 68.3}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 68.3}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 46.2}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.554}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 88.7}, {"name": "Diuron", "categories": ["air"], "amount": 78.7}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 2.03}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.36}, {"name": "Diuron", "categories": ["water"], "amount": 12.1}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.00919}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.61}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 28.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0772}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0772}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0809}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0809}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.291}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.291}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.32}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.32}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.28}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.162}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.28}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.28}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.18}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.18}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2.21}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2.21}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 524}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 336}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 524}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 524}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 67.6}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 5.47}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 5.47}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 266}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0843}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0843}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00287}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0146}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00143}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 0.244}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2.73}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 22300}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.96}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.31}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.34}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Fipronil", "categories": ["air"], "amount": 1520}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 614}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 1570}, {"name": "Fipronil", "categories": ["water"], "amount": 1570}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.788}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 20.7}, {"name": "Fluorene", "categories": ["air"], "amount": 0.692}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 1.3}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 6.78}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00311}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.447}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00128}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.972}, {"name": "Furan", "categories": ["air"], "amount": 35.5}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 49.2}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 3.53}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.768}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.2}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "Hexane", "categories": ["air"], "amount": 2.2}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.2}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0475}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Hexane", "categories": ["water"], "amount": 1.23}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.504}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 5340}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00218}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0273}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0332}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.104}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 39.6}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 39.6}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.67}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 0.197}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 0.253}, {"name": "Imazethapyr", "categories": ["water"], "amount": 0.253}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air"], "amount": 57.1}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 2.07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.73}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.73}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 0.113}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 537}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 537}, {"name": "Lead II", "categories": ["air"], "amount": 1980}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 1980}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0149}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 19.4}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 19.4}, {"name": "Lead II", "categories": ["soil"], "amount": 19.4}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 12.4}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.17e-19}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 12.4}, {"name": "Lead II", "categories": ["water"], "amount": 12.4}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 495}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.197}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 252}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 9.59}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 21.2}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 21.2}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.086}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.22}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.22}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.0736}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.74}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0272}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.2}, {"name": "Mancozeb", "categories": ["air"], "amount": 47.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2.75}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 1.77}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2.43}, {"name": "Mancozeb", "categories": ["water"], "amount": 2.43}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.00733}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2460}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2460}, {"name": "Mercury II", "categories": ["air"], "amount": 6590}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 31.1}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 31.1}, {"name": "Mercury II", "categories": ["soil"], "amount": 31.1}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 155}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.2e-18}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 155}, {"name": "Mercury II", "categories": ["water"], "amount": 155}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.53}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 75}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1530}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.15}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.15}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.159}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 155}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 155}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 157}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 157}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 9.31}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 9.31}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2590}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2590}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2680}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2680}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 2470}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1400}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 2470}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2470}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 21}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 21}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Methanol", "categories": ["air"], "amount": 0.156}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.156}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000666}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water"], "amount": 0.0194}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.22}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 456}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.72}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 9.35}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water"], "amount": 15.4}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00853}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 89.8}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.11}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.342}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.43}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water"], "amount": 3.37}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.7}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 2.42}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.9}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 12.7}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 0.695}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 1.18}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 1.18}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 77.5}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 9.48}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 64.7}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.7}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 210}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 210}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 95.7}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 95.7}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 95.7}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 26.4}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 3.87e-19}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 26.4}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 26.4}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.00213}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.00684}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 213}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.514}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Naphthalene", "categories": ["air"], "amount": 11}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.03}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.206}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62}, {"name": "Nickel II", "categories": ["air"], "amount": 5.85}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.85}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.00406}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.412}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.412}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.412}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 0.655}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 9.23e-21}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.655}, {"name": "Nickel II", "categories": ["water"], "amount": 0.655}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.2}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.2}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0148}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 22}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 0.0138}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.172}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.05}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.6}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0604}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 8.97}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.71}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.162}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 2.52}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Permethrin", "categories": ["water"], "amount": 10.8}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "Phenol", "categories": ["air"], "amount": 0.493}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.493}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.000864}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.315}, {"name": "Phenol", "categories": ["water"], "amount": 0.315}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 734}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 734}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.3}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 34.6}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 17.8}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 602}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00317}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.181}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.00406}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.251}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 23.2}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 9.61}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.428}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 6.83}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 22.5}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.399}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 27.9}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.881}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.385}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.477}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1.87}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.4}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 7.72}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water"], "amount": 36.6}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 3.2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 2.74}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water"], "amount": 14.8}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 7.19}, {"name": "Pyrene", "categories": ["air"], "amount": 0.624}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 11.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.342}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 0.573}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 31.1}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 31.1}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 14.4}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.531}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.608}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.492}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 10.9}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 560}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 560}, {"name": "Silver I", "categories": ["air"], "amount": 2040}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 2040}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 105}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 105}, {"name": "Silver I", "categories": ["soil"], "amount": 105}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 66.3}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.21e-18}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 66.3}, {"name": "Silver I", "categories": ["water"], "amount": 66.3}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 418}, {"name": "Simazine", "categories": ["air"], "amount": 344}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 17.3}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 19.3}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 33.5}, {"name": "Simazine", "categories": ["water"], "amount": 33.5}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air"], "amount": 0.855}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.855}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.0046}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water"], "amount": 0.0211}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 32}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 5.51}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water"], "amount": 17.1}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 24.4}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.47}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.52}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1860}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1560}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 62.3}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 280}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 959}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 0.0552}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 342}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 6.15}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 11.9}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 186}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 186}, {"name": "Thallium I", "categories": ["air"], "amount": 395}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 395}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 40.6}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1030}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1030}, {"name": "Thallium I", "categories": ["soil"], "amount": 1030}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 136}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.77e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 136}, {"name": "Thallium I", "categories": ["water"], "amount": 136}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air"], "amount": 26.8}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.72}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.72}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 7.5}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.67}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 4.65}, {"name": "Thiodicarb", "categories": ["water"], "amount": 4.65}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.3}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 15.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.905}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.33}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.91}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.91}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23}, {"name": "Thiram", "categories": ["air"], "amount": 11.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.0675}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.208}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 4.91}, {"name": "Thiram", "categories": ["water"], "amount": 4.91}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067}, {"name": "Toluene", "categories": ["air"], "amount": 0.858}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.858}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0184}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water"], "amount": 0.0714}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.318}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.14}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Triallate", "categories": ["air"], "amount": 9.42}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.76}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 72.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 44}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 144}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.78}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 17.9}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 15.8}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.16}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.7}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 128}, {"name": "Trifluralin", "categories": ["water"], "amount": 128}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.38}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.6}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.6}, {"name": "Vanadium V", "categories": ["air"], "amount": 59}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 59}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.178}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 4.1}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 4.1}, {"name": "Vanadium V", "categories": ["soil"], "amount": 4.1}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 27.6}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.58e-19}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 27.6}, {"name": "Vanadium V", "categories": ["water"], "amount": 27.6}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.68}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air"], "amount": 1.58}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0182}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water"], "amount": 0.0692}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.926}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.94}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.94}, {"name": "Zinc II", "categories": ["air"], "amount": 31.6}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 31.6}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0678}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.758}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.758}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.758}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 24.6}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 8.17e-20}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 24.6}, {"name": "Zinc II", "categories": ["water"], "amount": 24.6}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5.95}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00619}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.027}]}, {"unit": "kg Co-60-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "ionising radiation no LT", "ionising radiation potential (IRP) no LT"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 3.05e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 0.00043}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 3.05e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 3.05e-05}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 54.5}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 0.00336}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 0.0473}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 0.00336}, {"name": "Americium-241", "categories": ["water"], "amount": 0.00336}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0491}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.000891}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00473}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water"], "amount": 8.64}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 9.09}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00582}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 9.09}, {"name": "Caesium-137", "categories": ["water"], "amount": 9.09}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.00345}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0273}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.00345}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.00345}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00245}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.64}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 4.07e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.6e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 4.07e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 4.07e-05}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["air"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 0.252}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 0.0222}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 0.252}, {"name": "Iodine-129", "categories": ["water"], "amount": 0.252}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.03}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 6.03e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 6.03e-06}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0191}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 5.62e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.62e-06}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00145}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.000236}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water"], "amount": 0.03}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["air"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.0127}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000455}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.0127}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.0127}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["air"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 0.00755}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 7.82e-05}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 0.00755}, {"name": "Technetium-99", "categories": ["water"], "amount": 0.00755}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 0.00755}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 7.82e-05}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 0.00755}, {"name": "Technetium-99m", "categories": ["water"], "amount": 0.00755}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 8.55e-06}]}, {"unit": "m2*a crop-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "land use no LT", "agricultural land occupation (LOP) no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -36.75}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}]}, {"unit": "kg Cu-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "material resources: metals/minerals no LT", "surplus ore potential (SOP) no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.101}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.101}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1.03}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0889}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0136}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.614}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 84.2}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 2.77}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0777}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.232}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.232}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 19000}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 19000}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 19000}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.0557}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0557}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.221}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.00607}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00585}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 4.01}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4.01}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0307}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.0089}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 92.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 92.8}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 389}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.134}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.00144}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 108}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 115}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 115}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 6.51}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 6.51}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0382}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0382}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0382}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.483}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.483}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.483}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.483}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 2.42}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 2.42}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.614}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.614}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.614}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.614}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.0376}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0376}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 8.37}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 4.46}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 6370}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6370}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6370}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6370}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00508}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 13800}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 13800}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 13800}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 13800}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00308}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 9730}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 9730}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 672}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 672}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 9730}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 9730}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 12.8}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.318}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 2.42}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0576}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.0234}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 56.6}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 56.6}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 18.5}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 18.5}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 1630}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.689}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.689}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.689}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 5.23}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.23}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.689}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 7.19}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 35.8}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 3.49}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.116}]}, {"unit": "kg CFC-11-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "ozone depletion no LT", "ozone depletion potential (ODPinfinite) no LT"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.007}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.007}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.007}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.396}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.396}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.504}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.504}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.275}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.275}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.165}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.165}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.165}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.165}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.111}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.111}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.111}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.111}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.025}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.025}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.049}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.049}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.049}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.032}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.032}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.032}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.032}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0129}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0129}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.65}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.65}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 15.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 15.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.8}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.8}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 11.8}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 11.8}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.085}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.085}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.421}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.421}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.2}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.2}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg PM2.5-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "particulate matter formation no LT", "particulate matter formation potential (PMFP) no LT"], "exchanges": [{"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "photochemical oxidant formation: human health no LT", "photochemical oxidant formation potential: humans (HOFP) no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.345}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.131}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.131}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.149}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0653}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.199}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0326}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0326}, {"name": "Acetone", "categories": ["air"], "amount": 0.0218}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Acrolein", "categories": ["air"], "amount": 0.196}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.174}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.0689}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.0689}, {"name": "Benzene", "categories": ["air"], "amount": 0.0363}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0363}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.167}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Butadiene", "categories": ["air"], "amount": 0.323}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.112}, {"name": "Butane", "categories": ["air"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.112}, {"name": "Butanol", "categories": ["air"], "amount": 0.189}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.228}, {"name": "Butene", "categories": ["air"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.228}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.0943}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0943}, {"name": "Cumene", "categories": ["air"], "amount": 0.116}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.102}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.167}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Ethane", "categories": ["air"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00363}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00363}, {"name": "Ethanol", "categories": ["air"], "amount": 0.123}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.123}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0689}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.363}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.134}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.134}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.167}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0109}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Heptane", "categories": ["air"], "amount": 0.127}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.127}, {"name": "Hexane", "categories": ["air"], "amount": 0.145}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.163}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.163}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0266}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0266}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Isoprene", "categories": ["air"], "amount": 0.413}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.413}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0109}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00363}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Methanol", "categories": ["air"], "amount": 0.0471}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.116}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0399}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0399}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.145}, {"name": "Pentane", "categories": ["air"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Phenol", "categories": ["air"], "amount": -0.0181}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0181}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.261}, {"name": "Propanal", "categories": ["air"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.261}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0508}, {"name": "Propane", "categories": ["air"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0508}, {"name": "Propanol", "categories": ["air"], "amount": 0.174}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.424}, {"name": "Propene", "categories": ["air"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.424}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0471}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Styrene", "categories": ["air"], "amount": 0.0181}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0181}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00363}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Toluene", "categories": ["air"], "amount": 0.16}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.105}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.312}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.312}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.283}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.283}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "photochemical oxidant formation: terrestrial ecosystems no LT", "photochemical oxidant formation potential: ecosystems (EOFP) no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.555}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.21}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.21}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.479}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.105}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.304}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.321}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0526}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0526}, {"name": "Acetone", "categories": ["air"], "amount": 0.0351}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "Acrolein", "categories": ["air"], "amount": 0.316}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.316}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.281}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.111}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.111}, {"name": "Benzene", "categories": ["air"], "amount": 0.0585}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0585}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.269}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Butadiene", "categories": ["air"], "amount": 0.52}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.52}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.181}, {"name": "Butane", "categories": ["air"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.181}, {"name": "Butanol", "categories": ["air"], "amount": 0.304}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Butene", "categories": ["air"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.152}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Cumene", "categories": ["air"], "amount": 0.187}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.164}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.269}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.0468}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00585}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00585}, {"name": "Ethanol", "categories": ["air"], "amount": 0.199}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.111}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.111}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.585}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.216}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.216}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.269}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0175}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Heptane", "categories": ["air"], "amount": 0.205}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.205}, {"name": "Hexane", "categories": ["air"], "amount": 0.234}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.263}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.263}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0429}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Isoprene", "categories": ["air"], "amount": 0.666}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.666}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0175}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00585}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Methanol", "categories": ["air"], "amount": 0.076}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.187}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0643}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0643}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Pentane", "categories": ["air"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Phenol", "categories": ["air"], "amount": -0.0292}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0292}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.421}, {"name": "Propanal", "categories": ["air"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.421}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0818}, {"name": "Propane", "categories": ["air"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0818}, {"name": "Propanol", "categories": ["air"], "amount": 0.281}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.684}, {"name": "Propene", "categories": ["air"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.684}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.076}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Styrene", "categories": ["air"], "amount": 0.0292}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0292}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00585}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Toluene", "categories": ["air"], "amount": 0.257}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.17}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.503}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.503}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.456}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.456}]}, {"unit": "cubic meter", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "water use no LT", "water consumption potential (WCP) no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Water", "categories": ["air"], "amount": 1}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg SO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "acidification: terrestrial", "terrestrial acidification potential (TAP)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.552}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.36}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}]}, {"unit": "kg CO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "climate change", "global warming potential (GWP1000)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air"], "amount": 60}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 60}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 264}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 264}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 264}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 264}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 3710}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 3710}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 578}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 578}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 6940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 6940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 6940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 6940}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6490}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6490}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2550}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2550}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 506}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 506}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 506}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 506}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 506}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 7710}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7710}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 7710}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 7710}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 7710}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5020}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5020}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5020}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5020}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5020}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 292}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 292}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1870}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1870}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1870}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1870}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1870}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 5860}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5860}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 5860}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 5860}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 5860}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8210}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8210}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8210}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8210}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8210}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6090}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6090}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6090}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6090}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6090}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 30.2}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 30.2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 4590}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4590}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4590}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4590}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4590}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7800}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7800}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7800}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7800}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7800}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5280}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5280}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 10900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 10900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 10900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 10900}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 33}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 33}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10800}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10800}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 543}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 543}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 543}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 543}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 543}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2430}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2430}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2430}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2430}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2430}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 85}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 85}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 85}, {"name": "Methane, fossil", "categories": ["air"], "amount": 85}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 85}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 84}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 84}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 84}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 84}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 45}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 45}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 84}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 84}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 84}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 84}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3480}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3480}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 4880}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4880}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 4880}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 4880}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 4880}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 10800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10800}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 12800}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6350}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 17500}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 17500}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 17500}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "ecotoxicity: freshwater", "freshwater ecotoxicity potential (FETP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.000523}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.836}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.11e-05}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.0411}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.204}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.9}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 2.62}, {"name": "2,4-D", "categories": ["water"], "amount": 2.62}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0734}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.155}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0734}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.182}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.155}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0648}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.109}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.27}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.27}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0248}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.0144}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.98e-06}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.00477}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 4.88e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.0653}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.00199}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water"], "amount": 14.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0665}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.713}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.889}, {"name": "Acephate", "categories": ["water"], "amount": 0.889}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.96e-05}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.144}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.95e-09}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.169}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air"], "amount": 4.33e-05}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.33e-05}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 6.06e-06}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water"], "amount": 0.00217}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.000194}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.000194}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00873}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.00873}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00873}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00873}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 5.11}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air"], "amount": 0.084}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.084}, {"name": "Acrolein", "categories": ["water"], "amount": 69.4}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.94e-09}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water"], "amount": 0.132}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0236}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0236}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.000598}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.441}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 11.5}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0228}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0228}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 25.1}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.759}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 56.3}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.309}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 339}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 269}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 144}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1070}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 82400}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 35.1}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.14}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 39.5}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air"], "amount": 0.00401}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00401}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.11e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "Aniline", "categories": ["water"], "amount": 1.05}, {"name": "Anthracene", "categories": ["air"], "amount": 0.197}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.135}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 354}, {"name": "Anthracene", "categories": ["water"], "amount": 354}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.232}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.86}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.86}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.211}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.365}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.365}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.365}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 59.7}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 59.7}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 8.35e-21}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 59.7}, {"name": "Arsenic ion", "categories": ["water"], "amount": 59.7}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.86}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14.8}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 85.6}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 179}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 179}, {"name": "Atrazine", "categories": ["water"], "amount": 179}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.454}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.747}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 234}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 27.3}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 156}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 156}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.461}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.461}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.461}, {"name": "Barium II", "categories": ["air"], "amount": 1.09}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.09}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil"], "amount": 2.51}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.53e-21}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.79}, {"name": "Barium II", "categories": ["water"], "amount": 2.79}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.0659}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0228}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0238}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.055}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.68}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.68}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.00269}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00269}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.744}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.72e-05}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water"], "amount": 0.0868}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000158}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.748}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 6.87e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.293}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 24.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0684}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0684}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0684}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.0687}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0687}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 15.2}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.412}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.412}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 134}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 134}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.0491}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0337}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 4.17e-06}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.285}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.877}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.877}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.877}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.657}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.657}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.101}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.169}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.169}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.169}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 50}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 50}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 7.78e-21}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 50}, {"name": "Beryllium II", "categories": ["water"], "amount": 50}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 249}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 36.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 277}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 21100}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 21100}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 110}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.509}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.1}, {"name": "Bifenthrin", "categories": ["air"], "amount": 39.5}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 13.5}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 89.5}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 12000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 12000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 44.9}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.0298}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 10}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.9}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.95}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 167}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 167}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 11.7}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3.65}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air"], "amount": 0.000143}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000143}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 4.78e-06}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water"], "amount": 0.0183}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.0771}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.302}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.302}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.302}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.299}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.299}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.291}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.291}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.291}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 15}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 15}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 7.05e-22}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 15}, {"name": "Cadmium II", "categories": ["water"], "amount": 15}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 25.9}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 9.19}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 116}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 116}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58}, {"name": "Carbendazim", "categories": ["air"], "amount": 7.02}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 4.53}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 26.3}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 45.9}, {"name": "Carbendazim", "categories": ["water"], "amount": 45.9}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.708}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 9.94e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.349}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 6.32e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0948}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air"], "amount": 39.4}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 39.4}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 9.74e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 217}, {"name": "Chloramine", "categories": ["water"], "amount": 217}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.67}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.398}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 63.7}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.537}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 8.54e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water"], "amount": 0.162}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.8}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 23.7}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 26.5}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 158}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 673}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 673}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.4}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 329}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1790}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 14700}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 14700}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 33.9}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.45}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.0595}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0595}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0595}, {"name": "Chromium III", "categories": ["air"], "amount": 0.0847}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.0847}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.0767}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.141}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.141}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.141}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.03}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 2.03}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.15e-22}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.03}, {"name": "Chromium III", "categories": ["water"], "amount": 2.03}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 2.52}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52}, {"name": "Chromium VI", "categories": ["air"], "amount": 3.63}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3.63}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 3.32}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6.11}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6.11}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6.11}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 83.2}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 83.2}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.97e-20}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 83.2}, {"name": "Chromium VI", "categories": ["water"], "amount": 83.2}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.833}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.376}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.699}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 0.102}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.102}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.102}, {"name": "Cobalt II", "categories": ["air"], "amount": 0.0816}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 0.0816}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.0211}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.0368}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.0368}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.0368}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5.67}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 5.67}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 4.45e-22}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5.67}, {"name": "Cobalt II", "categories": ["water"], "amount": 5.67}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 2.57}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.57}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57}, {"name": "Copper ion", "categories": ["air"], "amount": 2.04}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2.04}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.492}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.854}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.854}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.854}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 144}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 144}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 9.9e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 144}, {"name": "Copper ion", "categories": ["water"], "amount": 144}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 9.14e-06}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.558}, {"name": "Cumene", "categories": ["water"], "amount": 0.558}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 7.43}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 7.27e-08}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0546}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.0628}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.289}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.0049}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 257}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 110}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 821}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 62900}, {"name": "Cypermethrin", "categories": ["water"], "amount": 62900}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 2.02}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 12.9}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.593}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.73}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0534}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 2.21}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 58.9}, {"name": "Deltamethrin", "categories": ["air"], "amount": 53.3}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 6300}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.139}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 16.4}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.173}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.33}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.33}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.135}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 17.1}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0429}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.0814}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.63}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.63}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 17.6}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 5.79}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 3.27}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 0.282}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.159}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.57e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.57e-06}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0314}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0314}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0314}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.81e-06}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.462}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 188}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 300}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1990}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 4860}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 4860}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 0.613}, {"name": "Dimethoate", "categories": ["air"], "amount": 3.37}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 5.7}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 38.7}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0766}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0766}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0766}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.973}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.973}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 2.2e-05}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.973}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.973}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 0.394}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.394}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.71}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 8.72}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 19.6}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 19.6}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Diuron", "categories": ["air"], "amount": 35.2}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 15.2}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 98.4}, {"name": "Diuron", "categories": ["water"], "amount": 222}, {"name": "Dodecanol", "categories": ["water"], "amount": 22.5}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.353}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.318}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.113}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 6.86}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.281}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.732}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.58}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 12.4}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.59}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 41}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 83.9}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 83.9}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1490}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 8.18e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.18e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.18e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.52e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000425}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 7.04e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0554}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.00495}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.55}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.24e-06}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water"], "amount": 0.00629}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.047}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.328}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.328}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.24}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.594}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.9e-05}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.94e-09}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.425}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.000708}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.000708}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.000176}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0482}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 2.71}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 6.5}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 63.5}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.58}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 7.5}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 43.7}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 108}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.639}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.26}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.5}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 87.9}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 87.9}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.4}, {"name": "Fluazinam", "categories": ["air"], "amount": 287}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 105}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 743}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water"], "amount": 2260}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.2}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 41}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.863}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 618}, {"name": "Fluorene", "categories": ["air"], "amount": 0.0118}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 7.12}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 4.12}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 31.1}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0315}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0315}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 4.68e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.907}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0853}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0853}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.98e-10}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0853}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0853}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.0076}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.996}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.202}, {"name": "Furfural", "categories": ["air"], "amount": 0.00702}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 0.207}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.589}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.28}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.35}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water"], "amount": 2.39}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.85}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 32.1}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 32.1}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air"], "amount": 6.53e-09}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.53e-09}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 10.8}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "Hexane", "categories": ["water"], "amount": 0.141}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.39}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 93.3}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 93.3}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.0227}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 93.3}, {"name": "Hydrazine", "categories": ["water"], "amount": 93.3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.5e-06}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.302}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.81e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.52e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.52e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.139}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.139}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 6.47e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.139}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.139}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.000363}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000363}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000363}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.00036}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.00036}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.0062}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 0.676}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.676}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.79}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.95}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 9.15}, {"name": "Imidacloprid", "categories": ["water"], "amount": 9.15}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 6.14}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.51}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 1.71e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.71e-08}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 4.87}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 66.7}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 410}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 47700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 47700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 47700}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.00902}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00902}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00902}, {"name": "Lead II", "categories": ["air"], "amount": 0.00654}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00654}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.000635}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.000987}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.000987}, {"name": "Lead II", "categories": ["soil"], "amount": 0.000987}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.533}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.533}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.66e-24}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.533}, {"name": "Lead II", "categories": ["water"], "amount": 0.533}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.539}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 24.6}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.927}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0967}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.63}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.63}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.184}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 6}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 12.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.292}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0307}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.52}, {"name": "Mancozeb", "categories": ["air"], "amount": 14.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 56.6}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 77.9}, {"name": "Mancozeb", "categories": ["water"], "amount": 77.9}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.21}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.777}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.777}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.777}, {"name": "Mercury II", "categories": ["air"], "amount": 0.542}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.542}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0288}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0382}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0382}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0382}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 43.9}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 43.9}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.34e-22}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 43.9}, {"name": "Mercury II", "categories": ["water"], "amount": 43.9}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.294}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.19}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00276}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00276}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.81e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0292}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000266}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.534}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air"], "amount": 0.000132}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.49e-06}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water"], "amount": 0.00493}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.25}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 28.1}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 8.59}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 47.6}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water"], "amount": 78.6}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.372}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.000365}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.72}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00341}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.756}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.91}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air"], "amount": 0.063}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.063}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.291}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.291}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 6.19e-06}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.291}, {"name": "Methylamine", "categories": ["water"], "amount": 0.291}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.328}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.63}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 9.41}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 62.2}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 147}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 147}, {"name": "Metolachlor", "categories": ["water"], "amount": 147}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.47}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 148}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 297}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 772}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 523}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 3010}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 5070}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 5070}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 111}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.612}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.0111}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0111}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0111}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.0158}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.0158}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.0144}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.0265}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.0265}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.0265}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.376}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 0.376}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 5.32e-23}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.376}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.376}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 3.12}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.287}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 4.55}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.000708}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 68}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.783}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.783}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.783}, {"name": "Nickel II", "categories": ["air"], "amount": 0.682}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.682}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.256}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.456}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.456}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.456}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 41.7}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 41.7}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.29e-21}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 41.7}, {"name": "Nickel II", "categories": ["water"], "amount": 41.7}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.00135}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.76}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.82}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.0644}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.76}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 3.03}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.322}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.344}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.344}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.344}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 6.02}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.00486}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 13}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0329}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0129}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 38.3}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.184}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.69}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 175}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 175}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.1}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 5.08}, {"name": "Permethrin", "categories": ["water"], "amount": 2860}, {"name": "Phenanthrene", "categories": ["air"], "amount": 0.136}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 57}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.07}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air"], "amount": 0.00867}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00867}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.24e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.969}, {"name": "Phenol", "categories": ["water"], "amount": 0.969}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.136}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.136}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8.15}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.15}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.15}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 19}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 5.54}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 45.3}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 8.86}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 33.3}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 60.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00054}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 15.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.000947}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 26.1}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.608}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.608}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 3.81e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.608}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.608}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.01e-05}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.24}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.728}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.86}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 22.5}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 13.3}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 430}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.23}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 17.5}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.0202}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air"], "amount": 0.000117}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00941}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00941}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 5.28e-06}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00941}, {"name": "Propanol", "categories": ["water"], "amount": 0.00941}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 9.34}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.17}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.15}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 3.37}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 15.8}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water"], "amount": 74.9}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.32e-08}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.157}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 8.29}, {"name": "Pyrene", "categories": ["air"], "amount": 1.18}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1810}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.81}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.81}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.036}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 8.08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.673}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.03}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 4.5}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 28.4}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 236}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2700}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2700}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.182}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.0406}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 0.277}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.277}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.277}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.267}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.267}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.135}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.242}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.242}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.242}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 13.9}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 13.9}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.36e-21}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 13.9}, {"name": "Selenium IV", "categories": ["water"], "amount": 13.9}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0968}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.41}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 7.79}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.79}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.79}, {"name": "Silver I", "categories": ["air"], "amount": 6.44}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 6.44}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.95}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 3.44}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 3.44}, {"name": "Silver I", "categories": ["soil"], "amount": 3.44}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 431}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 431}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.63e-20}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 431}, {"name": "Silver I", "categories": ["water"], "amount": 431}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.65}, {"name": "Simazine", "categories": ["air"], "amount": 11.9}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 5.69}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 33.2}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 57.6}, {"name": "Simazine", "categories": ["water"], "amount": 57.6}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 20}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.86e-06}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.396}, {"name": "Styrene", "categories": ["water"], "amount": 0.396}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 144}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.84}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 13.1}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water"], "amount": 40.5}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.45}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 72.6}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.93}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 22.3}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.00014}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.23}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 6.31}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.31}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.31}, {"name": "Thallium I", "categories": ["air"], "amount": 13.9}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 13.9}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 15.7}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 31.1}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 31.1}, {"name": "Thallium I", "categories": ["soil"], "amount": 31.1}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 52.6}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 52.6}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 3.29e-20}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 52.6}, {"name": "Thallium I", "categories": ["water"], "amount": 52.6}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 0.539}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.539}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.41}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.736}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 5.15}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 15}, {"name": "Thiabendazole", "categories": ["water"], "amount": 15}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 12.7}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 79.1}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 147}, {"name": "Thiodicarb", "categories": ["water"], "amount": 147}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.817}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.92}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.93}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 10.4}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 15.1}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 3.9}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9}, {"name": "Thiram", "categories": ["air"], "amount": 5.91}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 19.8}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 468}, {"name": "Thiram", "categories": ["water"], "amount": 468}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 0.0723}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0723}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0723}, {"name": "Tin ion", "categories": ["air"], "amount": 0.0529}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 0.0529}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.00592}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.00944}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.00944}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.00944}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 4.25}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 4.25}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.68e-22}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 4.25}, {"name": "Tin ion", "categories": ["water"], "amount": 4.25}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.71e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.139}, {"name": "Toluene", "categories": ["water"], "amount": 0.139}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 36.7}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 714}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.74}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 0.171}, {"name": "Triallate", "categories": ["air"], "amount": 0.164}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.66}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 86.9}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.506}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 7.86}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.11e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.17}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.86}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 4.91e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.00133}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 12.1}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0391}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.438}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.61}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 35.4}, {"name": "Trifluralin", "categories": ["water"], "amount": 35.4}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.455}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.14e-11}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.0319}, {"name": "Urea", "categories": ["water"], "amount": 0.0319}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 3.38}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.38}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.38}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.95}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.95}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.99}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.99}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.99}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 175}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 175}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.22e-20}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 175}, {"name": "Vanadium V", "categories": ["water"], "amount": 175}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.548}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Xylene", "categories": ["water"], "amount": 0.155}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 257}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 110}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 3.94}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.94}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94}, {"name": "Zinc II", "categories": ["air"], "amount": 3.03}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 3.03}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.58}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.972}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.972}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.972}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.9e-20}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 211}, {"name": "Zinc II", "categories": ["water"], "amount": 211}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.26}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 53.1}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 4.4e-06}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.492}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.06e-05}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.525}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.31}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "ecotoxicity: marine", "marine ecotoxicity potential (METP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.833}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.141}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.00731}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.00125}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.145}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.02}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.106}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.146}, {"name": "2,4-D", "categories": ["water"], "amount": 0.146}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0706}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.0127}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 0.0884}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 0.0884}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0706}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.0623}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.0127}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 0.0884}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.00605}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.238}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.238}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0054}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.00144}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.000733}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.000315}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000315}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.000996}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.000299}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.00261}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.00261}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.007}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00155}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.152}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.152}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.152}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.0488}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.0488}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 0.631}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 0.631}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 11.7}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.631}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.631}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0443}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00705}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.0397}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.0495}, {"name": "Acephate", "categories": ["water"], "amount": 0.0495}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00807}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00807}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00807}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.00514}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00514}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.00943}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.00943}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0716}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.00943}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.00943}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.0168}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00238}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.000601}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000601}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000601}, {"name": "Acetone", "categories": ["air"], "amount": 0.000597}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.000597}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.000894}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water"], "amount": 0.000503}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.00388}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00239}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 0.438}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air"], "amount": 1.34}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.34}, {"name": "Acrolein", "categories": ["water"], "amount": 3.24}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00185}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.00185}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.0131}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00185}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00185}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0034}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0034}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.0446}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.0446}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.0519}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.0519}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.255}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.0519}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.0519}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.974}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0196}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0196}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.57}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.58}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.00546}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9340}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 4800}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 108}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 267}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 15000}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.325}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.44}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00496}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00496}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00496}, {"name": "Aniline", "categories": ["air"], "amount": 0.00107}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.139}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water"], "amount": 0.0257}, {"name": "Anthracene", "categories": ["air"], "amount": 4.67}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 29}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 29}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 307}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 29}, {"name": "Anthracene", "categories": ["water"], "amount": 29}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 32.3}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32.3}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.3}, {"name": "Arsenic ion", "categories": ["air"], "amount": 22.4}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 22.4}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0553}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0954}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0954}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0954}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 24}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 24}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 71.9}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 24}, {"name": "Arsenic ion", "categories": ["water"], "amount": 24}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.58}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water"], "amount": 14.9}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0373}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.14}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 13.1}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.72}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.283}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.25}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 12.9}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 12.9}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1.07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07}, {"name": "Barium II", "categories": ["air"], "amount": 1.05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.49}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.03}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.03}, {"name": "Barium II", "categories": ["soil"], "amount": 1.03}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.25}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.25}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.94}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.25}, {"name": "Barium II", "categories": ["water"], "amount": 1.25}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.00158}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0295}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0391}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0239}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.00306}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.0378}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.0378}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0346}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0346}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0346}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0234}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0234}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0395}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air"], "amount": 0.00235}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.00235}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.00486}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.00486}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0891}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00486}, {"name": "Benzene", "categories": ["water"], "amount": 0.00486}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.45}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.0377}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.339}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.339}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.339}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.339}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 9.57}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.57}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.57}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.46}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.46}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 10.8}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 20.2}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.2}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.2}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 20.1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 20.1}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 20.5}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 45.5}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.5}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.5}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 26.8}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 26.8}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 12.1}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 12.1}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.00118}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.00334}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0322}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.00699}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 68.3}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 68.3}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.3}, {"name": "Beryllium II", "categories": ["air"], "amount": 47.2}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 47.2}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.0205}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.0341}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.0341}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.0341}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 15.5}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 15.5}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 149}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 15.5}, {"name": "Beryllium II", "categories": ["water"], "amount": 15.5}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6710}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 10.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 51.2}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 3830}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 3830}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 81.6}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2380}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1380}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 24.5}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 37.3}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2180}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2180}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.49}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 0.0744}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.00164}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.88}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.982}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.28}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.28}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.964}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air"], "amount": 0.000583}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000583}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.00295}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water"], "amount": 0.000557}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.00304}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.00304}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0295}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.00304}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.00304}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 24.2}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.2}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.2}, {"name": "Cadmium II", "categories": ["air"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.0273}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.0492}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.0492}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.0492}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 3.8}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 3.8}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 53.5}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 3.8}, {"name": "Cadmium II", "categories": ["water"], "amount": 3.8}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.15}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.515}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.45}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.45}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.23}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.09}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.251}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.47}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.56}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.56}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.0392}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.33}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.149}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.138}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.138}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.263}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.138}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.138}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 0.0094}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00133}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 8.34}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.34}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.34}, {"name": "Chloramine", "categories": ["air"], "amount": 7.51}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.51}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.17}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.17}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 23.2}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.17}, {"name": "Chloramine", "categories": ["water"], "amount": 5.17}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 0.316}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.0224}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 5.76}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.0298}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.047}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.047}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.176}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.047}, {"name": "Chloroform", "categories": ["water"], "amount": 0.047}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 181}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 177}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 78.6}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 105}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 189}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 189}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 173}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 103}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 331}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2640}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2640}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 4.78}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.901}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.0802}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 3.58}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.58}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.58}, {"name": "Chromium III", "categories": ["air"], "amount": 2.48}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.48}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.0116}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.0211}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.0211}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.0211}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 0.456}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 0.456}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 7.82}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.456}, {"name": "Chromium III", "categories": ["water"], "amount": 0.456}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 50}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 50}, {"name": "Chromium VI", "categories": ["air"], "amount": 35.1}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 35.1}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.953}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.74}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.74}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.74}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 36.4}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 36.4}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 110}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 36.4}, {"name": "Chromium VI", "categories": ["water"], "amount": 36.4}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.0506}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.0326}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0387}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 5.55}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.84}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 3.84}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.00349}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.00607}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.00607}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.00607}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 1.34}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 1.34}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 13.2}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 1.34}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.34}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 148}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 148}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 148}, {"name": "Copper ion", "categories": ["air"], "amount": 103}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 103}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.0774}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.134}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.134}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.134}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 32.5}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 32.5}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 352}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 32.5}, {"name": "Copper ion", "categories": ["water"], "amount": 32.5}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.00078}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Cumene", "categories": ["air"], "amount": 0.00063}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.00063}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.331}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water"], "amount": 0.0105}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.69e-06}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.69e-06}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000942}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.000942}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0342}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000942}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000942}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.69e-06}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.00347}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 137}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.0543}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.000272}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7070}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 81.6}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 203}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 11500}, {"name": "Cypermethrin", "categories": ["water"], "amount": 11500}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.166}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.0487}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.499}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00128}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.122}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 1140}, {"name": "Deltamethrin", "categories": ["air"], "amount": 851}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 80.5}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 717}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.00778}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.96}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.119}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.0183}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 0.13}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 0.13}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.38}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0314}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.0045}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.0351}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.0351}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.06}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.6}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.0783}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 7.1}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.00223}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.23e-05}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.018}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.018}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.0496}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.011}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 444}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 57.4}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 379}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 917}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 917}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.295}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 0.386}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.167}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.137}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0457}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0457}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0457}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.0383}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0383}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.0232}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.00618}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.661}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00569}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 0.508}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.508}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 0.315}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 0.0748}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 0.485}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.09}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.09}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 0.475}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.3}, {"name": "Diuron", "categories": ["air"], "amount": 10.3}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.844}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.47}, {"name": "Diuron", "categories": ["water"], "amount": 12.4}, {"name": "Dodecanol", "categories": ["water"], "amount": 0.864}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.0208}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.0292}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.00446}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.0263}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 191}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.00395}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.13}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.86}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 6.99}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 7.84}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 15.9}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 15.9}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5590}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0691}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0691}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0691}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0688}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0688}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.0704}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.0704}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.0704}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.0704}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.0438}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0438}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.0178}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0178}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0618}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0185}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6.86}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 6.86}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 10.2}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6.86}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 6.86}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.000434}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000434}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000434}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.000224}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.000224}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.0009}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.000224}, {"name": "Ethanol", "categories": ["water"], "amount": 0.000224}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.00261}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.0182}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.0182}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.069}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.0386}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.471}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.00277}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00277}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00277}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.00263}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00263}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00882}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.00264}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 0.0165}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0165}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0165}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.0455}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.0101}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.0324}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0178}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.382}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.36}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.03}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 0.387}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.556}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 0.626}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 141}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 0.226}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 0.225}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.48}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.33}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.33}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 270}, {"name": "Fluazinam", "categories": ["air"], "amount": 232}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 21.3}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 142}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 428}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 428}, {"name": "Fluazinam", "categories": ["water"], "amount": 428}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.3}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 7.91}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Fluoranthene", "categories": ["air"], "amount": 14.4}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 57.8}, {"name": "Fluorene", "categories": ["air"], "amount": 0.164}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 0.328}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 0.907}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.29}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.36}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0251}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0251}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.0237}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00846}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0012}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0238}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0112}, {"name": "Furfural", "categories": ["air"], "amount": 0.00779}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.00729}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 0.174}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.145}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.00729}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0924}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.00838}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.0569}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.9}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.06}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.06}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air"], "amount": 9.98e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 9.98e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 0.84}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0628}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water"], "amount": 0.00162}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.243}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.0373}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.52}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 10.1}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.27}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000246}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000246}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000246}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000246}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.00552}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00552}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.171}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.00552}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.00552}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.000456}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000456}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000456}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.000381}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.000381}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0205}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.0205}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0901}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0205}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0205}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.0521}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0521}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0521}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0517}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0517}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000149}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 0.547}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.547}, {"name": "Imidacloprid", "categories": ["air"], "amount": 0.555}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.578}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 0.761}, {"name": "Imidacloprid", "categories": ["water"], "amount": 0.761}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.339}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.291}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air"], "amount": 2.8e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.8e-07}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 24900}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 431}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 495}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 9580}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 9580}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 9580}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 1.06}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06}, {"name": "Lead II", "categories": ["air"], "amount": 0.735}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.735}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 8.07e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.000125}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.000125}, {"name": "Lead II", "categories": ["soil"], "amount": 0.000125}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.101}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.101}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.33}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.101}, {"name": "Lead II", "categories": ["water"], "amount": 0.101}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.0298}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 126}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.0774}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0633}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.00414}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 0.0389}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 0.0389}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.317}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.0105}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.334}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.334}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.301}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.00697}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.000734}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.87}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.76}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.593}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.15}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.33}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.33}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.609}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0668}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 87.6}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 87.6}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 87.6}, {"name": "Mercury II", "categories": ["air"], "amount": 59.8}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 59.8}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.00401}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0053}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0053}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0053}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 9.15}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 9.15}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 179}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 9.15}, {"name": "Mercury II", "categories": ["water"], "amount": 9.15}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.0168}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.535}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.00482}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.18}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0624}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.617}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.617}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.617}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.618}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.618}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.00786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.00783}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.00783}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.00831}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.00831}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0329}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.00831}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.00831}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.481}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.478}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.478}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.476}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.476}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.869}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.476}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.476}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air"], "amount": 0.000451}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000451}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.000222}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.000222}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000712}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.000222}, {"name": "Methanol", "categories": ["water"], "amount": 0.000222}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 0.46}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.58}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.206}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.14}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water"], "amount": 1.87}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.174}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.0221}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.0221}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.0384}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.0384}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.394}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.0384}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.0384}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.000754}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000754}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000754}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.000724}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.000724}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.000669}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 0.384}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air"], "amount": 0.012}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.012}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.0312}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water"], "amount": 0.00695}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.0184}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.87}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.783}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.12}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water"], "amount": 12.2}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.93}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.85}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.25}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 288}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 42.9}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 249}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 421}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 421}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.65}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.0824}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.271}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.271}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.271}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.189}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.00283}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.00519}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.00519}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.00519}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.104}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 0.104}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 0.642}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.104}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.104}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.0747}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00685}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 0.086}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 7.78}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.0206}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.11}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.99}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 44.2}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.2}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.2}, {"name": "Nickel II", "categories": ["air"], "amount": 30.6}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 30.6}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.053}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.0939}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.0939}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.0939}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 13}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 13}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 98.3}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 13}, {"name": "Nickel II", "categories": ["water"], "amount": 13}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.154}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.154}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.154}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.228}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.118}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00357}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.488}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.0725}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.701}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.53}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.53}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.43}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.000713}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 0.0948}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.0101}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.39}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.358}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 498}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 18.2}, {"name": "Permethrin", "categories": ["water"], "amount": 287}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.43}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.35}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.0591}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.0176}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0176}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0176}, {"name": "Phenol", "categories": ["air"], "amount": 0.00849}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00849}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water"], "amount": 0.0237}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 39.3}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.3}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.3}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 30.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 30.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.04}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.54}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.468}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1.95}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.6}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.406}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.406}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.406}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.406}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.417}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 0.417}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.417}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.417}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.0664}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.0152}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.419}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.0322}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.0598}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.0376}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.54}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 38.8}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.18}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.273}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.5}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.00112}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.119}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air"], "amount": 0.000569}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000569}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0019}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water"], "amount": 0.00055}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.768}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.00486}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.33}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.278}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.31}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.23}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.23}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.23}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00805}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00805}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00805}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.00592}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00592}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.0022}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0022}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.0155}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.0022}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.0022}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 0.466}, {"name": "Pyrene", "categories": ["air"], "amount": 21.5}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 156}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.00199}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 0.752}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.0379}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.7}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 13.2}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.23}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 23.2}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 226}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 226}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.0101}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.00363}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 14.7}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.7}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.7}, {"name": "Selenium IV", "categories": ["air"], "amount": 10.2}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 10.2}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.0281}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.0504}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.0504}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.0504}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 4.36}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 4.36}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 32.7}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 4.36}, {"name": "Selenium IV", "categories": ["water"], "amount": 4.36}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0149}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.412}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 720}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 720}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 720}, {"name": "Silver I", "categories": ["air"], "amount": 498}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 498}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.313}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.549}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.549}, {"name": "Silver I", "categories": ["soil"], "amount": 0.549}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 104}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 104}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1590}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 104}, {"name": "Silver I", "categories": ["water"], "amount": 104}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.78}, {"name": "Simazine", "categories": ["air"], "amount": 3.42}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.469}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.75}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.79}, {"name": "Simazine", "categories": ["water"], "amount": 4.79}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.05}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air"], "amount": 9.5e-05}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.5e-05}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.00719}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.00719}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.238}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.00719}, {"name": "Styrene", "categories": ["water"], "amount": 0.00719}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.33}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.96}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.151}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.36}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 0.205}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.0743}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.28}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.95}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0749}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0749}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0749}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.0748}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0748}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.43}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.12}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 23.5}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.5}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.5}, {"name": "Thallium I", "categories": ["air"], "amount": 19.5}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 19.5}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 5.36}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 10.4}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 10.4}, {"name": "Thallium I", "categories": ["soil"], "amount": 10.4}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 24.9}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 24.9}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 47.6}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 24.9}, {"name": "Thallium I", "categories": ["water"], "amount": 24.9}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 0.579}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.579}, {"name": "Thiabendazole", "categories": ["air"], "amount": 0.489}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.0176}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.123}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.359}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.359}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.26}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.96}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.5}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.01}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.58}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.58}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.717}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 0.645}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.159}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 0.864}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.25}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.25}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 15.3}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.3}, {"name": "Thiram", "categories": ["air"], "amount": 9.15}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.234}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.11}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 26}, {"name": "Thiram", "categories": ["water"], "amount": 26}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 6.78}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.78}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.78}, {"name": "Tin ion", "categories": ["air"], "amount": 4.69}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 4.69}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.000976}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.00155}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.00155}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.00155}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1.05}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 15}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "Tin ion", "categories": ["water"], "amount": 1.05}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air"], "amount": 0.000331}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000331}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0856}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water"], "amount": 0.00276}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.19}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 128}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.143}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 2.21}, {"name": "Triallate", "categories": ["air"], "amount": 1.01}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.516}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 7.75}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.0226}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.645}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.00636}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.00636}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.163}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.00636}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.00636}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.317}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 0.000142}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.16e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.28}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.611}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.973}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.6}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.6}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.011}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 0.00342}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.00076}, {"name": "Urea", "categories": ["water"], "amount": 0.00076}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.00569}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 71}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 71}, {"name": "Vanadium V", "categories": ["air"], "amount": 49.2}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 49.2}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.311}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.551}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.551}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.551}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 75.9}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 75.9}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 157}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 75.9}, {"name": "Vanadium V", "categories": ["water"], "amount": 75.9}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.0464}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000248}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000248}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000248}, {"name": "Xylene", "categories": ["air"], "amount": 0.000165}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000165}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00292}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.00292}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0931}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00292}, {"name": "Xylene", "categories": ["water"], "amount": 0.00292}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7070}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 81.6}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 35.5}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.5}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.5}, {"name": "Zinc II", "categories": ["air"], "amount": 24.6}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 24.6}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.138}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.231}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.231}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.231}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 71.2}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 71.2}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 81.8}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 71.2}, {"name": "Zinc II", "categories": ["water"], "amount": 71.2}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 0.182}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.95}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.00889}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.00889}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.296}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.00889}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.00889}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000839}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000839}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000839}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.00056}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.00056}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.0099}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0099}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.315}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.0099}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.0099}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 4.55}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "ecotoxicity: terrestrial", "terrestrial ecotoxicity potential (TETP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.802}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.76}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.062}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.695}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0416}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.00206}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.00054}, {"name": "2,4-D", "categories": ["water"], "amount": 0.00054}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.1e-07}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 4.67e-09}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 33.3}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.1e-07}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 69.5}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.0475}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.0475}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0855}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.798}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00627}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.00194}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.0188}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.23e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 9.68e-05}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.647}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.61}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 813}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00233}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000491}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 7.9e-05}, {"name": "Acephate", "categories": ["water"], "amount": 7.9e-05}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0828}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.339}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 125}, {"name": "Acetic acid", "categories": ["air"], "amount": 87}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 87}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.39e-05}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00669}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air"], "amount": 0.0305}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00445}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water"], "amount": 0.0236}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0609}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.305}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 495}, {"name": "Acrolein", "categories": ["air"], "amount": 287}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 287}, {"name": "Acrolein", "categories": ["water"], "amount": 423}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.15e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00425}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air"], "amount": 45.7}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 45.7}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.867}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.13}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 8460}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.3}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 146}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.0173}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 123000}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 62900}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1110}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1150}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 3460}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 58.9}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 8.55}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.13}, {"name": "Aniline", "categories": ["air"], "amount": 0.621}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.621}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.041}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.622}, {"name": "Aniline", "categories": ["water"], "amount": 0.622}, {"name": "Anthracene", "categories": ["air"], "amount": 34.8}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 28.8}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water"], "amount": 71.1}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 58200}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 58200}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 58200}, {"name": "Arsenic ion", "categories": ["air"], "amount": 40200}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 40200}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 2.28e-18}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 3.93e-18}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 3.93e-18}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.93e-18}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.12e-15}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.12e-15}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 4.06e-16}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.12e-15}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.12e-15}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 22.7}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14.4}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water"], "amount": 10.1}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0553}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 6.61e-05}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 174}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4680}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.000144}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 0.000137}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.09e-05}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.09e-05}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1430}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1430}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Barium II", "categories": ["air"], "amount": 991}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 991}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.81e-17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 3.79e-17}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 3.79e-17}, {"name": "Barium II", "categories": ["soil"], "amount": 3.79e-17}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 4.79e-17}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 4.79e-17}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 9.05e-18}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 4.79e-17}, {"name": "Barium II", "categories": ["water"], "amount": 4.79e-17}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.72e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.516}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.000631}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0639}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.582}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.091}, {"name": "Benzene", "categories": ["air"], "amount": 0.0871}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0871}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0427}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water"], "amount": 0.0859}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.922}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0129}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0425}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 48.4}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 78.2}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.2}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 78.2}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 78}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 78}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 75.8}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.443}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.443}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.008}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0333}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.00268}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.0477}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 208000}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 208000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 208000}, {"name": "Beryllium II", "categories": ["air"], "amount": 144000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 144000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.1e-18}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.48e-18}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.48e-18}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.48e-18}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.73e-15}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.73e-15}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.69e-15}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.73e-15}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.73e-15}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 148000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 94.3}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 97.1}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 292}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 292}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 868}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 9.79}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22500}, {"name": "Bifenthrin", "categories": ["air"], "amount": 13100}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 217}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 222}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 751}, {"name": "Bifenthrin", "categories": ["water"], "amount": 751}, {"name": "Bisphenol A", "categories": ["water"], "amount": 0.0064}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.51e-05}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 7.52e-07}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 0.00939}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 466}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 42400}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00331}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 0.000666}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 0.000666}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.9}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.33}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air"], "amount": 0.035}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.0015}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water"], "amount": 0.0186}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0703}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.368}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 122000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 122000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 122000}, {"name": "Cadmium II", "categories": ["air"], "amount": 84200}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 84200}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.45e-18}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.6e-18}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.6e-18}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.6e-18}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2.21e-16}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 2.21e-16}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.7e-16}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2.21e-16}, {"name": "Cadmium II", "categories": ["water"], "amount": 2.21e-16}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9490}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 12.7}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 5.77}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 5.77}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 10300}, {"name": "Carbendazim", "categories": ["air"], "amount": 8320}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.138}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 0.0873}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 0.0417}, {"name": "Carbendazim", "categories": ["water"], "amount": 0.0417}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 372}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.852}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.852}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.852}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.852}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00159}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 265000}, {"name": "Chloramine", "categories": ["air"], "amount": 219000}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 219000}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.74e-07}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water"], "amount": 3.26e-06}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1680}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air"], "amount": 0.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.219}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water"], "amount": 0.462}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 22400}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 21800}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 9320}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9770}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 8810}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 8810}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 6180}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1650}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 785}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 251}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.15e-06}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 26500}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26500}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 26500}, {"name": "Chromium III", "categories": ["air"], "amount": 18400}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 18400}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 8.92e-19}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.63e-18}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.63e-18}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.63e-18}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 3.85e-17}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 3.85e-17}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.18e-17}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 3.85e-17}, {"name": "Chromium III", "categories": ["water"], "amount": 3.85e-17}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 89900}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 89900}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 89900}, {"name": "Chromium VI", "categories": ["air"], "amount": 62200}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 62200}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 4.09e-17}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 7.47e-17}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 7.47e-17}, {"name": "Chromium VI", "categories": ["soil"], "amount": 7.47e-17}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.75e-15}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 1.75e-15}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.02e-16}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.75e-15}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.75e-15}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 9.78}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 22}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0329}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 26000}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26000}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 26000}, {"name": "Cobalt II", "categories": ["air"], "amount": 18000}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 18000}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.36e-19}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 4.09e-19}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 4.09e-19}, {"name": "Cobalt II", "categories": ["soil"], "amount": 4.09e-19}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 1.06e-16}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 1.06e-16}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.05e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 1.06e-16}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.06e-16}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 766000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 766000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 766000}, {"name": "Copper ion", "categories": ["air"], "amount": 530000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 530000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.35e-18}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 9.23e-18}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 9.23e-18}, {"name": "Copper ion", "categories": ["soil"], "amount": 9.23e-18}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.61e-15}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 2.61e-15}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.72e-15}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.61e-15}, {"name": "Copper ion", "categories": ["water"], "amount": 2.61e-15}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air"], "amount": 0.0432}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0432}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.0138}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water"], "amount": 0.0466}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.337}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.000203}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000646}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.27e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1700}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.12e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95500}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 868}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 895}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 2700}, {"name": "Cypermethrin", "categories": ["water"], "amount": 2700}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.868}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.04e-05}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 77}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00507}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 19600}, {"name": "Deltamethrin", "categories": ["air"], "amount": 14700}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1380}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3700}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.14e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.647}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.32e-05}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.32e-05}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 36.9}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 114}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 282}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.000695}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.55e-06}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.55e-06}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1060}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 601}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.923}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149}, {"name": "Diethanolamine", "categories": ["water"], "amount": 5.94e-06}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00415}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00415}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 242}, {"name": "Diethylamine", "categories": ["air"], "amount": 186}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 186}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.037}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.0767}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 487000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1030}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 689}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 689}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 8.15}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 10100}, {"name": "Dimethoate", "categories": ["air"], "amount": 2350}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 7.52}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.232}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air"], "amount": 888}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 888}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.337}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00217}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 424}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.33e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 6.6e-07}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 6.6e-07}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.114}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 28600}, {"name": "Diuron", "categories": ["air"], "amount": 20400}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.59}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.78}, {"name": "Diuron", "categories": ["water"], "amount": 2.55}, {"name": "Dodecanol", "categories": ["water"], "amount": 7.62}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.215}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 6.87e-05}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.18e-08}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.47}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 468}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 16}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 6700}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 146}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 107}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 58.7}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 58.7}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.193}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.193}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.111}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.193}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.193}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.929}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.929}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.184}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.387}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 17.2}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 17.2}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 12.4}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 17.2}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 17.2}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air"], "amount": 0.072}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0262}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 276}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 5.61e-06}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.53e-11}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.53e-11}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.27}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 14.4}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1520}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.406}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.000108}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.000225}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.455}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.57}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.13e-05}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 6.5e-07}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 638}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.483}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 8.99}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2710}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 729}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 26.8}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 26.8}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 205000}, {"name": "Fluazinam", "categories": ["air"], "amount": 145000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1210}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1130}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 896}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 896}, {"name": "Fluazinam", "categories": ["water"], "amount": 896}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 70700}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 383}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.04}, {"name": "Fluoranthene", "categories": ["air"], "amount": 98.9}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 80.1}, {"name": "Fluorene", "categories": ["air"], "amount": 1.82}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.08}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 188}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 25800}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 142}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air"], "amount": 10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.0506}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.889}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air"], "amount": 66.8}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 66.8}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 4.58e-06}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water"], "amount": 0.000909}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 7.53e-09}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0062}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0939}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 735}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 573}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.26e-10}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.13e-05}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.27e-11}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2430}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1980}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 0.00797}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 0.00797}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air"], "amount": 2.07e-05}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.07e-05}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 256}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air"], "amount": 0.000196}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000196}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.37e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water"], "amount": 0.000194}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.00371}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.379}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 590}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 367}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water"], "amount": 1360}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00795}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0955}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0359}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0359}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0359}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.0296}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.0296}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.038}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.038}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0139}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.038}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.038}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.174}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.174}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.174}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.171}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.171}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000785}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4320}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 5.99e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.17e-10}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Imidacloprid", "categories": ["water"], "amount": 1.98e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.0103}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.302}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-05}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 311000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5390}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5510}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 17600}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 17600}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 17600}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 27300}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27300}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27300}, {"name": "Lead II", "categories": ["air"], "amount": 18900}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 18900}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.56e-21}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.06e-21}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.06e-21}, {"name": "Lead II", "categories": ["soil"], "amount": 7.06e-21}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 6.3e-18}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 6.3e-18}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.01e-17}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 6.3e-18}, {"name": "Lead II", "categories": ["water"], "amount": 6.3e-18}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.93e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5100}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.04e-07}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 626}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 6.59e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.1e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.1e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.000589}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.000883}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.000883}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 43}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.18e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.05e-05}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 44400}, {"name": "Mancozeb", "categories": ["air"], "amount": 36600}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.000845}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.59e-05}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 9.45e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 9.45e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.000868}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0677}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 880000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 880000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 880000}, {"name": "Mercury II", "categories": ["air"], "amount": 601000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 601000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.02e-19}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.67e-19}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.67e-19}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.67e-19}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 5.12e-16}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 5.12e-16}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.45e-16}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 5.12e-16}, {"name": "Mercury II", "categories": ["water"], "amount": 5.12e-16}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.27}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.000275}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.000191}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.02}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.358}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0492}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0998}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.3}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 1.3}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.734}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.3}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.3}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Methanol", "categories": ["air"], "amount": 0.122}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.122}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.00305}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water"], "amount": 0.0422}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 96.2}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 32500}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.422}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 0.206}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water"], "amount": 0.0678}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 5.42}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.23}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.55}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.0199}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 566}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 40.4}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 397}, {"name": "Methylamine", "categories": ["air"], "amount": 305}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 305}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water"], "amount": 0.216}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 5890}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 18.4}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 15.7}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water"], "amount": 11.3}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 40000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.21}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 0.856}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090000}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 899000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 6.48e-05}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.81e-05}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.81e-05}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.85}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 923}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 923}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 923}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 639}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 639}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.41e-19}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.57e-19}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.57e-19}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.57e-19}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 6.08e-18}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 6.08e-18}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 4.48e-18}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 6.08e-18}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 6.08e-18}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.014}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00603}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 27.6}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 801}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.584}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.967}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 606}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 119000}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 119000}, {"name": "Nickel II", "categories": ["air"], "amount": 82100}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 82100}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.9e-18}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 5.13e-18}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 5.13e-18}, {"name": "Nickel II", "categories": ["soil"], "amount": 5.13e-18}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 7.9e-16}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 7.9e-16}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.04e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 7.9e-16}, {"name": "Nickel II", "categories": ["water"], "amount": 7.9e-16}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.1}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.8}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 176}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00085}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.133}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 9.48}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 38.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.35}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.34}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.4}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 4.69e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 276}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.8}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 6.44e-05}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 490}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 69.2}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 69.2}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11100}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 401}, {"name": "Permethrin", "categories": ["water"], "amount": 1160}, {"name": "Phenanthrene", "categories": ["air"], "amount": 31.3}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 37}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.5e-06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49}, {"name": "Phenol", "categories": ["air"], "amount": 1.18}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.00553}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water"], "amount": 0.0981}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 13}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 13}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8480}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8480}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8480}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 5960}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 5960}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.114}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.134}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 47.2}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 272}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4160}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.187}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.84}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.603}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 10.7}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.4}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 7.34}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00153}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.00909}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.000503}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 77.9}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.378}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 50.4}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 53.7}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3440}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 37.6}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 885}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 3.94e-05}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air"], "amount": 0.0504}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0504}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.003}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water"], "amount": 0.0302}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.00379}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.15}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.536}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.237}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water"], "amount": 0.487}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.0204}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Pyrene", "categories": ["air"], "amount": 121}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 140}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.000429}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 119}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 667}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 211}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 267}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 932}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 932}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.000183}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.000889}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 39300}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39300}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 39300}, {"name": "Selenium IV", "categories": ["air"], "amount": 27200}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 27200}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.38e-18}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 2.48e-18}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 2.48e-18}, {"name": "Selenium IV", "categories": ["soil"], "amount": 2.48e-18}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 2.39e-16}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 2.39e-16}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.82e-16}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 2.39e-16}, {"name": "Selenium IV", "categories": ["water"], "amount": 2.39e-16}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0594}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.0666}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 4220000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4220000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4220000}, {"name": "Silver I", "categories": ["air"], "amount": 2920000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 2920000}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.77e-17}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 3.09e-17}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 3.09e-17}, {"name": "Silver I", "categories": ["soil"], "amount": 3.09e-17}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 6.42e-15}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 6.42e-15}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.17e-15}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 6.42e-15}, {"name": "Silver I", "categories": ["water"], "amount": 6.42e-15}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Simazine", "categories": ["air"], "amount": 9400}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 9.4}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.05}, {"name": "Simazine", "categories": ["water"], "amount": 3.05}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 76.8}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air"], "amount": 0.00511}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00418}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water"], "amount": 0.0139}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1250}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.61}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2820}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.0907}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.0888}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water"], "amount": 0.0838}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.97}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.00589}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 286}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 47.8}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.313}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.568}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 36800}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36800}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 36800}, {"name": "Thallium I", "categories": ["air"], "amount": 25500}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 25500}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.49e-16}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.87e-16}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.87e-16}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.87e-16}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 7.53e-16}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 7.53e-16}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.94e-16}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 7.53e-16}, {"name": "Thallium I", "categories": ["water"], "amount": 7.53e-16}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1090}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.00387}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.00354}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.00279}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.00279}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 49}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5860}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 977}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 732}, {"name": "Thiodicarb", "categories": ["water"], "amount": 732}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4360}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2770}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 7.32}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.23}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 964}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 964}, {"name": "Thiram", "categories": ["air"], "amount": 564}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.303}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.161}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Thiram", "categories": ["water"], "amount": 1.83}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 35100}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35100}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 35100}, {"name": "Tin ion", "categories": ["air"], "amount": 24300}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 24300}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 5.19e-20}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 6.15e-17}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 6.15e-17}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 7.45e-17}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 6.15e-17}, {"name": "Tin ion", "categories": ["water"], "amount": 6.15e-17}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air"], "amount": 0.0281}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0281}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.00928}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water"], "amount": 0.0301}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 871}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.00155}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 104}, {"name": "Triallate", "categories": ["air"], "amount": 47}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 70.8}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.24}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.00144}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0529}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1.77}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 9.6e-07}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 1.8e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 25.3}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 31.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 31.8}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 6.86e-07}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water"], "amount": 1.29e-05}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.000198}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 119000}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 119000}, {"name": "Vanadium V", "categories": ["air"], "amount": 82000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 82000}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.42e-17}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2.5e-17}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2.5e-17}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2.5e-17}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 3.93e-15}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 3.93e-15}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.01e-15}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 3.93e-15}, {"name": "Vanadium V", "categories": ["water"], "amount": 3.93e-15}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air"], "amount": 0.0139}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0139}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.00551}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water"], "amount": 0.0183}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95500}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 868}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 86000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 86000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 86000}, {"name": "Zinc II", "categories": ["air"], "amount": 59500}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 59500}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 7.36e-18}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.23e-17}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.23e-17}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.23e-17}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 5.02e-15}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 5.02e-15}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 7.11e-16}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 5.02e-15}, {"name": "Zinc II", "categories": ["water"], "amount": 5.02e-15}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 74.4}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.00806}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0267}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.0187}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.062}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 18.3}]}, {"unit": "kg oil-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "energy resources: non-renewable, fossil", "fossil fuel potential (FFP)"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.22}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.42}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.22}]}, {"unit": "kg P-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "eutrophication: freshwater", "freshwater eutrophication potential (FEP)"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "eutrophication: marine", "marine eutrophication potential (MEP)"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.776}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water"], "amount": 0.23}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water"], "amount": 0.0671}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.297}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.0902}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.297}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "human toxicity: carcinogenic", "human toxicity potential (HTPc)"], "exchanges": [{"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.00325}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.0313}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.433}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 41.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 41.4}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 28.7}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.7}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.7}, {"name": "Arsenic ion", "categories": ["air"], "amount": 470}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 470}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.26}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.32}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.32}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.32}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 11.6}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 11.6}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.02e-19}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 11.6}, {"name": "Arsenic ion", "categories": ["water"], "amount": 11.6}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.33}, {"name": "Benzene", "categories": ["air"], "amount": 1.44}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.158}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.354}, {"name": "Benzene", "categories": ["water"], "amount": 0.354}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0284}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0961}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 70.7}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.7}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.7}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 93.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 93.6}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1150}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 36.5}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 36.5}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 11.1}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.1}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.1}, {"name": "Beryllium II", "categories": ["air"], "amount": 259}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 259}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.0118}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.0121}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.0121}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.0121}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 0.046}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 0.046}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.59e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 0.046}, {"name": "Beryllium II", "categories": ["water"], "amount": 0.046}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 8.75}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.75}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.75}, {"name": "Cadmium II", "categories": ["air"], "amount": 194}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 194}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.195}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.201}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.201}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.201}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.0614}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 0.0614}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.36e-20}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.0614}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.0614}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.293}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.29}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.815}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.815}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.815}, {"name": "Chloroform", "categories": ["air"], "amount": 1.26}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.26}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.861}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.861}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.371}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.861}, {"name": "Chloroform", "categories": ["water"], "amount": 0.861}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0408}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 0.0798}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.0212}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.0361}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 0.097}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 0.097}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 80.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 39.9}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 7.94}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 4}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.79}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.79}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.653}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.79}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.79}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 12.8}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 12.8}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.22}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 12.8}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 12.8}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 3.2e-05}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0012}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.423}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.93}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00626}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.137}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6}, {"name": "Furan", "categories": ["air"], "amount": 95}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 95}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.129}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water"], "amount": 10.2}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0162}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0162}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0162}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.16}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0535}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.0535}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0231}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0535}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0535}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1.26}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.87}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.87}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air"], "amount": 0.128}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.128}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.453}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.453}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.453}, {"name": "Lead II", "categories": ["air"], "amount": 1.68}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 1.68}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0158}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0161}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0161}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0161}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.0104}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.0104}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.82e-22}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.0104}, {"name": "Lead II", "categories": ["water"], "amount": 0.0104}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 12.5}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 6.4}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4}, {"name": "Mercury II", "categories": ["air"], "amount": 24.5}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 24.5}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0752}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0769}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0769}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0769}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.386}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.386}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.86e-21}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.386}, {"name": "Mercury II", "categories": ["water"], "amount": 0.386}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0884}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 227}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 227}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 227}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 217}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 217}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 123}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 217}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 217}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 8.96}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.96}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.96}, {"name": "Nickel II", "categories": ["air"], "amount": 31.3}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 31.3}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.07}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.14}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.14}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.14}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.41}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3.41}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 5.05e-20}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.41}, {"name": "Nickel II", "categories": ["water"], "amount": 3.41}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.0724}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.849}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 32.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 32.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 0.032}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 0.032}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.0023}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.032}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.032}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.92}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.92}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.58}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4.65}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0588}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.365}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air"], "amount": 1.28}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.28}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00975}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Styrene", "categories": ["water"], "amount": 0.281}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.962}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.962}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.962}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.525}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.13}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0112}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0371}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "human toxicity: non-carcinogenic", "human toxicity potential (HTPnc)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.414}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.9}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.1}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 3.81}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 5.24}, {"name": "2,4-D", "categories": ["water"], "amount": 5.24}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.105}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 1.88}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 1.88}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0377}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00147}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.9e-06}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00878}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.0297}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.19}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 19300}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 16500}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 620}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 773}, {"name": "Acephate", "categories": ["water"], "amount": 773}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.056}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.545}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Acetone", "categories": ["air"], "amount": 0.0878}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0878}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water"], "amount": 0.0132}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0204}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.131}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 309}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 309}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 309}, {"name": "Acrolein", "categories": ["air"], "amount": 9490}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 9490}, {"name": "Acrolein", "categories": ["water"], "amount": 294}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.74e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water"], "amount": 0.0752}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air"], "amount": 707}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 707}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.85}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 9.16}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.36}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.36}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 36}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 322}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.48}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.1}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 30.4}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.831}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 0.792}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 25.2}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 6.95}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.65}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.361}, {"name": "Aniline", "categories": ["air"], "amount": 5.32}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 5.32}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.00623}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 4.09}, {"name": "Aniline", "categories": ["water"], "amount": 4.09}, {"name": "Anthracene", "categories": ["air"], "amount": 0.0511}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water"], "amount": 0.723}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 103}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 103}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 103}, {"name": "Antimony ion", "categories": ["air"], "amount": 343}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 343}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 3.59}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 108}, {"name": "Antimony ion", "categories": ["soil"], "amount": 108}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 129}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 129}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.41e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 129}, {"name": "Antimony ion", "categories": ["water"], "amount": 129}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 2480}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2480}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2480}, {"name": "Arsenic ion", "categories": ["air"], "amount": 8940}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 10.4}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 334}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 334}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 334}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 2920}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 2920}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1.92e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 2920}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2920}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 6.7}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.9}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.92}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water"], "amount": 6.11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 51.5}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.5}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.5}, {"name": "Barium II", "categories": ["air"], "amount": 102}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 102}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 323}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 323}, {"name": "Barium II", "categories": ["soil"], "amount": 323}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 42.4}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 42.4}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 7.53e-19}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 42.4}, {"name": "Barium II", "categories": ["water"], "amount": 42.4}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.084}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0331}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.3}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.331}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 2.75}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 2.75}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0475}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28}, {"name": "Benzene", "categories": ["air"], "amount": 1.22}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.301}, {"name": "Benzene", "categories": ["water"], "amount": 0.301}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.505}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.00398}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.107}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 82.3}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.3}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.3}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1340}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 90.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.9}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 124}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 124}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 498}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 27100}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27100}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27100}, {"name": "Beryllium II", "categories": ["air"], "amount": 641000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 641000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.00346}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.447}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.447}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.447}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.7}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.7}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.91e-16}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.7}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.7}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 372}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.986}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.17}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 71.6}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 71.6}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.926}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 99.8}, {"name": "Bifenthrin", "categories": ["air"], "amount": 64.3}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 15.1}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 1920}, {"name": "Bifenthrin", "categories": ["water"], "amount": 1920}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.77}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.96}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.5}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.26}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.6}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.6}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.79}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air"], "amount": 6.67}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.67}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air"], "amount": 0.431}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.431}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.000981}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water"], "amount": 0.0541}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 403}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 403}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 403}, {"name": "Cadmium II", "categories": ["air"], "amount": 1430}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1430}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.612}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 184}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 184}, {"name": "Cadmium II", "categories": ["soil"], "amount": 184}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 55.9}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 55.9}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.01e-18}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 55.9}, {"name": "Cadmium II", "categories": ["water"], "amount": 55.9}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.779}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.9}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.16}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.3}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.3}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.5}, {"name": "Carbendazim", "categories": ["air"], "amount": 29.5}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.05}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Carbendazim", "categories": ["water"], "amount": 1.83}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 140}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 751}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 751}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 751}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 822}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 822}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 666}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 666}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 215}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 666}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 666}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 14}, {"name": "Carboxin", "categories": ["air"], "amount": 12.3}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.249}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.855}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Carboxin", "categories": ["water"], "amount": 1.61}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 3.52e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0152}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air"], "amount": 12.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.73e-05}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water"], "amount": 0.619}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 921}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 4.18}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.861}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water"], "amount": 9.89}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air"], "amount": 21.8}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.96}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water"], "amount": 12.8}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 8.14}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.71}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 10}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 10}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 79.7}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 338}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 88.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.748}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.00623}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00623}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00623}, {"name": "Chromium III", "categories": ["air"], "amount": 0.0204}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.85e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.00918}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.00918}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.00918}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 0.000485}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 0.000485}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.43e-23}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.000485}, {"name": "Chromium III", "categories": ["water"], "amount": 0.000485}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 240}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 240}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 240}, {"name": "Chromium VI", "categories": ["air"], "amount": 5540}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 5540}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.139}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 5.63}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 5.63}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.63}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.43}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 3.43}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.21e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.43}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.43}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 0.573}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.573}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.573}, {"name": "Copper ion", "categories": ["air"], "amount": 2.09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2.09}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.000434}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.0778}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.0778}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.0778}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 0.126}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 0.126}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.26e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 0.126}, {"name": "Copper ion", "categories": ["water"], "amount": 0.126}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air"], "amount": 0.18}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00479}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.066}, {"name": "Cumene", "categories": ["water"], "amount": 0.066}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0041}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0438}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.43}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.935}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.926}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 0.755}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 21.3}, {"name": "Cypermethrin", "categories": ["water"], "amount": 21.3}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 25.7}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.04}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 31.3}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 253}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 38}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.2}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4.13}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.59}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.59}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 86.8}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 862}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 42.1}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0958}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0958}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.7}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.87}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 17.3}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 41.9}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 41.9}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 66.2}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 56.2}, {"name": "Dimethoate", "categories": ["air"], "amount": 20.3}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.0764}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 14.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.702}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 255}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 30.3}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 68.3}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 68.3}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 46.2}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.554}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 88.7}, {"name": "Diuron", "categories": ["air"], "amount": 78.7}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 2.03}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.36}, {"name": "Diuron", "categories": ["water"], "amount": 12.1}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.00919}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.61}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 28.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.0772}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0772}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0772}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0809}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0809}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.291}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.291}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.291}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.32}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.32}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.28}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.28}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.162}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.28}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.28}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 2.18}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.18}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.18}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2.21}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2.21}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 524}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 524}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 336}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 524}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 524}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 67.6}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 5.47}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 5.47}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 266}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0843}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0843}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00287}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0146}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00143}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 0.244}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2.73}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 22300}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.96}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.31}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.34}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Fipronil", "categories": ["air"], "amount": 1520}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 614}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 1570}, {"name": "Fipronil", "categories": ["water"], "amount": 1570}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.788}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 20.7}, {"name": "Fluorene", "categories": ["air"], "amount": 0.692}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 1.3}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 6.78}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00311}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.447}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00128}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.972}, {"name": "Furan", "categories": ["air"], "amount": 35.5}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 45.6}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 49.2}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 3.53}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.768}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.2}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "Hexane", "categories": ["air"], "amount": 2.2}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.2}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0475}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Hexane", "categories": ["water"], "amount": 1.23}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.504}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 5340}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00218}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0273}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0332}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.104}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 22.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 39.6}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 39.6}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.67}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 0.197}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 0.253}, {"name": "Imazethapyr", "categories": ["water"], "amount": 0.253}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air"], "amount": 57.1}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 2.07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.73}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.73}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 0.113}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 537}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 537}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 537}, {"name": "Lead II", "categories": ["air"], "amount": 1980}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 1980}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0149}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 19.4}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 19.4}, {"name": "Lead II", "categories": ["soil"], "amount": 19.4}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 12.4}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 12.4}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.17e-19}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 12.4}, {"name": "Lead II", "categories": ["water"], "amount": 12.4}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 495}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.197}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 252}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 9.59}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 21.2}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 21.2}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.086}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.22}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.22}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.0736}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.74}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0272}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.2}, {"name": "Mancozeb", "categories": ["air"], "amount": 47.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2.75}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 1.77}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2.43}, {"name": "Mancozeb", "categories": ["water"], "amount": 2.43}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.00733}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2460}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2460}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2460}, {"name": "Mercury II", "categories": ["air"], "amount": 6590}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 31.1}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 31.1}, {"name": "Mercury II", "categories": ["soil"], "amount": 31.1}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 155}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 155}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.2e-18}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 155}, {"name": "Mercury II", "categories": ["water"], "amount": 155}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.53}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 75}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1530}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.15}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.15}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.15}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.159}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 155}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 155}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 155}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 157}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 157}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 9.31}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 9.31}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2590}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2590}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2590}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2680}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2680}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 2470}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 2470}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1400}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 2470}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2470}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 21}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 21}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Methanol", "categories": ["air"], "amount": 0.156}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.156}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000666}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water"], "amount": 0.0194}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.22}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 456}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.72}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 9.35}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water"], "amount": 15.4}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00853}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 89.8}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.11}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.342}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.43}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water"], "amount": 3.37}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.7}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 2.42}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.9}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 12.7}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 0.695}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 1.18}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 1.18}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 77.5}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 9.48}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 64.7}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 64.7}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.7}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 210}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 210}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 95.7}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 95.7}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 95.7}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 26.4}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 26.4}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 3.87e-19}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 26.4}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 26.4}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.00213}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.00684}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 213}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.514}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Naphthalene", "categories": ["air"], "amount": 11}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.03}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.206}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 1.62}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62}, {"name": "Nickel II", "categories": ["air"], "amount": 5.85}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.85}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.00406}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.412}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.412}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.412}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 0.655}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 0.655}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 9.23e-21}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.655}, {"name": "Nickel II", "categories": ["water"], "amount": 0.655}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.2}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.2}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0148}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 22}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 0.0138}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.172}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.05}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.6}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0604}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 8.97}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.71}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.162}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 2.52}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Permethrin", "categories": ["water"], "amount": 10.8}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "Phenol", "categories": ["air"], "amount": 0.493}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.493}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.000864}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.315}, {"name": "Phenol", "categories": ["water"], "amount": 0.315}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 734}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 734}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.3}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 34.6}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 17.8}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 602}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00317}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.181}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.00406}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.251}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 23.2}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 9.61}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.428}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 6.83}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 22.5}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.399}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 27.9}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.881}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.385}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.477}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1.87}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.4}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 7.72}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water"], "amount": 36.6}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 3.2}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 2.74}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water"], "amount": 14.8}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 7.19}, {"name": "Pyrene", "categories": ["air"], "amount": 0.624}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 11.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.342}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 0.573}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 31.1}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 31.1}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 14.4}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.531}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.608}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.492}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 10.9}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 560}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 560}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 560}, {"name": "Silver I", "categories": ["air"], "amount": 2040}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 2040}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 105}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 105}, {"name": "Silver I", "categories": ["soil"], "amount": 105}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 66.3}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 66.3}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.21e-18}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 66.3}, {"name": "Silver I", "categories": ["water"], "amount": 66.3}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 418}, {"name": "Simazine", "categories": ["air"], "amount": 344}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 17.3}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 19.3}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 33.5}, {"name": "Simazine", "categories": ["water"], "amount": 33.5}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air"], "amount": 0.855}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.855}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.0046}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water"], "amount": 0.0211}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 32}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 5.51}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water"], "amount": 17.1}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 24.4}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.47}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.52}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1860}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1560}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 62.3}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 280}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 959}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 0.0552}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 342}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 6.15}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 11.9}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 186}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 186}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 186}, {"name": "Thallium I", "categories": ["air"], "amount": 395}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 395}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 40.6}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1030}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1030}, {"name": "Thallium I", "categories": ["soil"], "amount": 1030}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 136}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 136}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.77e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 136}, {"name": "Thallium I", "categories": ["water"], "amount": 136}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air"], "amount": 26.8}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.72}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.72}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 7.5}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.67}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 4.65}, {"name": "Thiodicarb", "categories": ["water"], "amount": 4.65}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.3}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 15.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.905}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.33}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.91}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.91}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 5.23}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23}, {"name": "Thiram", "categories": ["air"], "amount": 11.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.0675}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.208}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 4.91}, {"name": "Thiram", "categories": ["water"], "amount": 4.91}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067}, {"name": "Toluene", "categories": ["air"], "amount": 0.858}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.858}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0184}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water"], "amount": 0.0714}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.318}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.14}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.54}, {"name": "Triallate", "categories": ["air"], "amount": 9.42}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.76}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 72.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 44}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 158}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 144}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.78}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 17.9}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 15.8}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.16}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.7}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 128}, {"name": "Trifluralin", "categories": ["water"], "amount": 128}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.38}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 16.6}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.6}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.6}, {"name": "Vanadium V", "categories": ["air"], "amount": 59}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 59}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.178}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 4.1}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 4.1}, {"name": "Vanadium V", "categories": ["soil"], "amount": 4.1}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 27.6}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 27.6}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.58e-19}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 27.6}, {"name": "Vanadium V", "categories": ["water"], "amount": 27.6}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.68}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air"], "amount": 1.58}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0182}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water"], "amount": 0.0692}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.926}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 8.94}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.94}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.94}, {"name": "Zinc II", "categories": ["air"], "amount": 31.6}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 31.6}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0678}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.758}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.758}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.758}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 24.6}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 24.6}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 8.17e-20}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 24.6}, {"name": "Zinc II", "categories": ["water"], "amount": 24.6}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5.95}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00619}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.027}]}, {"unit": "kg Co-60-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "ionising radiation", "ionising radiation potential (IRP)"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 3.05e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 3.05e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 0.00043}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 3.05e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 3.05e-05}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 54.5}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 0.00336}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 0.00336}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 0.0473}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 0.00336}, {"name": "Americium-241", "categories": ["water"], "amount": 0.00336}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0491}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.000891}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00473}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water"], "amount": 8.64}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 9.09}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 9.09}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00582}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 9.09}, {"name": "Caesium-137", "categories": ["water"], "amount": 9.09}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.00345}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 0.00345}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0273}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.00345}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.00345}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00245}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.64}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 4.07e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 4.07e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.6e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 4.07e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 4.07e-05}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["air"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 0.252}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 0.252}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 0.0222}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 0.252}, {"name": "Iodine-129", "categories": ["water"], "amount": 0.252}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.03}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 6.03e-06}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 6.03e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 6.03e-06}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0191}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 5.62e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 5.62e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.62e-06}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00145}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.000236}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water"], "amount": 0.03}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["air"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.0127}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 0.0127}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000455}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.0127}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.0127}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["air"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 0.00755}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 0.00755}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 7.82e-05}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 0.00755}, {"name": "Technetium-99", "categories": ["water"], "amount": 0.00755}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 0.00755}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 0.00755}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 7.82e-05}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 0.00755}, {"name": "Technetium-99m", "categories": ["water"], "amount": 0.00755}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 8.55e-06}]}, {"unit": "m2*a crop-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "land use", "agricultural land occupation (LOP)"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -36.75}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}]}, {"unit": "kg Cu-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "material resources: metals/minerals", "surplus ore potential (SOP)"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.101}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.101}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1.03}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0889}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0136}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.614}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 84.2}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 2.77}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0777}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.232}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.232}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 19000}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 19000}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 19000}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.0557}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0557}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.221}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.00607}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00585}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 4.01}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4.01}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0307}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.0089}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 92.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 92.8}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 389}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.134}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.00144}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 108}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 115}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 115}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 6.51}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 6.51}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0382}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0382}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0382}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.483}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.483}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.483}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.483}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 2.42}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 2.42}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.614}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.614}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.614}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.614}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.0376}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0376}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 8.37}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 4.46}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 6370}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6370}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6370}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6370}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00508}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 13800}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 13800}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 13800}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 13800}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00308}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 9730}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 9730}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 672}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 672}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 9730}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 9730}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 12.8}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.318}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 2.42}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0576}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.0234}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 56.6}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 56.6}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 18.5}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 18.5}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 1630}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.689}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.689}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.689}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 5.23}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.23}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.689}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 7.19}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 35.8}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 3.49}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.116}]}, {"unit": "kg CFC-11-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "ozone depletion", "ozone depletion potential (ODPinfinite)"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.007}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.007}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.007}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.007}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.396}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.396}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.504}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.504}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.275}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.275}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.165}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.165}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.165}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.165}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.165}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.111}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.111}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.111}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.111}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.111}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.025}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.025}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.049}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.049}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.049}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.049}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.032}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.032}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.032}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.032}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.032}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0129}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0129}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.65}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.65}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 15.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 15.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 15.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 11.8}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.8}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.8}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 11.8}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 11.8}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.085}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.085}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.421}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.421}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.2}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.2}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg PM2.5-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "particulate matter formation", "particulate matter formation potential (PMFP)"], "exchanges": [{"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "photochemical oxidant formation: human health", "photochemical oxidant formation potential: humans (HOFP)"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.345}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.131}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.131}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.149}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0653}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.199}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0326}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0326}, {"name": "Acetone", "categories": ["air"], "amount": 0.0218}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Acrolein", "categories": ["air"], "amount": 0.196}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.174}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.0689}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.0689}, {"name": "Benzene", "categories": ["air"], "amount": 0.0363}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0363}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.167}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Butadiene", "categories": ["air"], "amount": 0.323}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.112}, {"name": "Butane", "categories": ["air"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.112}, {"name": "Butanol", "categories": ["air"], "amount": 0.189}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.228}, {"name": "Butene", "categories": ["air"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.228}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.0943}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0943}, {"name": "Cumene", "categories": ["air"], "amount": 0.116}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.102}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.167}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Ethane", "categories": ["air"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00363}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00363}, {"name": "Ethanol", "categories": ["air"], "amount": 0.123}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.123}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0689}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.363}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.134}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.134}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.167}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0109}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Heptane", "categories": ["air"], "amount": 0.127}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.127}, {"name": "Hexane", "categories": ["air"], "amount": 0.145}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.163}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.163}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0266}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0266}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Isoprene", "categories": ["air"], "amount": 0.413}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.413}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0109}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00363}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Methanol", "categories": ["air"], "amount": 0.0471}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.116}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0399}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0399}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.145}, {"name": "Pentane", "categories": ["air"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Phenol", "categories": ["air"], "amount": -0.0181}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0181}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.261}, {"name": "Propanal", "categories": ["air"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.261}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0508}, {"name": "Propane", "categories": ["air"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0508}, {"name": "Propanol", "categories": ["air"], "amount": 0.174}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.424}, {"name": "Propene", "categories": ["air"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.424}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0471}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Styrene", "categories": ["air"], "amount": 0.0181}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0181}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00363}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Toluene", "categories": ["air"], "amount": 0.16}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.105}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.312}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.312}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.283}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.283}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "photochemical oxidant formation: terrestrial ecosystems", "photochemical oxidant formation potential: ecosystems (EOFP)"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.555}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.21}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.21}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.479}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.105}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.304}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.321}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0526}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0526}, {"name": "Acetone", "categories": ["air"], "amount": 0.0351}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "Acrolein", "categories": ["air"], "amount": 0.316}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.316}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.281}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.111}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.111}, {"name": "Benzene", "categories": ["air"], "amount": 0.0585}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0585}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.269}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Butadiene", "categories": ["air"], "amount": 0.52}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.52}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.181}, {"name": "Butane", "categories": ["air"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.181}, {"name": "Butanol", "categories": ["air"], "amount": 0.304}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Butene", "categories": ["air"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.152}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Cumene", "categories": ["air"], "amount": 0.187}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.164}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.269}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.0468}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00585}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00585}, {"name": "Ethanol", "categories": ["air"], "amount": 0.199}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.111}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.111}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.585}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.216}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.216}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.269}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0175}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Heptane", "categories": ["air"], "amount": 0.205}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.205}, {"name": "Hexane", "categories": ["air"], "amount": 0.234}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.263}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.263}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0429}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Isoprene", "categories": ["air"], "amount": 0.666}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.666}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0175}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00585}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Methanol", "categories": ["air"], "amount": 0.076}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.187}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0643}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0643}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Pentane", "categories": ["air"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Phenol", "categories": ["air"], "amount": -0.0292}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0292}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.421}, {"name": "Propanal", "categories": ["air"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.421}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0818}, {"name": "Propane", "categories": ["air"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0818}, {"name": "Propanol", "categories": ["air"], "amount": 0.281}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.684}, {"name": "Propene", "categories": ["air"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.684}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.076}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Styrene", "categories": ["air"], "amount": 0.0292}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0292}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00585}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Toluene", "categories": ["air"], "amount": 0.257}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.17}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.503}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.503}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.456}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.456}]}, {"unit": "cubic meter", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "water use", "water consumption potential (WCP)"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Water", "categories": ["air"], "amount": 1}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "air", "carbon monoxide"], "exchanges": [{"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "air", "lead"], "exchanges": [{"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Lead II", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "air", "methane"], "exchanges": [{"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "air", "N2O"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "air", "particulates"], "exchanges": [{"name": "Particulate Matter, > 10 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Particulate Matter, > 10 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, > 10 um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, > 10 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, > 10 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "air", "particulates >10 um"], "exchanges": [{"name": "Particulate Matter, > 10 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Particulate Matter, > 10 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, > 10 um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, > 10 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, > 10 um", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "air", "particulates, >2.5 um and <10"], "exchanges": [{"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "air", "zinc"], "exchanges": [{"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Zinc II", "categories": ["air"], "amount": 1}]}, {"unit": "kilo Becquerel", "name": ["selected LCI results, additional", "air, radioactive", "actinides"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Curium alpha", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Curium-242", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Curium-244", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Neptunium-237", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Plutonium-241", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Protactinium-234", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Thorium-228", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Thorium-232", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Thorium-234", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Americium-241", "categories": ["air"], "amount": 1}, {"name": "Curium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Curium alpha", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Curium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Curium alpha", "categories": ["air"], "amount": 1}, {"name": "Curium-242", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Curium-242", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Curium-242", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Curium-242", "categories": ["air"], "amount": 1}, {"name": "Curium-244", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Curium-244", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Curium-244", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Curium-244", "categories": ["air"], "amount": 1}, {"name": "Neptunium-237", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Neptunium-237", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Neptunium-237", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Neptunium-237", "categories": ["air"], "amount": 1}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Plutonium-238", "categories": ["air"], "amount": 1}, {"name": "Plutonium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Plutonium-241", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Plutonium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Plutonium-241", "categories": ["air"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 1}, {"name": "Protactinium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Protactinium-234", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Protactinium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Protactinium-234", "categories": ["air"], "amount": 1}, {"name": "Thorium-228", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Thorium-228", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Thorium-228", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Thorium-228", "categories": ["air"], "amount": 1}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Thorium-230", "categories": ["air"], "amount": 1}, {"name": "Thorium-232", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Thorium-232", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Thorium-232", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Thorium-232", "categories": ["air"], "amount": 1}, {"name": "Thorium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Thorium-234", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Thorium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Thorium-234", "categories": ["air"], "amount": 1}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium alpha", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium alpha", "categories": ["air"], "amount": 1}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-234", "categories": ["air"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-235", "categories": ["air"], "amount": 1}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-238", "categories": ["air"], "amount": 1}]}, {"unit": "kilo Becquerel", "name": ["selected LCI results, additional", "air, radioactive", "aerosole"], "exchanges": [{"name": "Aerosols, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Antimony-124", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Antimony-125", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Barium-140", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cerium-141", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cerium-144", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chromium-51", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-57", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Iodine-135", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Iron-59", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Manganese-54", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Niobium-95", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Potassium-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Promethium-147", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Silver-110", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Strontium-89", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Zinc-65", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Zirconium-95", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air"], "amount": 1}, {"name": "Antimony-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Antimony-124", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Antimony-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Antimony-124", "categories": ["air"], "amount": 1}, {"name": "Antimony-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Antimony-125", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Antimony-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Antimony-125", "categories": ["air"], "amount": 1}, {"name": "Barium-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Barium-140", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Barium-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Barium-140", "categories": ["air"], "amount": 1}, {"name": "Cerium-141", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cerium-141", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cerium-141", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cerium-141", "categories": ["air"], "amount": 1}, {"name": "Cerium-144", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cerium-144", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cerium-144", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cerium-144", "categories": ["air"], "amount": 1}, {"name": "Chromium-51", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chromium-51", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chromium-51", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chromium-51", "categories": ["air"], "amount": 1}, {"name": "Cobalt-57", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-57", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cobalt-57", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-57", "categories": ["air"], "amount": 1}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-58", "categories": ["air"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Iodine-129", "categories": ["air"], "amount": 1}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Iodine-131", "categories": ["air"], "amount": 1}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Iodine-133", "categories": ["air"], "amount": 1}, {"name": "Iodine-135", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Iodine-135", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Iodine-135", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Iodine-135", "categories": ["air"], "amount": 1}, {"name": "Iron-59", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Iron-59", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Iron-59", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Iron-59", "categories": ["air"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["air"], "amount": 1}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Lead-210", "categories": ["air"], "amount": 1}, {"name": "Manganese-54", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Manganese-54", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Manganese-54", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Manganese-54", "categories": ["air"], "amount": 1}, {"name": "Niobium-95", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Niobium-95", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Niobium-95", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Niobium-95", "categories": ["air"], "amount": 1}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Polonium-210", "categories": ["air"], "amount": 1}, {"name": "Potassium-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Potassium-40", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Potassium-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Potassium-40", "categories": ["air"], "amount": 1}, {"name": "Promethium-147", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Promethium-147", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Promethium-147", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Promethium-147", "categories": ["air"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["air"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 1}, {"name": "Silver-110", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Silver-110", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Silver-110", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Silver-110", "categories": ["air"], "amount": 1}, {"name": "Strontium-89", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Strontium-89", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Strontium-89", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Strontium-89", "categories": ["air"], "amount": 1}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Strontium-90", "categories": ["air"], "amount": 1}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Technetium-99", "categories": ["air"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["air"], "amount": 1}, {"name": "Zinc-65", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Zinc-65", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Zinc-65", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Zinc-65", "categories": ["air"], "amount": 1}, {"name": "Zirconium-95", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Zirconium-95", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Zirconium-95", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Zirconium-95", "categories": ["air"], "amount": 1}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Caesium-134", "categories": ["air"], "amount": 1}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Caesium-137", "categories": ["air"], "amount": 1}]}, {"unit": "kilo Becquerel", "name": ["selected LCI results, additional", "air, radioactive", "noble gas"], "exchanges": [{"name": "Argon-41", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Krypton-85m", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Krypton-87", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Krypton-88", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Krypton-89", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xenon-131m", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xenon-133m", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xenon-135", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xenon-135m", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xenon-137", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xenon-138", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Argon-41", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Argon-41", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Argon-41", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Argon-41", "categories": ["air"], "amount": 1}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon-14", "categories": ["air"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Krypton-85", "categories": ["air"], "amount": 1}, {"name": "Krypton-85m", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Krypton-85m", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Krypton-85m", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Krypton-85m", "categories": ["air"], "amount": 1}, {"name": "Krypton-87", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Krypton-87", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Krypton-87", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Krypton-87", "categories": ["air"], "amount": 1}, {"name": "Krypton-88", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Krypton-88", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Krypton-88", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Krypton-88", "categories": ["air"], "amount": 1}, {"name": "Krypton-89", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Krypton-89", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Krypton-89", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Krypton-89", "categories": ["air"], "amount": 1}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1}, {"name": "Xenon-131m", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Xenon-131m", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Xenon-131m", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Xenon-131m", "categories": ["air"], "amount": 1}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Xenon-133", "categories": ["air"], "amount": 1}, {"name": "Xenon-133m", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Xenon-133m", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Xenon-133m", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Xenon-133m", "categories": ["air"], "amount": 1}, {"name": "Xenon-135", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Xenon-135", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Xenon-135", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Xenon-135", "categories": ["air"], "amount": 1}, {"name": "Xenon-135m", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Xenon-135m", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Xenon-135m", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Xenon-135m", "categories": ["air"], "amount": 1}, {"name": "Xenon-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Xenon-137", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Xenon-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Xenon-137", "categories": ["air"], "amount": 1}, {"name": "Xenon-138", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Xenon-138", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Xenon-138", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Xenon-138", "categories": ["air"], "amount": 1}]}, {"unit": "kilo Becquerel", "name": ["selected LCI results, additional", "air, radioactive", "radon (+ radium)"], "exchanges": [{"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Radium-228", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Radon-220", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Radium-226", "categories": ["air"], "amount": 1}, {"name": "Radium-228", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Radium-228", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Radium-228", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Radium-228", "categories": ["air"], "amount": 1}, {"name": "Radon-220", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Radon-220", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Radon-220", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Radon-220", "categories": ["air"], "amount": 1}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Radon-222", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "resource", "carbon, biogenic, fixed"], "exchanges": [{"name": "Carbon dioxide, in air", "categories": ["natural resource", "in air"], "amount": 0.27273}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": -0.27273}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": -0.42857}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": -0.75}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.27273}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": -0.27273}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.27273}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": -0.27273}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.42857}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": -0.42857}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.42857}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": -0.42857}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.75}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": -0.75}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.75}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": -0.75}, {"name": "Carbon dioxide, non-fossil, resource correction", "categories": ["natural resource", "in air"], "amount": 0.27273}]}, {"unit": "cubic meter", "name": ["selected LCI results, additional", "resource", "water"], "exchanges": [{"name": "Water, lake", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, river", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, salt, ocean", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, salt, sole", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, well, in ground", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, in air", "categories": ["natural resource", "in air"], "amount": 1}]}, {"unit": "megajoule", "name": ["selected LCI results, additional", "total", "heat, waste"], "exchanges": [{"name": "Heat, waste", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Heat, waste", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Heat, waste", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Heat, waste", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Heat, waste", "categories": ["air"], "amount": 1}, {"name": "Heat, waste", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Heat, waste", "categories": ["soil", "forestry"], "amount": 1}, {"name": "Heat, waste", "categories": ["soil", "industrial"], "amount": 1}, {"name": "Heat, waste", "categories": ["soil"], "amount": 1}, {"name": "Heat, waste", "categories": ["water", "ground-"], "amount": 1}, {"name": "Heat, waste", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Heat, waste", "categories": ["water", "ocean"], "amount": 1}, {"name": "Heat, waste", "categories": ["water", "surface water"], "amount": 1}, {"name": "Heat, waste", "categories": ["water"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "total", "oils, unspecified"], "exchanges": [{"name": "Oils, non-fossil", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Oils, non-fossil", "categories": ["soil", "forestry"], "amount": 1}, {"name": "Oils, non-fossil", "categories": ["soil", "industrial"], "amount": 1}, {"name": "Oils, non-fossil", "categories": ["soil"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1}]}, {"unit": "kilo Becquerel", "name": ["selected LCI results, additional", "water, radioactive", "actinides"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 1}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 1}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 1}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 1}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 1}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 1}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 1}, {"name": "Americium-241", "categories": ["water"], "amount": 1}, {"name": "Curium alpha", "categories": ["water", "ground-"], "amount": 1}, {"name": "Curium alpha", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 1}, {"name": "Curium alpha", "categories": ["water", "surface water"], "amount": 1}, {"name": "Curium alpha", "categories": ["water"], "amount": 1}, {"name": "Neptunium-237", "categories": ["water", "ground-"], "amount": 1}, {"name": "Neptunium-237", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Neptunium-237", "categories": ["water", "ocean"], "amount": 1}, {"name": "Neptunium-237", "categories": ["water", "surface water"], "amount": 1}, {"name": "Neptunium-237", "categories": ["water"], "amount": 1}, {"name": "Plutonium-241", "categories": ["water", "ground-"], "amount": 1}, {"name": "Plutonium-241", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Plutonium-241", "categories": ["water", "ocean"], "amount": 1}, {"name": "Plutonium-241", "categories": ["water", "surface water"], "amount": 1}, {"name": "Plutonium-241", "categories": ["water"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["water", "ground-"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["water", "surface water"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["water"], "amount": 1}, {"name": "Protactinium-234", "categories": ["water", "ground-"], "amount": 1}, {"name": "Protactinium-234", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Protactinium-234", "categories": ["water", "ocean"], "amount": 1}, {"name": "Protactinium-234", "categories": ["water", "surface water"], "amount": 1}, {"name": "Protactinium-234", "categories": ["water"], "amount": 1}, {"name": "Thorium-228", "categories": ["water", "ground-"], "amount": 1}, {"name": "Thorium-228", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Thorium-228", "categories": ["water", "ocean"], "amount": 1}, {"name": "Thorium-228", "categories": ["water", "surface water"], "amount": 1}, {"name": "Thorium-228", "categories": ["water"], "amount": 1}, {"name": "Thorium-230", "categories": ["water", "ground-"], "amount": 1}, {"name": "Thorium-230", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Thorium-230", "categories": ["water", "ocean"], "amount": 1}, {"name": "Thorium-230", "categories": ["water", "surface water"], "amount": 1}, {"name": "Thorium-230", "categories": ["water"], "amount": 1}, {"name": "Thorium-232", "categories": ["water", "ground-"], "amount": 1}, {"name": "Thorium-232", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Thorium-232", "categories": ["water", "ocean"], "amount": 1}, {"name": "Thorium-232", "categories": ["water", "surface water"], "amount": 1}, {"name": "Thorium-232", "categories": ["water"], "amount": 1}, {"name": "Thorium-234", "categories": ["water", "ground-"], "amount": 1}, {"name": "Thorium-234", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Thorium-234", "categories": ["water", "ocean"], "amount": 1}, {"name": "Thorium-234", "categories": ["water", "surface water"], "amount": 1}, {"name": "Thorium-234", "categories": ["water"], "amount": 1}, {"name": "Uranium alpha", "categories": ["water", "ground-"], "amount": 1}, {"name": "Uranium alpha", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Uranium alpha", "categories": ["water", "ocean"], "amount": 1}, {"name": "Uranium alpha", "categories": ["water", "surface water"], "amount": 1}, {"name": "Uranium alpha", "categories": ["water"], "amount": 1}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 1}, {"name": "Uranium-234", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 1}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 1}, {"name": "Uranium-234", "categories": ["water"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 1}, {"name": "Uranium-235", "categories": ["water"], "amount": 1}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 1}, {"name": "Uranium-238", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 1}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 1}, {"name": "Uranium-238", "categories": ["water"], "amount": 1}]}, {"unit": "kilo Becquerel", "name": ["selected LCI results, additional", "water, radioactive", "nuclides"], "exchanges": [{"name": "Antimony-122", "categories": ["water", "ground-"], "amount": 1}, {"name": "Cadmium-109", "categories": ["water", "ground-"], "amount": 1}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 1}, {"name": "Molybdenum-99", "categories": ["water", "ground-"], "amount": 1}, {"name": "Sodium-24", "categories": ["water", "ground-"], "amount": 1}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 1}, {"name": "Tellurium-132", "categories": ["water", "ground-"], "amount": 1}, {"name": "Yttrium-90", "categories": ["water", "ground-"], "amount": 1}, {"name": "Antimony-122", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Antimony-122", "categories": ["water", "ocean"], "amount": 1}, {"name": "Antimony-122", "categories": ["water", "surface water"], "amount": 1}, {"name": "Antimony-122", "categories": ["water"], "amount": 1}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 1}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 1}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 1}, {"name": "Antimony-124", "categories": ["water"], "amount": 1}, {"name": "Antimony-125", "categories": ["water", "ground-"], "amount": 1}, {"name": "Antimony-125", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 1}, {"name": "Antimony-125", "categories": ["water"], "amount": 1}, {"name": "Barium-140", "categories": ["water", "ground-"], "amount": 1}, {"name": "Barium-140", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Barium-140", "categories": ["water", "ocean"], "amount": 1}, {"name": "Barium-140", "categories": ["water", "surface water"], "amount": 1}, {"name": "Barium-140", "categories": ["water"], "amount": 1}, {"name": "Cadmium-109", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Cadmium-109", "categories": ["water", "ocean"], "amount": 1}, {"name": "Cadmium-109", "categories": ["water", "surface water"], "amount": 1}, {"name": "Cadmium-109", "categories": ["water"], "amount": 1}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 1}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 1}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 1}, {"name": "Carbon-14", "categories": ["water"], "amount": 1}, {"name": "Cerium-141", "categories": ["water", "ground-"], "amount": 1}, {"name": "Cerium-141", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Cerium-141", "categories": ["water", "ocean"], "amount": 1}, {"name": "Cerium-141", "categories": ["water", "surface water"], "amount": 1}, {"name": "Cerium-141", "categories": ["water"], "amount": 1}, {"name": "Cerium-144", "categories": ["water", "ground-"], "amount": 1}, {"name": "Cerium-144", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Cerium-144", "categories": ["water", "ocean"], "amount": 1}, {"name": "Cerium-144", "categories": ["water", "surface water"], "amount": 1}, {"name": "Cerium-144", "categories": ["water"], "amount": 1}, {"name": "Chromium-51", "categories": ["water", "ground-"], "amount": 1}, {"name": "Chromium-51", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Chromium-51", "categories": ["water", "ocean"], "amount": 1}, {"name": "Chromium-51", "categories": ["water", "surface water"], "amount": 1}, {"name": "Chromium-51", "categories": ["water"], "amount": 1}, {"name": "Cobalt-57", "categories": ["water", "ground-"], "amount": 1}, {"name": "Cobalt-57", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Cobalt-57", "categories": ["water", "ocean"], "amount": 1}, {"name": "Cobalt-57", "categories": ["water", "surface water"], "amount": 1}, {"name": "Cobalt-57", "categories": ["water"], "amount": 1}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 1}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 1}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 1}, {"name": "Cobalt-58", "categories": ["water"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water"], "amount": 1}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 1}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 1}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 1}, {"name": "Iodine-129", "categories": ["water"], "amount": 1}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 1}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 1}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 1}, {"name": "Iodine-131", "categories": ["water"], "amount": 1}, {"name": "Iodine-133", "categories": ["water", "ground-"], "amount": 1}, {"name": "Iodine-133", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Iodine-133", "categories": ["water", "ocean"], "amount": 1}, {"name": "Iodine-133", "categories": ["water", "surface water"], "amount": 1}, {"name": "Iodine-133", "categories": ["water"], "amount": 1}, {"name": "Iron-59", "categories": ["water", "ground-"], "amount": 1}, {"name": "Iron-59", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Iron-59", "categories": ["water", "ocean"], "amount": 1}, {"name": "Iron-59", "categories": ["water", "surface water"], "amount": 1}, {"name": "Iron-59", "categories": ["water"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["water", "ground-"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["water", "ocean"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["water", "surface water"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["water"], "amount": 1}, {"name": "Lead-210", "categories": ["water", "ground-"], "amount": 1}, {"name": "Lead-210", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Lead-210", "categories": ["water", "ocean"], "amount": 1}, {"name": "Lead-210", "categories": ["water", "surface water"], "amount": 1}, {"name": "Lead-210", "categories": ["water"], "amount": 1}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1}, {"name": "Manganese-54", "categories": ["water"], "amount": 1}, {"name": "Manganese-55", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 1}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 1}, {"name": "Manganese-55", "categories": ["water"], "amount": 1}, {"name": "Molybdenum-99", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Molybdenum-99", "categories": ["water", "ocean"], "amount": 1}, {"name": "Molybdenum-99", "categories": ["water", "surface water"], "amount": 1}, {"name": "Molybdenum-99", "categories": ["water"], "amount": 1}, {"name": "Niobium-95", "categories": ["water", "ground-"], "amount": 1}, {"name": "Niobium-95", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Niobium-95", "categories": ["water", "ocean"], "amount": 1}, {"name": "Niobium-95", "categories": ["water", "surface water"], "amount": 1}, {"name": "Niobium-95", "categories": ["water"], "amount": 1}, {"name": "Polonium-210", "categories": ["water", "ground-"], "amount": 1}, {"name": "Polonium-210", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Polonium-210", "categories": ["water", "ocean"], "amount": 1}, {"name": "Polonium-210", "categories": ["water", "surface water"], "amount": 1}, {"name": "Polonium-210", "categories": ["water"], "amount": 1}, {"name": "Potassium-40", "categories": ["water", "ground-"], "amount": 1}, {"name": "Potassium-40", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Potassium-40", "categories": ["water", "ocean"], "amount": 1}, {"name": "Potassium-40", "categories": ["water", "surface water"], "amount": 1}, {"name": "Potassium-40", "categories": ["water"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["water", "ground-"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["water", "ocean"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["water", "surface water"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["water"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 1}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 1}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 1}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 1}, {"name": "Silver-110", "categories": ["water"], "amount": 1}, {"name": "Sodium-24", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Sodium-24", "categories": ["water", "ocean"], "amount": 1}, {"name": "Sodium-24", "categories": ["water", "surface water"], "amount": 1}, {"name": "Sodium-24", "categories": ["water"], "amount": 1}, {"name": "Strontium-89", "categories": ["water", "ground-"], "amount": 1}, {"name": "Strontium-89", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Strontium-89", "categories": ["water", "ocean"], "amount": 1}, {"name": "Strontium-89", "categories": ["water", "surface water"], "amount": 1}, {"name": "Strontium-89", "categories": ["water"], "amount": 1}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 1}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 1}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 1}, {"name": "Strontium-90", "categories": ["water"], "amount": 1}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 1}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 1}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 1}, {"name": "Technetium-99", "categories": ["water"], "amount": 1}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 1}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 1}, {"name": "Technetium-99m", "categories": ["water"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["water", "ground-"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["water", "ocean"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["water", "surface water"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["water"], "amount": 1}, {"name": "Tellurium-132", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Tellurium-132", "categories": ["water", "ocean"], "amount": 1}, {"name": "Tellurium-132", "categories": ["water", "surface water"], "amount": 1}, {"name": "Tellurium-132", "categories": ["water"], "amount": 1}, {"name": "Yttrium-90", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Yttrium-90", "categories": ["water", "ocean"], "amount": 1}, {"name": "Yttrium-90", "categories": ["water", "surface water"], "amount": 1}, {"name": "Yttrium-90", "categories": ["water"], "amount": 1}, {"name": "Zinc-65", "categories": ["water", "ground-"], "amount": 1}, {"name": "Zinc-65", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Zinc-65", "categories": ["water", "ocean"], "amount": 1}, {"name": "Zinc-65", "categories": ["water", "surface water"], "amount": 1}, {"name": "Zinc-65", "categories": ["water"], "amount": 1}, {"name": "Zirconium-95", "categories": ["water", "ground-"], "amount": 1}, {"name": "Zirconium-95", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Zirconium-95", "categories": ["water", "ocean"], "amount": 1}, {"name": "Zirconium-95", "categories": ["water", "surface water"], "amount": 1}, {"name": "Zirconium-95", "categories": ["water"], "amount": 1}, {"name": "Caesium-136", "categories": ["water", "ground-"], "amount": 1}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 1}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 1}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1}, {"name": "Caesium-134", "categories": ["water"], "amount": 1}, {"name": "Caesium-136", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Caesium-136", "categories": ["water", "ocean"], "amount": 1}, {"name": "Caesium-136", "categories": ["water", "surface water"], "amount": 1}, {"name": "Caesium-136", "categories": ["water"], "amount": 1}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 1}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 1}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 1}, {"name": "Caesium-137", "categories": ["water"], "amount": 1}]}, {"unit": "kilo Becquerel", "name": ["selected LCI results, additional", "water, radioactive", "radium"], "exchanges": [{"name": "Radium-224", "categories": ["water", "ground-"], "amount": 1}, {"name": "Radium-224", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Radium-224", "categories": ["water", "ocean"], "amount": 1}, {"name": "Radium-224", "categories": ["water", "surface water"], "amount": 1}, {"name": "Radium-224", "categories": ["water"], "amount": 1}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 1}, {"name": "Radium-226", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 1}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 1}, {"name": "Radium-226", "categories": ["water"], "amount": 1}, {"name": "Radium-228", "categories": ["water", "ground-"], "amount": 1}, {"name": "Radium-228", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Radium-228", "categories": ["water", "ocean"], "amount": 1}, {"name": "Radium-228", "categories": ["water", "surface water"], "amount": 1}, {"name": "Radium-228", "categories": ["water"], "amount": 1}]}, {"unit": "kilo Becquerel", "name": ["selected LCI results, additional", "water, radioactive", "tritium"], "exchanges": [{"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results", "air", "CO2, fossil"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results", "air", "nitrogen oxides"], "exchanges": [{"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results", "air", "NMVOC"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "2-Aminopropanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "N-Bromoacetamide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "1,4-Butanediol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 1}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "1-Pentene", "categories": ["air"], "amount": 1}, {"name": "2-Aminopropanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "2-Aminopropanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "2-Aminopropanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "2-Aminopropanol", "categories": ["air"], "amount": 1}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "2-Propanol", "categories": ["air"], "amount": 1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetic acid", "categories": ["air"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 1}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetone", "categories": ["air"], "amount": 1}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetonitrile", "categories": ["air"], "amount": 1}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acrolein", "categories": ["air"], "amount": 1}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Aniline", "categories": ["air"], "amount": 1}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Anthranilic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene", "categories": ["air"], "amount": 1}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Butadiene", "categories": ["air"], "amount": 1}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Butane", "categories": ["air"], "amount": 1}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Butanol", "categories": ["air"], "amount": 1}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Butyrolactone", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Butyrolactone", "categories": ["air"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroform", "categories": ["air"], "amount": 1}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cumene", "categories": ["air"], "amount": 1}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cyanoacetic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 1}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Diethylamine", "categories": ["air"], "amount": 1}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dimethyl malonate", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dipropylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane", "categories": ["air"], "amount": 1}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 1}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethanol", "categories": ["air"], "amount": 1}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air"], "amount": 1}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethylamine", "categories": ["air"], "amount": 1}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyne", "categories": ["air"], "amount": 1}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Formamide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Formamide", "categories": ["air"], "amount": 1}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Formic acid", "categories": ["air"], "amount": 1}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Furan", "categories": ["air"], "amount": 1}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Heptane", "categories": ["air"], "amount": 1}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hexamethyldisilizane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 1}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hexane", "categories": ["air"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 1}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Isoprene", "categories": ["air"], "amount": 1}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Lactic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Lactic acid", "categories": ["air"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 1}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 1}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methanesulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 1}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methanol", "categories": ["air"], "amount": 1}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 1}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methyl borate", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methyl borate", "categories": ["air"], "amount": 1}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methyl formate", "categories": ["air"], "amount": 1}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methyl lactate", "categories": ["air"], "amount": 1}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 1}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "m-Xylene", "categories": ["air"], "amount": 1}, {"name": "N-Bromoacetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "N-Bromoacetamide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "N-Bromoacetamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "N-Bromoacetamide", "categories": ["air"], "amount": 1}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "o-Nitrotoluene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 1}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "o-Xylene", "categories": ["air"], "amount": 1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Paraffins", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Paraffins", "categories": ["air"], "amount": 1}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 1}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol", "categories": ["air"], "amount": 1}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Propanal", "categories": ["air"], "amount": 1}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Propane", "categories": ["air"], "amount": 1}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Propanol", "categories": ["air"], "amount": 1}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Propene", "categories": ["air"], "amount": 1}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Propionic acid", "categories": ["air"], "amount": 1}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Propylamine", "categories": ["air"], "amount": 1}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Styrene", "categories": ["air"], "amount": 1}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Terpenes", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Terpenes", "categories": ["air"], "amount": 1}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Toluene", "categories": ["air"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Trimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Xylene", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Butene", "categories": ["air"], "amount": 1}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results", "air", "particulates, < 2.5 um"], "exchanges": [{"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results", "air", "sulphur dioxide"], "exchanges": [{"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}]}, {"unit": "square meter-year", "name": ["selected LCI results", "resource", "land occupation"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, lake, artificial", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, river, artificial", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, river, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, seabed, infrastructure", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, seabed, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, seabed, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results", "soil", "cadmium"], "exchanges": [{"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results", "water", "BOD"], "exchanges": [{"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 1}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ocean"], "amount": 1}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 1}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 1}]}, {"unit": "kg SO2-Eq", "name": ["TRACI v2.1 no LT", "acidification no LT", "acidification potential (AP) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.88}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 0.88}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.6}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 1.88}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 0.98}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "Ammonia", "categories": ["air"], "amount": 1.88}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.88}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.88}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.6}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 1.88}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.98}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.98}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 0.98}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.51}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 0.88}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.7}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.51}]}, {"unit": "kg CO2-Eq", "name": ["TRACI v2.1 no LT", "climate change no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 31}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1430}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 146}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4470}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 725}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 124}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2310}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 77}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 609}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7370}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3500}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1890}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7140}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1810}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 14400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.7}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10900}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 151}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 675}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 25}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 13}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 25}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1400}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7390}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4750}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14800}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17200}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 22800}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 31}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31}, {"name": "Chloroform", "categories": ["air"], "amount": 31}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1430}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1430}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 146}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 146}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 146}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4470}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4470}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4470}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 725}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 725}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 725}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 124}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 124}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2310}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2310}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2310}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 77}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 77}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 77}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 609}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 609}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 609}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7370}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7370}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7370}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3500}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 25}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 25}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1890}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1890}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1890}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7140}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7140}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7140}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1810}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 14400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 14400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.7}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10900}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10900}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10900}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 151}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 151}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 151}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 675}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 675}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 675}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 25}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25}, {"name": "Methane, fossil", "categories": ["air"], "amount": 25}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1400}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1400}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1400}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7390}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7390}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7390}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4750}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4750}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4750}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14800}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 22800}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22800}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 22800}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9160}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 25}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 25}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 25}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6130}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6130}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6130}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 10000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6130}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}]}, {"unit": "CTUe", "name": ["TRACI v2.1 no LT", "ecotoxicity: freshwater no LT", "ecotoxicity: freshwater no LT"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 0.8775848512654951}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.2138324120021953}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 181.9075712591964}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.2015005445608996}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.08050924933313827}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.254007818655599}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 14.57226883990429}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.02057192429268348}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 44.86884533105171}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3.463136417313835}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 252.348005989373}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.2884053887747148}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.789914178245758}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 10.51595427132834}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 7610.914674467282}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.07926608118214395}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.7429286993574472}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 133.5325887123976}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 8495.54699383616}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 104.6451854713886}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 14.54163513494238}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 354.9073927687746}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9281.126560757553}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 11852.49487695412}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 589.3948166506241}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 5287.316291691801}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.2768527285333682}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.007767568424149}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 30.64354091462214}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 76174.05877769532}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 49.33836188247038}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 11406.42648689972}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 44920.27412758143}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 819.7509007338075}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 607.2172724431911}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 21.12348480949339}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 358.5619854441121}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 30.75838944840877}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 49.52827455565405}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.142499093507869}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.06418485563858191}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 393.2620781735379}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.02960079052028783}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 626.6336235602134}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 342.0626108851369}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 170.4959917947524}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 200.4375969397927}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1612.809976002705}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 740.7226250635325}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5733.526330050867}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 73.99025029637986}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 1.099457188718305}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 869.047924983249}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 946.6271789803518}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 4.530428514254813}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.1103140502570142}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 28.37379925546212}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 30.31622064749225}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3921.689844317012}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 9712.291690087604}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 10008.3409620644}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 3071.942564795764}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 54554.08444179271}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 243.1041592084075}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 21581.81316640977}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.307478615380807}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 14691.33243836168}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1108.358159155425}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 45.5357521343301}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 758.7943034284156}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.282103029633416}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 86.41294637134375}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 57823.87667902809}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1727.7527485528}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 4.726464448796084}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 517.1464161788688}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 41802.21762058009}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1294.592667971015}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 8.478125631943172}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 585.8376259220464}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 479.7232752068333}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 269.8800361636692}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 8.872703308182082}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1705.944379403221}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.02444359396289091}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 23090.11676949549}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 55247.57233198472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.09072745464528173}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 21165.24040867214}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 4817.156768616905}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.0005956516966396799}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.139142623596091}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 1274.349804666132}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.43105910115}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 242.1677132175915}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 280.3192620671686}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1409.81393453216}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1092.537654248142}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6021.469169790082}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 476.0762071251128}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 295.5913486073072}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 285.0918569313737}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 9193.9391566954}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1534.677339349654}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.001810619293954376}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.1144243155943202}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.05140551479732774}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1921.726540567452}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 169738.0330996828}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 5.522477872065067}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 44.03938064652566}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 1747.275462019705}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 20486.62834899995}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 953.8311664072469}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3621.596791466811}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 14.03134667561534}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 24.1739950254825}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.2448524808191659}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 2567.019241103498}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 142941.0086394065}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.4070434169266591}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 147.2625253918797}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 7450.357907441243}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 365.7065026003539}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4019.340356854712}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 2172.993614418999}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 49.82093402571822}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4538.020496175222}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 23.96460189472988}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 19.07758889487456}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 97.07350922464629}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 112006.4298371197}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 4551.225016771204}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1.195316447320791}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.2049979606873083}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.5761458960501793}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.1517133038329646}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.3648712141456175}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 1911.479851134369}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.1544202484527623}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.7251438323523012}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.02507849558456108}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 560.0652844546449}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 202.5805655846324}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 17345.46423299769}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.1131699171131654}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.2314499196529845}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 15.72316015661396}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.831131324712536}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.007830674545406}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1449.887243649723}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 30.6061907842425}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 199.3503595055195}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 384.0826700760281}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 211651.2754214526}, {"name": "Fenpropimorph", "categories": ["soil", "agricultural"], "amount": 9.828730914507553}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 5875.232765914128}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 813.4815314949818}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 32315.10687636696}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 164.6428088934566}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 264.3378908849616}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 2660.182571676538}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 6137.049375526823}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 10219.64558731738}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 10054.75335824089}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8386.99402138463}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1116.704605603812}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 93.87049959879023}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 21.61353929202834}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 27.62498707813234}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.692326330663305}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.204408879684776}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 10.74402720120148}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.002780419102079553}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 16.82211773606099}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 2834.661658070369}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 103.9440772563542}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 62492.71879037761}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.689789773020432e-05}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000212391668063849}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 26679.15205781307}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 97.81784007514993}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 1035.78217843629}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 210.7204230986387}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1044.859483343018}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.492463680746446e-05}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.1837665662054698}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 9461.352075023213}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 161.2421325372742}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 90.09562197378223}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 133638.4039148149}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 173.6636086815864}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 20981.64182489484}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 11123.30312164782}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1966.815667934147}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 54.97824943249207}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2289.781128695832}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 194.2419717336017}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 266.8531151611314}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 255.2536459219005}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 124.972879067274}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.03475883743778153}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 12065.86764199895}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 225.0913468971116}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 507.8834624303366}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 49.03887088689834}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 23.16387391030672}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5393.370771034089}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 220.3742730046184}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 458.7787841928451}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2770.650280769631}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 11.64994372654887}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.09701543553922609}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.06319133789530491}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.066749126374071}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.2256583397003862}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 14094.53501477213}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5304.732009017731}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.576607505371597}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.627629520066924}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.4648226458486904}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.05772829211702672}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.5293089457355553}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.241083646031596}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1915.770898287329}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6441.702873071918}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 745.4217086790785}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 117.3470372332802}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1267.945098912815}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 4.142297319983587}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 2202.555054811937}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 17.36188717583213}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.02048579141810639}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 5483.033142421826}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 126.204653290908}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 6082.160616288364}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 215.530846628909}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 10.95063499429621}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 831.6182398811038}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 27.44900717314156}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 129.4728531083732}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 21.85550567506843}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5616.262910845849}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1425.345429804084}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 89.98044993017646}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.03214225332310074}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 156.2309363343042}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 83124.28654811245}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2932.025785932296}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.01405462319777067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 781.1036719132035}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 248.7435612489268}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 23.64350250995657}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1194.236920982726}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4549.47374020951}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6039.639430136761}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 477399.9008965495}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5658.102396456461}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6318.72190294688}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 167.1412846504503}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 30.15181210211107}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1116.900694905618}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1357.496732517177}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 349.5500940362426}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 19162.55653687737}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 42.7335814184926}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 453001.2590687819}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 24118.17780320264}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 498.1355562687057}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 6.27104198098271}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.3756669264925559}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 60375.4789920879}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.09329253568558199}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 15.0525551268929}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 310.2595888492157}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 285.0691571123865}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 10.74667451392387}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.09530603937019211}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.304292415914342}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 196.1001637111407}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3507.530003092889}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 11.64309685739373}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.089616392083714}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 35.50249751350101}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 153.002197788183}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 145.5141013045667}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 19.51291094687104}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 937.4124331458914}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3701.972218600403}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 2964.10862813788}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 47.18626876611939}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 80059.48955413517}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 194088.6647216774}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 12634.63998176688}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.5344892610003127}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.01989143055500136}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 5256.022376072727}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 1581.689868003643}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 79.02918388573273}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 449.8637672191722}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.02728675157938322}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1.181066780750985}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 4553.227967332995}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 449.513177271165}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3383.333752775135}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 41283.75821110152}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 4664.853112587411}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 53712.03118447676}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 53644.78974286943}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 14085.29382753462}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 862.9181673768969}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 41325.57198507784}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1025.563114206294}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 1341.206521620715}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 15803.20422885043}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1347.130200589376}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 2978.232970570632}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.01312671903662141}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.189790201702494}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4220.835040030409}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 319.761373813401}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 6056.636505875188}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 175.1738657117861}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 38.44382376434176}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 52549.72510443091}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1315.304465367724}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 41.04517950738141}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.3873282178246341}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 592.5107503648138}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 14604.33432925477}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.02195787684501589}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 163.5021226398655}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 10.24292353353621}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 46228.73229960291}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 112885.975123505}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1059.06456811332}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.01127378886742958}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 16684.36401546222}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 38584.58479284478}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8353349461994352}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8564598987324652}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 0.8564598987324652}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2105961714821809}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2122142917421881}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.2122142917421881}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1987837354452568}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2001421400030782}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.2001421400030782}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07940962035659084}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07995943484486456}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.07995943484486456}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2515462305914359}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2527770246235175}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.2527770246235175}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02097858564911251}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02077525497089799}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.02077525497089799}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.596102855224183}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.029619636269009}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3.029619636269009}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2964306179555203}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2924180033651176}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.2924180033651176}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.24915716949021}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.38255572040928}, {"name": "Acetic acid", "categories": ["air"], "amount": 10.38255572040928}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07903469686530108}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07915038902372251}, {"name": "Acetone", "categories": ["air"], "amount": 0.07915038902372251}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7405705157733234}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7417496075653853}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.7417496075653853}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 108.5753066810495}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 106.610246076219}, {"name": "Acrolein", "categories": ["air"], "amount": 106.610246076219}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.25668631068422}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.8991607228133}, {"name": "Acrylic acid", "categories": ["air"], "amount": 13.8991607228133}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.581812659746831}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29479011408549}, {"name": "Aniline", "categories": ["air"], "amount": 2.29479011408549}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 76801.41673494274}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 76487.73775631902}, {"name": "Antimony ion", "categories": ["air"], "amount": 76487.73775631902}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 612.0648333104592}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 609.6410528768251}, {"name": "Barium II", "categories": ["air"], "amount": 609.6410528768251}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.150215968593328}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.146357531050598}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 3.146357531050598}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06381234348924905}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06399859956391549}, {"name": "Benzene", "categories": ["air"], "amount": 0.06399859956391549}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02715051504412197}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0283756527822049}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0283756527822049}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 621.9127738018589}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 624.2731986810361}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 624.2731986810361}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 341.0291147599081}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 341.5458628225225}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 341.5458628225225}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.53308030257735}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 107.0145360486649}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 107.0145360486649}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1631.165194036358}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1621.987585019532}, {"name": "Beryllium II", "categories": ["air"], "amount": 1621.987585019532}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1079422117109683}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1091281309839912}, {"name": "Butanol", "categories": ["air"], "amount": 0.1091281309839912}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.51755226171699}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.91688645460462}, {"name": "Butyrolactone", "categories": ["air"], "amount": 29.91688645460462}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3955.3597378302}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3938.524791073606}, {"name": "Cadmium II", "categories": ["air"], "amount": 3938.524791073606}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.306544061219061}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.307011338299934}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.307011338299934}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14212.49001792392}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14451.9112281428}, {"name": "Chloramine", "categories": ["air"], "amount": 14451.9112281428}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 749.484412123745}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 754.1393577760803}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 754.1393577760803}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2817944482566569}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2819487389450365}, {"name": "Chloroform", "categories": ["air"], "amount": 0.2819487389450365}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.38751997406055}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 85.40023317270214}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 85.40023317270214}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 521.3592427382235}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 519.2528294585461}, {"name": "Chromium III", "categories": ["air"], "amount": 519.2528294585461}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 42142.76445969223}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 41972.49104013616}, {"name": "Chromium VI", "categories": ["air"], "amount": 41972.49104013616}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1722.64845735768}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1714.296418380451}, {"name": "Cobalt II", "categories": ["air"], "amount": 1714.296418380451}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 23320.1199541408}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23205.11836181814}, {"name": "Copper ion", "categories": ["air"], "amount": 23205.11836181814}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07407715125994449}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.08240230295261311}, {"name": "Cumene", "categories": ["air"], "amount": 0.08240230295261311}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0004053534730581415}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0005005025848489107}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.0005005025848489107}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001828930352428226}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001819774823191301}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.001819774823191301}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1167804826184969}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1156023991064085}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.1156023991064085}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04687070229168087}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0491381085445043}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.0491381085445043}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.58843899352387}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.88121700950319}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 23.88121700950319}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2509904810898764}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2479214809545211}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.2479214809545211}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 106410.8280586294}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124675.918349018}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 124675.918349018}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.4122155889058901}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.4096295029162746}, {"name": "Dipropylamine", "categories": ["air"], "amount": 0.4096295029162746}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.00739236833539}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.04249063160497}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 19.04249063160497}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.123718029785784}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.159517238553287}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.159517238553287}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2049083929924067}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2049531768398575}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.2049531768398575}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5752241915552043}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5756850438026918}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.5756850438026918}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1515465576547518}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1516299307438582}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.1516299307438582}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3644040113605773}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3646376127530974}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.3646376127530974}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1512219067684273}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1528210776105948}, {"name": "Ethanol", "categories": ["air"], "amount": 0.1528210776105948}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.721533745751081}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7233387890516911}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.7233387890516911}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02461940407511504}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02484894982983806}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1132683885527904}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1132191528329779}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.1132191528329779}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2283644888594898}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2299072042562372}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.2299072042562372}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.84161932370827}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.28238974016111}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 14.28238974016111}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.647116009740433}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.739123667226484}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.739123667226484}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.006214759280132}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.007022716912769}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.007022716912769}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.98236362523197}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.80367535168215}, {"name": "Formaldehyde", "categories": ["air"], "amount": 26.80367535168215}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.670056297578443}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.681191314120874}, {"name": "Formamide", "categories": ["air"], "amount": 1.681191314120874}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.96030446924476}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.082356674464767}, {"name": "Formic acid", "categories": ["air"], "amount": 9.082356674464767}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00233100240176665}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002555710751923102}, {"name": "Furan", "categories": ["air"], "amount": 0.002555710751923102}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37442513185235e-06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.013616143102833e-05}, {"name": "Heptane", "categories": ["air"], "amount": 1.013616143102833e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.764006726917132e-05}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001350158676665101}, {"name": "Hexane", "categories": ["air"], "amount": 0.0001350158676665101}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.889288509229414e-05}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.69087609498793e-05}, {"name": "Isoprene", "categories": ["air"], "amount": 5.69087609498793e-05}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1913796782043254}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1875731222048976}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.1875731222048976}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 176.0628890390114}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 174.8632488602989}, {"name": "Lead II", "categories": ["air"], "amount": 174.8632488602989}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 12297.33466876407}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12181.60115538151}, {"name": "Mercury II", "categories": ["air"], "amount": 12181.60115538151}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.63811189353482}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.64402781004184}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 11.64402781004184}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.09691431191311192}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.096964873726169}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.096964873726169}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06313117662421644}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06316125725976068}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.06316125725976068}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.066550640300604}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.066649883337338}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.066649883337338}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2222578820703635}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2239581108853748}, {"name": "Methanol", "categories": ["air"], "amount": 0.2239581108853748}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5758394729395236}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5762234891555603}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.5762234891555603}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.666858460762592}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.647243990414758}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.647243990414758}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.46155176678081}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.4631872063147502}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05768350587806599}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05770589899754636}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.05770589899754636}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5287208171662259}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5290148814508906}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.5290148814508906}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.149514801273819}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.195299223652707}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.195299223652707}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 118.3029799473779}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117.825008590329}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 117.825008590329}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.85521540325064}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.998756361617114}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.998756361617114}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01644680338878204}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01846629740344422}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.01846629740344422}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6137.384704776678}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6109.772660532521}, {"name": "Nickel II", "categories": ["air"], "amount": 6109.772660532521}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.87398543741971}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.91231021585796}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 10.91231021585796}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.0403857669706}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.24469647005608}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 27.24469647005608}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02856291329365311}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03035258330837692}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.03035258330837692}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.005981654617209129}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0100181389074899}, {"name": "Pentane", "categories": ["air"], "amount": 0.0100181389074899}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.56100072833934}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.60225161914795}, {"name": "Phenol", "categories": ["air"], "amount": 19.60225161914795}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1135.06293035613}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1164.649925669428}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1164.649925669428}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3414.137148231604}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3981.805444220557}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3981.805444220557}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3883891614083377}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3820280439504468}, {"name": "Propanal", "categories": ["air"], "amount": 0.3820280439504468}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.09173941151547893}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.09251597360053046}, {"name": "Propanol", "categories": ["air"], "amount": 0.09251597360053046}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.32276953922103}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.53472202657245}, {"name": "Propionic acid", "categories": ["air"], "amount": 10.53472202657245}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0936882576844585}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0944971485273253}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0944971485273253}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.302369905869175}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.303331160891758}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.303331160891758}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 2989.82139002033}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2976.965009079105}, {"name": "Selenium IV", "categories": ["air"], "amount": 2976.965009079105}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 80815.45971238834}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80437.47463326177}, {"name": "Silver I", "categories": ["air"], "amount": 80437.47463326177}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5220678704830352}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.528278565741674}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.528278565741674}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01113863650583113}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01551503353041624}, {"name": "Styrene", "categories": ["air"], "amount": 0.01551503353041624}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 77.99165987461768}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.51042188017522}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 78.51042188017522}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02733696432541367}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02731185795239844}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.02731185795239844}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.187538026540893}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.184302403645939}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1.184302403645939}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 14197.91850382319}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14141.60616567891}, {"name": "Thallium I", "categories": ["air"], "amount": 14141.60616567891}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1364.56823186714}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1355.849216228258}, {"name": "Tin ion", "categories": ["air"], "amount": 1355.849216228258}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01242112714578335}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01277392309120238}, {"name": "Toluene", "categories": ["air"], "amount": 0.01277392309120238}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1862689954431346}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1880295985728143}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.1880295985728143}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02412878618071882}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02304333151286735}, {"name": "Trimethylamine", "categories": ["air"], "amount": 0.02304333151286735}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 46651.9104446765}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46440.3213721397}, {"name": "Vanadium V", "categories": ["air"], "amount": 46440.3213721397}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01001834721027202}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0106460680388508}, {"name": "Xylene", "categories": ["air"], "amount": 0.0106460680388508}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16872.47176386005}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16778.41788966113}, {"name": "Zinc II", "categories": ["air"], "amount": 16778.41788966113}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 95791.0334096898}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 95791.0334096898}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 95791.0334096898}, {"name": "Antimony ion", "categories": ["soil"], "amount": 95791.0334096898}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 763.1005379036917}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 763.1005379036917}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 763.1005379036917}, {"name": "Barium II", "categories": ["soil"], "amount": 763.1005379036917}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2044.440961644406}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2044.440961644406}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2044.440961644406}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2044.440961644406}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 4936.045752744441}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4936.045752744441}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4936.045752744441}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4936.045752744441}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 650.1791381610516}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 650.1791381610516}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 650.1791381610516}, {"name": "Chromium III", "categories": ["soil"], "amount": 650.1791381610516}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 52555.16047834999}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 52555.16047834999}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 52555.16047834999}, {"name": "Chromium VI", "categories": ["soil"], "amount": 52555.16047834999}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2153.790769076094}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2153.790769076094}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2153.790769076094}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2153.790769076094}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 29164.3719150002}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 29164.3719150002}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 29164.3719150002}, {"name": "Copper ion", "categories": ["soil"], "amount": 29164.3719150002}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 103.9440772563541}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 221.4977918869544}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 221.4977918869544}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 221.4977918869544}, {"name": "Lead II", "categories": ["soil"], "amount": 221.4977918869544}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 15597.06514527675}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 15597.06514527675}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 15597.06514527675}, {"name": "Mercury II", "categories": ["soil"], "amount": 15597.06514527675}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 147.5338595951268}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 147.5338595951268}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 147.5338595951268}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 147.5338595951268}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 7664.978129157914}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 7664.978129157914}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 7664.978129157914}, {"name": "Nickel II", "categories": ["soil"], "amount": 7664.978129157914}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 3731.258616355279}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 3731.258616355279}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 3731.258616355279}, {"name": "Selenium IV", "categories": ["soil"], "amount": 3731.258616355279}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 100987.4333791871}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 100987.4333791871}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 100987.4333791871}, {"name": "Silver I", "categories": ["soil"], "amount": 100987.4333791871}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 92.49135491050366}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 17701.23878238672}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 17701.23878238672}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 17701.23878238672}, {"name": "Thallium I", "categories": ["soil"], "amount": 17701.23878238672}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1714.419845085274}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1714.419845085274}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1714.419845085274}, {"name": "Tin ion", "categories": ["soil"], "amount": 1714.419845085274}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 58269.36995740739}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 58269.36995740739}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 58269.36995740739}, {"name": "Vanadium V", "categories": ["soil"], "amount": 58269.36995740739}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 21139.016907883}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 21139.016907883}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 21139.016907883}, {"name": "Zinc II", "categories": ["soil"], "amount": 21139.016907883}, {"name": "1,4-Butanediol", "categories": ["water", "ground-"], "amount": 7.309331982177244}, {"name": "1,4-Butanediol", "categories": ["water", "ocean"], "amount": 1.248882374560439e-06}, {"name": "1,4-Butanediol", "categories": ["water", "surface water"], "amount": 7.309331982177244}, {"name": "1,4-Butanediol", "categories": ["water"], "amount": 7.309331982177244}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 15.56803807841913}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.002520549204345182}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 15.56803807841913}, {"name": "1-Pentanol", "categories": ["water"], "amount": 15.56803807841913}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.538837125972611}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00335253332002659}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.538837125972611}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.538837125972611}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 2.463416524643162}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.001220970724126882}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.463416524643162}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.463416524643162}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 21.41549990781206}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.005394488871534738}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 21.41549990781206}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 21.41549990781206}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.004742775832089053}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 14.57226883990429}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 14.57226883990429}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 6.025672019133131}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.001430914704633103}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 6.025672019133131}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 6.025672019133131}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 4115.812246738143}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.3650804722641475}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 4115.812246738143}, {"name": "Acenaphthene", "categories": ["water"], "amount": 4115.812246738143}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 47.17247193643288}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.01970473668361181}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 47.17247193643288}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 47.17247193643288}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 49.8391256657786}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.001346583925108664}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 49.8391256657786}, {"name": "Acetic acid", "categories": ["water"], "amount": 49.8391256657786}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.213309066286874}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00354663492385342}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.213309066286874}, {"name": "Acetone", "categories": ["water"], "amount": 1.213309066286874}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.85687366902346}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.03638707634094205}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.85687366902346}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.85687366902346}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.4281565226924716}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 133.5325887123976}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 133.5325887123976}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.3291367968857636}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 354.9073927687746}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 354.9073927687746}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.2768527285333682}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.2768527285333682}, {"name": "Ammonium", "categories": ["water"], "amount": 0.2768527285333682}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 630.6490501003661}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.005920846167889754}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 630.6490501003661}, {"name": "Aniline", "categories": ["water"], "amount": 630.6490501003661}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 190273.569646014}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.413485288877518e-15}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 190273.569646014}, {"name": "Antimony ion", "categories": ["water"], "amount": 190273.569646014}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1526.106910531414}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.44533885720615e-17}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1526.106910531414}, {"name": "Barium II", "categories": ["water"], "amount": 1526.106910531414}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 65.98305934698593}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.01300464851461105}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 65.98305934698593}, {"name": "Benzene", "categories": ["water"], "amount": 65.98305934698593}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.07512966638299223}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 393.2620781735379}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 393.2620781735379}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 174.8943287390434}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.002464844829783555}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 174.8943287390434}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 174.8943287390434}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.004034926712582468}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 200.4375969397927}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 200.4375969397927}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3719.353478727086}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.698940162778656e-17}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3719.353478727086}, {"name": "Beryllium II", "categories": ["water"], "amount": 3719.353478727086}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ocean"], "amount": 1.099457188718305}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 1.099457188718305}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 1.099457188718305}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.515563794986257}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.0009907214728192108}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.515563794986257}, {"name": "Butanol", "categories": ["water"], "amount": 5.515563794986257}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.006307298171177202}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 28.37379925546212}, {"name": "Butyl acetate", "categories": ["water"], "amount": 28.37379925546212}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 154.6464492362184}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.003074540289545074}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 154.6464492362184}, {"name": "Butyrolactone", "categories": ["water"], "amount": 154.6464492362184}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.269701024482803e-17}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9712.291690087604}, {"name": "Cadmium II", "categories": ["water"], "amount": 9712.291690087604}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 153.423085686842}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.2301713115378994}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 153.423085686842}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 153.423085686842}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 71953.13213721043}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.639684148519675e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 71953.13213721043}, {"name": "Chloramine", "categories": ["water"], "amount": 71953.13213721043}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 2928.070246727622}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 0.01331058556154036}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 2928.070246727622}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 2928.070246727622}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 41.17887996234599}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.05346887318892965}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 41.17887996234599}, {"name": "Chloroform", "categories": ["water"], "amount": 41.17887996234599}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 553.8045238771879}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.1633434498419037}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 553.8045238771879}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 553.8045238771879}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 104644.2763631995}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.321069755873469e-16}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 104644.2763631995}, {"name": "Chromium VI", "categories": ["water"], "amount": 104644.2763631995}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.6999035997213e-18}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1294.592667971015}, {"name": "Chromium III", "categories": ["water"], "amount": 1294.592667971015}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4099.422993937983}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 9.294818137998669e-18}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4099.422993937983}, {"name": "Cobalt II", "categories": ["water"], "amount": 4099.422993937983}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 0.02444359396289091}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.02444359396289091}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 0.02444359396289091}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.032014489240348e-16}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 55247.57233198472}, {"name": "Copper ion", "categories": ["water"], "amount": 55247.57233198472}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 665.07018807497}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00654705716437468}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 665.07018807497}, {"name": "Cumene", "categories": ["water"], "amount": 665.07018807497}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 48.68874262240333}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.901575437806032e-05}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 48.68874262240333}, {"name": "Cyclohexane", "categories": ["water"], "amount": 48.68874262240333}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 65.4673526161865}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.004052797913288156}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 65.4673526161865}, {"name": "Diethylamine", "categories": ["water"], "amount": 65.4673526161865}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.7571023925387067}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.076379285437717e-08}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.7571023925387067}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.7571023925387067}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.004920283223557545}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 44.03938064652566}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 44.03938064652566}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 86.1910342993174}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.007842872377220936}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 86.1910342993174}, {"name": "Dimethylamine", "categories": ["water"], "amount": 86.1910342993174}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 375.1534011135178}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.01936380362338582}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 375.1534011135178}, {"name": "Dipropylamine", "categories": ["water"], "amount": 375.1534011135178}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 21.69292210943689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.05449182557035542}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 21.69292210943689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 21.69292210943689}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 15.1182300429514}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0288539804571156}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 15.1182300429514}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 15.1182300429514}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 19.48984505254134}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 1911.479851134369}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1911.479851134369}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.113644032158621}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.0009829088296230753}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.113644032158621}, {"name": "Ethanol", "categories": ["water"], "amount": 3.113644032158621}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 607.0532699656612}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.1820676947716516}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 607.0532699656612}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 607.0532699656612}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 83.06252177743589}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.004508805516406364}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 83.06252177743589}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 83.06252177743589}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 5.866490471077769}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.007921420745347173}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 5.866490471077769}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 5.866490471077769}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 31.32457020494882}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.005423784183281309}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 31.32457020494882}, {"name": "Ethylamine", "categories": ["water"], "amount": 31.32457020494882}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 392.9821815828094}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.965083807032327e-05}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 392.9821815828094}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 392.9821815828094}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 33.88259088785986}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.001494502831336749}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 33.88259088785986}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 33.88259088785986}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 23.53458418808319}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.08584670868619829}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 23.53458418808319}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 23.53458418808319}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 297.4211231191256}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.02444359396289091}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 297.4211231191256}, {"name": "Formaldehyde", "categories": ["water"], "amount": 297.4211231191256}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 7.034963091073586}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 5.705025696484766e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 7.034963091073586}, {"name": "Formamide", "categories": ["water"], "amount": 7.034963091073586}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 44.39859781105648}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.002145198583164613}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 44.39859781105648}, {"name": "Formic acid", "categories": ["water"], "amount": 44.39859781105648}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.0835600185333866}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 2834.661658070369}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 2834.661658070369}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 64.77661364783435}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 3.383973580798461e-06}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 64.77661364783435}, {"name": "Hexane", "categories": ["water"], "amount": 64.77661364783435}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 6.846979098663159}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 26679.15205781307}, {"name": "Hydrazine", "categories": ["water"], "amount": 26679.15205781307}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 63.90756305906466}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.009828470980897184}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 63.90756305906466}, {"name": "Isopropylamine", "categories": ["water"], "amount": 63.90756305906466}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 374.7120873071274}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.387235797684917e-19}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 374.7120873071274}, {"name": "Lead II", "categories": ["water"], "amount": 374.7120873071274}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 22085.57778071964}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.784986131013021e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 22085.57778071964}, {"name": "Mercury II", "categories": ["water"], "amount": 22085.57778071964}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 14.60862113153174}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.01963179925773588}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 14.60862113153174}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 14.60862113153174}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 66.36990322738332}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.2768527285333682}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 66.36990322738332}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 66.36990322738332}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 2.647038698610819}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.001491372671790422}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.647038698610819}, {"name": "Methanol", "categories": ["water"], "amount": 2.647038698610819}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 15.34645981479058}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.04031712580225662}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 15.34645981479058}, {"name": "Methyl acetate", "categories": ["water"], "amount": 15.34645981479058}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 672.693769619161}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.2054215481766319}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 672.693769619161}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 672.693769619161}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 44.59940012119169}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.01134610669754899}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 44.59940012119169}, {"name": "Methylamine", "categories": ["water"], "amount": 44.59940012119169}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 17.65946300182532}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.04549309991283589}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 17.65946300182532}, {"name": "Methyl formate", "categories": ["water"], "amount": 17.65946300182532}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 293.7594298234865}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 7.400133899177125e-19}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 293.7594298234865}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 293.7594298234865}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 293.3776396173267}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.001490728140588046}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 293.3776396173267}, {"name": "m-Xylene", "categories": ["water"], "amount": 293.3776396173267}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.52134113462786e-17}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 14879.59311199594}, {"name": "Nickel II", "categories": ["water"], "amount": 14879.59311199594}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.00688339400715688}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.00688339400715688}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.00688339400715688}, {"name": "Nitrate", "categories": ["water"], "amount": 0.00688339400715688}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 179.4248510392836}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.309274509026099}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 179.4248510392836}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 179.4248510392836}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 220.7674809050472}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.002582955432705416}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 220.7674809050472}, {"name": "o-Xylene", "categories": ["water"], "amount": 220.7674809050472}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 933.0530804389432}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.009892341023183461}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 933.0530804389432}, {"name": "Phenol", "categories": ["water"], "amount": 933.0530804389432}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.0921337373485053}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5658.102396456461}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 5658.102396456461}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.1045744038991924}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6318.72190294688}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 6318.72190294688}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.0056688120125778}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 167.1412846504503}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 167.1412846504503}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.0002020006648088936}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 30.15181210211107}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 30.15181210211107}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 85.64783358764737}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.02490554580033791}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 85.64783358764737}, {"name": "Propanal", "categories": ["water"], "amount": 85.64783358764737}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 2.972313814787912}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.001307042873961017}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 2.972313814787912}, {"name": "Propanol", "categories": ["water"], "amount": 2.972313814787912}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 70.66263770958471}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.005583894842615893}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 70.66263770958471}, {"name": "Propionic acid", "categories": ["water"], "amount": 70.66263770958471}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 17.47003580483835}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.002360737046396844}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 17.47003580483835}, {"name": "Propylamine", "categories": ["water"], "amount": 17.47003580483835}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 29.00523942102665}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.08163257831926521}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 29.00523942102665}, {"name": "Propylene oxide", "categories": ["water"], "amount": 29.00523942102665}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 7324.676499052727}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.995943866375667e-17}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 7324.676499052727}, {"name": "Selenium IV", "categories": ["water"], "amount": 7324.676499052727}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.402179763282325e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 194088.6647216774}, {"name": "Silver I", "categories": ["water"], "amount": 194088.6647216774}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 2.298905883657707}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.027354434890899e-11}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 2.298905883657707}, {"name": "Sodium formate", "categories": ["water"], "amount": 2.298905883657707}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 185.2223220672366}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.001002274275879541}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 185.2223220672366}, {"name": "Styrene", "categories": ["water"], "amount": 185.2223220672366}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.633173494491574}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.002408606308693329}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.633173494491574}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.633173494491574}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 125.389297733242}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.05066477815976527}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 125.389297733242}, {"name": "t-Butylamine", "categories": ["water"], "amount": 125.389297733242}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 35389.40773048787}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.076390236808797e-16}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 35389.40773048787}, {"name": "Thallium I", "categories": ["water"], "amount": 35389.40773048787}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 3.154337154426072}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 1341.206521620715}, {"name": "Thiocyanate", "categories": ["water"], "amount": 1341.206521620715}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 4.307601208164204e-18}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2978.232970570632}, {"name": "Tin ion", "categories": ["water"], "amount": 2978.232970570632}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 55.92445707351384}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.001163678105324353}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 55.92445707351384}, {"name": "Toluene", "categories": ["water"], "amount": 55.92445707351384}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 188.8615742592643}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.03413771793559374}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 188.8615742592643}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 188.8615742592643}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 8.459234894130866e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.3873282178246341}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.3873282178246341}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 19.8654420495975}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.001738326829849284}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 19.8654420495975}, {"name": "Trimethylamine", "categories": ["water"], "amount": 19.8654420495975}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 8.80967294413328e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 10.24292353353621}, {"name": "Urea", "categories": ["water"], "amount": 10.24292353353621}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.148558709333134e-15}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 112885.975123505}, {"name": "Vanadium V", "categories": ["water"], "amount": 112885.975123505}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 77.43346253602645}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.000905963060821646}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 77.43346253602645}, {"name": "Xylene", "categories": ["water"], "amount": 77.43346253602645}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.269787771434788e-15}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 38584.58479284478}, {"name": "Zinc II", "categories": ["water"], "amount": 38584.58479284478}, {"name": "Allyl chloride", "categories": ["water"], "amount": 150.1079947071333}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1719.720222223451}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.42180531899135}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 339.3177771685547}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.464759480792751}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1288.408479475332}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9534.98244550603}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6746.64791261522}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4323.582103514876}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1920.935035757191}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6050.100803294812}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2426.799900775043}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5826075617235112}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 103.1690866711481}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 658.9867108518033}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 295.110806887749}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 3770.74503760381}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.39328139256551}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 192.9994421315874}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1283.109173004815}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.43105910115}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 4084.80999349844}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 411.1785638000277}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1134.31504453951}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 868.2752462991879}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1240.168412731042}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 96.22935832108888}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1333.794437530065}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8673.147587446569}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 105.7442921549162}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2258.577662651688}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.30247552090953}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3287.781362024641}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 4345.118683028117}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.41222339222807}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1170.784617284218}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 259125.7443834203}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 910.5227642951912}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 381628.0695570859}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 14879.59311199594}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 1388.798808044774}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 2625.615837830791}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 10478.71448236993}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.1851813694424153}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 893.1260307287811}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.202464924754399}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 23322.8108860617}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 28046.64296314354}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 98.00404444479724}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 116.1553590378122}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 4596.606592873776}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 32480.45563500515}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 18.90675745348257}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 2525.614960786939}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 381053.756490467}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 17300.82408154319}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 48797.72881487814}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1194.664831687612}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 129.8491927625}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 6449.382805161986}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 16.82211773606099}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 15771.03438358962}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.0005956516966396799}, {"name": "Anthracene", "categories": ["air"], "amount": 689.4793351985059}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 3940.56662007329}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 34.65132120921942}, {"name": "Fluorene", "categories": ["air"], "amount": 12.27113194390776}, {"name": "Phenanthrene", "categories": ["air"], "amount": 115.017007344514}, {"name": "Pyrene", "categories": ["air"], "amount": 4294.24886340959}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1481.802305363551}, {"name": "Permethrin", "categories": ["water"], "amount": 1176813.749427655}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1770.728466550261}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 68297.38935812125}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 596.7339847712511}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 91897.69629774714}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 381628.0695570859}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 22312.42771020496}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.570672609949578}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 63.32820237413264}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 2922.880909460317}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 95840.4890269539}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2825.690058737243}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1867.69528509152}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 885597.4579147273}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 261934.6501763573}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 793687.2517576887}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 11721.2764715593}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 261934.6501763573}, {"name": "Anthracene", "categories": ["water"], "amount": 261934.6501763573}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 63.72561642428929}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.108990132190594}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.097524476396035}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.097524476396035}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.086058820601476}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1364774634533391}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.1363314054471138}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.1361853474408884}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1363314054471138}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 5924305.464267534}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 5924305.464267534}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 5924305.464267534}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 6480.187851432215}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 11721.2764715593}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 321.0837044593862}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 321.0837044593862}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.38106559585892}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 167.3503950070972}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 1331.729675100105}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 1331.729675100105}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 87654.21841746844}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 87654.21841746844}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 45969.77190324557}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 45969.77190324557}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1890.997987814396}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1890.997987814396}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2983.340578117419}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 140682.2143556849}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 67251.75644838254}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 458078.2228452191}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 458078.2228452191}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1878.967084318772}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 8248662.897277911}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 8248662.897277911}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1882.513912510247}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1882.513912510247}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 98.13575974852127}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1146.324132457719}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 16426.37842918017}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 16426.37842918017}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 93.17018395949655}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1953.432724062253}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1953.432724062253}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 28978.79147878355}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 576370.0956537924}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 138991256.4948792}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 138991256.4948792}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 445.0525531360675}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1364.081351704098}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1364.081351704098}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 68297.38935812125}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 269.5687685163206}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 306.8304790458599}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 1284.044970611836}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 1284.044970611836}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 41.2052502910758}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 88.02185681860134}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 423.9184783730436}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 423.9184783730436}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 200.6632712138781}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 200.6632712138781}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1091.878313398631}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 6605.10827156456}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 4192.56916576577}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 5025.580484578368}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4954.653737808047}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 3306.003841246809}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 3306.003841246809}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 3306.003841246811}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 3306.003841246809}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.02484894982983806}, {"name": "Dodecanol", "categories": ["water"], "amount": 3749.979052280719}, {"name": "Methylamine", "categories": ["air"], "amount": 0.4631872063147502}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 1787.614875322394}, {"name": "Diethanolamine", "categories": ["water"], "amount": 47.48316173699653}, {"name": "Lauric acid", "categories": ["water"], "amount": 396.8495249613188}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.218603851057523}, {"name": "Bisphenol A", "categories": ["water"], "amount": 5164.053001364086}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 338.7546787101137}, {"name": "Decanoic acid", "categories": ["water"], "amount": 544.7151488850361}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 348.5975053782652}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.04243380534804181}, {"name": "Bromopropane", "categories": ["water"], "amount": 62.08150529213951}, {"name": "Pentane", "categories": ["water"], "amount": 3316.000340744768}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 60.2602599219066}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 1012.158272232078}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 10.62994183706053}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.809895601426584}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 3608.514399873804}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 7524.59097898142}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 17692.71991226143}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 151.9217829487129}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 277.5811274348549}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 67.94968762886948}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 11.74031766790603}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 41.63950745005277}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 6.380549915543228}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.110467312347667}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.43105910115}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 17.61817888345146}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 519.9169499579817}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 462.6141544024052}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 667.4508171795883}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 256.6187264278454}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 688.8493308084136}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 191.4784749746858}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 896.0155197840094}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 220.0746406137207}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 978.6706716213416}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 47.87089443452015}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 368.5055720651172}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 27.63215887859339}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 14637.01870132028}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 2679.652290484734}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4596.973563069243}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 135496.2877774281}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 60.05551581713758}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 340.8238059814992}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 139.743683840574}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 90.25244320281742}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 247.080898335337}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.164195646209774e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 202.5363748858674}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 7814.400450649689}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 60338.55641058663}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 59.18085009536366}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 2021.568372283682}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 63.6029276133736}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 17.08718864832988}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 39055.4266518726}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 37.78775488874359}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 154.9531994675222}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 28564.74263134682}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 425.2411885424924}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 800.6442731112385}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 6.627239928286746}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 58.26685774532077}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 9.871765892958619}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3109.551806374172}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 45.47596618363305}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 88.43619999028196}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 8.945286375635815}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 198.1727823892715}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1329.271457589259}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1165.755883481279}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1165.755883481279}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5.594456835591205}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3869.414265752627}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 660.1015637530886}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 35254.33595357371}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 6.060645578653228}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2652.294466729171}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 155.3169569503851}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2065.527613201848}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 1311676.67283577}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 43.65950850166547}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 14652.48701207039}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1481.802305363551}, {"name": "Glyphosate", "categories": ["water"], "amount": 321.0837044593862}, {"name": "Furfural", "categories": ["air"], "amount": 2.994688529144927}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.0005754938316363201}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 102591.0227392867}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 16710.46877105274}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 299.7246775317666}, {"name": "Acrolein", "categories": ["water"], "amount": 33534.6606743059}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 73119.18508268046}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 214425.9455341111}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 2482265.202124142}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 17925.69315299158}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2161.12690001112}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 465601.1895579348}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 256351.7586333342}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 5013.960858196362}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 1164.405589426061}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 156.609998406489}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 109070.2137821239}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 106854.7382085568}, {"name": "Deltamethrin", "categories": ["air"], "amount": 18270.90377643331}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 137.9609286337795}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 45019.21828707153}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 156.5868145416603}, {"name": "Thiram", "categories": ["air"], "amount": 3487.09119242013}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 680.3382059666377}, {"name": "Dimethoate", "categories": ["air"], "amount": 565.3671018741634}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 10256.03111479418}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 3290.521101304506}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 580679.0755597618}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 578.5552891124179}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 12.45381366258556}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 0.9296482554629171}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 18509.83366775568}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 352.6219011986358}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 677723.6247863976}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 126.8153264651498}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 236.8213632164033}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 652.9659515364764}, {"name": "Triallate", "categories": ["air"], "amount": 70.5292128510318}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 24676.38544100864}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7861577.049642152}, {"name": "Fluthiacet-methyl", "categories": ["soil", "agricultural"], "amount": 8843.6064391503}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 197.6421400831339}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.006031730774872183}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 197.6421400831339}, {"name": "Acrylate", "categories": ["water"], "amount": 197.6421400831339}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1028.90082834915}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 461.5004209859798}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.614598038355485}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 9492.070804737907}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 22312.42771020496}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 140682.2143556849}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 16489.92772977458}, {"name": "Fluoranthene", "categories": ["air"], "amount": 652.6589407329947}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 6272.9715083078}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1365.686057862491}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 2443.471188068153}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1272.861621485645}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 16909.6986708454}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 170.5124376107749}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17079.27810755454}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16994.48838919997}, {"name": "Arsenic ion", "categories": ["air"], "amount": 16994.48838919997}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 21361.43085375938}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 21361.43085375938}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 21361.43085375938}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 21361.43085375938}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 14.17870128823651}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 14979.14911439295}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 224.3936913413862}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 224.3936913413862}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 214.7564051054538}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 234.0309775773185}, {"name": "Arsenic ion", "categories": ["water"], "amount": 40390.21833995568}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 40390.21833995568}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.544049566471797e-16}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 40390.21833995568}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 269.5687685163206}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 306.8304790458599}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 273.3402549601409}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 1284.044970611836}, {"name": "Cyproconazole", "categories": ["air"], "amount": 269.1921234948197}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 461525.7995451029}, {"name": "Fipronil", "categories": ["air"], "amount": 24946.80841592302}, {"name": "Difenoconazole", "categories": ["air"], "amount": 5047.081443672492}, {"name": "Fluazinam", "categories": ["air"], "amount": 8694.834640824494}, {"name": "Alkylbenzene (c10-c15)", "categories": ["air"], "amount": 0.0128939299191559}, {"name": "Bifenthrin", "categories": ["air"], "amount": 104301.4031316026}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 214425.9455341111}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 229044.8670110711}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 6937.999417314811}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 433.3011115853852}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 5410.473444818626}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 1692.370322105299}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 10161.39599965984}, {"name": "Cyproconazole", "categories": ["water"], "amount": 9577.424063018774}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 490012232.4898244}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 490012232.4898244}, {"name": "Thiodicarb", "categories": ["water"], "amount": 90607.09381668059}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 242.1677132175915}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 9577.424063018774}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 677723.6247863973}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4345.118683028117}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 90607.09381668059}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 208.0099377493797}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 214425.9455341111}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 4084.80999349844}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 2012896.836828182}, {"name": "Fipronil", "categories": ["water"], "amount": 2012896.836828182}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 32315.10687636695}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 11724.17496709372}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 138991256.4948792}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 133638.4039148149}, {"name": "Clethodim", "categories": ["water"], "amount": 3290.521101304506}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 8.47812563194317}, {"name": "Bifenthrin", "categories": ["water"], "amount": 6606218.617699357}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 5733.526330050868}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 62054.42635973194}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.2201431500013523}, {"name": "Alkylbenzene (c10-c15)", "categories": ["soil", "agricultural"], "amount": 0.001225154162618609}, {"name": "Flumioxazin", "categories": ["water"], "amount": 465601.1895579348}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 119052.5066021618}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 10054.75335824089}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 1921.726540567452}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4199.332645013528}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 6606218.617699357}, {"name": "Difenoconazole", "categories": ["water"], "amount": 119052.5066021618}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 11630.69718048504}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 11630.69718048504}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 350.2601340869226}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 50408635.72852894}, {"name": "Cypermethrin", "categories": ["water"], "amount": 50408635.72852894}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 70127.43105910115}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 35089624.32889574}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 48797.72881487816}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 254034.3763665275}, {"name": "Alkylbenzene (c10-c15)", "categories": ["soil", "forestry"], "amount": 0.001225154162618609}, {"name": "Alkylbenzene (c10-c15)", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003364855008159178}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 264.3378908849616}, {"name": "Fluazinam", "categories": ["water"], "amount": 229044.8670110711}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 229044.8670110711}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 21427.90288337684}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 6441.702873071918}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 21427.90288337684}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5368.865226164379}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 5256.022376072729}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 2205.142040314403}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2205.142040314404}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 45019.21828707153}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 12727.75055993713}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 12727.75055993713}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1638.053325943434}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 11741.38139340764}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1748.637207224227}, {"name": "Abamectin", "categories": ["air"], "amount": 2598.46244104342}, {"name": "Carbendazim", "categories": ["air"], "amount": 10852.56996777327}, {"name": "Diuron", "categories": ["air"], "amount": 2888.804996395477}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 78960.85556831793}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 601.8082411386335}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 440.9403852378933}, {"name": "Mancozeb", "categories": ["air"], "amount": 643.9325476832689}, {"name": "Simazine", "categories": ["air"], "amount": 6445.767730097668}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1652.390895357039}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 157.0990183009986}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 57427.32208907067}, {"name": "Triflumuron", "categories": ["air"], "amount": 357063.9983622727}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 94.81597922687283}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 652.484313842212}, {"name": "2,4-D", "categories": ["water"], "amount": 860.3532958193812}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 215.530846628909}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 652.484313842212}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 181.9075712591965}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 860.3532958193812}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 156.0787844892613}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 105.7795183243561}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 41283.75821110154}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 971085.7741076944}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 22959.18536992275}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 22959.18536992275}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 443.4328889862159}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 50981.86740021227}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 1748.637207224227}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 7290.249047189391}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 126.8153264651498}, {"name": "Mancozeb", "categories": ["water"], "amount": 52198.60382641312}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.48692300987379}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 296.2223883807765}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 8861705.758070096}, {"name": "Triflumuron", "categories": ["water"], "amount": 8861705.758070096}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 12634.63998176688}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 78114.00168833337}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 316702.2724546606}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 1311676.67283577}, {"name": "Simazine", "categories": ["water"], "amount": 78114.00168833337}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6103.638662480231}, {"name": "Carbendazim", "categories": ["water"], "amount": 741427.7150626526}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 54554.08444179271}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 6344.183794782181}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 741427.7150626526}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 52198.60382641312}, {"name": "Acephate", "categories": ["water"], "amount": 627.195875552428}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 252.3480059893731}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 627.195875552428}, {"name": "Abamectin", "categories": ["water"], "amount": 83744.41729932558}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 83744.41729932558}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 7290.249047189391}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 44.86884533105171}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1152874.806639649}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1152874.806639649}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1990.5565774533}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 57823.87667902808}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 76269.5273348387}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 85233.29894167076}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 50096.23828354297}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 85233.29894167076}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 50096.23828354297}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 35.50249751350102}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1388.798808044774}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1325.809809271895}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 186.1098958796736}, {"name": "Diuron", "categories": ["water"], "amount": 60117.49064131446}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4019.340356854711}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2537.106748929052}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 164.6428088934565}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 29260.23441730404}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 29260.23441730404}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 105.7795183243561}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1926.848485380624}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2337.137375441219}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 90.65429257599124}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1164.405589426061}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 744.3119833717473}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 114698.9733126001}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 234.4645680742805}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 10161.39599965984}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1996.038632885548}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 592.5107503648137}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 15803.20422885043}, {"name": "Trifluralin", "categories": ["water"], "amount": 106854.7382085568}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1618.136671590677}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 114698.9733126001}, {"name": "Thiram", "categories": ["water"], "amount": 580679.0755597618}, {"name": "Carboxin", "categories": ["water"], "amount": 24676.38544100864}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 285.0691571123865}, {"name": "Propiconazole", "categories": ["water"], "amount": 22312.42771020496}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 130.7345834584192}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 155.3169569503851}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 212.7268734842694}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1050.027742038335}, {"name": "Thiabendazole", "categories": ["water"], "amount": 34009.52164954976}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 2660.182571676538}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 507.8834624303366}, {"name": "Fludioxonil", "categories": ["water"], "amount": 101091.3793961789}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2161.12690001112}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3231.447758209919}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6272.9715083078}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 172128.6715681628}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 6206819.068762222}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 105993.6811591121}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 103.9440772563541}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5957.959915036762}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 5304.732009017731}, {"name": "Metolachlor", "categories": ["water"], "amount": 67251.75644838254}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 819.7509007338074}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1365.686057862491}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 11406.42648689973}, {"name": "Tebuconazole", "categories": ["water"], "amount": 68297.38935812125}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 73119.18508268046}, {"name": "Methomyl", "categories": ["water"], "amount": 28978.79147878355}, {"name": "Atrazine", "categories": ["water"], "amount": 87654.21841746844}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 114698.9733126001}, {"name": "Indoxacarb", "categories": ["air"], "amount": 3180.233169520662}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 2611.582905498304}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 391.0220181975797}, {"name": "Carboxin", "categories": ["air"], "amount": 382.2650622793749}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1618.136671590677}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 34009.52164954976}, {"name": "Thiabendazole", "categories": ["air"], "amount": 435.3659085727342}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 4283.465110687773}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 172128.6715681628}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1678.718356240116}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 101091.3793961789}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 6206819.068762222}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 28978.79147878355}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3162.808823016142}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 67251.75644838254}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 206.6045490576516}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 5957.959915036762}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2337.13737544122}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 90.65429257599124}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 105993.6811591121}, {"name": "EPTC", "categories": ["air"], "amount": 6.607687147297698}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 1692.965263424659}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.341352636846492}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 299.7246775317666}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 169738.0330996829}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 11976364.83353115}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 11976364.83353115}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 203864.2011423413}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 96.65682185355104}, {"name": "Imidacloprid", "categories": ["air"], "amount": 122.0267139353446}, {"name": "Imidacloprid", "categories": ["water"], "amount": 3139.182427479564}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 96.65682185355104}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.4592395098901}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 3139.182427479564}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.754061574190309}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 586.9844535727717}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.738785679816528}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.746423627003418}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.746423627003418}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.486803588069124}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 586.9844535727717}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 586.9844535727717}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.09436249505718262}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 62.8497116571606}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 16219.05948883446}]}, {"unit": "kg N-Eq", "name": ["TRACI v2.1 no LT", "eutrophication no LT", "eutrophication potential no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.1186}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.7793}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.03602286665830313}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.38}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 0.3548239598401077}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 1.12}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1186}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1186}, {"name": "Ammonia", "categories": ["air"], "amount": 0.1186}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03602286665830313}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03602286665830313}, {"name": "Nitrate", "categories": ["air"], "amount": 0.03602286665830313}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3548239598401077}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3548239598401077}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 0.3548239598401077}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12}, {"name": "Phosphorus", "categories": ["air"], "amount": 1.12}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.7793}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.7793}, {"name": "Ammonium", "categories": ["water"], "amount": 0.7793}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ocean"], "amount": 0.05}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.05}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 0.05}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.2367}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.2367}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.2367}, {"name": "Nitrate", "categories": ["water"], "amount": 0.2367}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.9864}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.9864}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.9864}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.9864}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 2.38}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.38}, {"name": "Phosphate", "categories": ["water"], "amount": 2.38}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 7.29}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 7.29}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 7.29}, {"name": "Phosphorus", "categories": ["water"], "amount": 7.29}, {"name": "Nitrogen", "categories": ["air"], "amount": 0.150118105922054}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.06858}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.30952380952381}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 0.3656515775836821}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.03448275862068965}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.291021896827}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.04429}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04429}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04429}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.04429}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.03448275862068965}]}, {"unit": "CTUh", "name": ["TRACI v2.1 no LT", "human toxicity: carcinogenic no LT", "human toxicity: carcinogenic no LT"], "exchanges": [{"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.258356435850049e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.810343693630874e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.108229711482085e-07}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.406776750306832e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2.78915073207082e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.531067896539896e-08}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.027258220363476e-06}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.391376256206991e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.741896373164023e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 8.425367609910162e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.129833856759318e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.530366768160435e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 4.495136026480151e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0001154905641553532}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.125912223315778e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0002517637983367946}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.590052583598152e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.120982712696918e-08}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.021433535791055e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.989787988125033e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.52942318370799e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.004698149455494108}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.593967130167531e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.58465069072757e-05}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.883745633244235e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 29.62159655713153}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 5.543725597722587e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.304325226657223e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.515513820065576e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.820926395991358e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.865899488335459e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.922728378391743e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.596495340709977e-06}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.636272033325984e-09}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.034153076279244e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.29033235365814e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.060433564876759e-08}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.219169907269833e-06}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.860699582481577e-06}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.542168575439161e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.27974191527352e-05}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.793118991683174e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.759132709331032e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.348363361545353e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.656983589874939e-05}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 6.565468056143749e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3.134880215609319e-08}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.006891195363459961}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.932656172736234e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.915733739067202e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.798065885996774e-05}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.415614863811376e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.617550177034878e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.597517150337729e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.991958352298951e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.301372125432608e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.448863732121582e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 6.77182969489933e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.135991803003744e-05}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 9.266833864499727e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.107308407737939e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.876127648548086e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.007215305408294e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.102667814352975e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.172670404170017e-12}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.825512353035547e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.010106372215797e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.179807173393732e-09}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.510708826824056e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.510708826824056e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.614819710071137e-10}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.803608046820304e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.803608046820304e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.211603307527637e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.806268293479877e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.806268293479877e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.198616480471286e-07}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.970256426817655e-07}, {"name": "Benzene", "categories": ["air"], "amount": 2.970256426817655e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.553188659505964e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.342576361354958e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.342576361354958e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813342215092388e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.171854491626412e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.171854491626412e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.480841728508682e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.487988877494416e-05}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.487988877494416e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.152031023523993e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.350543719529656e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.350543719529656e-05}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.663642941217963e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71274326363979e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 5.71274326363979e-07}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001818862514436914}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000216825024890243}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.000216825024890243}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.622051888446287e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.30591993828566e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.30591993828566e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004206523646445761}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004452336550969934}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.004452336550969934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.698730877983314e-09}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.176809360521283e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.176809360521283e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.49436227943477}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.05797941828315}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 29.05797941828315}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.986157966582645e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.264941782152616e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.264941782152616e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.211276877132605e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.257801051894914e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.257801051894914e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.157030538606932e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.065608436963135e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.065608436963135e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.291959421499929e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.556442908745643e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.556442908745643e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.426564375976271e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.146231932155865e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.146231932155865e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.749094908834605e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.335911643613174e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.335911643613174e-08}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.383754462042533e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.137323739765118e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 2.137323739765118e-09}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.630932527089968e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74862316449412e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.74862316449412e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.228180370229732e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.259256361943936e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.259256361943936e-07}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.358317111505462e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.998132638013652e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.417626751024006e-07}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.30466291186117e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 8.30466291186117e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.385689828449256e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.340368779142043e-05}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.340368779142043e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.385145978752628e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.209128256574392e-05}, {"name": "Furan", "categories": ["air"], "amount": 3.209128256574392e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.927864590212017e-10}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.929527253521877e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.929527253521877e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.457944521561068e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81471403380482e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 6.81471403380482e-08}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.727440495785806e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.692212042830373e-05}, {"name": "Lead II", "categories": ["air"], "amount": 2.692212042830373e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007219396090920078}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00705529572719002}, {"name": "Mercury II", "categories": ["air"], "amount": 0.00705529572719002}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.921138703663494e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.426897438199864e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.426897438199864e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.415557203584623e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.665645471325912e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.665645471325912e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.535914078209065e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666989982102919e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.666989982102919e-05}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.684302113659421e-08}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.049958488735399e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.049958488735399e-08}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.73466103000816e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.176105603521519e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 5.176105603521519e-05}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.089268905852151e-07}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.053222020461472e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.053222020461472e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.058142032342093e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.025050192320522e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 6.025050192320522e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.701161768393508e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.001266946913059e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 4.001266946913059e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.201906152438696e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.654607280088317e-07}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.654607280088317e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.658751485139641e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.119014101298451e-07}, {"name": "Styrene", "categories": ["air"], "amount": 5.119014101298451e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.770063405932431e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.39837077473109e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 6.39837077473109e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.181190803144065e-12}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.176930603657041e-12}, {"name": "Toluene", "categories": ["air"], "amount": 3.176930603657041e-12}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.920338056744807e-10}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.751070088945139e-09}, {"name": "Xylene", "categories": ["air"], "amount": 4.751070088945139e-09}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.130421025115689e-24}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.130421025115689e-24}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.130421025115689e-24}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.130421025115689e-24}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.0004817920255441872}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.081071442613549e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.081071442613549e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 8.081071442613549e-07}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.005412813058171186}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.005344319431615542}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.005344319431615542}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.005344319431615542}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 7.554690612036464e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.019393851208752e-07}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.019393851208752e-07}, {"name": "Lead II", "categories": ["soil"], "amount": 2.019393851208752e-07}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.02000443622421823}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 8.480180131105149e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 8.480180131105149e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 8.480180131105149e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.0001057249924546784}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.971608380599197e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.971608380599197e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.971608380599197e-05}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.826115595073202e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.546279067803446e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.826115595073202e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 8.826115595073202e-08}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.118711178853875e-08}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.406776750306832e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.406776750306832e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 6.906904090605212e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.650034416037056e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 6.906904090605212e-08}, {"name": "Aniline", "categories": ["water"], "amount": 6.906904090605212e-08}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.42356468162967e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 2.485989030729586e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.42356468162967e-07}, {"name": "Benzene", "categories": ["water"], "amount": 2.42356468162967e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.885503448857824e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 8.425367609910162e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 8.425367609910162e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.731751629412889e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 5.138840164335435e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.731751629412889e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.731751629412889e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.93228723043305e-25}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.059335183438447e-26}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.93228723043305e-25}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.93228723043305e-25}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 5.904155315475577e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.590052583598152e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.590052583598152e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.903478386107413e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 3.450637848030204e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.903478386107413e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 3.903478386107413e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.01064124692009222}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.0006276395027482738}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.01064124692009222}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.01064124692009222}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.653828513869859e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.697745543090239e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.653828513869859e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.653828513869859e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.633658746290207e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 5.295941693917522e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.633658746290207e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.633658746290207e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.379471582042169e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.596495340709977e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.596495340709977e-06}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.542682490085931e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 4.642550296405149e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.542682490085931e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 2.542682490085931e-09}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.574102322678905e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 5.226226981162908e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.574102322678905e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.574102322678905e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.485354373704319e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 7.712639527568175e-08}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.485354373704319e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 5.485354373704319e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.171588118574856e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.346365427938616e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.171588118574856e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 4.171588118574856e-08}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.715898825955418e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.847420342319156e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.715898825955418e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.715898825955418e-06}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.240884639256756e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.313683154064868e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.240884639256756e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.240884639256756e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.932661183632631e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.627426369587102e-11}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.932661183632631e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.932661183632631e-09}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.539549199989667e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.759132709331032e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.759132709331032e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.416247532922595e-07}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.103686639122781e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.416247532922595e-07}, {"name": "Lead II", "categories": ["water"], "amount": 3.416247532922595e-07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0001200800766910644}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.562717654660303e-05}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0001200800766910644}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0001200800766910644}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.823172927233115e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 9.656004694601315e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.823172927233115e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.823172927233115e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.16253257954551e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.175874687009049e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.16253257954551e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.16253257954551e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.241027359047357e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.743499587732249e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.241027359047357e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 2.241027359047357e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.932692703765708e-06}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.82737301857641e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 3.82737301857641e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.141909863354914e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.593718642068913e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.141909863354914e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.141909863354914e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 1.68836291963403e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.448863732121582e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.448863732121582e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.158734719783597e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 7.696674523054334e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.158734719783597e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.158734719783597e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.298293064042074e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.483666754706709e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.298293064042074e-08}, {"name": "Styrene", "categories": ["water"], "amount": 1.298293064042074e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.836736453785565e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.55467521351487e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.836736453785565e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.836736453785565e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.28796619460418e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.113876458507679e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.28796619460418e-09}, {"name": "Toluene", "categories": ["water"], "amount": 3.28796619460418e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.87817103743376e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 7.916174553493899e-11}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.87817103743376e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.87817103743376e-09}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.968325208963409e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72488671036636e-07}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 2.392344824587944e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.621112923743258e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.320457549765049e-07}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.332600353770246e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.650089002101258e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.029317585575104e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.82737301857641e-05}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.973370618914708e-11}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.53421227997533e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.428324535107701e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.938388614878956e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.056713149956801e-05}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.036581063539157e-06}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 3.418467484412382e-05}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.885964682958992e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.016317313235812e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.016317313235812e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.544038158175725e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 99.99414879423145}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 99.99414879423145}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 99.99414879423145}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 58.95214315432209}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 3.418467484412382e-05}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 3.729187954993366e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 3.729187954993366e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.091983626884058e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.091983626884058e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 0.2099867486507813}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 0.2099867486507813}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 0.3853312280989407}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 0.2099867486507813}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.998132638013652e-08}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 6.70288219492184e-06}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 2.611054452589474e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.621871552334511e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.84435814580476e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.772967486180558e-06}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.45035777450514e-05}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.829873065189469e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.991301788381765e-06}, {"name": "Furfural", "categories": ["air"], "amount": 4.345660720828529e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000814006573092419}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.743864159015686e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 1.175041748019131e-08}, {"name": "Naphthalene", "categories": ["air"], "amount": 6.351082658161222e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 9.0374626837381e-09}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0004239869897004578}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002423359861413617}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0003331614879209097}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0003331614879209097}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0003918347177884975}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0001951433794005633}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0001951433794005633}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0001951433794005633}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.003301182299098833}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 9.054524788040105e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.054524788040105e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.841001937321709e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 9.268047638758503e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0003689773290724312}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0003689773290724312}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.027003498025857e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0003689773290724312}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.79028281626522e-08}, {"name": "Acephate", "categories": ["water"], "amount": 2.487029067227868e-07}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.000639990423461e-07}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.487029067227868e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1.180107657027561e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.180107657027561e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.156335309274065e-08}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.199108512379478e-08}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.603853150604743e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.743864159015686e-06}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 4.86195939010831e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 3.729187954993366e-06}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.063590628352086e-05}]}, {"unit": "CTUh", "name": ["TRACI v2.1 no LT", "human toxicity: non-carcinogenic no LT", "human toxicity: non-carcinogenic no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.221076129596055e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.142401308517337e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.978195641238402e-09}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 4.242610285742846e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.392679541749306e-08}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.0003506147224737884}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.291621899121178e-07}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 9.671865584621795e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.724699410100045e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001407920377821338}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 9.708016844111831e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.278012890782212e-06}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.441349515389442e-05}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 8.82185338479455e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.744152507265701e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.0001865653238287938}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.514976898553216e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.19084656422507e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 5.689293488473177e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.515382826785763e-05}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 5.676396328314889e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.844869704874264e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 6.18998015965328e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.400280279713202e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.200731318738333e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 8.725444005900088e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.005344304385922e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.577843586162677e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.461714521851474e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.08556031719987929}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 3.549401920473224e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.097035277749298e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 6.026343492200264e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.194360540124425e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.684866776379766e-06}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.268631067940004e-08}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.04446630584551008}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.0004265994736482847}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.331091643438784e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 7.571136900989693e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.06629840746109e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.502069450836323e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 5.314798975805516e-05}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.785363458207277e-07}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.736951474249164e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.713956025626985e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.609540134884209e-07}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.735780904390812e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3.565453936392286e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.0007484149900566027}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 3.026742397087114e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.323373836409855e-05}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 8.626757056549432e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.022846032548176e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.136492607015195e-08}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.595972050549893e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.412043071588323e-07}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 2.974983061189815e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.118891180273046e-06}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0001475471753224561}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.342994347623155e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.247396040510806e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.498026636437909e-07}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 2.79449501214572e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.591732719588198e-06}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.651364096032627e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.637434146055799e-07}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.826205918331096e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.073190640596592e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.070497681191723e-06}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.371995092225478e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 7.803732452170765e-08}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.559092878798325e-05}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.863591764893856e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.761903462851979e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.903804534245596e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.732734234853651e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.417559462914081e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.743048310639527e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.622815872259569e-06}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.826956875329245e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.000123511601348606}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.62866364623693e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.356326701865415e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 8.174257362148937e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.971696268633912e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.481954957610653e-08}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 5.575094411019923e-08}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 1.411858312894749e-05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 5.323422874735585e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 6.161216540279184e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.667275702097867e-07}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 7.003289558100547e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.072282123260385e-07}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 7.626626274319757e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.43993461441268e-07}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.287458114490947e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.055388420802181e-09}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.009320644029522146}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 7.605788809947128e-05}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.041281305536015e-06}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.81691200463969e-08}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.242773848988688e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.09122357691481e-07}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 8.864197911606767e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 4.678376160539588e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.420612989098232e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.629121758973386e-12}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.8153105050720473}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.675136537433405e-07}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.276099938183971e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.0001138668835910055}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 9.572570783224532e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.043266588879628e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.316535823373809e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 6.555101209491677e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.0001591725529778709}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.807840507128964e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.633290926906425e-08}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 6.136174078421357e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 4.064579782070168e-06}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.267694828859509e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 5.928814044257169e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.402647336673159e-07}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.378150453428547e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.001633262508687558}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.637567039119838e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 6.274346569125752e-05}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.403709626048452e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 6.44497918258497e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.161171165923385e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 7.853821142005302e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 4.761064687909049e-08}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.864963689477978e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 3.568861582664458e-06}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.532400963236454e-09}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.927100588651506e-06}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.066968540665983e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.034208590064141e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.538196875085421e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.409357809495091e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.720982836621032e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.377798891435364e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.295936341190667e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 7.482238451868906e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 6.451763747794766e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.139721212223564e-07}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 4.846972051332177e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.755277587417682e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 9.8941374874774e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.118251739234456e-05}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.586997283128361e-07}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.157115414301461e-05}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.697393976400055e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.869763954880581e-07}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.430064249385157e-06}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.733327422786888e-07}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.267165613887981e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 7.687017975228025e-06}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 7.173262376334914e-09}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 8.305315265868153e-06}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 4.365751690113955e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.02532945731247778}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.0003549487632190929}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 8.772833490592437e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 2.014471645695883e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.847650620033796e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.664867632416609e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 4.972297832105879e-05}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.0004120225015791997}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.0007185436202832339}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6.560228411780649e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.934694045738182e-07}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.886539373366524e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 9.618820249928871e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.895456861166723e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.684472648263908e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 5.628295663165025e-07}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2.108889397842234e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.620316404487003e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 6.720802511205441e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.381327127979634e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.796899460458428e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.691500916649405e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.0001943856207712839}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.161573837165723e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.09611314831482e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.01523298640624192}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.001281390275351284}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.452706437984015e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.193835976157869e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.193835976157869e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.164203985881873e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.097308019913294e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.097308019913294e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.089916056276619e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.800835573688484e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.800835573688484e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.711552710245e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.881388585072839e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.881388585072839e-07}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.830038575962134e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.250952080291964e-09}, {"name": "Acetone", "categories": ["air"], "amount": 6.250952080291964e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9643392814793e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.344519345789673e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 6.344519345789673e-08}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.555937164383953e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0007317398747325888}, {"name": "Acrolein", "categories": ["air"], "amount": 0.0007317398747325888}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.277250463673861e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.117870945239609e-05}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.117870945239609e-05}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.761300342797525e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.908827553468379e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.908827553468379e-07}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001545128350605106}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001705390794446522}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.0001705390794446522}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.858263234853601e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.186823030819682e-05}, {"name": "Barium II", "categories": ["air"], "amount": 4.186823030819682e-05}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.869535458606569e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.343616912786929e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.343616912786929e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.035107125922855e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.521210156653091e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.521210156653091e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44454892341174e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.498948968100198e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.498948968100198e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.332387129371907e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.455115357767291e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.455115357767291e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.164614537071418e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.313164529461446e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.313164529461446e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008545819649387387}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04705306842463334}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.04705306842463334}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.489551726476562e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.548811468222657e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 8.548811468222657e-07}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.027705915933207e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.885700829766663e-08}, {"name": "Butanol", "categories": ["air"], "amount": 2.885700829766663e-08}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04649648722728665}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04548139653639836}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.04548139653639836}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.673630444843396e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.994214710324456e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.994214710324456e-05}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.797438724649864e-07}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.29140109142857e-07}, {"name": "Chloramine", "categories": ["air"], "amount": 5.29140109142857e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.265621290520827e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.320259077339534e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 1.320259077339534e-06}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58957475884972e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.577514347621003e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 2.577514347621003e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.306889836534118e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0004157419442109719}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.0004157419442109719}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.364906299642294e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.344140068026075e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.344140068026075e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.015397717353837e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.11219290214178e-08}, {"name": "Cumene", "categories": ["air"], "amount": 1.11219290214178e-08}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.861988584783585e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.161345732746777e-08}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.161345732746777e-08}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.031975385909731e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.588578971849514e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 6.588578971849514e-09}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.351879383031965e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.971404085507607e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.971404085507607e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.422197346035162e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.59205040444357e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.59205040444357e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64237670710105e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.773090620673323e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.773090620673323e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.922753117081016e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.327743675967333e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 3.327743675967333e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.608387850544461e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.519435478469864e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.519435478469864e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.400047590272472e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.231410315643408e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.231410315643408e-06}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.822728876801231e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.225696261519081e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.225696261519081e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56494780209889e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.064107410376518e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.064107410376518e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.540819918737348e-08}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.710678846985801e-07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.710678846985801e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.544741567459898e-07}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.578881857423269e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.578881857423269e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.623285776000493e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.351131596006365e-07}, {"name": "Hexane", "categories": ["air"], "amount": 1.351131596006365e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.009567805412798749}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.009444224721160448}, {"name": "Lead II", "categories": ["air"], "amount": 0.009444224721160448}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.854546007662333}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8349282563671901}, {"name": "Mercury II", "categories": ["air"], "amount": 0.8349282563671901}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.722141993797854e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.554415176449204e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.554415176449204e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.800721786157885e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.186646284691209e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 9.186646284691209e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.164130613995683e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.798398251395983e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 7.798398251395983e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.295973587569983e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.306254705471896e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.306254705471896e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.409692145162997e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.482396677327338e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.482396677327338e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000150482729407102}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001548276411924865}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.0001548276411924865}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.772484980404277e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.790162743766621e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.790162743766621e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.126492194353136e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02297007317087e-08}, {"name": "Methanol", "categories": ["air"], "amount": 1.02297007317087e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.383971900335308e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.030460094465199e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 9.030460094465199e-10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001690823306431838}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001662042907559698}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.001662042907559698}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.246372725695135e-10}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.131102155844676e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.131102155844676e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.664341831724058e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.912756498823721e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.912756498823721e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.502020571214635e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.177920856609969e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 5.177920856609969e-06}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.320563130799197e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.864960470147144e-08}, {"name": "Phenol", "categories": ["air"], "amount": 4.864960470147144e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.716903396071092e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.218943116346062e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.218943116346062e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.069227613077719e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.723513252256542e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.723513252256542e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.102494393890102e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.894756184559063e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.894756184559063e-06}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0263545115796338}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02584198444605579}, {"name": "Silver I", "categories": ["air"], "amount": 0.02584198444605579}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.319210197060257e-09}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.023831873833243e-07}, {"name": "Styrene", "categories": ["air"], "amount": 1.023831873833243e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.987101806731701e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.073180400353483e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.073180400353483e-08}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0006931417743826864}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0007058426973329602}, {"name": "Thallium I", "categories": ["air"], "amount": 0.0007058426973329602}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.903683505289912e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.304594300228931e-08}, {"name": "Toluene", "categories": ["air"], "amount": 5.304594300228931e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.350967643951052e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.365276812780914e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.365276812780914e-07}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.230682656706652e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.461091786678029e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.461091786678029e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.136724307213791e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1048927895181e-07}, {"name": "Xylene", "categories": ["air"], "amount": 1.1048927895181e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01595821309049346}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01559559974836769}, {"name": "Zinc II", "categories": ["air"], "amount": 0.01559559974836769}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.0002094603584268039}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.000183318467436291}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.000183318467436291}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.000183318467436291}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.911452194283206e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 4.907988749833895e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 4.907988749833895e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 4.907988749833895e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.13942743874014e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.442333520247059e-06}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.442333520247059e-06}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.442333520247059e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.1292612751460015}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.0002168092338262172}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.0002168092338262172}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.0002168092338262172}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.782669101518235e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.520111160723548e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.520111160723548e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.520111160723548e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.218383674504603e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.202966272221139e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.202966272221139e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.202966272221139e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.741521065525488e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.553936772202815e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.553936772202815e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.553936772202815e-07}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 5.194719296383719e-08}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.02650169997898971}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.083992281415829e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.083992281415829e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 7.083992281415829e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.368004808330223}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.01003832704950333}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.01003832704950333}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.01003832704950333}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.004662036571511168}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.847979845997768e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.847979845997768e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.847979845997768e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 5.949475966080398e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.109485695156325e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.109485695156325e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.109485695156325e-06}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.07315695569427592}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.0001846855128300004}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.0001846855128300004}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0001846855128300004}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.0008941449055217264}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.0008928049591685979}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.0008928049591685979}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.0008928049591685979}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.0001395425791044612}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.0001003377756956081}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.0001003377756956081}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.0001003377756956081}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.04352557247671509}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.0007020246775150156}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.0007020246775150156}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.0007020246775150156}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.038098730414904e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 4.885150423259475e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.038098730414904e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.038098730414904e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.924925858235224e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 1.755411400048051e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.924925858235224e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.924925858235224e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.58346765720981e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 2.879516213953051e-08}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.58346765720981e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.58346765720981e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.530019865060971e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.35988962527705e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.530019865060971e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.530019865060971e-07}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.863154111699243e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.284208441107347e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.863154111699243e-09}, {"name": "Acetone", "categories": ["water"], "amount": 5.863154111699243e-09}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 5.721675558887881e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.470170839944064e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 5.721675558887881e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 5.721675558887881e-08}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.037161984140659e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.278012890782212e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.278012890782212e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 3.411629127516181e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.308970630556439e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 3.411629127516181e-06}, {"name": "Aniline", "categories": ["water"], "amount": 3.411629127516181e-06}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.0003641328205736979}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.679966884016287e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.0003641328205736979}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.0003641328205736979}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.815371862412766e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.027646396022553e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.815371862412766e-05}, {"name": "Barium II", "categories": ["water"], "amount": 9.815371862412766e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.136890786331367e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.294960185401997e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.136890786331367e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.136890786331367e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.059504671760577e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 8.725444005900088e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 8.725444005900088e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.725295546990031e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.37687836602732e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.725295546990031e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.725295546990031e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.44322034490847e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.069153246761613e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.44322034490847e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.44322034490847e-06}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 3.75496697451903e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 5.898442237466312e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 3.75496697451903e-08}, {"name": "Butanol", "categories": ["water"], "amount": 3.75496697451903e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.0001584041670005643}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.0004265994736482847}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.0004265994736482847}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.749326067209468e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.659882348209684e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.749326067209468e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 3.749326067209468e-05}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.234715992783451e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 8.826973826968142e-11}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.234715992783451e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 5.234715992783451e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.174926138213845e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.795826347063662e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.174926138213845e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 1.174926138213845e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.395264973032938e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.412769507101826e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.395264973032938e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.395264973032938e-05}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.458143010834842e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 3.026742397087114e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 3.026742397087114e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.219606440516642e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 8.626757056549432e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 8.626757056549432e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2.767189760363356e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 7.280610973935055e-10}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2.767189760363356e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.767189760363356e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.299953983938089e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 6.35445705661448e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.299953983938089e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1.299953983938089e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.621566470905957e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.360566418060404e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.621566470905957e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.621566470905957e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.694398897752627e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.417559462914081e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.417559462914081e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.432293305766979e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.24515316294891e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.432293305766979e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.432293305766979e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.277283465761985e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 2.404498845655725e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.277283465761985e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.277283465761985e-06}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.302442950512341e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.289412599718562e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.302442950512341e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.302442950512341e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.872786723738894e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 5.641078147934529e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.872786723738894e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 1.872786723738894e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.235884859811734e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.365567221814513e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.235884859811734e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 3.235884859811734e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.629812601254424e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.310024095211606e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.629812601254424e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.629812601254424e-07}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.0001198412639522681}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.0001088766917969901}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.0001198412639522681}, {"name": "Lead II", "categories": ["water"], "amount": 0.0001198412639522681}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.01421435704570649}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.01131976984161415}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.01421435704570649}, {"name": "Mercury II", "categories": ["water"], "amount": 0.01421435704570649}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.000347251974289e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.100958176738442e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.000347251974289e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.000347251974289e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.0001416233637047218}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 3.905528422285198e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.0001416233637047218}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.0001416233637047218}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.053508057002389e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.962829458065847e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.053508057002389e-08}, {"name": "Methanol", "categories": ["water"], "amount": 1.053508057002389e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 7.6618368734787e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.936085280865146e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 7.6618368734787e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 7.6618368734787e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 8.311034023864305e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.465911420374546e-11}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 8.311034023864305e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 8.311034023864305e-10}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.213049174069575e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.153782493482439e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 2.153782493482439e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.613933988242454e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 7.835146660455351e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.613933988242454e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.613933988242454e-06}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.445230029912323e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 4.29623471206074e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.445230029912323e-07}, {"name": "Phenol", "categories": ["water"], "amount": 1.445230029912323e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.448472089483651e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 6.451763747794766e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 6.451763747794766e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 1.521286530292675e-09}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.139721212223564e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.139721212223564e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.122686194734411e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.327871485536874e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.122686194734411e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.122686194734411e-06}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.72046594869137e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.0003549487632190929}, {"name": "Silver I", "categories": ["water"], "amount": 0.0003549487632190929}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 6.905562739995133e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.382198990353596e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 6.905562739995133e-09}, {"name": "Styrene", "categories": ["water"], "amount": 6.905562739995133e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 7.968250916430617e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 2.680460418188266e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 7.968250916430617e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 7.968250916430617e-09}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.001784950709509547}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.0001049202120331686}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.001784950709509547}, {"name": "Thallium I", "categories": ["water"], "amount": 0.001784950709509547}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.78381889396906e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.85164323324186e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.78381889396906e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.78381889396906e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.746386821103701e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 2.679122057626619e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.746386821103701e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.746386821103701e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.204785546242881e-05}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.0001943856207712839}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.0001943856207712839}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.565173748460817e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.088863470699424e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.565173748460817e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.565173748460817e-08}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.0003022239733263844}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.001281390275351284}, {"name": "Zinc II", "categories": ["water"], "amount": 0.001281390275351284}, {"name": "Allyl chloride", "categories": ["water"], "amount": 8.429017961928794e-07}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.575815948545172e-06}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.745557815704155e-07}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.190721318298059e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.525304066537304e-06}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.067154181198038e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.012074046590263e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.316057574160154e-06}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.435820878572442e-07}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08293365611197e-06}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.868035842995189e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.697851013747082e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.595972050549893e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.693131810971133e-06}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.201611994080305e-06}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2.816218458009491e-06}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.645635268000873e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63321509311328e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003679179000157798}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.046721419301423e-06}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.426094698261276e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.215475115327741e-08}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.417141884636277e-07}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.447187570462221e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.153782493482439e-06}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.374871613818311e-07}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 4.858573792004901e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.232653909130515e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.076913084469074e-07}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 1.098197427047431e-05}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.893858831703959e-05}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.830333293317086e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.515390246796504e-08}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.317274405383888e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.319900117822828e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.0002356486037648856}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.023248103304168e-07}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.733944065031746e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.170757064025455e-08}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.072282123260385e-07}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.136492607015195e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 7.540611166253686e-09}, {"name": "Fluorene", "categories": ["air"], "amount": 6.340370005987742e-08}, {"name": "Pyrene", "categories": ["air"], "amount": 1.489693829921784e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.586426681913503e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 1.631349575654322e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.750910801247326e-07}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 8.186768257097815e-06}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.447187570462221e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.683266154297907e-05}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.56814171253634e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 3.910337206983045e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.72845770920059e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3.017980058822788e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.392964575665403e-06}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.482463566307345e-07}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.482463566307345e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.482463566307345e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 1.800005530365967e-08}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.270965132618554e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 5.475489186926091e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.475489186926091e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.68001324123363e-06}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.604649759954404e-07}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.604649759954404e-07}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.994433971000697e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 6.904100488552844e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 9.247059606854275e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 9.247059606854275e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 4.323051960569407e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 4.323051960569407e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 5.25676679463365e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 5.25676679463365e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.10045882856477e-06}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.10045882856477e-06}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.271877000596303e-06}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.128144482277807e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.128144482277807e-07}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.213463018854875e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.213463018854875e-05}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.99893220957287e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.572897957726884e-06}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.532693380731927e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.532693380731927e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.365689585903067e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 6.329528656865639e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 6.329528656865639e-07}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.219103112365215e-05}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.59254506133548e-06}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 5.185841392896754e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 5.185841392896754e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 8.186768257097815e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.240830704261376e-06}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.240830704261376e-06}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.933001245358469e-07}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.138756788903267e-05}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 3.226840929334478e-06}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5.617973852047992e-07}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.98609244395069e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.021437295419715e-05}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 3.38781973718152e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 3.959834347313802e-07}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.06955463935264e-09}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.316621333548514e-07}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 9.835774382303201e-08}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.595972050549893e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.192936095744531e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 2.260416714415452e-07}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 3.215640671142427e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.868990699782283e-07}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 1.498981009243825e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.648174791572838e-08}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.0008512395590675332}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 9.584426882536254e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.705301486509108e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.030977784498545e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.116961768802979e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 2.836856103544123e-07}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 4.106090218171466e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 4.154990716553336e-06}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.64090010082572e-07}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.399814139209636e-05}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 9.042640413963346e-08}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.501788900034522e-05}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.331865725371847e-07}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.961110952175252e-06}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.429268504182158e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 6.143703152798936e-08}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 5.642471818862786e-08}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.891316381353075e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.896103550308627e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.896103550308627e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.288581154974675e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 3.84109937728943e-05}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1.907208464708583e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 8.462352362389337e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.320986861490519e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.341411800477886e-06}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.604649759954404e-07}, {"name": "Furfural", "categories": ["air"], "amount": 1.502187012899557e-06}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000278655965657986}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.0001054070920551702}, {"name": "Acrolein", "categories": ["water"], "amount": 6.665051256104808e-05}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.979396590106392e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 4.170034845461837e-06}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.079383503825776e-07}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 5.933871636014717e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.10703904259797e-05}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.700857114830215e-05}, {"name": "Deltamethrin", "categories": ["air"], "amount": 2.432114271407734e-06}, {"name": "Thiram", "categories": ["air"], "amount": 3.318833067587056e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 6.65621990575715e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.450336556007289e-06}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.301205936966423e-06}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 4.397306157507253e-06}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.524584877853752e-06}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.203689565370465e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.608249320505897e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 3.929501850601008e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 5.254464374508087e-08}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.439496017501393e-06}, {"name": "Triallate", "categories": ["air"], "amount": 1.994797541734314e-06}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.091220173205946e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.502432842368696e-06}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.471577940283187e-07}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.42728831149469e-09}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.471577940283187e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 1.471577940283187e-07}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.466253946095121e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 8.76621004275217e-07}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.737390532413698e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.548065464886148e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.683266154297907e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.56759273851638e-07}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 2.162947071866905e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 4.102888901350442e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.102888901350442e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.089080284497417e-07}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.178952670852749e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 4.116697518203466e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.087613472078912e-08}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.01707196669309744}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01652093401257881}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01679645035283812}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.01679645035283812}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.02902479391025908}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.01445506514078247}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.01445506514078247}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.01445506514078247}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.875018079860632e-10}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.02733165400536528}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.02733165400536528}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.002242224813352487}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.02733165400536528}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 2.394134592823284e-06}, {"name": "Fipronil", "categories": ["air"], "amount": 1.910879822549913e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6.603079099676502e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 6.628803962248291e-07}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 1.18788292144222e-06}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.542085219156014e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.542085219156014e-05}, {"name": "Thiodicarb", "categories": ["water"], "amount": 3.322385105029873e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.190174350805327e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 1.721769764963922e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.322385105029873e-06}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0003273415770833903}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0003273415770833903}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 5.255691825727848e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.231831213671491e-05}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.0001387743810178501}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.275032384402566e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.5357581337796e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.0001387743810178501}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.407920302864048e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.407920302864048e-06}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 9.916909830059196e-09}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.60170128255564e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.107716619993772e-08}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.137011181366541e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 5.81904376994444e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.749333623130484e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 5.81904376994444e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.139218513803301e-07}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 2.60541471313881e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 5.076479545965154e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 1.503426278564477e-06}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.503426278564477e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.980260479937435e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.136691225952927e-07}, {"name": "Abamectin", "categories": ["air"], "amount": 0.0001725827242074209}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.922422872468747e-07}, {"name": "Diuron", "categories": ["air"], "amount": 3.259613204005238e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.745137730238623e-06}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.21290900099841e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 2.908673679003343e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.481452941847803e-05}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 6.706953745214803e-05}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.012542568378856e-07}, {"name": "2,4-D", "categories": ["water"], "amount": 3.800292070574911e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.523251019689758e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.800292070574911e-06}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 9.451186537882574e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.0002222818707172169}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.200431623087333e-05}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 7.314690101647855e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.727606151626637e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.006454018811787e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 2.183509523736084e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.631114310854442e-07}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.005393071807381e-07}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.547858321258661e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.807959891916134e-05}, {"name": "Simazine", "categories": ["water"], "amount": 2.807959891916134e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23717950402929e-05}, {"name": "Carbendazim", "categories": ["water"], "amount": 1.507634127146642e-06}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.10931733055766e-07}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.042170789321885e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 1.507634127146642e-06}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2.183509523736084e-06}, {"name": "Acephate", "categories": ["water"], "amount": 0.0006929586731928581}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.0002788074209685239}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.0006929586731928581}, {"name": "Abamectin", "categories": ["water"], "amount": 0.0002700521066349231}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 0.0002700521066349231}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.727606151626637e-06}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 1.446893607321647e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 3.556735419273804e-06}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 3.556735419273804e-06}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001620187425254965}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.485087760053352e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.566963258352636e-06}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.052788519995491e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.052788519995491e-06}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 8.543925095773046e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.863180093933961e-08}, {"name": "Diuron", "categories": ["water"], "amount": 6.641210189646113e-06}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4.443117925008929e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.492764463068921e-06}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.61889504397069e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 2.079383503825776e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.738343513116037e-08}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.095367633065906e-08}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.531692830560872e-07}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.202054972942742e-07}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.700857114830215e-05}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 7.156099907291373e-08}, {"name": "Thiram", "categories": ["water"], "amount": 4.397306157507253e-06}, {"name": "Carboxin", "categories": ["water"], "amount": 1.091220173205946e-06}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 2.151319341991782e-07}, {"name": "Propiconazole", "categories": ["water"], "amount": 1.683266154297907e-05}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.434007646080272e-09}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.497246823486204e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.408833344831208e-06}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.177731145541553e-05}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.777631760132063e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 4.877774301563965e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000505990199856692}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 9.11101710044291e-06}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 5.194719296383719e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.130467916894167e-07}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.231718232604536e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.271877000596303e-06}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.637115130288959e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 5.636214459363166e-07}, {"name": "Tebuconazole", "categories": ["water"], "amount": 8.186768257097815e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 1.219103112365215e-05}, {"name": "Atrazine", "categories": ["water"], "amount": 4.323051960569407e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 1.694696047548674e-07}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.466373767111429e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.408833344831208e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 4.47052065944512e-07}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.766161270751631e-05}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 4.877774301563965e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000505990199856692}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.219103112365215e-05}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.023976515844457e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.271877000596303e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.784835524267392e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.498539442643486e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.210676286439279e-05}, {"name": "EPTC", "categories": ["air"], "amount": 6.649389301397486e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.309719104482974e-06}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.156952398184586e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.317911034561375e-07}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.276352767088789e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.276352767088789e-06}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.441468942770363e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.136859738611991e-07}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.206020145097143e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.504975663962942e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 7.712931396797648e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.641569414103807e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.504975663962942e-06}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.748064230554958e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 7.176224143375262e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.156742828687684e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.95240352962132e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.95240352962132e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.416239543216468e-09}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 7.176224143375262e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 7.176224143375262e-08}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.488443545833287e-06}]}, {"unit": "kg CFC-11-Eq", "name": ["TRACI v2.1 no LT", "ozone depletion no LT", "ozone depletion potential (ODP) no LT"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.51}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 7.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 16}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.04}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.51}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.51}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.51}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 7.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 16}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 16}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 0.02}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.04}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "PM2.5-Eq", "name": ["TRACI v2.1 no LT", "particulate matter formation no LT", "particulate matter formation potential (PMFP) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.06666666666666667}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0003555555555555556}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.06111111111111111}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06666666666666667}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06666666666666667}, {"name": "Ammonia", "categories": ["air"], "amount": 0.06666666666666667}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.0003555555555555556}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06111111111111111}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06111111111111111}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.06111111111111111}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0003555555555555556}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.007222222222222222}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007222222222222222}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.007222222222222222}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.007222222222222222}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 0.2277777777777778}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2277777777777778}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2277777777777778}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 0.2277777777777778}]}, {"unit": "kg O3-Eq", "name": ["TRACI v2.1 no LT", "photochemical oxidant formation no LT", "maximum incremental reactivity (MIR) no LT"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 2.71774358974359}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 2.827076923076923}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.207435897435896}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.502284615384615}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.508666666666667}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 14.08402564102564}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.6142051282051282}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.161666666666667}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.88079487179487}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.53923076923077}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.6848717948717948}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.3559102564102564}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 7.450692307692309}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 11.37761538461539}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.7207282051282051}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.03776923076923}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 12.61210256410256}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.151030769230769}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.880410256410257}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 0.9558948717948718}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.2461333333333334}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.05562230769230769}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 19.11820512820513}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.02150871794871795}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.515538461538462}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.250128205128205}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.75671794871795}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.354641025641025}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.173097435897437}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.2806461538461539}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.2146461538461538}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.525694871794872}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 8.99502564102564}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.827435897435898}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.03084512820512822}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.6393897435897435}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.626125641025641}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.781384615384616}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.70951282051282}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.03916948717948718}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.9543666666666665}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.455846153846153}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0659951282051282}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 9.149615384615382}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.074415384615384}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.24385641025641}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 10.60682051282051}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 7.234589743589743}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.01871564102564103}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.04142923076923077}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.01437948717948718}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.03832076923076923}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.01437948717948718}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.6723358974358974}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.07200153846153845}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 11.47817948717949}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.697358974358974}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.481325641025641}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.05699948717948718}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.673564102564102}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.2872358974358974}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 6.809051282051282}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.750333333333334}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.05646230769230769}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.59535897435897}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 7.640128205128203}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.312930769230769}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.75648717948718}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 7.081051282051282}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.4894589743589743}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 2.497358974358974}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 11.66471794871795}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1.223110256410257}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.2939897435897437}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.732928205128205}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.7344487179487179}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 4.004717948717949}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.915102564102564}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 6.315641025641025}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 7.764282051282052}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71774358974359}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71774358974359}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 2.71774358974359}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.827076923076923}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.827076923076923}, {"name": "1-Pentanol", "categories": ["air"], "amount": 2.827076923076923}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.207435897435896}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.207435897435896}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.207435897435896}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.502284615384615}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.502284615384615}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.502284615384615}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.508666666666667}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.508666666666667}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.508666666666667}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.08402564102564}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.08402564102564}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 14.08402564102564}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.6142051282051282}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.6142051282051282}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.6142051282051282}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.161666666666667}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.161666666666667}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.161666666666667}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.88079487179487}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.88079487179487}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.88079487179487}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.53923076923077}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.53923076923077}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 6.53923076923077}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.6848717948717948}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.6848717948717948}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.6848717948717948}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3559102564102564}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3559102564102564}, {"name": "Acetone", "categories": ["air"], "amount": 0.3559102564102564}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.450692307692309}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.450692307692309}, {"name": "Acrolein", "categories": ["air"], "amount": 7.450692307692309}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.37761538461539}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.37761538461539}, {"name": "Acrylic acid", "categories": ["air"], "amount": 11.37761538461539}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7207282051282051}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7207282051282051}, {"name": "Benzene", "categories": ["air"], "amount": 0.7207282051282051}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.03776923076923}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.03776923076923}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.03776923076923}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.61210256410256}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.61210256410256}, {"name": "Butadiene", "categories": ["air"], "amount": 12.61210256410256}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.151030769230769}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.151030769230769}, {"name": "Butane", "categories": ["air"], "amount": 1.151030769230769}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.880410256410257}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.880410256410257}, {"name": "Butanol", "categories": ["air"], "amount": 2.880410256410257}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9558948717948718}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9558948717948718}, {"name": "Butyrolactone", "categories": ["air"], "amount": 0.9558948717948718}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2461333333333334}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2461333333333334}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.2461333333333334}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.05562230769230769}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.11820512820513}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.11820512820513}, {"name": "Chlorine", "categories": ["air"], "amount": 19.11820512820513}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02150871794871795}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02150871794871795}, {"name": "Chloroform", "categories": ["air"], "amount": 0.02150871794871795}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.515538461538462}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.515538461538462}, {"name": "Cumene", "categories": ["air"], "amount": 2.515538461538462}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.250128205128205}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.250128205128205}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.250128205128205}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.75671794871795}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.75671794871795}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.75671794871795}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.354641025641025}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.354641025641025}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.354641025641025}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.173097435897437}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.173097435897437}, {"name": "Dimethylamine", "categories": ["air"], "amount": 3.173097435897437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2806461538461539}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2806461538461539}, {"name": "Ethane", "categories": ["air"], "amount": 0.2806461538461539}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2146461538461538}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2146461538461538}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.2146461538461538}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.525694871794872}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.525694871794872}, {"name": "Ethanol", "categories": ["air"], "amount": 1.525694871794872}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.99502564102564}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.99502564102564}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.827435897435898}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.827435897435898}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.827435897435898}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03084512820512822}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03084512820512822}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.03084512820512822}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.6393897435897435}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.6393897435897435}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.626125641025641}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.626125641025641}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.626125641025641}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.781384615384616}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.781384615384616}, {"name": "Ethylamine", "categories": ["air"], "amount": 5.781384615384616}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.70951282051282}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.70951282051282}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 3.70951282051282}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03916948717948718}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03916948717948718}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.03916948717948718}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9543666666666665}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9543666666666665}, {"name": "Ethyne", "categories": ["air"], "amount": 0.9543666666666665}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.455846153846153}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.455846153846153}, {"name": "Formaldehyde", "categories": ["air"], "amount": 9.455846153846153}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0659951282051282}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0659951282051282}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0659951282051282}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.149615384615382}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.149615384615382}, {"name": "Furan", "categories": ["air"], "amount": 9.149615384615382}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.074415384615384}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.074415384615384}, {"name": "Heptane", "categories": ["air"], "amount": 1.074415384615384}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24385641025641}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24385641025641}, {"name": "Hexane", "categories": ["air"], "amount": 1.24385641025641}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.60682051282051}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.60682051282051}, {"name": "Isoprene", "categories": ["air"], "amount": 10.60682051282051}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.234589743589743}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.234589743589743}, {"name": "Isopropylamine", "categories": ["air"], "amount": 7.234589743589743}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01437948717948718}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01437948717948718}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.01437948717948718}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01871564102564103}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01871564102564103}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.01871564102564103}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04142923076923077}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04142923076923077}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.04142923076923077}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01437948717948718}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01437948717948718}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.01437948717948718}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03832076923076923}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03832076923076923}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.03832076923076923}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.6723358974358974}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.6723358974358974}, {"name": "Methanol", "categories": ["air"], "amount": 0.6723358974358974}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07200153846153845}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07200153846153845}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.07200153846153845}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.47817948717949}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.47817948717949}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 11.47817948717949}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.697358974358974}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.697358974358974}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.481325641025641}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.481325641025641}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.481325641025641}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05699948717948718}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05699948717948718}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.05699948717948718}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.673564102564102}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.673564102564102}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.673564102564102}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2872358974358974}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2872358974358974}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.2872358974358974}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.809051282051282}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.809051282051282}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 6.809051282051282}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.750333333333334}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.750333333333334}, {"name": "m-Xylene", "categories": ["air"], "amount": 9.750333333333334}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05646230769230769}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05646230769230769}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.05646230769230769}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59535897435897}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.59535897435897}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.59535897435897}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.640128205128203}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.640128205128203}, {"name": "o-Xylene", "categories": ["air"], "amount": 7.640128205128203}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.312930769230769}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.312930769230769}, {"name": "Pentane", "categories": ["air"], "amount": 1.312930769230769}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.75648717948718}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.75648717948718}, {"name": "Phenol", "categories": ["air"], "amount": 2.75648717948718}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.081051282051282}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.081051282051282}, {"name": "Propanal", "categories": ["air"], "amount": 7.081051282051282}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.4894589743589743}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.4894589743589743}, {"name": "Propane", "categories": ["air"], "amount": 0.4894589743589743}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.497358974358974}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.497358974358974}, {"name": "Propanol", "categories": ["air"], "amount": 2.497358974358974}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.66471794871795}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.66471794871795}, {"name": "Propene", "categories": ["air"], "amount": 11.66471794871795}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.223110256410257}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.223110256410257}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.223110256410257}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2939897435897437}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2939897435897437}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.2939897435897437}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.732928205128205}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.732928205128205}, {"name": "Styrene", "categories": ["air"], "amount": 1.732928205128205}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7344487179487179}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7344487179487179}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.7344487179487179}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.004717948717949}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.004717948717949}, {"name": "Toluene", "categories": ["air"], "amount": 4.004717948717949}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.915102564102564}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.915102564102564}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.915102564102564}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.315641025641025}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.315641025641025}, {"name": "Trimethylamine", "categories": ["air"], "amount": 6.315641025641025}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.764282051282052}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.764282051282052}, {"name": "Xylene", "categories": ["air"], "amount": 7.764282051282052}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.250128205128205}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01437948717948718}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01437948717948718}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.05562230769230769}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.01437948717948718}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05562230769230769}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.01437948717948718}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 1.260882051282051}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.236333333333333}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.236333333333333}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.236333333333333}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.236333333333333}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8345769230769228}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.8345769230769228}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.8345769230769228}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8345769230769228}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8067717948717951}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8067717948717951}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.8067717948717951}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.8067717948717951}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.6393897435897435}, {"name": "Methylamine", "categories": ["air"], "amount": 7.697358974358974}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.05905051282051282}, {"name": "Nitric oxide", "categories": ["air"], "amount": 24.79358974358974}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.4244974358974359}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.230015384615385}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 2.392307692307691}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.411179487179487}, {"name": "Ethylene", "categories": ["air"], "amount": 8.99502564102564}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.344487179487179}, {"name": "Butene", "categories": ["air"], "amount": 9.726589743589745}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.726589743589745}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.726589743589745}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 9.726589743589745}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.59535897435897}, {"name": "EPTC", "categories": ["air"], "amount": 1.665346153846154}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.665346153846154}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.1783651282051282}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1783651282051282}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1783651282051282}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.1783651282051282}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 24.79358974358974}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.79358974358974}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.79358974358974}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 24.79358974358974}]}, {"unit": "kg SO2-Eq", "name": ["TRACI v2.1", "acidification", "acidification potential (AP)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.88}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 0.88}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.6}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 1.88}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 0.98}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 1.88}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "Ammonia", "categories": ["air"], "amount": 1.88}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.88}, {"name": "Hydrochloric acid", "categories": ["air", "low population density, long-term"], "amount": 0.88}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.88}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 1.6}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.6}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 1.88}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.98}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 0.98}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.98}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 0.98}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.51}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 0.88}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.7}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.51}]}, {"unit": "kg CO2-Eq", "name": ["TRACI v2.1", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 31}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1430}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 146}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4470}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 725}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 124}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2310}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 77}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 609}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7370}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3500}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1890}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7140}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1810}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 14400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.7}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10900}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 151}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 675}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 25}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 13}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 25}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1400}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7390}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4750}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14800}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17200}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 22800}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 31}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 31}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31}, {"name": "Chloroform", "categories": ["air"], "amount": 31}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1430}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1430}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1430}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 146}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 146}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 146}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 146}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4470}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 4470}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4470}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4470}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6130}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 725}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 725}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 725}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 725}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 124}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 124}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 124}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2310}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2310}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2310}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2310}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 77}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 77}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 77}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 77}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 609}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 609}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 609}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 609}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7370}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7370}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7370}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7370}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3500}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 25}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 25}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 25}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1890}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1890}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1890}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1890}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7140}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7140}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7140}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7140}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1810}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1810}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 14400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 14400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 14400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 8.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.7}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10900}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10900}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10900}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10900}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 151}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 151}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 151}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 151}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 675}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 675}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 675}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 675}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 25}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 25}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25}, {"name": "Methane, fossil", "categories": ["air"], "amount": 25}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1400}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1400}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1400}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1400}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7390}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7390}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7390}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7390}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4750}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 4750}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4750}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4750}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14800}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17200}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 22800}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 22800}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22800}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 22800}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9160}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 25}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 25}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 25}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 25}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6130}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6130}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6130}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 10000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6130}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}]}, {"unit": "CTUe", "name": ["TRACI v2.1", "ecotoxicity: freshwater", "ecotoxicity: freshwater"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 0.8775848512654951}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.2138324120021953}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 181.9075712591964}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.2015005445608996}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.08050924933313827}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.254007818655599}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 14.57226883990429}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.02057192429268348}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 44.86884533105171}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3.463136417313835}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 252.348005989373}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.2884053887747148}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.789914178245758}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 10.51595427132834}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 7610.914674467282}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.07926608118214395}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.7429286993574472}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 133.5325887123976}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 8495.54699383616}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 104.6451854713886}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 14.54163513494238}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 354.9073927687746}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9281.126560757553}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 11852.49487695412}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 589.3948166506241}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 5287.316291691801}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.2768527285333682}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.007767568424149}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 30.64354091462214}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 76174.05877769532}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 49.33836188247038}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 11406.42648689972}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 44920.27412758143}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 819.7509007338075}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 607.2172724431911}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 21.12348480949339}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 358.5619854441121}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 30.75838944840877}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 49.52827455565405}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.142499093507869}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.06418485563858191}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 393.2620781735379}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.02960079052028783}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 626.6336235602134}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 342.0626108851369}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 170.4959917947524}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 200.4375969397927}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1612.809976002705}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 740.7226250635325}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5733.526330050867}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 73.99025029637986}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 1.099457188718305}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 869.047924983249}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 946.6271789803518}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 4.530428514254813}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.1103140502570142}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 28.37379925546212}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 30.31622064749225}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3921.689844317012}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 9712.291690087604}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 10008.3409620644}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 3071.942564795764}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 54554.08444179271}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 243.1041592084075}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 21581.81316640977}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.307478615380807}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 14691.33243836168}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1108.358159155425}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 45.5357521343301}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 758.7943034284156}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.282103029633416}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 86.41294637134375}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 57823.87667902809}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1727.7527485528}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 4.726464448796084}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 517.1464161788688}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 41802.21762058009}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1294.592667971015}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 8.478125631943172}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 585.8376259220464}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 479.7232752068333}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 269.8800361636692}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 8.872703308182082}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1705.944379403221}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.02444359396289091}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 23090.11676949549}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 55247.57233198472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.09072745464528173}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 21165.24040867214}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 4817.156768616905}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.0005956516966396799}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.139142623596091}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 1274.349804666132}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.43105910115}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 242.1677132175915}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 280.3192620671686}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1409.81393453216}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1092.537654248142}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6021.469169790082}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 476.0762071251128}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 295.5913486073072}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 285.0918569313737}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 9193.9391566954}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1534.677339349654}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.001810619293954376}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.1144243155943202}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.05140551479732774}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1921.726540567452}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 169738.0330996828}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 5.522477872065067}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 44.03938064652566}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 1747.275462019705}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 20486.62834899995}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 953.8311664072469}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3621.596791466811}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 14.03134667561534}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 24.1739950254825}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.2448524808191659}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 2567.019241103498}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 142941.0086394065}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.4070434169266591}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 147.2625253918797}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 7450.357907441243}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 365.7065026003539}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4019.340356854712}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 2172.993614418999}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 49.82093402571822}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4538.020496175222}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 23.96460189472988}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 19.07758889487456}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 97.07350922464629}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 112006.4298371197}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 4551.225016771204}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1.195316447320791}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.2049979606873083}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.5761458960501793}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.1517133038329646}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.3648712141456175}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 1911.479851134369}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.1544202484527623}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.7251438323523012}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.02507849558456108}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 560.0652844546449}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 202.5805655846324}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 17345.46423299769}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.1131699171131654}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.2314499196529845}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 15.72316015661396}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.831131324712536}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.007830674545406}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1449.887243649723}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 30.6061907842425}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 199.3503595055195}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 384.0826700760281}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 211651.2754214526}, {"name": "Fenpropimorph", "categories": ["soil", "agricultural"], "amount": 9.828730914507553}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 5875.232765914128}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 813.4815314949818}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 32315.10687636696}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 164.6428088934566}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 264.3378908849616}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 2660.182571676538}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 6137.049375526823}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 10219.64558731738}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 10054.75335824089}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8386.99402138463}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1116.704605603812}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 93.87049959879023}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 21.61353929202834}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 27.62498707813234}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.692326330663305}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.204408879684776}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 10.74402720120148}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.002780419102079553}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 16.82211773606099}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 2834.661658070369}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 103.9440772563542}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 62492.71879037761}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.689789773020432e-05}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000212391668063849}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 26679.15205781307}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 97.81784007514993}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 1035.78217843629}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 210.7204230986387}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1044.859483343018}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.492463680746446e-05}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.1837665662054698}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 9461.352075023213}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 161.2421325372742}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 90.09562197378223}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 133638.4039148149}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 173.6636086815864}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 20981.64182489484}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 11123.30312164782}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1966.815667934147}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 54.97824943249207}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2289.781128695832}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 194.2419717336017}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 266.8531151611314}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 255.2536459219005}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 124.972879067274}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.03475883743778153}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 12065.86764199895}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 225.0913468971116}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 507.8834624303366}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 49.03887088689834}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 23.16387391030672}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5393.370771034089}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 220.3742730046184}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 458.7787841928451}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2770.650280769631}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 11.64994372654887}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.09701543553922609}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.06319133789530491}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.066749126374071}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.2256583397003862}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 14094.53501477213}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5304.732009017731}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.576607505371597}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.627629520066924}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.4648226458486904}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.05772829211702672}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.5293089457355553}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.241083646031596}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1915.770898287329}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6441.702873071918}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 745.4217086790785}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 117.3470372332802}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1267.945098912815}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 4.142297319983587}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 2202.555054811937}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 17.36188717583213}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.02048579141810639}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 5483.033142421826}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 126.204653290908}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 6082.160616288364}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 215.530846628909}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 10.95063499429621}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 831.6182398811038}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 27.44900717314156}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 129.4728531083732}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 21.85550567506843}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5616.262910845849}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1425.345429804084}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 89.98044993017646}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.03214225332310074}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 156.2309363343042}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 83124.28654811245}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2932.025785932296}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.01405462319777067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 781.1036719132035}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 248.7435612489268}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 23.64350250995657}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1194.236920982726}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4549.47374020951}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6039.639430136761}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 477399.9008965495}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5658.102396456461}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6318.72190294688}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 167.1412846504503}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 30.15181210211107}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1116.900694905618}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1357.496732517177}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 349.5500940362426}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 19162.55653687737}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 42.7335814184926}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 453001.2590687819}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 24118.17780320264}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 498.1355562687057}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 6.27104198098271}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.3756669264925559}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 60375.4789920879}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.09329253568558199}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 15.0525551268929}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 310.2595888492157}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 285.0691571123865}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 10.74667451392387}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.09530603937019211}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.304292415914342}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 196.1001637111407}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3507.530003092889}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 11.64309685739373}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.089616392083714}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 35.50249751350101}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 153.002197788183}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 145.5141013045667}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 19.51291094687104}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 937.4124331458914}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3701.972218600403}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 2964.10862813788}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 47.18626876611939}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 80059.48955413517}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 194088.6647216774}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 12634.63998176688}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.5344892610003127}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.01989143055500136}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 5256.022376072727}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 1581.689868003643}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 79.02918388573273}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 449.8637672191722}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.02728675157938322}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1.181066780750985}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 4553.227967332995}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 449.513177271165}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3383.333752775135}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 41283.75821110152}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 4664.853112587411}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 53712.03118447676}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 53644.78974286943}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 14085.29382753462}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 862.9181673768969}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 41325.57198507784}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1025.563114206294}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 1341.206521620715}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 15803.20422885043}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1347.130200589376}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 2978.232970570632}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.01312671903662141}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.189790201702494}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4220.835040030409}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 319.761373813401}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 6056.636505875188}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 175.1738657117861}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 38.44382376434176}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 52549.72510443091}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1315.304465367724}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 41.04517950738141}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.3873282178246341}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 592.5107503648138}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 14604.33432925477}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.02195787684501589}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 163.5021226398655}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 10.24292353353621}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 46228.73229960291}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 112885.975123505}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1059.06456811332}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.01127378886742958}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 16684.36401546222}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 38584.58479284478}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8353349461994352}, {"name": "1,4-Butanediol", "categories": ["air", "low population density, long-term"], "amount": 0.8564598987324652}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8564598987324652}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 0.8564598987324652}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2105961714821809}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.2122142917421881}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2122142917421881}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.2122142917421881}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1987837354452568}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.2001421400030782}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2001421400030782}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.2001421400030782}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07940962035659084}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.07995943484486456}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07995943484486456}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.07995943484486456}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2515462305914359}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.2527770246235175}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2527770246235175}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.2527770246235175}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02097858564911251}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.02077525497089799}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02077525497089799}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.02077525497089799}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.596102855224183}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3.029619636269009}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.029619636269009}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3.029619636269009}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2964306179555203}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.2924180033651176}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2924180033651176}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.2924180033651176}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.24915716949021}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 10.38255572040928}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.38255572040928}, {"name": "Acetic acid", "categories": ["air"], "amount": 10.38255572040928}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07903469686530108}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.07915038902372251}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07915038902372251}, {"name": "Acetone", "categories": ["air"], "amount": 0.07915038902372251}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7405705157733234}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.7417496075653853}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7417496075653853}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.7417496075653853}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 108.5753066810495}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 106.610246076219}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 106.610246076219}, {"name": "Acrolein", "categories": ["air"], "amount": 106.610246076219}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.25668631068422}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 13.8991607228133}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.8991607228133}, {"name": "Acrylic acid", "categories": ["air"], "amount": 13.8991607228133}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.581812659746831}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 2.29479011408549}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29479011408549}, {"name": "Aniline", "categories": ["air"], "amount": 2.29479011408549}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 76801.41673494274}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 76487.73775631902}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 76487.73775631902}, {"name": "Antimony ion", "categories": ["air"], "amount": 76487.73775631902}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 612.0648333104592}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 609.6410528768251}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 609.6410528768251}, {"name": "Barium II", "categories": ["air"], "amount": 609.6410528768251}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.150215968593328}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.146357531050598}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.146357531050598}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 3.146357531050598}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06381234348924905}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.06399859956391549}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06399859956391549}, {"name": "Benzene", "categories": ["air"], "amount": 0.06399859956391549}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02715051504412197}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.0283756527822049}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0283756527822049}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0283756527822049}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 621.9127738018589}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 624.2731986810361}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 624.2731986810361}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 624.2731986810361}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 341.0291147599081}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 341.5458628225225}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 341.5458628225225}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 341.5458628225225}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.53308030257735}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 107.0145360486649}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 107.0145360486649}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 107.0145360486649}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1631.165194036358}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 1621.987585019532}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1621.987585019532}, {"name": "Beryllium II", "categories": ["air"], "amount": 1621.987585019532}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1079422117109683}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.1091281309839912}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1091281309839912}, {"name": "Butanol", "categories": ["air"], "amount": 0.1091281309839912}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.51755226171699}, {"name": "Butyrolactone", "categories": ["air", "low population density, long-term"], "amount": 29.91688645460462}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.91688645460462}, {"name": "Butyrolactone", "categories": ["air"], "amount": 29.91688645460462}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3955.3597378302}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 3938.524791073606}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3938.524791073606}, {"name": "Cadmium II", "categories": ["air"], "amount": 3938.524791073606}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.306544061219061}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.307011338299934}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.307011338299934}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.307011338299934}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14212.49001792392}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 14451.9112281428}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14451.9112281428}, {"name": "Chloramine", "categories": ["air"], "amount": 14451.9112281428}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 749.484412123745}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 754.1393577760803}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 754.1393577760803}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 754.1393577760803}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2817944482566569}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.2819487389450365}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2819487389450365}, {"name": "Chloroform", "categories": ["air"], "amount": 0.2819487389450365}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.38751997406055}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 85.40023317270214}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 85.40023317270214}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 85.40023317270214}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 521.3592427382235}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 519.2528294585461}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 519.2528294585461}, {"name": "Chromium III", "categories": ["air"], "amount": 519.2528294585461}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 42142.76445969223}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 41972.49104013616}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 41972.49104013616}, {"name": "Chromium VI", "categories": ["air"], "amount": 41972.49104013616}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1722.64845735768}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 1714.296418380451}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1714.296418380451}, {"name": "Cobalt II", "categories": ["air"], "amount": 1714.296418380451}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 23320.1199541408}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 23205.11836181814}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23205.11836181814}, {"name": "Copper ion", "categories": ["air"], "amount": 23205.11836181814}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07407715125994449}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.08240230295261311}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.08240230295261311}, {"name": "Cumene", "categories": ["air"], "amount": 0.08240230295261311}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0004053534730581415}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.0005005025848489107}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0005005025848489107}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.0005005025848489107}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001828930352428226}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.001819774823191301}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001819774823191301}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.001819774823191301}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1167804826184969}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.1156023991064085}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1156023991064085}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.1156023991064085}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04687070229168087}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 0.0491381085445043}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0491381085445043}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.0491381085445043}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.58843899352387}, {"name": "Dimethyl malonate", "categories": ["air", "low population density, long-term"], "amount": 23.88121700950319}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.88121700950319}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 23.88121700950319}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2509904810898764}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.2479214809545211}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2479214809545211}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.2479214809545211}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 106410.8280586294}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 124675.918349018}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124675.918349018}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 124675.918349018}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.4122155889058901}, {"name": "Dipropylamine", "categories": ["air", "low population density, long-term"], "amount": 0.4096295029162746}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.4096295029162746}, {"name": "Dipropylamine", "categories": ["air"], "amount": 0.4096295029162746}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.00739236833539}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 19.04249063160497}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.04249063160497}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 19.04249063160497}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.123718029785784}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1.159517238553287}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.159517238553287}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.159517238553287}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2049083929924067}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.2049531768398575}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2049531768398575}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.2049531768398575}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5752241915552043}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.5756850438026918}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5756850438026918}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.5756850438026918}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1515465576547518}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.1516299307438582}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1516299307438582}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.1516299307438582}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3644040113605773}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.3646376127530974}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3646376127530974}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.3646376127530974}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1512219067684273}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.1528210776105948}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1528210776105948}, {"name": "Ethanol", "categories": ["air"], "amount": 0.1528210776105948}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.721533745751081}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.7233387890516911}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7233387890516911}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.7233387890516911}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02461940407511504}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.02484894982983806}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02484894982983806}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1132683885527904}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.1132191528329779}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1132191528329779}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.1132191528329779}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2283644888594898}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.2299072042562372}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2299072042562372}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.2299072042562372}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.84161932370827}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 14.28238974016111}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.28238974016111}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 14.28238974016111}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.647116009740433}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.739123667226484}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.739123667226484}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.739123667226484}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.006214759280132}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.007022716912769}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.007022716912769}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.007022716912769}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.98236362523197}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 26.80367535168215}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.80367535168215}, {"name": "Formaldehyde", "categories": ["air"], "amount": 26.80367535168215}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.670056297578443}, {"name": "Formamide", "categories": ["air", "low population density, long-term"], "amount": 1.681191314120874}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.681191314120874}, {"name": "Formamide", "categories": ["air"], "amount": 1.681191314120874}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.96030446924476}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 9.082356674464767}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.082356674464767}, {"name": "Formic acid", "categories": ["air"], "amount": 9.082356674464767}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00233100240176665}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 0.002555710751923102}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002555710751923102}, {"name": "Furan", "categories": ["air"], "amount": 0.002555710751923102}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37442513185235e-06}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1.013616143102833e-05}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.013616143102833e-05}, {"name": "Heptane", "categories": ["air"], "amount": 1.013616143102833e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.764006726917132e-05}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.0001350158676665101}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001350158676665101}, {"name": "Hexane", "categories": ["air"], "amount": 0.0001350158676665101}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.889288509229414e-05}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 5.69087609498793e-05}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.69087609498793e-05}, {"name": "Isoprene", "categories": ["air"], "amount": 5.69087609498793e-05}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1913796782043254}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 0.1875731222048976}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1875731222048976}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.1875731222048976}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 176.0628890390114}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 174.8632488602989}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 174.8632488602989}, {"name": "Lead II", "categories": ["air"], "amount": 174.8632488602989}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 12297.33466876407}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 12181.60115538151}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12181.60115538151}, {"name": "Mercury II", "categories": ["air"], "amount": 12181.60115538151}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.63811189353482}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 11.64402781004184}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.64402781004184}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 11.64402781004184}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.09691431191311192}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.096964873726169}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.096964873726169}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.096964873726169}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06313117662421644}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.06316125725976068}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06316125725976068}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.06316125725976068}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.066550640300604}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.066649883337338}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.066649883337338}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.066649883337338}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2222578820703635}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.2239581108853748}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2239581108853748}, {"name": "Methanol", "categories": ["air"], "amount": 0.2239581108853748}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5758394729395236}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.5762234891555603}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5762234891555603}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.5762234891555603}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.666858460762592}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 2.647243990414758}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.647243990414758}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.647243990414758}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.46155176678081}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 0.4631872063147502}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.4631872063147502}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05768350587806599}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.05770589899754636}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05770589899754636}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.05770589899754636}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5287208171662259}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.5290148814508906}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5290148814508906}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.5290148814508906}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.149514801273819}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 2.195299223652707}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.195299223652707}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.195299223652707}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 118.3029799473779}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 117.825008590329}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117.825008590329}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 117.825008590329}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.85521540325064}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 3.998756361617114}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.998756361617114}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.998756361617114}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01644680338878204}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.01846629740344422}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01846629740344422}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.01846629740344422}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6137.384704776678}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 6109.772660532521}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6109.772660532521}, {"name": "Nickel II", "categories": ["air"], "amount": 6109.772660532521}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.87398543741971}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 10.91231021585796}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.91231021585796}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 10.91231021585796}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.0403857669706}, {"name": "o-Nitrotoluene", "categories": ["air", "low population density, long-term"], "amount": 27.24469647005608}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.24469647005608}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 27.24469647005608}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02856291329365311}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.03035258330837692}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03035258330837692}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.03035258330837692}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.005981654617209129}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.0100181389074899}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0100181389074899}, {"name": "Pentane", "categories": ["air"], "amount": 0.0100181389074899}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.56100072833934}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 19.60225161914795}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.60225161914795}, {"name": "Phenol", "categories": ["air"], "amount": 19.60225161914795}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1135.06293035613}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1164.649925669428}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1164.649925669428}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1164.649925669428}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3414.137148231604}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3981.805444220557}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3981.805444220557}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3981.805444220557}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3883891614083377}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.3820280439504468}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3820280439504468}, {"name": "Propanal", "categories": ["air"], "amount": 0.3820280439504468}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.09173941151547893}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.09251597360053046}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.09251597360053046}, {"name": "Propanol", "categories": ["air"], "amount": 0.09251597360053046}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.32276953922103}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 10.53472202657245}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.53472202657245}, {"name": "Propionic acid", "categories": ["air"], "amount": 10.53472202657245}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0936882576844585}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0944971485273253}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0944971485273253}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0944971485273253}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.302369905869175}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.303331160891758}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.303331160891758}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.303331160891758}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 2989.82139002033}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 2976.965009079105}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2976.965009079105}, {"name": "Selenium IV", "categories": ["air"], "amount": 2976.965009079105}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 80815.45971238834}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 80437.47463326177}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80437.47463326177}, {"name": "Silver I", "categories": ["air"], "amount": 80437.47463326177}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5220678704830352}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 0.528278565741674}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.528278565741674}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.528278565741674}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01113863650583113}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.01551503353041624}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01551503353041624}, {"name": "Styrene", "categories": ["air"], "amount": 0.01551503353041624}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 77.99165987461768}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 78.51042188017522}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.51042188017522}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 78.51042188017522}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02733696432541367}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.02731185795239844}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02731185795239844}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.02731185795239844}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.187538026540893}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 1.184302403645939}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.184302403645939}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1.184302403645939}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 14197.91850382319}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 14141.60616567891}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14141.60616567891}, {"name": "Thallium I", "categories": ["air"], "amount": 14141.60616567891}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1364.56823186714}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 1355.849216228258}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1355.849216228258}, {"name": "Tin ion", "categories": ["air"], "amount": 1355.849216228258}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01242112714578335}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.01277392309120238}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01277392309120238}, {"name": "Toluene", "categories": ["air"], "amount": 0.01277392309120238}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1862689954431346}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.1880295985728143}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1880295985728143}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.1880295985728143}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02412878618071882}, {"name": "Trimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.02304333151286735}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02304333151286735}, {"name": "Trimethylamine", "categories": ["air"], "amount": 0.02304333151286735}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 46651.9104446765}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 46440.3213721397}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46440.3213721397}, {"name": "Vanadium V", "categories": ["air"], "amount": 46440.3213721397}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01001834721027202}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0106460680388508}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0106460680388508}, {"name": "Xylene", "categories": ["air"], "amount": 0.0106460680388508}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16872.47176386005}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 16778.41788966113}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16778.41788966113}, {"name": "Zinc II", "categories": ["air"], "amount": 16778.41788966113}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 95791.0334096898}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 95791.0334096898}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 95791.0334096898}, {"name": "Antimony ion", "categories": ["soil"], "amount": 95791.0334096898}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 763.1005379036917}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 763.1005379036917}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 763.1005379036917}, {"name": "Barium II", "categories": ["soil"], "amount": 763.1005379036917}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2044.440961644406}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2044.440961644406}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2044.440961644406}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2044.440961644406}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 4936.045752744441}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4936.045752744441}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4936.045752744441}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4936.045752744441}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 650.1791381610516}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 650.1791381610516}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 650.1791381610516}, {"name": "Chromium III", "categories": ["soil"], "amount": 650.1791381610516}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 52555.16047834999}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 52555.16047834999}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 52555.16047834999}, {"name": "Chromium VI", "categories": ["soil"], "amount": 52555.16047834999}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2153.790769076094}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2153.790769076094}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2153.790769076094}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2153.790769076094}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 29164.3719150002}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 29164.3719150002}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 29164.3719150002}, {"name": "Copper ion", "categories": ["soil"], "amount": 29164.3719150002}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 103.9440772563541}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 221.4977918869544}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 221.4977918869544}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 221.4977918869544}, {"name": "Lead II", "categories": ["soil"], "amount": 221.4977918869544}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 15597.06514527675}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 15597.06514527675}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 15597.06514527675}, {"name": "Mercury II", "categories": ["soil"], "amount": 15597.06514527675}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 147.5338595951268}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 147.5338595951268}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 147.5338595951268}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 147.5338595951268}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 7664.978129157914}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 7664.978129157914}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 7664.978129157914}, {"name": "Nickel II", "categories": ["soil"], "amount": 7664.978129157914}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 3731.258616355279}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 3731.258616355279}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 3731.258616355279}, {"name": "Selenium IV", "categories": ["soil"], "amount": 3731.258616355279}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 100987.4333791871}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 100987.4333791871}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 100987.4333791871}, {"name": "Silver I", "categories": ["soil"], "amount": 100987.4333791871}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 92.49135491050366}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 17701.23878238672}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 17701.23878238672}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 17701.23878238672}, {"name": "Thallium I", "categories": ["soil"], "amount": 17701.23878238672}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1714.419845085274}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1714.419845085274}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1714.419845085274}, {"name": "Tin ion", "categories": ["soil"], "amount": 1714.419845085274}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 58269.36995740739}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 58269.36995740739}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 58269.36995740739}, {"name": "Vanadium V", "categories": ["soil"], "amount": 58269.36995740739}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 21139.016907883}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 21139.016907883}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 21139.016907883}, {"name": "Zinc II", "categories": ["soil"], "amount": 21139.016907883}, {"name": "1,4-Butanediol", "categories": ["water", "ground-"], "amount": 7.309331982177244}, {"name": "1,4-Butanediol", "categories": ["water", "ground-, long-term"], "amount": 7.309331982177244}, {"name": "1,4-Butanediol", "categories": ["water", "ocean"], "amount": 1.248882374560439e-06}, {"name": "1,4-Butanediol", "categories": ["water", "surface water"], "amount": 7.309331982177244}, {"name": "1,4-Butanediol", "categories": ["water"], "amount": 7.309331982177244}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 15.56803807841913}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 15.56803807841913}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.002520549204345182}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 15.56803807841913}, {"name": "1-Pentanol", "categories": ["water"], "amount": 15.56803807841913}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.538837125972611}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 8.538837125972611}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00335253332002659}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.538837125972611}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.538837125972611}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 2.463416524643162}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 2.463416524643162}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.001220970724126882}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.463416524643162}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.463416524643162}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 21.41549990781206}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-, long-term"], "amount": 21.41549990781206}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.005394488871534738}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 21.41549990781206}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 21.41549990781206}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 14.57226883990429}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.004742775832089053}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 14.57226883990429}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 14.57226883990429}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 6.025672019133131}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 6.025672019133131}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.001430914704633103}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 6.025672019133131}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 6.025672019133131}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 4115.812246738143}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 4115.812246738143}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.3650804722641475}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 4115.812246738143}, {"name": "Acenaphthene", "categories": ["water"], "amount": 4115.812246738143}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 47.17247193643288}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 47.17247193643288}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.01970473668361181}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 47.17247193643288}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 47.17247193643288}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 49.8391256657786}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 49.8391256657786}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.001346583925108664}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 49.8391256657786}, {"name": "Acetic acid", "categories": ["water"], "amount": 49.8391256657786}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.213309066286874}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 1.213309066286874}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00354663492385342}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.213309066286874}, {"name": "Acetone", "categories": ["water"], "amount": 1.213309066286874}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.85687366902346}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 9.85687366902346}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.03638707634094205}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.85687366902346}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.85687366902346}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 133.5325887123976}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.4281565226924716}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 133.5325887123976}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 133.5325887123976}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 354.9073927687746}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.3291367968857636}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 354.9073927687746}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 354.9073927687746}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.2768527285333682}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.2768527285333682}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.2768527285333682}, {"name": "Ammonium", "categories": ["water"], "amount": 0.2768527285333682}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 630.6490501003661}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 630.6490501003661}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.005920846167889754}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 630.6490501003661}, {"name": "Aniline", "categories": ["water"], "amount": 630.6490501003661}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 190273.569646014}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 190273.569646014}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.413485288877518e-15}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 190273.569646014}, {"name": "Antimony ion", "categories": ["water"], "amount": 190273.569646014}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1526.106910531414}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1526.106910531414}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.44533885720615e-17}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1526.106910531414}, {"name": "Barium II", "categories": ["water"], "amount": 1526.106910531414}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 65.98305934698593}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 65.98305934698593}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.01300464851461105}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 65.98305934698593}, {"name": "Benzene", "categories": ["water"], "amount": 65.98305934698593}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 393.2620781735379}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.07512966638299223}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 393.2620781735379}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 393.2620781735379}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 174.8943287390434}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 174.8943287390434}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.002464844829783555}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 174.8943287390434}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 174.8943287390434}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 200.4375969397927}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.004034926712582468}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 200.4375969397927}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 200.4375969397927}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3719.353478727086}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 3719.353478727086}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.698940162778656e-17}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3719.353478727086}, {"name": "Beryllium II", "categories": ["water"], "amount": 3719.353478727086}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-, long-term"], "amount": 1.099457188718305}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ocean"], "amount": 1.099457188718305}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 1.099457188718305}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 1.099457188718305}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.515563794986257}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 5.515563794986257}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.0009907214728192108}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.515563794986257}, {"name": "Butanol", "categories": ["water"], "amount": 5.515563794986257}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 28.37379925546212}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.006307298171177202}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 28.37379925546212}, {"name": "Butyl acetate", "categories": ["water"], "amount": 28.37379925546212}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 154.6464492362184}, {"name": "Butyrolactone", "categories": ["water", "ground-, long-term"], "amount": 154.6464492362184}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.003074540289545074}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 154.6464492362184}, {"name": "Butyrolactone", "categories": ["water"], "amount": 154.6464492362184}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 9712.291690087604}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.269701024482803e-17}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9712.291690087604}, {"name": "Cadmium II", "categories": ["water"], "amount": 9712.291690087604}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 153.423085686842}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 153.423085686842}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.2301713115378994}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 153.423085686842}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 153.423085686842}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 71953.13213721043}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 71953.13213721043}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.639684148519675e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 71953.13213721043}, {"name": "Chloramine", "categories": ["water"], "amount": 71953.13213721043}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 2928.070246727622}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 2928.070246727622}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 0.01331058556154036}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 2928.070246727622}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 2928.070246727622}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 41.17887996234599}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 41.17887996234599}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.05346887318892965}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 41.17887996234599}, {"name": "Chloroform", "categories": ["water"], "amount": 41.17887996234599}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 553.8045238771879}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 553.8045238771879}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.1633434498419037}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 553.8045238771879}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 553.8045238771879}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 104644.2763631995}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 104644.2763631995}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.321069755873469e-16}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 104644.2763631995}, {"name": "Chromium VI", "categories": ["water"], "amount": 104644.2763631995}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1294.592667971015}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.6999035997213e-18}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1294.592667971015}, {"name": "Chromium III", "categories": ["water"], "amount": 1294.592667971015}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4099.422993937983}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 4099.422993937983}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 9.294818137998669e-18}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4099.422993937983}, {"name": "Cobalt II", "categories": ["water"], "amount": 4099.422993937983}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-, long-term"], "amount": 0.02444359396289091}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 0.02444359396289091}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.02444359396289091}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 0.02444359396289091}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 55247.57233198472}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.032014489240348e-16}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 55247.57233198472}, {"name": "Copper ion", "categories": ["water"], "amount": 55247.57233198472}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 665.07018807497}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 665.07018807497}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00654705716437468}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 665.07018807497}, {"name": "Cumene", "categories": ["water"], "amount": 665.07018807497}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 48.68874262240333}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 48.68874262240333}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.901575437806032e-05}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 48.68874262240333}, {"name": "Cyclohexane", "categories": ["water"], "amount": 48.68874262240333}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 65.4673526161865}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 65.4673526161865}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.004052797913288156}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 65.4673526161865}, {"name": "Diethylamine", "categories": ["water"], "amount": 65.4673526161865}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.7571023925387067}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.7571023925387067}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.076379285437717e-08}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.7571023925387067}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.7571023925387067}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 44.03938064652566}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.004920283223557545}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 44.03938064652566}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 44.03938064652566}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 86.1910342993174}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 86.1910342993174}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.007842872377220936}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 86.1910342993174}, {"name": "Dimethylamine", "categories": ["water"], "amount": 86.1910342993174}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 375.1534011135178}, {"name": "Dipropylamine", "categories": ["water", "ground-, long-term"], "amount": 375.1534011135178}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.01936380362338582}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 375.1534011135178}, {"name": "Dipropylamine", "categories": ["water"], "amount": 375.1534011135178}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 21.69292210943689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 21.69292210943689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.05449182557035542}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 21.69292210943689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 21.69292210943689}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 15.1182300429514}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 15.1182300429514}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0288539804571156}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 15.1182300429514}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 15.1182300429514}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 1911.479851134369}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 19.48984505254134}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 1911.479851134369}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1911.479851134369}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.113644032158621}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 3.113644032158621}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.0009829088296230753}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.113644032158621}, {"name": "Ethanol", "categories": ["water"], "amount": 3.113644032158621}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 607.0532699656612}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 607.0532699656612}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.1820676947716516}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 607.0532699656612}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 607.0532699656612}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 83.06252177743589}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 83.06252177743589}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.004508805516406364}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 83.06252177743589}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 83.06252177743589}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 5.866490471077769}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 5.866490471077769}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.007921420745347173}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 5.866490471077769}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 5.866490471077769}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 31.32457020494882}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 31.32457020494882}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.005423784183281309}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 31.32457020494882}, {"name": "Ethylamine", "categories": ["water"], "amount": 31.32457020494882}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 392.9821815828094}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 392.9821815828094}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.965083807032327e-05}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 392.9821815828094}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 392.9821815828094}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 33.88259088785986}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 33.88259088785986}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.001494502831336749}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 33.88259088785986}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 33.88259088785986}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 23.53458418808319}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 23.53458418808319}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.08584670868619829}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 23.53458418808319}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 23.53458418808319}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 297.4211231191256}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 297.4211231191256}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.02444359396289091}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 297.4211231191256}, {"name": "Formaldehyde", "categories": ["water"], "amount": 297.4211231191256}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 7.034963091073586}, {"name": "Formamide", "categories": ["water", "ground-, long-term"], "amount": 7.034963091073586}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 5.705025696484766e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 7.034963091073586}, {"name": "Formamide", "categories": ["water"], "amount": 7.034963091073586}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 44.39859781105648}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 44.39859781105648}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.002145198583164613}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 44.39859781105648}, {"name": "Formic acid", "categories": ["water"], "amount": 44.39859781105648}, {"name": "Glutaraldehyde", "categories": ["water", "ground-, long-term"], "amount": 2834.661658070369}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.0835600185333866}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 2834.661658070369}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 2834.661658070369}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 64.77661364783435}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 64.77661364783435}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 3.383973580798461e-06}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 64.77661364783435}, {"name": "Hexane", "categories": ["water"], "amount": 64.77661364783435}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 26679.15205781307}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 6.846979098663159}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 26679.15205781307}, {"name": "Hydrazine", "categories": ["water"], "amount": 26679.15205781307}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 63.90756305906466}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 63.90756305906466}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.009828470980897184}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 63.90756305906466}, {"name": "Isopropylamine", "categories": ["water"], "amount": 63.90756305906466}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 374.7120873071274}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 374.7120873071274}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.387235797684917e-19}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 374.7120873071274}, {"name": "Lead II", "categories": ["water"], "amount": 374.7120873071274}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 22085.57778071964}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 22085.57778071964}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.784986131013021e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 22085.57778071964}, {"name": "Mercury II", "categories": ["water"], "amount": 22085.57778071964}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 14.60862113153174}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 14.60862113153174}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.01963179925773588}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 14.60862113153174}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 14.60862113153174}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 66.36990322738332}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 66.36990322738332}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.2768527285333682}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 66.36990322738332}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 66.36990322738332}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 2.647038698610819}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 2.647038698610819}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.001491372671790422}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.647038698610819}, {"name": "Methanol", "categories": ["water"], "amount": 2.647038698610819}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 15.34645981479058}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 15.34645981479058}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.04031712580225662}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 15.34645981479058}, {"name": "Methyl acetate", "categories": ["water"], "amount": 15.34645981479058}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 672.693769619161}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 672.693769619161}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.2054215481766319}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 672.693769619161}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 672.693769619161}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 44.59940012119169}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 44.59940012119169}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.01134610669754899}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 44.59940012119169}, {"name": "Methylamine", "categories": ["water"], "amount": 44.59940012119169}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 17.65946300182532}, {"name": "Methyl formate", "categories": ["water", "ground-, long-term"], "amount": 17.65946300182532}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.04549309991283589}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 17.65946300182532}, {"name": "Methyl formate", "categories": ["water"], "amount": 17.65946300182532}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 293.7594298234865}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 293.7594298234865}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 7.400133899177125e-19}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 293.7594298234865}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 293.7594298234865}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 293.3776396173267}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 293.3776396173267}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.001490728140588046}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 293.3776396173267}, {"name": "m-Xylene", "categories": ["water"], "amount": 293.3776396173267}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 14879.59311199594}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.52134113462786e-17}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 14879.59311199594}, {"name": "Nickel II", "categories": ["water"], "amount": 14879.59311199594}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.00688339400715688}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.00688339400715688}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.00688339400715688}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.00688339400715688}, {"name": "Nitrate", "categories": ["water"], "amount": 0.00688339400715688}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 179.4248510392836}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 179.4248510392836}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.309274509026099}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 179.4248510392836}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 179.4248510392836}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 220.7674809050472}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 220.7674809050472}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.002582955432705416}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 220.7674809050472}, {"name": "o-Xylene", "categories": ["water"], "amount": 220.7674809050472}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 933.0530804389432}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 933.0530804389432}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.009892341023183461}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 933.0530804389432}, {"name": "Phenol", "categories": ["water"], "amount": 933.0530804389432}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 5658.102396456461}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.0921337373485053}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5658.102396456461}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 5658.102396456461}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 6318.72190294688}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.1045744038991924}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6318.72190294688}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 6318.72190294688}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 167.1412846504503}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.0056688120125778}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 167.1412846504503}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 167.1412846504503}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 30.15181210211107}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.0002020006648088936}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 30.15181210211107}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 30.15181210211107}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 85.64783358764737}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 85.64783358764737}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.02490554580033791}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 85.64783358764737}, {"name": "Propanal", "categories": ["water"], "amount": 85.64783358764737}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 2.972313814787912}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 2.972313814787912}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.001307042873961017}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 2.972313814787912}, {"name": "Propanol", "categories": ["water"], "amount": 2.972313814787912}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 70.66263770958471}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 70.66263770958471}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.005583894842615893}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 70.66263770958471}, {"name": "Propionic acid", "categories": ["water"], "amount": 70.66263770958471}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 17.47003580483835}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 17.47003580483835}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.002360737046396844}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 17.47003580483835}, {"name": "Propylamine", "categories": ["water"], "amount": 17.47003580483835}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 29.00523942102665}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 29.00523942102665}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.08163257831926521}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 29.00523942102665}, {"name": "Propylene oxide", "categories": ["water"], "amount": 29.00523942102665}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 7324.676499052727}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 7324.676499052727}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.995943866375667e-17}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 7324.676499052727}, {"name": "Selenium IV", "categories": ["water"], "amount": 7324.676499052727}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 194088.6647216774}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.402179763282325e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 194088.6647216774}, {"name": "Silver I", "categories": ["water"], "amount": 194088.6647216774}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 2.298905883657707}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 2.298905883657707}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.027354434890899e-11}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 2.298905883657707}, {"name": "Sodium formate", "categories": ["water"], "amount": 2.298905883657707}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 185.2223220672366}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 185.2223220672366}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.001002274275879541}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 185.2223220672366}, {"name": "Styrene", "categories": ["water"], "amount": 185.2223220672366}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.633173494491574}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 6.633173494491574}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.002408606308693329}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.633173494491574}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.633173494491574}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 125.389297733242}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 125.389297733242}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.05066477815976527}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 125.389297733242}, {"name": "t-Butylamine", "categories": ["water"], "amount": 125.389297733242}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 35389.40773048787}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 35389.40773048787}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.076390236808797e-16}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 35389.40773048787}, {"name": "Thallium I", "categories": ["water"], "amount": 35389.40773048787}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 1341.206521620715}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 3.154337154426072}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 1341.206521620715}, {"name": "Thiocyanate", "categories": ["water"], "amount": 1341.206521620715}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 2978.232970570632}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 4.307601208164204e-18}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2978.232970570632}, {"name": "Tin ion", "categories": ["water"], "amount": 2978.232970570632}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 55.92445707351384}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 55.92445707351384}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.001163678105324353}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 55.92445707351384}, {"name": "Toluene", "categories": ["water"], "amount": 55.92445707351384}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 188.8615742592643}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 188.8615742592643}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.03413771793559374}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 188.8615742592643}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 188.8615742592643}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.3873282178246341}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 8.459234894130866e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.3873282178246341}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.3873282178246341}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 19.8654420495975}, {"name": "Trimethylamine", "categories": ["water", "ground-, long-term"], "amount": 19.8654420495975}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.001738326829849284}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 19.8654420495975}, {"name": "Trimethylamine", "categories": ["water"], "amount": 19.8654420495975}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 10.24292353353621}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 8.80967294413328e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 10.24292353353621}, {"name": "Urea", "categories": ["water"], "amount": 10.24292353353621}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 112885.975123505}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.148558709333134e-15}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 112885.975123505}, {"name": "Vanadium V", "categories": ["water"], "amount": 112885.975123505}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 77.43346253602645}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 77.43346253602645}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.000905963060821646}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 77.43346253602645}, {"name": "Xylene", "categories": ["water"], "amount": 77.43346253602645}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 38584.58479284478}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.269787771434788e-15}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 38584.58479284478}, {"name": "Zinc II", "categories": ["water"], "amount": 38584.58479284478}, {"name": "Allyl chloride", "categories": ["water"], "amount": 150.1079947071333}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1719.720222223451}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.42180531899135}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 339.3177771685547}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.464759480792751}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1288.408479475332}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9534.98244550603}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6746.64791261522}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4323.582103514876}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1920.935035757191}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6050.100803294812}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2426.799900775043}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5826075617235112}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 103.1690866711481}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 658.9867108518033}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 295.110806887749}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 3770.74503760381}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.39328139256551}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 192.9994421315874}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1283.109173004815}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.43105910115}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 4084.80999349844}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 411.1785638000277}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1134.31504453951}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 868.2752462991879}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1240.168412731042}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 96.22935832108888}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1333.794437530065}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8673.147587446569}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 105.7442921549162}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2258.577662651688}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.30247552090953}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3287.781362024641}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 4345.118683028117}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.41222339222807}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1170.784617284218}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 259125.7443834203}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 910.5227642951912}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 381628.0695570859}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 14879.59311199594}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 1388.798808044774}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 2625.615837830791}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 10478.71448236993}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.1851813694424153}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 893.1260307287811}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.202464924754399}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 23322.8108860617}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 28046.64296314354}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 98.00404444479724}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 116.1553590378122}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 4596.606592873776}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 32480.45563500515}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 18.90675745348257}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 2525.614960786939}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 381053.756490467}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 17300.82408154319}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 48797.72881487814}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1194.664831687612}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 129.8491927625}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 6449.382805161986}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 16.82211773606099}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 15771.03438358962}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.0005956516966396799}, {"name": "Anthracene", "categories": ["air"], "amount": 689.4793351985059}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 3940.56662007329}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 34.65132120921942}, {"name": "Fluorene", "categories": ["air"], "amount": 12.27113194390776}, {"name": "Phenanthrene", "categories": ["air"], "amount": 115.017007344514}, {"name": "Pyrene", "categories": ["air"], "amount": 4294.24886340959}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1481.802305363551}, {"name": "Permethrin", "categories": ["water"], "amount": 1176813.749427655}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1770.728466550261}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 68297.38935812125}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 596.7339847712511}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 91897.69629774714}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 381628.0695570859}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 22312.42771020496}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.570672609949578}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 63.32820237413264}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 2922.880909460317}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 95840.4890269539}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2825.690058737243}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1867.69528509152}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 885597.4579147273}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 261934.6501763573}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 793687.2517576887}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 11721.2764715593}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 261934.6501763573}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 261934.6501763573}, {"name": "Anthracene", "categories": ["water"], "amount": 261934.6501763573}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 63.72561642428929}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.108990132190594}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.097524476396035}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.097524476396035}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.097524476396035}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.086058820601476}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1364774634533391}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.1363314054471138}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.1361853474408884}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1363314054471138}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.1363314054471138}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 5924305.464267534}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 5924305.464267534}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 5924305.464267534}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 5924305.464267534}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 6480.187851432215}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 11721.2764715593}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 321.0837044593862}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 321.0837044593862}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.38106559585892}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 167.3503950070972}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 1331.729675100105}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 1331.729675100105}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 87654.21841746844}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 87654.21841746844}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 45969.77190324557}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 45969.77190324557}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1890.997987814396}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1890.997987814396}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2983.340578117419}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 140682.2143556849}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 67251.75644838254}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 458078.2228452191}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 458078.2228452191}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1878.967084318772}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 8248662.897277911}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 8248662.897277911}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1882.513912510247}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1882.513912510247}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 98.13575974852127}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1146.324132457719}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 16426.37842918017}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 16426.37842918017}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 93.17018395949655}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1953.432724062253}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1953.432724062253}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 28978.79147878355}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 576370.0956537924}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 138991256.4948792}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 138991256.4948792}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 445.0525531360675}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1364.081351704098}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1364.081351704098}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 68297.38935812125}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 269.5687685163206}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 306.8304790458599}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 1284.044970611836}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 1284.044970611836}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 41.2052502910758}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 88.02185681860134}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 423.9184783730436}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 423.9184783730436}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 200.6632712138781}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 200.6632712138781}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1091.878313398631}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 6605.10827156456}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 4192.56916576577}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 5025.580484578368}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4954.653737808047}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 3306.003841246809}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 3306.003841246809}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 3306.003841246811}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 3306.003841246809}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.02484894982983806}, {"name": "Dodecanol", "categories": ["water"], "amount": 3749.979052280719}, {"name": "Methylamine", "categories": ["air"], "amount": 0.4631872063147502}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 1787.614875322394}, {"name": "Diethanolamine", "categories": ["water"], "amount": 47.48316173699653}, {"name": "Lauric acid", "categories": ["water"], "amount": 396.8495249613188}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.218603851057523}, {"name": "Bisphenol A", "categories": ["water"], "amount": 5164.053001364086}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 338.7546787101137}, {"name": "Decanoic acid", "categories": ["water"], "amount": 544.7151488850361}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 348.5975053782652}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.04243380534804181}, {"name": "Bromopropane", "categories": ["water"], "amount": 62.08150529213951}, {"name": "Pentane", "categories": ["water"], "amount": 3316.000340744768}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 60.2602599219066}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 1012.158272232078}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 10.62994183706053}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.809895601426584}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 3608.514399873804}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 7524.59097898142}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 17692.71991226143}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 151.9217829487129}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 277.5811274348549}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 67.94968762886948}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 11.74031766790603}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 41.63950745005277}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 6.380549915543228}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.110467312347667}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.43105910115}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 17.61817888345146}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 519.9169499579817}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 462.6141544024052}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 667.4508171795883}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 256.6187264278454}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 688.8493308084136}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 191.4784749746858}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 896.0155197840094}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 220.0746406137207}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 978.6706716213416}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 47.87089443452015}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 368.5055720651172}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 27.63215887859339}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 14637.01870132028}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 2679.652290484734}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4596.973563069243}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 135496.2877774281}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 60.05551581713758}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 340.8238059814992}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 139.743683840574}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 90.25244320281742}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 247.080898335337}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.164195646209774e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 202.5363748858674}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 7814.400450649689}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 60338.55641058663}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 59.18085009536366}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 2021.568372283682}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 63.6029276133736}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 17.08718864832988}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 39055.4266518726}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 37.78775488874359}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 154.9531994675222}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 28564.74263134682}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 425.2411885424924}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 800.6442731112385}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 6.627239928286746}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 58.26685774532077}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 9.871765892958619}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3109.551806374172}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 45.47596618363305}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 88.43619999028196}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 8.945286375635815}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 198.1727823892715}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1329.271457589259}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1165.755883481279}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1165.755883481279}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5.594456835591205}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3869.414265752627}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 660.1015637530886}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 35254.33595357371}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 6.060645578653228}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2652.294466729171}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 155.3169569503851}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2065.527613201848}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 1311676.67283577}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 43.65950850166547}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 14652.48701207039}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1481.802305363551}, {"name": "Glyphosate", "categories": ["water"], "amount": 321.0837044593862}, {"name": "Furfural", "categories": ["air"], "amount": 2.994688529144927}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.0005754938316363201}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 102591.0227392867}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 16710.46877105274}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 299.7246775317666}, {"name": "Acrolein", "categories": ["water"], "amount": 33534.6606743059}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 73119.18508268046}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 214425.9455341111}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 2482265.202124142}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 18270.90377643331}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 565.3671018741634}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 1678.718356240116}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 17925.69315299158}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2161.12690001112}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 465601.1895579348}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 256351.7586333342}, {"name": "Ethalfluralin", "categories": ["air", "low population density, long-term"], "amount": 156.5868145416603}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 5013.960858196362}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 1164.405589426061}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 156.609998406489}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 156.609998406489}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 109070.2137821239}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 106854.7382085568}, {"name": "Deltamethrin", "categories": ["air"], "amount": 18270.90377643331}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 137.9609286337795}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 45019.21828707153}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 156.5868145416603}, {"name": "Thiram", "categories": ["air"], "amount": 3487.09119242013}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 680.3382059666377}, {"name": "Dimethoate", "categories": ["air"], "amount": 565.3671018741634}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 10256.03111479418}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 3290.521101304506}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 580679.0755597618}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 12.45381366258556}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 578.5552891124179}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 12.45381366258556}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 0.9296482554629171}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 18509.83366775568}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 352.6219011986358}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 677723.6247863976}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 126.8153264651498}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 236.8213632164033}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 652.9659515364764}, {"name": "Triallate", "categories": ["air"], "amount": 70.5292128510318}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 24676.38544100864}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 70.5292128510318}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7861577.049642152}, {"name": "Fluthiacet-methyl", "categories": ["soil", "agricultural"], "amount": 8843.6064391503}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 197.6421400831339}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 197.6421400831339}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.006031730774872183}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 197.6421400831339}, {"name": "Acrylate", "categories": ["water"], "amount": 197.6421400831339}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1028.90082834915}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 461.5004209859798}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.614598038355485}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 9492.070804737907}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 22312.42771020496}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 140682.2143556849}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 16489.92772977458}, {"name": "Fluoranthene", "categories": ["air"], "amount": 652.6589407329947}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 6272.9715083078}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1365.686057862491}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 2443.471188068153}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1272.861621485645}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 16909.6986708454}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 170.5124376107749}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17079.27810755454}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 16994.48838919997}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16994.48838919997}, {"name": "Arsenic ion", "categories": ["air"], "amount": 16994.48838919997}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 21361.43085375938}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 21361.43085375938}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 21361.43085375938}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 21361.43085375938}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 14.17870128823651}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 14979.14911439295}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 224.3936913413862}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 224.3936913413862}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 224.3936913413862}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 214.7564051054538}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 234.0309775773185}, {"name": "Arsenic ion", "categories": ["water"], "amount": 40390.21833995568}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 40390.21833995568}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.544049566471797e-16}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 40390.21833995568}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 40390.21833995568}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 269.5687685163206}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 306.8304790458599}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 273.3402549601409}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 1284.044970611836}, {"name": "Cyproconazole", "categories": ["air"], "amount": 269.1921234948197}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 461525.7995451029}, {"name": "Fipronil", "categories": ["air"], "amount": 24946.80841592302}, {"name": "Difenoconazole", "categories": ["air"], "amount": 5047.081443672492}, {"name": "Fluazinam", "categories": ["air"], "amount": 8694.834640824494}, {"name": "Alkylbenzene (c10-c15)", "categories": ["air"], "amount": 0.0128939299191559}, {"name": "Bifenthrin", "categories": ["air"], "amount": 104301.4031316026}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 214425.9455341111}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 229044.8670110711}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 6937.999417314811}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 433.3011115853852}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 5410.473444818626}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 1692.370322105299}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 10161.39599965984}, {"name": "Cyproconazole", "categories": ["water"], "amount": 9577.424063018774}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 490012232.4898244}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 490012232.4898244}, {"name": "Thiodicarb", "categories": ["water"], "amount": 90607.09381668059}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 242.1677132175915}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 9577.424063018774}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 677723.6247863973}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4345.118683028117}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 90607.09381668059}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 208.0099377493797}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 214425.9455341111}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 4084.80999349844}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 2012896.836828182}, {"name": "Fipronil", "categories": ["water"], "amount": 2012896.836828182}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 32315.10687636695}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 11724.17496709372}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 138991256.4948792}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 133638.4039148149}, {"name": "Clethodim", "categories": ["water"], "amount": 3290.521101304506}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 8.47812563194317}, {"name": "Bifenthrin", "categories": ["water"], "amount": 6606218.617699357}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 5733.526330050868}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 62054.42635973194}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.2201431500013523}, {"name": "Alkylbenzene (c10-c15)", "categories": ["soil", "agricultural"], "amount": 0.001225154162618609}, {"name": "Flumioxazin", "categories": ["water"], "amount": 465601.1895579348}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 119052.5066021618}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 10054.75335824089}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 1921.726540567452}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4199.332645013528}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 6606218.617699357}, {"name": "Difenoconazole", "categories": ["water"], "amount": 119052.5066021618}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 11630.69718048504}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 11630.69718048504}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 350.2601340869226}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 50408635.72852894}, {"name": "Cypermethrin", "categories": ["water"], "amount": 50408635.72852894}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 70127.43105910115}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 35089624.32889574}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 48797.72881487816}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 254034.3763665275}, {"name": "Alkylbenzene (c10-c15)", "categories": ["soil", "forestry"], "amount": 0.001225154162618609}, {"name": "Alkylbenzene (c10-c15)", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003364855008159178}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 264.3378908849616}, {"name": "Fluazinam", "categories": ["water"], "amount": 229044.8670110711}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 229044.8670110711}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 21427.90288337684}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 6441.702873071918}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 21427.90288337684}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5368.865226164379}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 5256.022376072729}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 2205.142040314403}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2205.142040314404}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 45019.21828707153}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 12727.75055993713}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 12727.75055993713}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1638.053325943434}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 11741.38139340764}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1748.637207224227}, {"name": "Abamectin", "categories": ["air"], "amount": 2598.46244104342}, {"name": "Carbendazim", "categories": ["air"], "amount": 10852.56996777327}, {"name": "Diuron", "categories": ["air"], "amount": 2888.804996395477}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 78960.85556831793}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 601.8082411386335}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 440.9403852378933}, {"name": "Mancozeb", "categories": ["air"], "amount": 643.9325476832689}, {"name": "Simazine", "categories": ["air"], "amount": 6445.767730097668}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1652.390895357039}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 157.0990183009986}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 57427.32208907067}, {"name": "Triflumuron", "categories": ["air"], "amount": 357063.9983622727}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 94.81597922687283}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 652.484313842212}, {"name": "2,4-D", "categories": ["water"], "amount": 860.3532958193812}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 215.530846628909}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 652.484313842212}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 181.9075712591965}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 860.3532958193812}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 156.0787844892613}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 105.7795183243561}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 41283.75821110154}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 971085.7741076944}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 22959.18536992275}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 22959.18536992275}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 443.4328889862159}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 50981.86740021227}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 1748.637207224227}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 7290.249047189391}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 126.8153264651498}, {"name": "Mancozeb", "categories": ["water"], "amount": 52198.60382641312}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.48692300987379}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 296.2223883807765}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 8861705.758070096}, {"name": "Triflumuron", "categories": ["water"], "amount": 8861705.758070096}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 12634.63998176688}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 78114.00168833337}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 316702.2724546606}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 1311676.67283577}, {"name": "Simazine", "categories": ["water"], "amount": 78114.00168833337}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6103.638662480231}, {"name": "Carbendazim", "categories": ["water"], "amount": 741427.7150626526}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 54554.08444179271}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 6344.183794782181}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 741427.7150626526}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 52198.60382641312}, {"name": "Acephate", "categories": ["water"], "amount": 627.195875552428}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 252.3480059893731}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 627.195875552428}, {"name": "Abamectin", "categories": ["water"], "amount": 83744.41729932558}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 83744.41729932558}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 7290.249047189391}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 44.86884533105171}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1152874.806639649}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1152874.806639649}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1990.5565774533}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 57823.87667902808}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 76269.5273348387}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 85233.29894167076}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 50096.23828354297}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 85233.29894167076}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 50096.23828354297}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 35.50249751350102}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1388.798808044774}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1325.809809271895}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 186.1098958796736}, {"name": "Diuron", "categories": ["water"], "amount": 60117.49064131446}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4019.340356854711}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2537.106748929052}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 164.6428088934565}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 29260.23441730404}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 29260.23441730404}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 105.7795183243561}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1926.848485380624}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2337.137375441219}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 90.65429257599124}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1164.405589426061}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 744.3119833717473}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 114698.9733126001}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 234.4645680742805}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 10161.39599965984}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1996.038632885548}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 592.5107503648137}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 15803.20422885043}, {"name": "Trifluralin", "categories": ["water"], "amount": 106854.7382085568}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1618.136671590677}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 114698.9733126001}, {"name": "Thiram", "categories": ["water"], "amount": 580679.0755597618}, {"name": "Carboxin", "categories": ["water"], "amount": 24676.38544100864}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 285.0691571123865}, {"name": "Propiconazole", "categories": ["water"], "amount": 22312.42771020496}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 130.7345834584192}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 155.3169569503851}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 212.7268734842694}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1050.027742038335}, {"name": "Thiabendazole", "categories": ["water"], "amount": 34009.52164954976}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 2660.182571676538}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 507.8834624303366}, {"name": "Fludioxonil", "categories": ["water"], "amount": 101091.3793961789}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2161.12690001112}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3231.447758209919}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6272.9715083078}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 172128.6715681628}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 6206819.068762222}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 105993.6811591121}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 103.9440772563541}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5957.959915036762}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 5304.732009017731}, {"name": "Metolachlor", "categories": ["water"], "amount": 67251.75644838254}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 819.7509007338074}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1365.686057862491}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 11406.42648689973}, {"name": "Tebuconazole", "categories": ["water"], "amount": 68297.38935812125}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 73119.18508268046}, {"name": "Methomyl", "categories": ["water"], "amount": 28978.79147878355}, {"name": "Atrazine", "categories": ["water"], "amount": 87654.21841746844}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 114698.9733126001}, {"name": "Indoxacarb", "categories": ["air"], "amount": 3180.233169520662}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 2611.582905498304}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 391.0220181975797}, {"name": "Carboxin", "categories": ["air"], "amount": 382.2650622793749}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1618.136671590677}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 34009.52164954976}, {"name": "Thiabendazole", "categories": ["air"], "amount": 435.3659085727342}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 435.3659085727342}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 4283.465110687773}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 4283.465110687773}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 172128.6715681628}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1678.718356240116}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 3487.09119242013}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 137.9609286337795}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 101091.3793961789}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 6206819.068762222}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 28978.79147878355}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3162.808823016142}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 67251.75644838254}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 206.6045490576516}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 5957.959915036762}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2337.13737544122}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 90.65429257599124}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 105993.6811591121}, {"name": "EPTC", "categories": ["air"], "amount": 6.607687147297698}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 1692.965263424659}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.341352636846492}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 299.7246775317666}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 169738.0330996829}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 11976364.83353115}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 11976364.83353115}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 203864.2011423413}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 96.65682185355104}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 122.0267139353446}, {"name": "Imidacloprid", "categories": ["air"], "amount": 122.0267139353446}, {"name": "Imidacloprid", "categories": ["water"], "amount": 3139.182427479564}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 96.65682185355104}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.4592395098901}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 3139.182427479564}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.754061574190309}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 586.9844535727717}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.738785679816528}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.746423627003418}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.746423627003418}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.746423627003418}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 586.9844535727717}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.486803588069124}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 586.9844535727717}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 586.9844535727717}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.09436249505718262}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 62.8497116571606}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 16219.05948883446}]}, {"unit": "kg N-Eq", "name": ["TRACI v2.1", "eutrophication", "eutrophication potential"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.1186}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.7793}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.03602286665830313}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.38}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 0.3548239598401077}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 1.12}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1186}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.1186}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1186}, {"name": "Ammonia", "categories": ["air"], "amount": 0.1186}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03602286665830313}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.03602286665830313}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03602286665830313}, {"name": "Nitrate", "categories": ["air"], "amount": 0.03602286665830313}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3548239598401077}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 0.3548239598401077}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3548239598401077}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 0.3548239598401077}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12}, {"name": "Phosphorus", "categories": ["air", "low population density, long-term"], "amount": 1.12}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12}, {"name": "Phosphorus", "categories": ["air"], "amount": 1.12}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.7793}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.7793}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.7793}, {"name": "Ammonium", "categories": ["water"], "amount": 0.7793}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-, long-term"], "amount": 0.05}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ocean"], "amount": 0.05}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.05}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-, long-term"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 0.05}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.2367}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.2367}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.2367}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.2367}, {"name": "Nitrate", "categories": ["water"], "amount": 0.2367}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.9864}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 0.9864}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.9864}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.9864}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.9864}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 2.38}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 2.38}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.38}, {"name": "Phosphate", "categories": ["water"], "amount": 2.38}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 7.29}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 7.29}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 7.29}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 7.29}, {"name": "Phosphorus", "categories": ["water"], "amount": 7.29}, {"name": "Nitrogen", "categories": ["air"], "amount": 0.150118105922054}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.06858}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.30952380952381}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 0.3656515775836821}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.03448275862068965}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.291021896827}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.04429}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04429}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.04429}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04429}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.04429}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.03448275862068965}]}, {"unit": "CTUh", "name": ["TRACI v2.1", "human toxicity: carcinogenic", "human toxicity: carcinogenic"], "exchanges": [{"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.258356435850049e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.810343693630874e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.108229711482085e-07}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.406776750306832e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2.78915073207082e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.531067896539896e-08}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.027258220363476e-06}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.391376256206991e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.741896373164023e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 8.425367609910162e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.129833856759318e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.530366768160435e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 4.495136026480151e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0001154905641553532}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.125912223315778e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0002517637983367946}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.590052583598152e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.120982712696918e-08}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.021433535791055e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.989787988125033e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.52942318370799e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.004698149455494108}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.593967130167531e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.58465069072757e-05}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.883745633244235e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 29.62159655713153}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 5.543725597722587e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.304325226657223e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.515513820065576e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.820926395991358e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.865899488335459e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.922728378391743e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.596495340709977e-06}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.636272033325984e-09}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.034153076279244e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.29033235365814e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.060433564876759e-08}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.219169907269833e-06}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.860699582481577e-06}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.542168575439161e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.27974191527352e-05}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.793118991683174e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.759132709331032e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.348363361545353e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.656983589874939e-05}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 6.565468056143749e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3.134880215609319e-08}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.006891195363459961}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.932656172736234e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.915733739067202e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.798065885996774e-05}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.415614863811376e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.617550177034878e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.597517150337729e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.991958352298951e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.301372125432608e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.448863732121582e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 6.77182969489933e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.135991803003744e-05}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 9.266833864499727e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.107308407737939e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.876127648548086e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.007215305408294e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.102667814352975e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.172670404170017e-12}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.825512353035547e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.010106372215797e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.179807173393732e-09}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.510708826824056e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.510708826824056e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.510708826824056e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.614819710071137e-10}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 1.803608046820304e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.803608046820304e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.803608046820304e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.211603307527637e-09}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.806268293479877e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.806268293479877e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.806268293479877e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.198616480471286e-07}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.970256426817655e-07}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.970256426817655e-07}, {"name": "Benzene", "categories": ["air"], "amount": 2.970256426817655e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.553188659505964e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.342576361354958e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.342576361354958e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.342576361354958e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813342215092388e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 7.171854491626412e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.171854491626412e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.171854491626412e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.480841728508682e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 3.487988877494416e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.487988877494416e-05}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.487988877494416e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.152031023523993e-05}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 6.350543719529656e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.350543719529656e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.350543719529656e-05}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.663642941217963e-08}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 5.71274326363979e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71274326363979e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 5.71274326363979e-07}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001818862514436914}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.000216825024890243}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000216825024890243}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.000216825024890243}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.622051888446287e-07}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 2.30591993828566e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.30591993828566e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.30591993828566e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004206523646445761}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.004452336550969934}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004452336550969934}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.004452336550969934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.698730877983314e-09}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 1.176809360521283e-08}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.176809360521283e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.176809360521283e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.49436227943477}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 29.05797941828315}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.05797941828315}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 29.05797941828315}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.986157966582645e-07}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 5.264941782152616e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.264941782152616e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.264941782152616e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.211276877132605e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.257801051894914e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.257801051894914e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.257801051894914e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.157030538606932e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.065608436963135e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.065608436963135e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.065608436963135e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.291959421499929e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 4.556442908745643e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.556442908745643e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.556442908745643e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.426564375976271e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.146231932155865e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.146231932155865e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.146231932155865e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.749094908834605e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 4.335911643613174e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.335911643613174e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.335911643613174e-08}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.383754462042533e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 2.137323739765118e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.137323739765118e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 2.137323739765118e-09}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.630932527089968e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.74862316449412e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74862316449412e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.74862316449412e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.228180370229732e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.259256361943936e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.259256361943936e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.259256361943936e-07}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.358317111505462e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.998132638013652e-08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.998132638013652e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.417626751024006e-07}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 8.30466291186117e-07}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.30466291186117e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 8.30466291186117e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.385689828449256e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.340368779142043e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.340368779142043e-05}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.340368779142043e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.385145978752628e-06}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 3.209128256574392e-05}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.209128256574392e-05}, {"name": "Furan", "categories": ["air"], "amount": 3.209128256574392e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.927864590212017e-10}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 9.929527253521877e-10}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.929527253521877e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.929527253521877e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.457944521561068e-09}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 6.81471403380482e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81471403380482e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 6.81471403380482e-08}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.727440495785806e-05}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 2.692212042830373e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.692212042830373e-05}, {"name": "Lead II", "categories": ["air"], "amount": 2.692212042830373e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007219396090920078}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.00705529572719002}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00705529572719002}, {"name": "Mercury II", "categories": ["air"], "amount": 0.00705529572719002}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.921138703663494e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 2.426897438199864e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.426897438199864e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.426897438199864e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.415557203584623e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 6.665645471325912e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.665645471325912e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.665645471325912e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.535914078209065e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 4.666989982102919e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666989982102919e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.666989982102919e-05}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.684302113659421e-08}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 3.049958488735399e-08}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.049958488735399e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.049958488735399e-08}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.73466103000816e-05}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 5.176105603521519e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.176105603521519e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 5.176105603521519e-05}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.089268905852151e-07}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.053222020461472e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.053222020461472e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.053222020461472e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.058142032342093e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "low population density, long-term"], "amount": 6.025050192320522e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.025050192320522e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 6.025050192320522e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.701161768393508e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.001266946913059e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.001266946913059e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 4.001266946913059e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.201906152438696e-07}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.654607280088317e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.654607280088317e-07}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.654607280088317e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.658751485139641e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 5.119014101298451e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.119014101298451e-07}, {"name": "Styrene", "categories": ["air"], "amount": 5.119014101298451e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.770063405932431e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 6.39837077473109e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.39837077473109e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 6.39837077473109e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.181190803144065e-12}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3.176930603657041e-12}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.176930603657041e-12}, {"name": "Toluene", "categories": ["air"], "amount": 3.176930603657041e-12}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.920338056744807e-10}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 4.751070088945139e-09}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.751070088945139e-09}, {"name": "Xylene", "categories": ["air"], "amount": 4.751070088945139e-09}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.130421025115689e-24}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.130421025115689e-24}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.130421025115689e-24}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.130421025115689e-24}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.0004817920255441872}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.081071442613549e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.081071442613549e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 8.081071442613549e-07}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.005412813058171186}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.005344319431615542}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.005344319431615542}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.005344319431615542}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 7.554690612036464e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.019393851208752e-07}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.019393851208752e-07}, {"name": "Lead II", "categories": ["soil"], "amount": 2.019393851208752e-07}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.02000443622421823}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 8.480180131105149e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 8.480180131105149e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 8.480180131105149e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.0001057249924546784}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.971608380599197e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.971608380599197e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.971608380599197e-05}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.826115595073202e-08}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 8.826115595073202e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.546279067803446e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.826115595073202e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 8.826115595073202e-08}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.406776750306832e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.118711178853875e-08}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.406776750306832e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.406776750306832e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 6.906904090605212e-08}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 6.906904090605212e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.650034416037056e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 6.906904090605212e-08}, {"name": "Aniline", "categories": ["water"], "amount": 6.906904090605212e-08}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.42356468162967e-07}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 2.42356468162967e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 2.485989030729586e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.42356468162967e-07}, {"name": "Benzene", "categories": ["water"], "amount": 2.42356468162967e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 8.425367609910162e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.885503448857824e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 8.425367609910162e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 8.425367609910162e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.731751629412889e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 4.731751629412889e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 5.138840164335435e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.731751629412889e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.731751629412889e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.93228723043305e-25}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.93228723043305e-25}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.059335183438447e-26}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.93228723043305e-25}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.93228723043305e-25}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.590052583598152e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 5.904155315475577e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.590052583598152e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.590052583598152e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.903478386107413e-07}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 3.903478386107413e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 3.450637848030204e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.903478386107413e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 3.903478386107413e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.01064124692009222}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 0.01064124692009222}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.0006276395027482738}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.01064124692009222}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.01064124692009222}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.653828513869859e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.653828513869859e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.697745543090239e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.653828513869859e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.653828513869859e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.633658746290207e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.633658746290207e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 5.295941693917522e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.633658746290207e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.633658746290207e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 3.596495340709977e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.379471582042169e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.596495340709977e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.596495340709977e-06}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.542682490085931e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.542682490085931e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 4.642550296405149e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.542682490085931e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 2.542682490085931e-09}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.574102322678905e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.574102322678905e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 5.226226981162908e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.574102322678905e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.574102322678905e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.485354373704319e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 5.485354373704319e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 7.712639527568175e-08}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.485354373704319e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 5.485354373704319e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.171588118574856e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 4.171588118574856e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.346365427938616e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.171588118574856e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 4.171588118574856e-08}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.715898825955418e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.715898825955418e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.847420342319156e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.715898825955418e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.715898825955418e-06}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.240884639256756e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.240884639256756e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.313683154064868e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.240884639256756e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.240884639256756e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.932661183632631e-09}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1.932661183632631e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.627426369587102e-11}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.932661183632631e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.932661183632631e-09}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.759132709331032e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.539549199989667e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.759132709331032e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.759132709331032e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.416247532922595e-07}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 3.416247532922595e-07}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.103686639122781e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.416247532922595e-07}, {"name": "Lead II", "categories": ["water"], "amount": 3.416247532922595e-07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0001200800766910644}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.0001200800766910644}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.562717654660303e-05}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0001200800766910644}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0001200800766910644}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.823172927233115e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 6.823172927233115e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 9.656004694601315e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.823172927233115e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.823172927233115e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.16253257954551e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 4.16253257954551e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.175874687009049e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.16253257954551e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.16253257954551e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.241027359047357e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 2.241027359047357e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.743499587732249e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.241027359047357e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 2.241027359047357e-08}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3.82737301857641e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.932692703765708e-06}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.82737301857641e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 3.82737301857641e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.141909863354914e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.141909863354914e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.593718642068913e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.141909863354914e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.141909863354914e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.448863732121582e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 1.68836291963403e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.448863732121582e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.448863732121582e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.158734719783597e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.158734719783597e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 7.696674523054334e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.158734719783597e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.158734719783597e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.298293064042074e-08}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 1.298293064042074e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.483666754706709e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.298293064042074e-08}, {"name": "Styrene", "categories": ["water"], "amount": 1.298293064042074e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.836736453785565e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.836736453785565e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.55467521351487e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.836736453785565e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.836736453785565e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.28796619460418e-09}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 3.28796619460418e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.113876458507679e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.28796619460418e-09}, {"name": "Toluene", "categories": ["water"], "amount": 3.28796619460418e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.87817103743376e-09}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.87817103743376e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 7.916174553493899e-11}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.87817103743376e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.87817103743376e-09}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.968325208963409e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72488671036636e-07}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 2.392344824587944e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.621112923743258e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.320457549765049e-07}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.332600353770246e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.650089002101258e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.029317585575104e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.82737301857641e-05}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.973370618914708e-11}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.53421227997533e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.428324535107701e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.938388614878956e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.056713149956801e-05}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.036581063539157e-06}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 3.418467484412382e-05}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.885964682958992e-07}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.016317313235812e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.016317313235812e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.016317313235812e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.544038158175725e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 99.99414879423145}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 99.99414879423145}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 99.99414879423145}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 99.99414879423145}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 58.95214315432209}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 3.418467484412382e-05}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 3.729187954993366e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 3.729187954993366e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.091983626884058e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.091983626884058e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 0.2099867486507813}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 0.2099867486507813}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 0.3853312280989407}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 0.2099867486507813}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.998132638013652e-08}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 6.70288219492184e-06}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 2.611054452589474e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.621871552334511e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.84435814580476e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.772967486180558e-06}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.45035777450514e-05}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.829873065189469e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.991301788381765e-06}, {"name": "Furfural", "categories": ["air"], "amount": 4.345660720828529e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000814006573092419}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.743864159015686e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 1.175041748019131e-08}, {"name": "Naphthalene", "categories": ["air"], "amount": 6.351082658161222e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 9.0374626837381e-09}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0004239869897004578}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002423359861413617}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.0003331614879209097}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0003331614879209097}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0003331614879209097}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0003918347177884975}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0001951433794005633}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0001951433794005633}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0001951433794005633}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.003301182299098833}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 9.054524788040105e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.054524788040105e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 9.054524788040105e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.841001937321709e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 9.268047638758503e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0003689773290724312}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0003689773290724312}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.027003498025857e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.0003689773290724312}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0003689773290724312}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.79028281626522e-08}, {"name": "Acephate", "categories": ["water"], "amount": 2.487029067227868e-07}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.000639990423461e-07}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.487029067227868e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1.180107657027561e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.180107657027561e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.156335309274065e-08}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.199108512379478e-08}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.603853150604743e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.743864159015686e-06}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 4.86195939010831e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 3.729187954993366e-06}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.063590628352086e-05}]}, {"unit": "CTUh", "name": ["TRACI v2.1", "human toxicity: non-carcinogenic", "human toxicity: non-carcinogenic"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.221076129596055e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.142401308517337e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.978195641238402e-09}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 4.242610285742846e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.392679541749306e-08}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.0003506147224737884}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.291621899121178e-07}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 9.671865584621795e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.724699410100045e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001407920377821338}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 9.708016844111831e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.278012890782212e-06}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.441349515389442e-05}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 8.82185338479455e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.744152507265701e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.0001865653238287938}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.514976898553216e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.19084656422507e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 5.689293488473177e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.515382826785763e-05}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 5.676396328314889e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.844869704874264e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 6.18998015965328e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.400280279713202e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.200731318738333e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 8.725444005900088e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.005344304385922e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.577843586162677e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.461714521851474e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.08556031719987929}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 3.549401920473224e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.097035277749298e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 6.026343492200264e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.194360540124425e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.684866776379766e-06}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.268631067940004e-08}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.04446630584551008}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.0004265994736482847}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.331091643438784e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 7.571136900989693e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.06629840746109e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.502069450836323e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 5.314798975805516e-05}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.785363458207277e-07}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.736951474249164e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.713956025626985e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.609540134884209e-07}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.735780904390812e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3.565453936392286e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.0007484149900566027}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 3.026742397087114e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.323373836409855e-05}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 8.626757056549432e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.022846032548176e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.136492607015195e-08}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.595972050549893e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.412043071588323e-07}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 2.974983061189815e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.118891180273046e-06}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0001475471753224561}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.342994347623155e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.247396040510806e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.498026636437909e-07}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 2.79449501214572e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.591732719588198e-06}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.651364096032627e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.637434146055799e-07}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.826205918331096e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.073190640596592e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.070497681191723e-06}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.371995092225478e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 7.803732452170765e-08}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.559092878798325e-05}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.863591764893856e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.761903462851979e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.903804534245596e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.732734234853651e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.417559462914081e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.743048310639527e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.622815872259569e-06}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.826956875329245e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.000123511601348606}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.62866364623693e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.356326701865415e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 8.174257362148937e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.971696268633912e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.481954957610653e-08}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 5.575094411019923e-08}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 1.411858312894749e-05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 5.323422874735585e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 6.161216540279184e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.667275702097867e-07}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 7.003289558100547e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.072282123260385e-07}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 7.626626274319757e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.43993461441268e-07}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.287458114490947e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.055388420802181e-09}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.009320644029522146}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 7.605788809947128e-05}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.041281305536015e-06}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.81691200463969e-08}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.242773848988688e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.09122357691481e-07}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 8.864197911606767e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 4.678376160539588e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.420612989098232e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.629121758973386e-12}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.8153105050720473}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.675136537433405e-07}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.276099938183971e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.0001138668835910055}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 9.572570783224532e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.043266588879628e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.316535823373809e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 6.555101209491677e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.0001591725529778709}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.807840507128964e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.633290926906425e-08}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 6.136174078421357e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 4.064579782070168e-06}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.267694828859509e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 5.928814044257169e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.402647336673159e-07}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.378150453428547e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.001633262508687558}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.637567039119838e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 6.274346569125752e-05}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.403709626048452e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 6.44497918258497e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.161171165923385e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 7.853821142005302e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 4.761064687909049e-08}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.864963689477978e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 3.568861582664458e-06}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.532400963236454e-09}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.927100588651506e-06}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.066968540665983e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.034208590064141e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.538196875085421e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.409357809495091e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.720982836621032e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.377798891435364e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.295936341190667e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 7.482238451868906e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 6.451763747794766e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.139721212223564e-07}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 4.846972051332177e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.755277587417682e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 9.8941374874774e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.118251739234456e-05}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.586997283128361e-07}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.157115414301461e-05}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.697393976400055e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.869763954880581e-07}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.430064249385157e-06}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.733327422786888e-07}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.267165613887981e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 7.687017975228025e-06}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 7.173262376334914e-09}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 8.305315265868153e-06}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 4.365751690113955e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.02532945731247778}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.0003549487632190929}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 8.772833490592437e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 2.014471645695883e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.847650620033796e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.664867632416609e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 4.972297832105879e-05}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.0004120225015791997}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.0007185436202832339}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6.560228411780649e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.934694045738182e-07}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.886539373366524e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 9.618820249928871e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.895456861166723e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.684472648263908e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 5.628295663165025e-07}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2.108889397842234e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.620316404487003e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 6.720802511205441e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.381327127979634e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.796899460458428e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.691500916649405e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.0001943856207712839}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.161573837165723e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.09611314831482e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.01523298640624192}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.001281390275351284}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.452706437984015e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.193835976157869e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.193835976157869e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.193835976157869e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.164203985881873e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 2.097308019913294e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.097308019913294e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.097308019913294e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.089916056276619e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 2.800835573688484e-08}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.800835573688484e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.800835573688484e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.711552710245e-08}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 4.881388585072839e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.881388585072839e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.881388585072839e-07}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.830038575962134e-09}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 6.250952080291964e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.250952080291964e-09}, {"name": "Acetone", "categories": ["air"], "amount": 6.250952080291964e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9643392814793e-08}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 6.344519345789673e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.344519345789673e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 6.344519345789673e-08}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.555937164383953e-05}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 0.0007317398747325888}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0007317398747325888}, {"name": "Acrolein", "categories": ["air"], "amount": 0.0007317398747325888}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.277250463673861e-06}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.117870945239609e-05}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.117870945239609e-05}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.117870945239609e-05}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.761300342797525e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 8.908827553468379e-07}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.908827553468379e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.908827553468379e-07}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001545128350605106}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.0001705390794446522}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001705390794446522}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.0001705390794446522}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.858263234853601e-05}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 4.186823030819682e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.186823030819682e-05}, {"name": "Barium II", "categories": ["air"], "amount": 4.186823030819682e-05}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.869535458606569e-09}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.343616912786929e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.343616912786929e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.343616912786929e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.035107125922855e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 7.521210156653091e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.521210156653091e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.521210156653091e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44454892341174e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 5.498948968100198e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.498948968100198e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.498948968100198e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.332387129371907e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.455115357767291e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.455115357767291e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.455115357767291e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.164614537071418e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.313164529461446e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.313164529461446e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.313164529461446e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008545819649387387}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.04705306842463334}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04705306842463334}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.04705306842463334}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.489551726476562e-08}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 8.548811468222657e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.548811468222657e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 8.548811468222657e-07}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.027705915933207e-09}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 2.885700829766663e-08}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.885700829766663e-08}, {"name": "Butanol", "categories": ["air"], "amount": 2.885700829766663e-08}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04649648722728665}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.04548139653639836}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04548139653639836}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.04548139653639836}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.673630444843396e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 4.994214710324456e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.994214710324456e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.994214710324456e-05}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.797438724649864e-07}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 5.29140109142857e-07}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.29140109142857e-07}, {"name": "Chloramine", "categories": ["air"], "amount": 5.29140109142857e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.265621290520827e-07}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.320259077339534e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.320259077339534e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 1.320259077339534e-06}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58957475884972e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 2.577514347621003e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.577514347621003e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 2.577514347621003e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.306889836534118e-05}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.0004157419442109719}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0004157419442109719}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.0004157419442109719}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.364906299642294e-05}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1.344140068026075e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.344140068026075e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.344140068026075e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.015397717353837e-09}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 1.11219290214178e-08}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.11219290214178e-08}, {"name": "Cumene", "categories": ["air"], "amount": 1.11219290214178e-08}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.861988584783585e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.161345732746777e-08}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.161345732746777e-08}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.161345732746777e-08}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.031975385909731e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 6.588578971849514e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.588578971849514e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 6.588578971849514e-09}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.351879383031965e-06}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 9.971404085507607e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.971404085507607e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.971404085507607e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.422197346035162e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4.59205040444357e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.59205040444357e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.59205040444357e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64237670710105e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 1.773090620673323e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.773090620673323e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.773090620673323e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.922753117081016e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 3.327743675967333e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.327743675967333e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 3.327743675967333e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 4.102888901350442e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.608387850544461e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 9.519435478469864e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.519435478469864e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.519435478469864e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.400047590272472e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.231410315643408e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.231410315643408e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.231410315643408e-06}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.822728876801231e-09}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.225696261519081e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.225696261519081e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.225696261519081e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56494780209889e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 8.064107410376518e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.064107410376518e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.064107410376518e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.540819918737348e-08}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.710678846985801e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.710678846985801e-07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.710678846985801e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.544741567459898e-07}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 3.578881857423269e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.578881857423269e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.578881857423269e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.623285776000493e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.351131596006365e-07}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.351131596006365e-07}, {"name": "Hexane", "categories": ["air"], "amount": 1.351131596006365e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.009567805412798749}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.009444224721160448}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.009444224721160448}, {"name": "Lead II", "categories": ["air"], "amount": 0.009444224721160448}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.854546007662333}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.8349282563671901}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8349282563671901}, {"name": "Mercury II", "categories": ["air"], "amount": 0.8349282563671901}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.722141993797854e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 9.554415176449204e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.554415176449204e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.554415176449204e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.800721786157885e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 9.186646284691209e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.186646284691209e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 9.186646284691209e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.164130613995683e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 7.798398251395983e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.798398251395983e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 7.798398251395983e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.295973587569983e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 2.306254705471896e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.306254705471896e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.306254705471896e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.409692145162997e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.482396677327338e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.482396677327338e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.482396677327338e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000150482729407102}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.0001548276411924865}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001548276411924865}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.0001548276411924865}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.772484980404277e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1.790162743766621e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.790162743766621e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.790162743766621e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.126492194353136e-09}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1.02297007317087e-08}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02297007317087e-08}, {"name": "Methanol", "categories": ["air"], "amount": 1.02297007317087e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.383971900335308e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 9.030460094465199e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.030460094465199e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 9.030460094465199e-10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001690823306431838}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.001662042907559698}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001662042907559698}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.001662042907559698}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.246372725695135e-10}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.131102155844676e-09}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.131102155844676e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.131102155844676e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.664341831724058e-06}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 2.912756498823721e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.912756498823721e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.912756498823721e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.502020571214635e-06}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.177920856609969e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.177920856609969e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 5.177920856609969e-06}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.320563130799197e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 4.864960470147144e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.864960470147144e-08}, {"name": "Phenol", "categories": ["air"], "amount": 4.864960470147144e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.716903396071092e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 2.218943116346062e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.218943116346062e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.218943116346062e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.069227613077719e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8.723513252256542e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.723513252256542e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.723513252256542e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.102494393890102e-06}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.894756184559063e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.894756184559063e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.894756184559063e-06}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0263545115796338}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.02584198444605579}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02584198444605579}, {"name": "Silver I", "categories": ["air"], "amount": 0.02584198444605579}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.319210197060257e-09}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.023831873833243e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.023831873833243e-07}, {"name": "Styrene", "categories": ["air"], "amount": 1.023831873833243e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.987101806731701e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.073180400353483e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.073180400353483e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.073180400353483e-08}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0006931417743826864}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 0.0007058426973329602}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0007058426973329602}, {"name": "Thallium I", "categories": ["air"], "amount": 0.0007058426973329602}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.903683505289912e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 5.304594300228931e-08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.304594300228931e-08}, {"name": "Toluene", "categories": ["air"], "amount": 5.304594300228931e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.350967643951052e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 2.365276812780914e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.365276812780914e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.365276812780914e-07}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.230682656706652e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 9.461091786678029e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.461091786678029e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.461091786678029e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.136724307213791e-08}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.1048927895181e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1048927895181e-07}, {"name": "Xylene", "categories": ["air"], "amount": 1.1048927895181e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01595821309049346}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.01559559974836769}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01559559974836769}, {"name": "Zinc II", "categories": ["air"], "amount": 0.01559559974836769}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.0002094603584268039}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.000183318467436291}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.000183318467436291}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.000183318467436291}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.911452194283206e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 4.907988749833895e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 4.907988749833895e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 4.907988749833895e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.13942743874014e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.442333520247059e-06}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.442333520247059e-06}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.442333520247059e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.1292612751460015}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.0002168092338262172}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.0002168092338262172}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.0002168092338262172}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.782669101518235e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.520111160723548e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.520111160723548e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.520111160723548e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.218383674504603e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.202966272221139e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.202966272221139e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.202966272221139e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.741521065525488e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.553936772202815e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.553936772202815e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.553936772202815e-07}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 5.194719296383719e-08}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.02650169997898971}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.083992281415829e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.083992281415829e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 7.083992281415829e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.368004808330223}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.01003832704950333}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.01003832704950333}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.01003832704950333}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.004662036571511168}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.847979845997768e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.847979845997768e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.847979845997768e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 5.949475966080398e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.109485695156325e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.109485695156325e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.109485695156325e-06}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.07315695569427592}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.0001846855128300004}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.0001846855128300004}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0001846855128300004}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.0008941449055217264}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.0008928049591685979}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.0008928049591685979}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.0008928049591685979}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.0001395425791044612}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.0001003377756956081}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.0001003377756956081}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.0001003377756956081}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.04352557247671509}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.0007020246775150156}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.0007020246775150156}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.0007020246775150156}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.038098730414904e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 2.038098730414904e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 4.885150423259475e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.038098730414904e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.038098730414904e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.924925858235224e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.924925858235224e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 1.755411400048051e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.924925858235224e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.924925858235224e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.58346765720981e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.58346765720981e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 2.879516213953051e-08}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.58346765720981e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.58346765720981e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.530019865060971e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 4.530019865060971e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.35988962527705e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.530019865060971e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.530019865060971e-07}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.863154111699243e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 5.863154111699243e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.284208441107347e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.863154111699243e-09}, {"name": "Acetone", "categories": ["water"], "amount": 5.863154111699243e-09}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 5.721675558887881e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 5.721675558887881e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.470170839944064e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 5.721675558887881e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 5.721675558887881e-08}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 4.278012890782212e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.037161984140659e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.278012890782212e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.278012890782212e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 3.411629127516181e-06}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 3.411629127516181e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.308970630556439e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 3.411629127516181e-06}, {"name": "Aniline", "categories": ["water"], "amount": 3.411629127516181e-06}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.0003641328205736979}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 0.0003641328205736979}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.679966884016287e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.0003641328205736979}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.0003641328205736979}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.815371862412766e-05}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 9.815371862412766e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.027646396022553e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.815371862412766e-05}, {"name": "Barium II", "categories": ["water"], "amount": 9.815371862412766e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.136890786331367e-08}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.136890786331367e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.294960185401997e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.136890786331367e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.136890786331367e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 8.725444005900088e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.059504671760577e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 8.725444005900088e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 8.725444005900088e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.725295546990031e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.725295546990031e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.37687836602732e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.725295546990031e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.725295546990031e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.44322034490847e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 4.44322034490847e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.069153246761613e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.44322034490847e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.44322034490847e-06}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 3.75496697451903e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 3.75496697451903e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 5.898442237466312e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 3.75496697451903e-08}, {"name": "Butanol", "categories": ["water"], "amount": 3.75496697451903e-08}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 0.0004265994736482847}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.0001584041670005643}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.0004265994736482847}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.0004265994736482847}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.749326067209468e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 3.749326067209468e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.659882348209684e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.749326067209468e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 3.749326067209468e-05}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.234715992783451e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.234715992783451e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 8.826973826968142e-11}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.234715992783451e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 5.234715992783451e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.174926138213845e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.174926138213845e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.795826347063662e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.174926138213845e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 1.174926138213845e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.395264973032938e-05}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 2.395264973032938e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.412769507101826e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.395264973032938e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.395264973032938e-05}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 3.026742397087114e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.458143010834842e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 3.026742397087114e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 3.026742397087114e-09}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 8.626757056549432e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.219606440516642e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 8.626757056549432e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 8.626757056549432e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2.767189760363356e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 2.767189760363356e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 7.280610973935055e-10}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2.767189760363356e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.767189760363356e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.299953983938089e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 1.299953983938089e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 6.35445705661448e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.299953983938089e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1.299953983938089e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.621566470905957e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 1.621566470905957e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.360566418060404e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.621566470905957e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.621566470905957e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 4.417559462914081e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.694398897752627e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.417559462914081e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.417559462914081e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.432293305766979e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.432293305766979e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.24515316294891e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.432293305766979e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.432293305766979e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.277283465761985e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.277283465761985e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 2.404498845655725e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.277283465761985e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.277283465761985e-06}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.302442950512341e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.302442950512341e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.289412599718562e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.302442950512341e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.302442950512341e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.872786723738894e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.872786723738894e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 5.641078147934529e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.872786723738894e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 1.872786723738894e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.235884859811734e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 3.235884859811734e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.365567221814513e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.235884859811734e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 3.235884859811734e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.629812601254424e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.629812601254424e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.310024095211606e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.629812601254424e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.629812601254424e-07}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.0001198412639522681}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.0001198412639522681}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.0001088766917969901}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.0001198412639522681}, {"name": "Lead II", "categories": ["water"], "amount": 0.0001198412639522681}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.01421435704570649}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.01421435704570649}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.01131976984161415}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.01421435704570649}, {"name": "Mercury II", "categories": ["water"], "amount": 0.01421435704570649}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.000347251974289e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 7.000347251974289e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.100958176738442e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.000347251974289e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.000347251974289e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.0001416233637047218}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.0001416233637047218}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 3.905528422285198e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.0001416233637047218}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.0001416233637047218}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.053508057002389e-08}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 1.053508057002389e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.962829458065847e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.053508057002389e-08}, {"name": "Methanol", "categories": ["water"], "amount": 1.053508057002389e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 7.6618368734787e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 7.6618368734787e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.936085280865146e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 7.6618368734787e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 7.6618368734787e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 8.311034023864305e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 8.311034023864305e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.465911420374546e-11}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 8.311034023864305e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 8.311034023864305e-10}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2.153782493482439e-06}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.213049174069575e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.153782493482439e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 2.153782493482439e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.613933988242454e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 5.613933988242454e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 7.835146660455351e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.613933988242454e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.613933988242454e-06}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.445230029912323e-07}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 1.445230029912323e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 4.29623471206074e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.445230029912323e-07}, {"name": "Phenol", "categories": ["water"], "amount": 1.445230029912323e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 6.451763747794766e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.448472089483651e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 6.451763747794766e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 6.451763747794766e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.139721212223564e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 1.521286530292675e-09}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.139721212223564e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.139721212223564e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.122686194734411e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.122686194734411e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.327871485536874e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.122686194734411e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.122686194734411e-06}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 0.0003549487632190929}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.72046594869137e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.0003549487632190929}, {"name": "Silver I", "categories": ["water"], "amount": 0.0003549487632190929}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 6.905562739995133e-09}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 6.905562739995133e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.382198990353596e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 6.905562739995133e-09}, {"name": "Styrene", "categories": ["water"], "amount": 6.905562739995133e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 7.968250916430617e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 7.968250916430617e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 2.680460418188266e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 7.968250916430617e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 7.968250916430617e-09}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.001784950709509547}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 0.001784950709509547}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.0001049202120331686}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.001784950709509547}, {"name": "Thallium I", "categories": ["water"], "amount": 0.001784950709509547}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.78381889396906e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 1.78381889396906e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.85164323324186e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.78381889396906e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.78381889396906e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.746386821103701e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.746386821103701e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 2.679122057626619e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.746386821103701e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.746386821103701e-07}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 0.0001943856207712839}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.204785546242881e-05}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.0001943856207712839}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.0001943856207712839}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.565173748460817e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.565173748460817e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.088863470699424e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.565173748460817e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.565173748460817e-08}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.001281390275351284}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.0003022239733263844}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.001281390275351284}, {"name": "Zinc II", "categories": ["water"], "amount": 0.001281390275351284}, {"name": "Allyl chloride", "categories": ["water"], "amount": 8.429017961928794e-07}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.575815948545172e-06}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.745557815704155e-07}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.190721318298059e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.525304066537304e-06}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.067154181198038e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.012074046590263e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.316057574160154e-06}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.435820878572442e-07}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08293365611197e-06}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.868035842995189e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.697851013747082e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.595972050549893e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.693131810971133e-06}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.201611994080305e-06}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2.816218458009491e-06}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.645635268000873e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63321509311328e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003679179000157798}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.046721419301423e-06}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.426094698261276e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.215475115327741e-08}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.417141884636277e-07}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.447187570462221e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.153782493482439e-06}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.374871613818311e-07}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 4.858573792004901e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.232653909130515e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.076913084469074e-07}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 1.098197427047431e-05}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.893858831703959e-05}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.830333293317086e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.515390246796504e-08}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.317274405383888e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.319900117822828e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.0002356486037648856}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.023248103304168e-07}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.733944065031746e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.170757064025455e-08}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.072282123260385e-07}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.136492607015195e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 7.540611166253686e-09}, {"name": "Fluorene", "categories": ["air"], "amount": 6.340370005987742e-08}, {"name": "Pyrene", "categories": ["air"], "amount": 1.489693829921784e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.586426681913503e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 1.631349575654322e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.750910801247326e-07}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 8.186768257097815e-06}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.447187570462221e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.683266154297907e-05}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.56814171253634e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 3.910337206983045e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.72845770920059e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3.017980058822788e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.392964575665403e-06}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.482463566307345e-07}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.482463566307345e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 1.482463566307345e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.482463566307345e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 1.800005530365967e-08}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.270965132618554e-06}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 5.475489186926091e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 5.475489186926091e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.475489186926091e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.68001324123363e-06}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.604649759954404e-07}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.604649759954404e-07}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.994433971000697e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 6.904100488552844e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 9.247059606854275e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 9.247059606854275e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 4.323051960569407e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 4.323051960569407e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 5.25676679463365e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 5.25676679463365e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.10045882856477e-06}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.10045882856477e-06}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.271877000596303e-06}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.128144482277807e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.128144482277807e-07}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.213463018854875e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.213463018854875e-05}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.99893220957287e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.572897957726884e-06}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.532693380731927e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.532693380731927e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.365689585903067e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 6.329528656865639e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 6.329528656865639e-07}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.219103112365215e-05}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.59254506133548e-06}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 5.185841392896754e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 5.185841392896754e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 8.186768257097815e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.240830704261376e-06}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.240830704261376e-06}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.933001245358469e-07}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.138756788903267e-05}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 3.226840929334478e-06}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5.617973852047992e-07}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.98609244395069e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.021437295419715e-05}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 3.38781973718152e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 3.959834347313802e-07}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.06955463935264e-09}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.316621333548514e-07}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 9.835774382303201e-08}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.595972050549893e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.192936095744531e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 2.260416714415452e-07}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 3.215640671142427e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.868990699782283e-07}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 1.498981009243825e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.648174791572838e-08}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.0008512395590675332}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 9.584426882536254e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.705301486509108e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.030977784498545e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.116961768802979e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 2.836856103544123e-07}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 4.106090218171466e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 4.154990716553336e-06}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.64090010082572e-07}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.399814139209636e-05}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 9.042640413963346e-08}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.501788900034522e-05}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.331865725371847e-07}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.961110952175252e-06}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.429268504182158e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 6.143703152798936e-08}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 5.642471818862786e-08}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.891316381353075e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.896103550308627e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.896103550308627e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.288581154974675e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 3.84109937728943e-05}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1.907208464708583e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 8.462352362389337e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.320986861490519e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.341411800477886e-06}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.604649759954404e-07}, {"name": "Furfural", "categories": ["air"], "amount": 1.502187012899557e-06}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000278655965657986}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.0001054070920551702}, {"name": "Acrolein", "categories": ["water"], "amount": 6.665051256104808e-05}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.979396590106392e-06}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 2.432114271407734e-06}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.450336556007289e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 4.170034845461837e-06}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.079383503825776e-07}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 5.933871636014717e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 5.933871636014717e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.10703904259797e-05}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.700857114830215e-05}, {"name": "Deltamethrin", "categories": ["air"], "amount": 2.432114271407734e-06}, {"name": "Thiram", "categories": ["air"], "amount": 3.318833067587056e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 6.65621990575715e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.450336556007289e-06}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.301205936966423e-06}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 4.397306157507253e-06}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.203689565370465e-06}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.524584877853752e-06}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.203689565370465e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.608249320505897e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 3.929501850601008e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 5.254464374508087e-08}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.439496017501393e-06}, {"name": "Triallate", "categories": ["air"], "amount": 1.994797541734314e-06}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.091220173205946e-06}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.994797541734314e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.502432842368696e-06}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.471577940283187e-07}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.471577940283187e-07}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.42728831149469e-09}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.471577940283187e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 1.471577940283187e-07}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.466253946095121e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 8.76621004275217e-07}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.737390532413698e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.548065464886148e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.683266154297907e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.56759273851638e-07}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 2.162947071866905e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 4.102888901350442e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.102888901350442e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.089080284497417e-07}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.178952670852749e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 4.116697518203466e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.087613472078912e-08}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.01707196669309744}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01652093401257881}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.01679645035283812}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01679645035283812}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.01679645035283812}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.02902479391025908}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.01445506514078247}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.01445506514078247}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.01445506514078247}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.875018079860632e-10}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.02733165400536528}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.02733165400536528}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.002242224813352487}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.02733165400536528}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.02733165400536528}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 2.394134592823284e-06}, {"name": "Fipronil", "categories": ["air"], "amount": 1.910879822549913e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6.603079099676502e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 6.628803962248291e-07}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 1.18788292144222e-06}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.542085219156014e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.542085219156014e-05}, {"name": "Thiodicarb", "categories": ["water"], "amount": 3.322385105029873e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.190174350805327e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 1.721769764963922e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.322385105029873e-06}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0003273415770833903}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0003273415770833903}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 5.255691825727848e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.231831213671491e-05}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.0001387743810178501}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.275032384402566e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.5357581337796e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.0001387743810178501}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.407920302864048e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.407920302864048e-06}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 9.916909830059196e-09}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.60170128255564e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.107716619993772e-08}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.137011181366541e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 5.81904376994444e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.749333623130484e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 5.81904376994444e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.139218513803301e-07}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 2.60541471313881e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 5.076479545965154e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 1.503426278564477e-06}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.503426278564477e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.980260479937435e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.136691225952927e-07}, {"name": "Abamectin", "categories": ["air"], "amount": 0.0001725827242074209}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.922422872468747e-07}, {"name": "Diuron", "categories": ["air"], "amount": 3.259613204005238e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.745137730238623e-06}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.21290900099841e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 2.908673679003343e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.481452941847803e-05}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 6.706953745214803e-05}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.012542568378856e-07}, {"name": "2,4-D", "categories": ["water"], "amount": 3.800292070574911e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.523251019689758e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.800292070574911e-06}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 9.451186537882574e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.0002222818707172169}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.200431623087333e-05}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 7.314690101647855e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.727606151626637e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.006454018811787e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 2.183509523736084e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.631114310854442e-07}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.005393071807381e-07}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.547858321258661e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.807959891916134e-05}, {"name": "Simazine", "categories": ["water"], "amount": 2.807959891916134e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23717950402929e-05}, {"name": "Carbendazim", "categories": ["water"], "amount": 1.507634127146642e-06}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.10931733055766e-07}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.042170789321885e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 1.507634127146642e-06}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2.183509523736084e-06}, {"name": "Acephate", "categories": ["water"], "amount": 0.0006929586731928581}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.0002788074209685239}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.0006929586731928581}, {"name": "Abamectin", "categories": ["water"], "amount": 0.0002700521066349231}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 0.0002700521066349231}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.727606151626637e-06}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 1.446893607321647e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 3.556735419273804e-06}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 3.556735419273804e-06}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001620187425254965}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.485087760053352e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.566963258352636e-06}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.052788519995491e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.052788519995491e-06}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 8.543925095773046e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.863180093933961e-08}, {"name": "Diuron", "categories": ["water"], "amount": 6.641210189646113e-06}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4.443117925008929e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.492764463068921e-06}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.61889504397069e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 2.079383503825776e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.738343513116037e-08}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.095367633065906e-08}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.531692830560872e-07}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.202054972942742e-07}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.700857114830215e-05}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 7.156099907291373e-08}, {"name": "Thiram", "categories": ["water"], "amount": 4.397306157507253e-06}, {"name": "Carboxin", "categories": ["water"], "amount": 1.091220173205946e-06}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 2.151319341991782e-07}, {"name": "Propiconazole", "categories": ["water"], "amount": 1.683266154297907e-05}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.434007646080272e-09}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.497246823486204e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.408833344831208e-06}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.177731145541553e-05}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.777631760132063e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 4.877774301563965e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000505990199856692}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 9.11101710044291e-06}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 5.194719296383719e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.130467916894167e-07}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.231718232604536e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.271877000596303e-06}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.637115130288959e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 5.636214459363166e-07}, {"name": "Tebuconazole", "categories": ["water"], "amount": 8.186768257097815e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 1.219103112365215e-05}, {"name": "Atrazine", "categories": ["water"], "amount": 4.323051960569407e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 1.694696047548674e-07}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.466373767111429e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.408833344831208e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 4.47052065944512e-07}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 4.47052065944512e-07}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.766161270751631e-05}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 1.766161270751631e-05}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 4.877774301563965e-05}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 3.318833067587056e-07}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000505990199856692}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.219103112365215e-05}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.023976515844457e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.271877000596303e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.784835524267392e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.498539442643486e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.210676286439279e-05}, {"name": "EPTC", "categories": ["air"], "amount": 6.649389301397486e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.309719104482974e-06}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.156952398184586e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.317911034561375e-07}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.276352767088789e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.276352767088789e-06}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.441468942770363e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.136859738611991e-07}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 1.206020145097143e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.206020145097143e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.504975663962942e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 7.712931396797648e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.641569414103807e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.504975663962942e-06}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.748064230554958e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 7.176224143375262e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.156742828687684e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 3.95240352962132e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.95240352962132e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.95240352962132e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 7.176224143375262e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.416239543216468e-09}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 7.176224143375262e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 7.176224143375262e-08}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.488443545833287e-06}]}, {"unit": "kg CFC-11-Eq", "name": ["TRACI v2.1", "ozone depletion", "ozone depletion potential (ODP)"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.51}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 7.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 16}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.04}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.51}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.51}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.51}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.51}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 7.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 7.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 16}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 16}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 16}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 0.02}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.04}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.04}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "PM2.5-Eq", "name": ["TRACI v2.1", "particulate matter formation", "particulate matter formation potential (PMFP)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.06666666666666667}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0003555555555555556}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.06111111111111111}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06666666666666667}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.06666666666666667}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06666666666666667}, {"name": "Ammonia", "categories": ["air"], "amount": 0.06666666666666667}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.0003555555555555556}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06111111111111111}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.06111111111111111}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06111111111111111}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.06111111111111111}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0003555555555555556}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.007222222222222222}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007222222222222222}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.007222222222222222}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.007222222222222222}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.007222222222222222}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 0.2277777777777778}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2277777777777778}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 0.2277777777777778}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2277777777777778}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 0.2277777777777778}]}, {"unit": "kg O3-Eq", "name": ["TRACI v2.1", "photochemical oxidant formation", "maximum incremental reactivity (MIR)"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 2.71774358974359}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 2.827076923076923}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.207435897435896}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.502284615384615}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.508666666666667}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 14.08402564102564}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.6142051282051282}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.161666666666667}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.88079487179487}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.53923076923077}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.6848717948717948}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.3559102564102564}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 7.450692307692309}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 11.37761538461539}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.7207282051282051}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.03776923076923}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 12.61210256410256}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.151030769230769}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.880410256410257}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 0.9558948717948718}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.2461333333333334}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.05562230769230769}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 19.11820512820513}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.02150871794871795}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.515538461538462}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.250128205128205}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.75671794871795}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.354641025641025}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.173097435897437}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.2806461538461539}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.2146461538461538}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.525694871794872}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 8.99502564102564}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.827435897435898}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.03084512820512822}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.6393897435897435}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.626125641025641}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.781384615384616}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.70951282051282}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.03916948717948718}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.9543666666666665}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.455846153846153}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0659951282051282}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 9.149615384615382}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.074415384615384}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.24385641025641}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 10.60682051282051}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 7.234589743589743}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.01871564102564103}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.04142923076923077}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.01437948717948718}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.03832076923076923}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.01437948717948718}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.6723358974358974}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.07200153846153845}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 11.47817948717949}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.697358974358974}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.481325641025641}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.05699948717948718}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.673564102564102}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.2872358974358974}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 6.809051282051282}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.750333333333334}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.05646230769230769}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.59535897435897}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 7.640128205128203}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.312930769230769}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.75648717948718}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 7.081051282051282}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.4894589743589743}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 2.497358974358974}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 11.66471794871795}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1.223110256410257}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.2939897435897437}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.732928205128205}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.7344487179487179}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 4.004717948717949}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.915102564102564}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 6.315641025641025}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 7.764282051282052}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71774358974359}, {"name": "1,4-Butanediol", "categories": ["air", "low population density, long-term"], "amount": 2.71774358974359}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71774358974359}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 2.71774358974359}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.827076923076923}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 2.827076923076923}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.827076923076923}, {"name": "1-Pentanol", "categories": ["air"], "amount": 2.827076923076923}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.207435897435896}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 7.207435897435896}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.207435897435896}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.207435897435896}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.502284615384615}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 1.502284615384615}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.502284615384615}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.502284615384615}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.508666666666667}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 2.508666666666667}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.508666666666667}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.508666666666667}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.08402564102564}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 14.08402564102564}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.08402564102564}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 14.08402564102564}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.6142051282051282}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.6142051282051282}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.6142051282051282}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.6142051282051282}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.161666666666667}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 3.161666666666667}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.161666666666667}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.161666666666667}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.88079487179487}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3.88079487179487}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.88079487179487}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.88079487179487}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.53923076923077}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.53923076923077}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.53923076923077}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 6.53923076923077}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.6848717948717948}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.6848717948717948}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.6848717948717948}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.6848717948717948}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3559102564102564}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.3559102564102564}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3559102564102564}, {"name": "Acetone", "categories": ["air"], "amount": 0.3559102564102564}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.450692307692309}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 7.450692307692309}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.450692307692309}, {"name": "Acrolein", "categories": ["air"], "amount": 7.450692307692309}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.37761538461539}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 11.37761538461539}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.37761538461539}, {"name": "Acrylic acid", "categories": ["air"], "amount": 11.37761538461539}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7207282051282051}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.7207282051282051}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7207282051282051}, {"name": "Benzene", "categories": ["air"], "amount": 0.7207282051282051}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.03776923076923}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.03776923076923}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.03776923076923}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.03776923076923}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.61210256410256}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 12.61210256410256}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.61210256410256}, {"name": "Butadiene", "categories": ["air"], "amount": 12.61210256410256}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.151030769230769}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 1.151030769230769}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.151030769230769}, {"name": "Butane", "categories": ["air"], "amount": 1.151030769230769}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.880410256410257}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 2.880410256410257}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.880410256410257}, {"name": "Butanol", "categories": ["air"], "amount": 2.880410256410257}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9558948717948718}, {"name": "Butyrolactone", "categories": ["air", "low population density, long-term"], "amount": 0.9558948717948718}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9558948717948718}, {"name": "Butyrolactone", "categories": ["air"], "amount": 0.9558948717948718}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2461333333333334}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.2461333333333334}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2461333333333334}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.2461333333333334}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.05562230769230769}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.11820512820513}, {"name": "Chlorine", "categories": ["air", "low population density, long-term"], "amount": 19.11820512820513}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.11820512820513}, {"name": "Chlorine", "categories": ["air"], "amount": 19.11820512820513}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02150871794871795}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.02150871794871795}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02150871794871795}, {"name": "Chloroform", "categories": ["air"], "amount": 0.02150871794871795}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.515538461538462}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 2.515538461538462}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.515538461538462}, {"name": "Cumene", "categories": ["air"], "amount": 2.515538461538462}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.250128205128205}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.250128205128205}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.250128205128205}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.250128205128205}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.75671794871795}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 3.75671794871795}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.75671794871795}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.75671794871795}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.354641025641025}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 3.354641025641025}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.354641025641025}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.354641025641025}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.173097435897437}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 3.173097435897437}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.173097435897437}, {"name": "Dimethylamine", "categories": ["air"], "amount": 3.173097435897437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2806461538461539}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.2806461538461539}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2806461538461539}, {"name": "Ethane", "categories": ["air"], "amount": 0.2806461538461539}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2146461538461538}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.2146461538461538}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2146461538461538}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.2146461538461538}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.525694871794872}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 1.525694871794872}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.525694871794872}, {"name": "Ethanol", "categories": ["air"], "amount": 1.525694871794872}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.99502564102564}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 8.99502564102564}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.99502564102564}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.827435897435898}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.827435897435898}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.827435897435898}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.827435897435898}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03084512820512822}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.03084512820512822}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03084512820512822}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.03084512820512822}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.6393897435897435}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.6393897435897435}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.6393897435897435}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.626125641025641}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.626125641025641}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.626125641025641}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.626125641025641}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.781384615384616}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 5.781384615384616}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.781384615384616}, {"name": "Ethylamine", "categories": ["air"], "amount": 5.781384615384616}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.70951282051282}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 3.70951282051282}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.70951282051282}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 3.70951282051282}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03916948717948718}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.03916948717948718}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03916948717948718}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.03916948717948718}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9543666666666665}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.9543666666666665}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9543666666666665}, {"name": "Ethyne", "categories": ["air"], "amount": 0.9543666666666665}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.455846153846153}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.455846153846153}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.455846153846153}, {"name": "Formaldehyde", "categories": ["air"], "amount": 9.455846153846153}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0659951282051282}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0659951282051282}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0659951282051282}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0659951282051282}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.149615384615382}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 9.149615384615382}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.149615384615382}, {"name": "Furan", "categories": ["air"], "amount": 9.149615384615382}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.074415384615384}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1.074415384615384}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.074415384615384}, {"name": "Heptane", "categories": ["air"], "amount": 1.074415384615384}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24385641025641}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.24385641025641}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24385641025641}, {"name": "Hexane", "categories": ["air"], "amount": 1.24385641025641}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.60682051282051}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 10.60682051282051}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.60682051282051}, {"name": "Isoprene", "categories": ["air"], "amount": 10.60682051282051}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.234589743589743}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 7.234589743589743}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.234589743589743}, {"name": "Isopropylamine", "categories": ["air"], "amount": 7.234589743589743}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01437948717948718}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.01437948717948718}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01437948717948718}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.01437948717948718}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01871564102564103}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.01871564102564103}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01871564102564103}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.01871564102564103}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04142923076923077}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.04142923076923077}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04142923076923077}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.04142923076923077}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01437948717948718}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.01437948717948718}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01437948717948718}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.01437948717948718}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03832076923076923}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.03832076923076923}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03832076923076923}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.03832076923076923}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.6723358974358974}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.6723358974358974}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.6723358974358974}, {"name": "Methanol", "categories": ["air"], "amount": 0.6723358974358974}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07200153846153845}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.07200153846153845}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07200153846153845}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.07200153846153845}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.47817948717949}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 11.47817948717949}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.47817948717949}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 11.47817948717949}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.697358974358974}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 7.697358974358974}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.697358974358974}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.481325641025641}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 1.481325641025641}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.481325641025641}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.481325641025641}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05699948717948718}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.05699948717948718}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05699948717948718}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.05699948717948718}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.673564102564102}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 2.673564102564102}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.673564102564102}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.673564102564102}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2872358974358974}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.2872358974358974}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2872358974358974}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.2872358974358974}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.809051282051282}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 6.809051282051282}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.809051282051282}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 6.809051282051282}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.750333333333334}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 9.750333333333334}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.750333333333334}, {"name": "m-Xylene", "categories": ["air"], "amount": 9.750333333333334}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05646230769230769}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.05646230769230769}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05646230769230769}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.05646230769230769}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59535897435897}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3.59535897435897}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.59535897435897}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.59535897435897}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.640128205128203}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 7.640128205128203}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.640128205128203}, {"name": "o-Xylene", "categories": ["air"], "amount": 7.640128205128203}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.312930769230769}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 1.312930769230769}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.312930769230769}, {"name": "Pentane", "categories": ["air"], "amount": 1.312930769230769}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.75648717948718}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.75648717948718}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.75648717948718}, {"name": "Phenol", "categories": ["air"], "amount": 2.75648717948718}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.081051282051282}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 7.081051282051282}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.081051282051282}, {"name": "Propanal", "categories": ["air"], "amount": 7.081051282051282}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.4894589743589743}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.4894589743589743}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.4894589743589743}, {"name": "Propane", "categories": ["air"], "amount": 0.4894589743589743}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.497358974358974}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 2.497358974358974}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.497358974358974}, {"name": "Propanol", "categories": ["air"], "amount": 2.497358974358974}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.66471794871795}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 11.66471794871795}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.66471794871795}, {"name": "Propene", "categories": ["air"], "amount": 11.66471794871795}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.223110256410257}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 1.223110256410257}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.223110256410257}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.223110256410257}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2939897435897437}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.2939897435897437}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2939897435897437}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.2939897435897437}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.732928205128205}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.732928205128205}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.732928205128205}, {"name": "Styrene", "categories": ["air"], "amount": 1.732928205128205}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7344487179487179}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.7344487179487179}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7344487179487179}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.7344487179487179}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.004717948717949}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.004717948717949}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.004717948717949}, {"name": "Toluene", "categories": ["air"], "amount": 4.004717948717949}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.915102564102564}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 2.915102564102564}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.915102564102564}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.915102564102564}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.315641025641025}, {"name": "Trimethylamine", "categories": ["air", "low population density, long-term"], "amount": 6.315641025641025}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.315641025641025}, {"name": "Trimethylamine", "categories": ["air"], "amount": 6.315641025641025}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.764282051282052}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 7.764282051282052}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.764282051282052}, {"name": "Xylene", "categories": ["air"], "amount": 7.764282051282052}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.250128205128205}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.05562230769230769}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01437948717948718}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.01437948717948718}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01437948717948718}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.05562230769230769}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.01437948717948718}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05562230769230769}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.01437948717948718}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 1.260882051282051}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.236333333333333}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.236333333333333}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.236333333333333}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.236333333333333}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.236333333333333}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8345769230769228}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.8345769230769228}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.8345769230769228}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8345769230769228}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.8345769230769228}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8067717948717951}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.8067717948717951}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8067717948717951}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.8067717948717951}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.8067717948717951}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.6393897435897435}, {"name": "Methylamine", "categories": ["air"], "amount": 7.697358974358974}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.05905051282051282}, {"name": "Nitric oxide", "categories": ["air"], "amount": 24.79358974358974}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.4244974358974359}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.230015384615385}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 2.392307692307691}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.411179487179487}, {"name": "Ethylene", "categories": ["air"], "amount": 8.99502564102564}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.344487179487179}, {"name": "Butene", "categories": ["air"], "amount": 9.726589743589745}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.726589743589745}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 9.726589743589745}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.726589743589745}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 9.726589743589745}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.59535897435897}, {"name": "EPTC", "categories": ["air"], "amount": 1.665346153846154}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.665346153846154}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.1783651282051282}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1783651282051282}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.1783651282051282}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1783651282051282}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.1783651282051282}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 24.79358974358974}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.79358974358974}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 24.79358974358974}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.79358974358974}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 24.79358974358974}]}, {"unit": "CTU", "name": ["USEtox no LT", "ecotoxicity no LT", "total no LT"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 0.877584851265}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.213832412002}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 181.907571259}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.201500544561}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0805092493331}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.254007818656}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.31522045892}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0205719242927}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3.46313641731}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 252.348005989}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.288405388775}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.789914178246}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 10.5159542713}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 7610.91467447}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0792660811821}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.742928699357}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 26.5305279317}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 8495.54699384}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 104.645185471}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 14.5416351349}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 44.5937564368}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9281.12656076}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 11852.494877}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 589.394816651}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 5287.31629169}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.00776756842}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 30.6435409146}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 489.022277493}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 49.3383618825}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 11406.4264869}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 44920.2741276}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 819.750900734}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 607.217272443}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 21.1234848095}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 358.561985444}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 30.7583894484}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 49.5282745557}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.14249909351}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0641848556386}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 6.54175482903}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0296007905203}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 626.63362356}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 342.062610885}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 170.495991795}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 39.297979558}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1612.809976}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 740.722625064}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5733.52633005}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 73.9902502964}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 869.047924983}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 946.62717898}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 4.53042851425}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.110314050257}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.88748682607}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 30.3162206475}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3921.68984432}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 4936.04575274}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 10008.3409621}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 3071.9425648}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 54554.0844418}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 243.104159208}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 21581.8131664}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.30747861538}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 14691.3324384}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1108.35815916}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 45.5357521343}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 758.794303428}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.282103029633}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 86.4129463713}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 57823.876679}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1727.75274855}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 4.7264644488}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 517.146416179}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 41802.2176206}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 650.179138161}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 8.47812563194}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 585.837625922}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 479.723275207}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 269.880036164}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 8.87270330818}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1705.9443794}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 23090.1167695}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 29164.371915}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0907274546453}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 21165.2404087}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.00059565169664}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.1391426236}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 1274.34980467}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.4310591}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 115.463053311}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 280.319262067}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1409.81393453}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1092.53765425}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 476.076207125}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 295.591348607}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 285.091856931}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 9193.9391567}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1534.67733935}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00181061929395}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.114424315594}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1921.72654057}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 169738.0331}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 5.52247787207}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.50951518917}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 1747.27546202}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 20486.628349}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 953.831166407}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3621.59679147}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 14.0313466756}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 24.1739950255}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.244852480819}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 2567.0192411}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 142941.008639}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.407043416927}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 7450.35790744}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 365.7065026}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4019.34035685}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 2172.99361442}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 49.8209340257}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4538.02049618}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 23.9646018947}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 19.0775888949}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 97.0735092246}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 112006.429837}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1.19531644732}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.204997960687}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.57614589605}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.151713303833}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.364871214146}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 135.341583662}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.154420248453}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.725143832352}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0250784955846}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 560.065284455}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 202.580565585}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 17345.464233}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.113169917113}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.231449919653}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.83113132471}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.00783067455}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 30.6061907842}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 384.082670076}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 5875.23276591}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 813.481531495}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 32315.1068764}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 164.642808893}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 264.337890885}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 2660.18257168}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 6137.04937553}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 10219.6455873}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 10054.7533582}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8386.99402138}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1116.7046056}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 21.613539292}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 27.6249870781}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.69232633066}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.20440887968}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00278041910208}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 761.209962198}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 103.944077256}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 62492.7187904}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.68978977302e-05}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000212391668064}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 5495.69785952}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 1035.78217844}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 210.720423099}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1044.85948334}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.49246368075e-05}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.183766566205}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 9461.35207502}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 161.242132537}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 90.0956219738}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 133638.403915}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 173.663608682}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 20981.6418249}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 11123.3031216}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2289.7811287}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 194.241971734}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 266.853115161}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 255.253645922}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 124.972879067}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0347588374378}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 12065.867642}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 225.091346897}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 507.88346243}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 23.1638739103}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5393.37077103}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 220.374273005}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 458.778784193}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 11.6499437265}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0970154355392}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.0631913378953}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.06674912637}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.2256583397}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 14094.5350148}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.576607505372}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.62762952007}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.057728292117}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.529308945736}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.24108364603}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1915.77089829}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6441.70287307}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 745.421708679}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 117.347037233}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1267.94509891}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 4.14229731998}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 2202.55505481}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 17.3618871758}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0204857914181}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 5483.03314242}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 126.204653291}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 6082.16061629}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 215.530846629}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 10.9506349943}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 831.618239881}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 27.4490071731}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 129.472853108}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 21.8555056751}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5616.26291085}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1425.3454298}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 89.9804499302}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0321422533231}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 156.230936334}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 83124.2865481}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2932.02578593}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.0140546231978}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 781.103671913}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 248.743561249}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 23.64350251}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1194.23692098}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4549.47374021}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6039.63943014}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 477399.900897}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 9.10152776605}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 21.8797176827}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 20.9110658397}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.0413948763067}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1116.90069491}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 349.550094036}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 19162.5565369}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 24118.1778032}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 498.135556269}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 6.27104198098}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.375666926493}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 60375.4789921}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0932925356856}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 15.0525551269}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 310.259588849}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 285.069157112}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 10.7466745139}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0953060393702}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.30429241591}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 196.100163711}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3507.53000309}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 11.6430968574}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.08961639208}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 35.5024975135}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 153.002197788}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 145.514101305}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 19.5129109469}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 937.412433146}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3701.9722186}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 2964.10862814}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 47.1862687661}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 80059.4895541}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 100987.433379}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 12634.6399818}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.534489261}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.019891430555}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 5256.02237607}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 1581.689868}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 79.0291838857}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 449.863767219}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0272867515794}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1.18106678075}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 4553.22796733}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 449.513177271}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3383.33375278}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 41283.7582111}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 4664.85311259}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 53712.0311845}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 53644.7897429}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 14085.2938275}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 862.918167377}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 41325.5719851}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1025.56311421}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 15803.2042289}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1347.13020059}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1714.41984509}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0131267190366}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4220.83504003}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 319.761373813}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 6056.63650588}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 175.173865712}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 38.4438237643}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 52549.7251044}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1315.30446537}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.0918471656337}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 592.510750365}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 14604.3343293}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.021957876845}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 163.50212264}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 3.04863294124}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 46228.7322996}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 58269.3699574}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1059.06456811}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0112737888674}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 16684.3640155}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 21139.0169079}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.835334946199}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.835334946199}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 0.856459898732}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.210596171482}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.210596171482}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.212214291742}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.198783735445}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.198783735445}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.200142140003}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0794096203566}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0794096203566}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0799594348449}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.251546230591}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.251546230591}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.252777024624}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0209785856491}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0209785856491}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0207752549709}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.59610285522}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.59610285522}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3.02961963627}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.296430617956}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.296430617956}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.292418003365}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.2491571695}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.2491571695}, {"name": "Acetic acid", "categories": ["air"], "amount": 10.3825557204}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0790346968653}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0790346968653}, {"name": "Acetone", "categories": ["air"], "amount": 0.0791503890237}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.740570515773}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.740570515773}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.741749607565}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 108.575306681}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 108.575306681}, {"name": "Acrolein", "categories": ["air"], "amount": 106.610246076}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2566863107}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2566863107}, {"name": "Acrylic acid", "categories": ["air"], "amount": 13.8991607228}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58181265975}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58181265975}, {"name": "Aniline", "categories": ["air"], "amount": 2.29479011409}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 493.04979056}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 493.04979056}, {"name": "Antimony ion", "categories": ["air"], "amount": 491.036034026}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 612.06483331}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 612.06483331}, {"name": "Barium II", "categories": ["air"], "amount": 609.641052877}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15021596859}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.15021596859}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 3.14635753105}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0638123434892}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0638123434892}, {"name": "Benzene", "categories": ["air"], "amount": 0.0639985995639}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0271505150441}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0271505150441}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0283756527822}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 621.912773802}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 621.912773802}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 624.273198681}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 341.02911476}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 341.02911476}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 341.545862823}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.5330803026}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 43.5330803026}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 107.014536049}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1631.16519404}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1631.16519404}, {"name": "Beryllium II", "categories": ["air"], "amount": 1621.98758502}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107942211711}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107942211711}, {"name": "Butanol", "categories": ["air"], "amount": 0.109128130984}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.5175522617}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.5175522617}, {"name": "Butyrolactone", "categories": ["air"], "amount": 29.9168864546}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3955.35973783}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3955.35973783}, {"name": "Cadmium II", "categories": ["air"], "amount": 3938.52479107}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.30654406122}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.30654406122}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.3070113383}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14212.4900179}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14212.4900179}, {"name": "Chloramine", "categories": ["air"], "amount": 14451.9112281}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 749.484412124}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 749.484412124}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 754.139357776}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.281794448257}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.281794448257}, {"name": "Chloroform", "categories": ["air"], "amount": 0.281948738945}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.3875199741}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84.3875199741}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 85.4002331727}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 521.359242738}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 521.359242738}, {"name": "Chromium III", "categories": ["air"], "amount": 519.252829459}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 42142.7644597}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42142.7644597}, {"name": "Chromium VI", "categories": ["air"], "amount": 41972.4910401}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1722.64845736}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1722.64845736}, {"name": "Cobalt II", "categories": ["air"], "amount": 1714.29641838}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 23320.1199541}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23320.1199541}, {"name": "Copper ion", "categories": ["air"], "amount": 23205.1183618}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0740771512599}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0740771512599}, {"name": "Cumene", "categories": ["air"], "amount": 0.0824023029526}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000405353473058}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000405353473058}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.000500502584849}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00182893035243}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00182893035243}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00181977482319}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.116780482618}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.116780482618}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.115602399106}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.5884389935}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.5884389935}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 23.8812170095}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.25099048109}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.25099048109}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.247921480955}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 106410.828059}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 106410.828059}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 124675.918349}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.412215588906}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.412215588906}, {"name": "Dipropylamine", "categories": ["air"], "amount": 0.409629502916}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.0073923683}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.0073923683}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 19.0424906316}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19531644732}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19531644732}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.19531644732}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.204908392992}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.204908392992}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.20495317684}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.575224191555}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.575224191555}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.575685043803}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.151546557655}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.151546557655}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.151629930744}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.364404011361}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.364404011361}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.364637612753}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.151221906768}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.151221906768}, {"name": "Ethanol", "categories": ["air"], "amount": 0.152821077611}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.721533745751}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.721533745751}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.723338789052}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0246194040751}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0246194040751}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.113268388553}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.113268388553}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.113219152833}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.228364488859}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.228364488859}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.229907204256}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64711600974}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64711600974}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.73912366723}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.00621475928}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.00621475928}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.00702271691}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.9823636252}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.9823636252}, {"name": "Formaldehyde", "categories": ["air"], "amount": 26.8036753517}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67005629758}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67005629758}, {"name": "Formamide", "categories": ["air"], "amount": 1.68119131412}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.96030446924}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.96030446924}, {"name": "Formic acid", "categories": ["air"], "amount": 9.08235667446}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00233100240177}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00233100240177}, {"name": "Furan", "categories": ["air"], "amount": 0.00255571075192}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37442513185e-06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37442513185e-06}, {"name": "Heptane", "categories": ["air"], "amount": 1.0136161431e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.76400672692e-05}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.76400672692e-05}, {"name": "Hexane", "categories": ["air"], "amount": 0.000135015867667}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.88928850923e-05}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.88928850923e-05}, {"name": "Isoprene", "categories": ["air"], "amount": 5.69087609499e-05}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.191379678204}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.191379678204}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.187573122205}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 176.062889039}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 176.062889039}, {"name": "Lead II", "categories": ["air"], "amount": 174.86324886}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 12297.3346688}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12297.3346688}, {"name": "Mercury II", "categories": ["air"], "amount": 12181.6011554}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.6381118935}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.6381118935}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 11.64402781}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0969143119131}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0969143119131}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0969648737262}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0631311766242}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0631311766242}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.0631612572598}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0665506403}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0665506403}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.06664988334}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22225788207}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22225788207}, {"name": "Methanol", "categories": ["air"], "amount": 0.223958110885}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57583947294}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57583947294}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.576223489156}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.66685846076}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.66685846076}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.64724399041}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0576835058781}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0576835058781}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0577058989975}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.528720817166}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.528720817166}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.529014881451}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14951480127}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14951480127}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.19529922365}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 118.302979947}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 118.302979947}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 117.82500859}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.85521540325}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.85521540325}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.99875636162}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164468033888}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0164468033888}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.0184662974034}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6137.38470478}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6137.38470478}, {"name": "Nickel II", "categories": ["air"], "amount": 6109.77266053}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.8739854374}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.8739854374}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 10.9123102159}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.040385767}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.040385767}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 27.2446964701}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0285629132937}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0285629132937}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.0303525833084}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00598165461721}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00598165461721}, {"name": "Pentane", "categories": ["air"], "amount": 0.0100181389075}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5610007283}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.5610007283}, {"name": "Phenol", "categories": ["air"], "amount": 19.6022516191}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1135.06293036}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1135.06293036}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1164.64992567}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3414.13714823}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3414.13714823}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3981.80544422}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.388389161408}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.388389161408}, {"name": "Propanal", "categories": ["air"], "amount": 0.38202804395}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0917394115155}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0917394115155}, {"name": "Propanol", "categories": ["air"], "amount": 0.0925159736005}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.3227695392}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.3227695392}, {"name": "Propionic acid", "categories": ["air"], "amount": 10.5347220266}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0936882576845}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0936882576845}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0944971485273}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.30429241591}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.30429241591}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.30429241591}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 2989.82139002}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2989.82139002}, {"name": "Selenium IV", "categories": ["air"], "amount": 2976.96500908}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 80815.4597124}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80815.4597124}, {"name": "Silver I", "categories": ["air"], "amount": 80437.4746333}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.534489261}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.534489261}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.534489261}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0111386365058}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0111386365058}, {"name": "Styrene", "categories": ["air"], "amount": 0.0155150335304}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 77.9916598746}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 77.9916598746}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 78.5104218802}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0273369643254}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0273369643254}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.0273118579524}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18753802654}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18753802654}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1.18430240365}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 14197.9185038}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14197.9185038}, {"name": "Thallium I", "categories": ["air"], "amount": 14141.6061657}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1364.56823187}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1364.56823187}, {"name": "Tin ion", "categories": ["air"], "amount": 1355.84921623}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0124211271458}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0124211271458}, {"name": "Toluene", "categories": ["air"], "amount": 0.0127739230912}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0241287861807}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0241287861807}, {"name": "Trimethylamine", "categories": ["air"], "amount": 0.0230433315129}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 46651.9104447}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46651.9104447}, {"name": "Vanadium V", "categories": ["air"], "amount": 46440.3213721}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0100183472103}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0100183472103}, {"name": "Xylene", "categories": ["air"], "amount": 0.0106460680389}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16872.4717639}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16872.4717639}, {"name": "Zinc II", "categories": ["air"], "amount": 16778.4178897}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["soil"], "amount": 614.959345387}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["soil"], "amount": 763.100537904}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2044.44096164}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 4936.04575274}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4936.04575274}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4936.04575274}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4936.04575274}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 650.179138161}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 650.179138161}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 650.179138161}, {"name": "Chromium III", "categories": ["soil"], "amount": 650.179138161}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["soil"], "amount": 52555.1604784}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2153.79076908}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 29164.371915}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 29164.371915}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 29164.371915}, {"name": "Copper ion", "categories": ["soil"], "amount": 29164.371915}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 103.944077256}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["soil"], "amount": 221.497791887}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["soil"], "amount": 15597.0651453}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 147.533859595}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 7664.97812916}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 7664.97812916}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 7664.97812916}, {"name": "Nickel II", "categories": ["soil"], "amount": 7664.97812916}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["soil"], "amount": 3731.25861636}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 100987.433379}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 100987.433379}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 100987.433379}, {"name": "Silver I", "categories": ["soil"], "amount": 100987.433379}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 92.4913549105}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["soil"], "amount": 17701.2387824}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1714.41984509}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1714.41984509}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1714.41984509}, {"name": "Tin ion", "categories": ["soil"], "amount": 1714.41984509}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 58269.3699574}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 58269.3699574}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 58269.3699574}, {"name": "Vanadium V", "categories": ["soil"], "amount": 58269.3699574}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 21139.0169079}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 21139.0169079}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 21139.0169079}, {"name": "Zinc II", "categories": ["soil"], "amount": 21139.0169079}, {"name": "1,4-Butanediol", "categories": ["water", "ground-"], "amount": 1.88048378921}, {"name": "1,4-Butanediol", "categories": ["water", "ocean"], "amount": 1.24888237456e-06}, {"name": "1,4-Butanediol", "categories": ["water", "surface water"], "amount": 7.30933198218}, {"name": "1,4-Butanediol", "categories": ["water"], "amount": 7.30933198218}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 2.39767700727}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.00252054920435}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 15.5680380784}, {"name": "1-Pentanol", "categories": ["water"], "amount": 15.5680380784}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.83532693565}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00335253332003}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.53883712597}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.53883712597}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.563358392411}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.00122097072413}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.46341652464}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.46341652464}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 4.12620317214}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.00539448887153}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 21.4154999078}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 21.4154999078}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.00474277583209}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 14.5722688399}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 14.5722688399}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.702598655348}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.00143091470463}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 6.02567201913}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 6.02567201913}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 18.281896538}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.365080472264}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 4115.81224674}, {"name": "Acenaphthene", "categories": ["water"], "amount": 4115.81224674}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.4090746304}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0197047366836}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 47.1724719364}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 47.1724719364}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 12.6438444691}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00134658392511}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 49.8391256658}, {"name": "Acetic acid", "categories": ["water"], "amount": 49.8391256658}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.2571833334}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00354663492385}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.21330906629}, {"name": "Acetone", "categories": ["water"], "amount": 1.21330906629}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 1.95659022868}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0363870763409}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.85687366902}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.85687366902}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.428156522692}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 133.532588712}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 133.532588712}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.329136796886}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 354.907392769}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 354.907392769}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 66.7690720679}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.00592084616789}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 630.6490501}, {"name": "Aniline", "categories": ["water"], "amount": 630.6490501}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 9.07429387723e-18}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1221.51839968}, {"name": "Antimony ion", "categories": ["water"], "amount": 1221.51839968}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.44533885721e-17}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1526.10691053}, {"name": "Barium II", "categories": ["water"], "amount": 1526.10691053}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.04858705518}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0130046485146}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 65.983059347}, {"name": "Benzene", "categories": ["water"], "amount": 65.983059347}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.075129666383}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 393.262078174}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 393.262078174}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1.70380121609}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.00246484482978}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 174.894328739}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 174.894328739}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.00403492671258}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 200.43759694}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 200.43759694}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.69894016278e-17}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3719.35347873}, {"name": "Beryllium II", "categories": ["water"], "amount": 3719.35347873}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.94260861398}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.000990721472819}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.51556379499}, {"name": "Butanol", "categories": ["water"], "amount": 5.51556379499}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.00630729817118}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 28.3737992555}, {"name": "Butyl acetate", "categories": ["water"], "amount": 28.3737992555}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 40.4477825543}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.00307454028955}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 154.646449236}, {"name": "Butyrolactone", "categories": ["water"], "amount": 154.646449236}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.26970102448e-17}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9712.29169009}, {"name": "Cadmium II", "categories": ["water"], "amount": 9712.29169009}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 4.82294471251}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.230171311538}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 153.423085687}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 153.423085687}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 15577.3710813}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.63968414852e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 71953.1321372}, {"name": "Chloramine", "categories": ["water"], "amount": 71953.1321372}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 929.270625492}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 0.0133105855615}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 2928.07024673}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 2928.07024673}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.08589206049}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.0534688731889}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 41.1788799623}, {"name": "Chloroform", "categories": ["water"], "amount": 41.1788799623}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 151.296640867}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.163343449842}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 553.804523877}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 553.804523877}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.32106975587e-16}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 104644.276363}, {"name": "Chromium VI", "categories": ["water"], "amount": 104644.276363}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.69990359972e-18}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1294.59266797}, {"name": "Chromium III", "categories": ["water"], "amount": 1294.59266797}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 9.294818138e-18}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4099.42299394}, {"name": "Cobalt II", "categories": ["water"], "amount": 4099.42299394}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.03201448924e-16}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 55247.572332}, {"name": "Copper ion", "categories": ["water"], "amount": 55247.572332}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2.4742100852}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00654705716437}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 665.070188075}, {"name": "Cumene", "categories": ["water"], "amount": 665.070188075}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.125391464036}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.90157543781e-05}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 48.6887426224}, {"name": "Cyclohexane", "categories": ["water"], "amount": 48.6887426224}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 7.13335497877}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00405279791329}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 65.4673526162}, {"name": "Diethylamine", "categories": ["water"], "amount": 65.4673526162}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.00492028322356}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 44.0393806465}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 44.0393806465}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 14.2844619225}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00784287237722}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 86.1910342993}, {"name": "Dimethylamine", "categories": ["water"], "amount": 86.1910342993}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 19.1969003429}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.0193638036234}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 375.153401114}, {"name": "Dipropylamine", "categories": ["water"], "amount": 375.153401114}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.645470406153}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.0544918255704}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 21.6929221094}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 21.6929221094}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.18602552885}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0288539804571}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 15.118230043}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 15.118230043}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 19.4898450525}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 1911.47985113}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1911.47985113}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.603906199083}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.000982908829623}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.11364403216}, {"name": "Ethanol", "categories": ["water"], "amount": 3.11364403216}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.73241367889}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.182067694772}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 607.053269966}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 607.053269966}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.871238127174}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00792142074535}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 5.86649047108}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 5.86649047108}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 4.74695548969}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.00542378418328}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 31.3245702049}, {"name": "Ethylamine", "categories": ["water"], "amount": 31.3245702049}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 9.19599755927}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00149450283134}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 33.8825908879}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 33.8825908879}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 3.76959585656}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.0858467086862}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 23.5345841881}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 23.5345841881}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 83.9611714942}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.0244435939629}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 297.421123119}, {"name": "Formaldehyde", "categories": ["water"], "amount": 297.421123119}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.27635583284}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 5.70502569648e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 7.03496309107}, {"name": "Formamide", "categories": ["water"], "amount": 7.03496309107}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 11.1765675378}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00214519858316}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 44.3985978111}, {"name": "Formic acid", "categories": ["water"], "amount": 44.3985978111}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.0835600185334}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 2834.66165807}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 2834.66165807}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.0244198439156}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 3.3839735808e-06}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 64.7766136478}, {"name": "Hexane", "categories": ["water"], "amount": 64.7766136478}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 6.84697909866}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 26679.1520578}, {"name": "Hydrazine", "categories": ["water"], "amount": 26679.1520578}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 7.38073006547}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0098284709809}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 63.9075630591}, {"name": "Isopropylamine", "categories": ["water"], "amount": 63.9075630591}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.38723579768e-19}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 374.712087307}, {"name": "Lead II", "categories": ["water"], "amount": 374.712087307}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.78498613101e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 22085.5777807}, {"name": "Mercury II", "categories": ["water"], "amount": 22085.5777807}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.826658447362}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0196317992577}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 14.6086211315}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 14.6086211315}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 2.26922525202}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.276852728533}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 66.3699032274}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 66.3699032274}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.510872918433}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.00149137267179}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.64703869861}, {"name": "Methanol", "categories": ["water"], "amount": 2.64703869861}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 2.63934935448}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.0403171258023}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 15.3464598148}, {"name": "Methyl acetate", "categories": ["water"], "amount": 15.3464598148}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 86.4260496376}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.205421548177}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 672.693769619}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 672.693769619}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 2.69699443261}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.0454930999128}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 17.6594630018}, {"name": "Methyl formate", "categories": ["water"], "amount": 17.6594630018}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 7.40013389918e-19}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 293.759429823}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 293.759429823}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 2.86220566757}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.00149072814059}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 293.377639617}, {"name": "m-Xylene", "categories": ["water"], "amount": 293.377639617}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.52134113463e-17}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 14879.593112}, {"name": "Nickel II", "categories": ["water"], "amount": 14879.593112}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 12.4907504254}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.309274509026}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 179.424851039}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 179.424851039}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 2.44074824773}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.00258295543271}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 220.767480905}, {"name": "o-Xylene", "categories": ["water"], "amount": 220.767480905}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 68.881917707}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.00989234102318}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 933.053080439}, {"name": "Phenol", "categories": ["water"], "amount": 933.053080439}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.0921337373485}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5658.10239646}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 5658.10239646}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.104574403899}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6318.72190295}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 6318.72190295}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.00566881201258}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 167.14128465}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 167.14128465}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.000356393755357}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 322.448744091}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 322.448744091}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 15.3176471858}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.0249055458003}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 85.6478335876}, {"name": "Propanal", "categories": ["water"], "amount": 85.6478335876}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.648709408671}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.00130704287396}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 2.97231381479}, {"name": "Propanol", "categories": ["water"], "amount": 2.97231381479}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 16.5647075376}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.00558389484262}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 70.6626377096}, {"name": "Propionic acid", "categories": ["water"], "amount": 70.6626377096}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 2.10238456636}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0023607370464}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 17.4700358048}, {"name": "Propylamine", "categories": ["water"], "amount": 17.4700358048}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 5.01480349489}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0816325783193}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 29.005239421}, {"name": "Propylene oxide", "categories": ["water"], "amount": 29.005239421}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.99594386638e-17}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 7324.67649905}, {"name": "Selenium IV", "categories": ["water"], "amount": 7324.67649905}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.40217976328e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 194088.664722}, {"name": "Silver I", "categories": ["water"], "amount": 194088.664722}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.591875112103}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.02735443489e-11}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 2.29890588366}, {"name": "Sodium formate", "categories": ["water"], "amount": 2.29890588366}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.836241799581}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00100227427588}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 185.222322067}, {"name": "Styrene", "categories": ["water"], "amount": 185.222322067}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.552459972141}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00240860630869}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.63317349449}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.63317349449}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 13.5092073972}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.0506647781598}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 125.389297733}, {"name": "t-Butylamine", "categories": ["water"], "amount": 125.389297733}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.07639023681e-16}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 35389.4077305}, {"name": "Thallium I", "categories": ["water"], "amount": 35389.4077305}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 4.30760120816e-18}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2978.23297057}, {"name": "Tin ion", "categories": ["water"], "amount": 2978.23297057}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.69590270572}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.00116367810532}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 55.9244570735}, {"name": "Toluene", "categories": ["water"], "amount": 55.9244570735}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.83959886735}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.0341377179356}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 188.861574259}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 188.861574259}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 8.45923489413e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.387328217825}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.387328217825}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.65348453121}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.00173832682985}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 19.8654420496}, {"name": "Trimethylamine", "categories": ["water"], "amount": 19.8654420496}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 8.80967294413e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 10.2429235335}, {"name": "Urea", "categories": ["water"], "amount": 10.2429235335}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.14855870933e-15}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 112885.975124}, {"name": "Vanadium V", "categories": ["water"], "amount": 112885.975124}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.856084361818}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.000905963060822}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 77.433462536}, {"name": "Xylene", "categories": ["water"], "amount": 77.433462536}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.26978777143e-15}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 38584.5847928}, {"name": "Zinc II", "categories": ["water"], "amount": 38584.5847928}, {"name": "Allyl chloride", "categories": ["water"], "amount": 150.107994707}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1719.72022222}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.421805319}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 339.317777169}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46475948079}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 857.119620868}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9534.98244551}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6746.64791262}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4323.58210351}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1920.93503576}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6050.10080329}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2426.79990078}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.582607561724}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 103.169086671}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 658.986710852}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 295.110806888}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 3770.7450376}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 4954.65373781}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.3932813926}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 192.999442132}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1283.109173}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.4310591}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 4084.8099935}, {"name": "Thifensulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 35564.4260927}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 411.1785638}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1134.31504454}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 868.275246299}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1240.16841273}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 96.2293583211}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1333.79443753}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8673.14758745}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 105.744292155}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2258.57766265}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.3024755209}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3287.78136202}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 4345.11868303}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.4122233922}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1170.78461728}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 259125.744383}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 910.522764295}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 381628.069557}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 7664.97812916}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 1388.79880804}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 633.556552259}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 10478.7144824}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 893.126030729}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.20246492475}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 23322.8108861}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 28046.6429631}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 98.0040444448}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 116.155359038}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 4596.60659287}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1165.75588348}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 18.9067574535}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 2525.61496079}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 381053.75649}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 17300.8240815}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 48797.7288149}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1194.66483169}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 129.849192762}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 6449.38280516}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 15771.0343836}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 352.621901199}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 677723.624786}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 126.815326465}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 236.821363216}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 652.965951536}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7861577.04964}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1028.90082835}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 2443.47118807}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 6373.08863158}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 170.512437611}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6437.00134825}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6437.00134825}, {"name": "Arsenic ion", "categories": ["air"], "amount": 6405.04498992}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 8050.89994673}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 8050.89994673}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 8050.89994673}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 8050.89994673}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 224.393691341}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 214.756405105}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 214.756405105}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 234.030977577}, {"name": "Arsenic ion", "categories": ["water"], "amount": 15222.6509969}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 15222.6509969}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 9.58825682577e-17}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 8050.89994673}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1748.63720722}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 105.779518324}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1618.13667159}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 206.604549058}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 5957.95991504}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2337.13737544}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 90.654292576}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 105993.681159}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 203864.201142}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 96.6568218536}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.75406157419}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 12.5967888633}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.73878567982}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.73878567982}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.746423627}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.486803588069}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 586.984453573}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 586.984453573}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 16219.0594888}]}, {"unit": "CTU", "name": ["USEtox no LT", "human toxicity no LT", "carcinogenic no LT"], "exchanges": [{"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.25835643585e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.81034369363e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.10822971148e-07}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.40677675031e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2.78915096857e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.53106789654e-08}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.02725822034e-06}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.39137625621e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.74189637316e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 8.42536760991e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.12983385676e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.53036676816e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 4.49513602648e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.000115490564155}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.12591222332e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.000251763798337}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.5900525836e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.12098271166e-08}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.02143353577e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.98978798813e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.52942349063e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00469814945549}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.59396713048e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.58465083306e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 29.6215965571}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 5.54372559772e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.30432522666e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.51551382007e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.82092639599e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.86589948834e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.92272837839e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.59649534071e-06}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.63627203333e-09}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.03415307628e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.29033235366e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.06043356488e-08}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.21916990727e-06}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.86069960003e-06}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.54216857544e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.27974191527e-05}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.79311899168e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.75913270933e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.34836336155e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.65698358987e-05}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 6.56547012814e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3.13488021555e-08}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.00689119536346}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.93265617274e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.91573373907e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.798065886e-05}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.41561486381e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.61755017703e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.59751715034e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.9919583523e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.30137212543e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.44886373212e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.76389568595e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.13599183806e-05}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 9.2668338628e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.10730840774e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.8761556497e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.00721530541e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.10266781435e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.17267040417e-12}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.82551249043e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.01010637222e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.17980717339e-09}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.17980717339e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.51070882682e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.61481971007e-10}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.61481971007e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.80360804682e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21160330753e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.21160330753e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.80626829348e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19861648047e-07}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19861648047e-07}, {"name": "Benzene", "categories": ["air"], "amount": 2.97025642682e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55318865951e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55318865951e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.34257636135e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81334221509e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81334221509e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.17185449163e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.48798887749e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15203102352e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15203102352e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.35054371953e-05}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66364294122e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66364294122e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.71274326364e-07}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000181886251444}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000181886251444}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00021682502489}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62205188845e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62205188845e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.30591993829e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00420652364645}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00420652364645}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00445233655097}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 29.0579794183}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.98615796658e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.98615796658e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.26494178215e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21127687713e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21127687713e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.25780105189e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.15703053861e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.15703053861e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.06560843696e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.55644290875e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.14623193216e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.33591164361e-08}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.13732373977e-09}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63093252709e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.63093252709e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.74862316449e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22818037023e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22818037023e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.25925636194e-07}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.35831711151e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.35831711151e-09}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 8.30466291186e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38568982845e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38568982845e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.34036877914e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38514597875e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38514597875e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.20912825657e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.92786459021e-10}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.92786459021e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.92952725352e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8147140338e-08}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72744049579e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.72744049579e-05}, {"name": "Lead II", "categories": ["air"], "amount": 2.69221204283e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00721939609092}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00721939609092}, {"name": "Mercury II", "categories": ["air"], "amount": 0.00705529572719}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.4268974382e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41555720358e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41555720358e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.66564547133e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53591407821e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53591407821e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.6669899821e-05}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68430211366e-08}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68430211366e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.04995848874e-08}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.73466103001e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.73466103001e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 5.17610560352e-05}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08926890585e-07}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08926890585e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.05322202046e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 6.02505019232e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.70116176839e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.70116176839e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 4.00126694691e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.10730840774e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.10730840774e-07}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.10730840774e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65875148514e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65875148514e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1190141013e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.77006340593e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.77006340593e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 6.39837077473e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18119080314e-12}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18119080314e-12}, {"name": "Toluene", "categories": ["air"], "amount": 3.17693060366e-12}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.92033805674e-10}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.92033805674e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.75107008895e-09}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.13042102512e-24}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.13042102512e-24}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.13042102512e-24}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.13042102512e-24}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.000481792025544}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.08107144261e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.08107144261e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 8.08107144261e-07}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.00541281305817}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.00534431943162}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.00534431943162}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.00534431943162}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 7.55469061204e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.01939385121e-07}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.01939385121e-07}, {"name": "Lead II", "categories": ["soil"], "amount": 2.01939385121e-07}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0200044362242}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 8.48018013111e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 8.48018013111e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 8.48018013111e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.000105724992455}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.9716083806e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.9716083806e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.9716083806e-05}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.82611559507e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.5462790678e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.82611559507e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 8.82611559507e-08}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.11871117885e-08}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.40677675031e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.40677675031e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 6.90690409061e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.65003441604e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 6.90690409061e-08}, {"name": "Aniline", "categories": ["water"], "amount": 6.90690409061e-08}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.42356468163e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 2.48598903073e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.42356468163e-07}, {"name": "Benzene", "categories": ["water"], "amount": 2.42356468163e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.88550344886e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 8.42536760991e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 8.42536760991e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.73175162941e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 5.13884016434e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.73175162941e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.73175162941e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.93228723043e-25}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.05933518344e-26}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.93228723043e-25}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.93228723043e-25}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 5.90415531548e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.5900525836e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.5900525836e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.90347838611e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 3.45063784803e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.90347838611e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 3.90347838611e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.0106412469201}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.000627639502748}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0106412469201}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0106412469201}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 5.29594169392e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.63365874629e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.37947158204e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.59649534071e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.59649534071e-06}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 4.64255029641e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 2.54268249009e-09}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.57410232268e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 5.22622698116e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.57410232268e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.57410232268e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.4853543737e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 7.71263952757e-08}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.4853543737e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 5.4853543737e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.84742034232e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.71589882596e-06}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.24088463926e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.31368315406e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.24088463926e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.24088463926e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.93266118363e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.62742636959e-11}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.93266118363e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.93266118363e-09}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.53954919999e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.75913270933e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.75913270933e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.41624753292e-07}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.10368663912e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.41624753292e-07}, {"name": "Lead II", "categories": ["water"], "amount": 3.41624753292e-07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.000120080076691}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.56271765466e-05}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.000120080076691}, {"name": "Mercury II", "categories": ["water"], "amount": 0.000120080076691}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.82317292723e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 9.6560046946e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.82317292723e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.82317292723e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.16253257955e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.17587468701e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.16253257955e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.16253257955e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.24102735905e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.74349958773e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.24102735905e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 2.24102735905e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.93269270377e-06}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.82737301858e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 3.82737301858e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.14190986335e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.59371864207e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.14190986335e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.14190986335e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 1.68836291963e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.44886373212e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.44886373212e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 3.53743317677e-09}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.76389568595e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.76389568595e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.15873471978e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 7.69667452305e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.15873471978e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.15873471978e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.29829306404e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.48366675471e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.29829306404e-08}, {"name": "Styrene", "categories": ["water"], "amount": 1.29829306404e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.83673645379e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.55467521351e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.83673645379e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.83673645379e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.2879661946e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.11387645851e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.2879661946e-09}, {"name": "Toluene", "categories": ["water"], "amount": 3.2879661946e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.87817103743e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 7.91617455349e-11}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.87817103743e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.87817103743e-09}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96832520896e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72488671037e-07}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 2.39234482596e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62111292374e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32045754977e-07}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33260035377e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6500890021e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.02931758558e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.82737301858e-05}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.97337061874e-11}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.53421227985e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0004239869897}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000242335986141}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000242335986141}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.000333161487921}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.000391834717788}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.000195143379401}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.000195143379401}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.000195143379401}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 9.05452478804e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 9.26804763876e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.000368977329072}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.000368977329072}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.02700349803e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.000368977329072}]}, {"unit": "CTU", "name": ["USEtox no LT", "human toxicity no LT", "non-carcinogenic no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.22107612959e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.14240130852e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.97819564124e-09}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.39267954175e-08}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.000350614722474}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.29162189912e-07}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 9.67186558462e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.7246994101e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00140792037782}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 9.70801684411e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.27801289078e-06}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.44134951538e-05}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 8.82185413283e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.74415250727e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.000186565323829}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.51497689855e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.19084656419e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 5.68929348804e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.51538282679e-05}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 5.67639632829e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.84486970479e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 6.18998015956e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.40028027971e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.20073131874e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 8.7254440059e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.00534430439e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.57784358616e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.46171452185e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0855603171999}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 3.54940227989e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.0970352734e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 6.02634349165e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.19436053997e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.68486677638e-06}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.26863106794e-08}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0444663058455}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.000426599473648}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.33109164235e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 7.57113690084e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.06629840745e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.50206945082e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 5.31479897581e-05}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.78536345821e-07}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.73695147425e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.71395602563e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.60954105991e-07}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.73578090429e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3.56545393639e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.000748414990057}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 3.02674239709e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.32337383641e-05}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 8.62675705655e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02284603255e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.13649260702e-08}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.59597206457e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.41204306953e-07}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.11889118027e-06}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000147547188575}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.34299434762e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.24739604051e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.49802672226e-07}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 2.79449501214e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.59173271959e-06}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65136409165e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.82620591784e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.07319064027e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.07049768116e-06}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.37199576957e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 7.80373245217e-08}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.5590928788e-05}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.86359176402e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.76190346285e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.90380453425e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.73273423485e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.41755946291e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.74304831064e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.62281587226e-06}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.82695687532e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.000123511601348}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.62866364624e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.35632670187e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 8.17425733863e-09}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.48195495738e-08}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 5.57509434147e-08}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 1.41185834791e-05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 5.32342287452e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.6672757021e-07}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 7.0032895581e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 7.62662627432e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.43993461441e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.05538842042e-09}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00932064402952}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 7.60579121025e-05}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.04128130499e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.0912235769e-07}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 8.86419791161e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 4.67837616053e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.42061298909e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.62912175897e-12}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.815310505072}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.67513653743e-07}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000113866883591}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 9.57257078322e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.04326658888e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.31653582337e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 6.55510120949e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000159172552978}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.80784050713e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.63329092691e-08}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 6.13617407825e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.26769482886e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 5.92881404423e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.40264733665e-07}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.37815045333e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.00163326250869}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.63756703912e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 6.27434656912e-05}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.40370961401e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 6.44497918122e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.16117116592e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 7.85382114201e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 4.76106468608e-08}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.86496368948e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 3.56886206147e-06}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.53240096284e-09}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.92710058813e-06}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.06696854044e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.03420858705e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.53819687493e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.4093578095e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.72098283662e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.37779889144e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.29593634107e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 7.48223845186e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 6.45176374779e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.22201194273e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 4.84697205131e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 9.89413748742e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.1182518046e-05}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.69739397578e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.86976395417e-07}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.43006424918e-06}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.73332741409e-07}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.26716560536e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 7.68701797523e-06}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 7.17326236367e-09}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 8.30543922245e-06}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 4.36575168894e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0253294573125}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000354948763219}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 8.77283349049e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 2.0144716457e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.84765062003e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.66486762063e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 4.97229786148e-05}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.000412022501539}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.000718543620283}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6.56022841176e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.93469404124e-07}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.88653937332e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 9.61882024993e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.68447264846e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 5.62829566023e-07}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2.1088893979e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.62031640446e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 6.7208025112e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.38132712796e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.7968995957e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.69150091665e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.000194385620771}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.16157383621e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.09611314831e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.0152329864062}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.00128139027535}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19383597616e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.09730801991e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.80083557369e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.71155271024e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.71155271024e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.88138858507e-07}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air"], "amount": 6.25095208029e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 6.34451934579e-08}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.000731739874733}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.11787094524e-05}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7613003428e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7613003428e-08}, {"name": "Aniline", "categories": ["air"], "amount": 8.90882755347e-07}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.000170539079445}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air"], "amount": 4.18682303082e-05}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86953545861e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86953545861e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.34361691279e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.03510712592e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.03510712592e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.52121015665e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44454892341e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.44454892341e-10}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.4989489681e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.33238712937e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.33238712937e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.45511535777e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.31316452946e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00854581964939}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00854581964939}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0470530684246}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48955172648e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.48955172648e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 8.54881146822e-07}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.88570082977e-08}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0464964872273}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0464964872273}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0454813965364}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.99421471032e-05}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air"], "amount": 5.29140109143e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.26562129052e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.26562129052e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 1.32025907734e-06}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 2.57751434762e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.30688983653e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.30688983653e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.000415741944211}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.34414006803e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.11219290214e-08}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.16134573275e-08}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air"], "amount": 6.58857897185e-09}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35187938303e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.35187938303e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.97140408551e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.42219734604e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.42219734604e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.59205040444e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.77309062067e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.92275311708e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.92275311708e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 3.32774367597e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.60838785054e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.60838785054e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.51943547847e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.40004759027e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.40004759027e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.23141031564e-06}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.22569626152e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.06410741038e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54081991874e-08}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54081991874e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.71067884699e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54474156746e-07}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54474156746e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.57888185742e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.623285776e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.623285776e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.35113159601e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0095678054128}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0095678054128}, {"name": "Lead II", "categories": ["air"], "amount": 0.00944422472116}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.854546007662}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.854546007662}, {"name": "Mercury II", "categories": ["air"], "amount": 0.834928256367}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.55441517645e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 9.18664628469e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.164130614e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.164130614e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 7.7983982514e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.30625470547e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.48239667733e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000150482729407}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000150482729407}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000154827641192}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.79016274377e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air"], "amount": 1.02297007317e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 9.03046009447e-10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.00166204290756}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2463727257e-10}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.2463727257e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.13110215584e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.66434183172e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.66434183172e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.91275649882e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.50202057121e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.50202057121e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 5.17792085661e-06}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air"], "amount": 4.86496047015e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.21894311635e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06922761308e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.06922761308e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.72351325226e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68701797523e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68701797523e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 7.68701797523e-06}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air"], "amount": 0.0258419844461}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.31921019706e-09}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.31921019706e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.02383187383e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98710180673e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98710180673e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.07318040035e-08}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air"], "amount": 0.000705842697333}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.90368350529e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.90368350529e-09}, {"name": "Toluene", "categories": ["air"], "amount": 5.30459430023e-08}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.46109178668e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13672430721e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13672430721e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.10489278952e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air"], "amount": 0.0155955997484}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.000209460358427}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 4.91145219428e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.13942743874e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.129261275146}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.000216809233826}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.000216809233826}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.000216809233826}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.78266910152e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.52011116072e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.52011116072e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.52011116072e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.2183836745e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.20296627222e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.20296627222e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.20296627222e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.74152106553e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.5539367722e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.5539367722e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.5539367722e-07}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 5.19471929638e-08}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.026501699979}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.08399228142e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.08399228142e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 7.08399228142e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.36800480833}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0100383270495}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0100383270495}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0100383270495}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.00466203657151}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.847979846e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.847979846e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.847979846e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 5.94947596608e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.10948569516e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.10948569516e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.10948569516e-06}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0731569556943}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.000894144905522}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.000139542579104}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0435255724767}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.000702024677515}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.000702024677515}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.000702024677515}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 4.88515042326e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.03809873041e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 1.75541140005e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.92492585824e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 2.87951621395e-08}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.58346765721e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.53001986506e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.35988962528e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.53001986506e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.53001986506e-07}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.28420844111e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water"], "amount": 5.8631541117e-09}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.47017083994e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 5.72167555889e-08}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.03716198414e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.27801289078e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.27801289078e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 3.41162912752e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.30897063056e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 3.41162912752e-06}, {"name": "Aniline", "categories": ["water"], "amount": 3.41162912752e-06}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.67996688402e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.000364132820574}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.02764639602e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water"], "amount": 9.81537186241e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.13689078633e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.2949601854e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.13689078633e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.13689078633e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.05950467176e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 8.7254440059e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 8.7254440059e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.72529554699e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.37687836603e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.72529554699e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.72529554699e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.06915324676e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.44322034491e-06}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 5.89844223747e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water"], "amount": 3.75496697452e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.000158404167001}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.000426599473648}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.000426599473648}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.65988234821e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 3.74932606721e-05}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 8.82697382697e-11}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 5.23471599278e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.17492613821e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.79582634706e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.17492613821e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 1.17492613821e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.39526497303e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4127695071e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.39526497303e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.39526497303e-05}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.45814301083e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 3.02674239709e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 3.02674239709e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.21960644052e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 8.62675705655e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 8.62675705655e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 7.28061097394e-10}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.76718976036e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 6.35445705661e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1.29995398394e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.36056641806e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.62156647091e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.69439889775e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.41755946291e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.41755946291e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.43229330577e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.24515316295e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.43229330577e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.43229330577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.27728346576e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 2.40449884566e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.27728346576e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.27728346576e-06}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.28941259972e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.30244295051e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 5.64107814793e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 1.87278672374e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.23588485981e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.36556722181e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.23588485981e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 3.23588485981e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.62981260125e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31002409521e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.62981260125e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.62981260125e-07}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.000119841263952}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.000108876691797}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.000119841263952}, {"name": "Lead II", "categories": ["water"], "amount": 0.000119841263952}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0142143570457}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0113197698416}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0142143570457}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0142143570457}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.00034725197e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.10095817674e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.00034725197e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.00034725197e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000141623363705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 3.90552842229e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000141623363705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000141623363705}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.96282945807e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water"], "amount": 1.053508057e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.93608528087e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 7.66183687348e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 8.31103402386e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.46591142037e-11}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 8.31103402386e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 8.31103402386e-10}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.21304917407e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.15378249348e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 2.15378249348e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.61393398824e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 7.83514666046e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.61393398824e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.61393398824e-06}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 4.29623471206e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water"], "amount": 1.44523002991e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.44847208948e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 6.45176374779e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 6.45176374779e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 1.52128653029e-09}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.93249320112e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.22201194273e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.22201194273e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.12268619473e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.32787148554e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.12268619473e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.12268619473e-06}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.72046594869e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000354948763219}, {"name": "Silver I", "categories": ["water"], "amount": 0.000354948763219}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 6.90556274e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.38219899035e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 6.90556274e-09}, {"name": "Styrene", "categories": ["water"], "amount": 6.90556274e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 7.96825091643e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 2.68046041819e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 7.96825091643e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 7.96825091643e-09}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.000104920212033}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water"], "amount": 0.00178495070951}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.78381889397e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.85164323324e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.78381889397e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.78381889397e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 2.67912205763e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.7463868211e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.20478554624e-05}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.000194385620771}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.000194385620771}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.56517374846e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.0888634707e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.56517374846e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.56517374846e-08}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.000302223973326}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00128139027535}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00128139027535}, {"name": "Allyl chloride", "categories": ["water"], "amount": 8.42901796193e-07}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57581594855e-06}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7455578157e-07}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52002161078e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.52530406654e-06}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0671541812e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01207404659e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31605757416e-06}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43582087857e-07}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08293365611e-06}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 5.61797401589e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.868035843e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69785101375e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.59597206457e-07}, {"name": "Thifensulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44193524069e-06}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69313181097e-06}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.20161199408e-06}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2.81621845711e-06}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.645635268e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63321509311e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000367917900016}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0467214193e-06}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.42609469801e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21547511533e-08}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41714188464e-07}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44718757046e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.15378249348e-06}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37487161263e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.23265390903e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.07691308446e-07}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 1.09819742695e-05}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.89386004154e-05}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.83033329321e-07}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 2.89610354978e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.51539024644e-08}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.31727440537e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.31990011737e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.000235648603669}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.0232481211e-07}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.73394406547e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.1707571262e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 3.92950189167e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 5.25446437435e-08}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.43949601473e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.50243284237e-06}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4662539461e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 4.10288890135e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 4.1166975182e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0170719666931}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0165209340126}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0165209340126}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0167964503528}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0290247939103}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0144550651408}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0144550651408}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0144550651408}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0273316540054}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0273316540054}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00224222481335}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0273316540054}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.13669122593e-07}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.46637376709e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.78483552391e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.49853944258e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.21067636659e-05}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44146894277e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.13685973855e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.74806423055e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.95240352962e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.41623954322e-09}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 7.17622414338e-08}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.48844354497e-06}]}, {"unit": "CTU", "name": ["USEtox no LT", "human toxicity no LT", "total no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.22107612959e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.14240130852e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.97819564124e-09}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.39267954175e-08}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.000350740558118}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.11019655928e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.10822971148e-07}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 9.67186558462e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.7246994101e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00140792037782}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 9.70801684411e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 7.68478964109e-06}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.44134951538e-05}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.000116110051014}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.77946318624e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.000186565323829}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.51497689855e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.21810478453e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 5.68929348804e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.51538282679e-05}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 5.67639632829e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.84486970479e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 6.18998015956e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 7.79165653592e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 5.9426276919e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.71508116158e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.2303682872e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000101082103543}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.46171452185e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 4.49513602648e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0856758077641}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 3.54940227989e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.0970352734e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 6.02634349165e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.19436053997e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.8107789997e-06}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.26863106794e-08}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0447180696438}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.000428189526232}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.74318991352e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.77854722585e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.06629840745e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.50206945082e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 5.31479897581e-05}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.78536345821e-07}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.73695147425e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.01293482444e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.76248340897e-07}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.73578090429e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3.56545393639e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00544656444555}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 3.02674239709e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.32337383641e-05}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 8.62675705655e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02284603255e-08}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.59396713048e-05}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.13649260702e-08}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.59597206457e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.41204306953e-07}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.11889118027e-06}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000163393696906}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.34299434762e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.24739604051e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.49802672226e-07}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 2.79449501214e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.59173271959e-06}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65136409165e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 29.6215965571}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.82620591784e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.07319064027e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.07049768116e-06}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.37199576957e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 7.80373245217e-08}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.61453013478e-05}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.86359176402e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.78051557295e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.90380453425e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 6.24824805492e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.82092639599e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.86589948834e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.92272837839e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.77720899698e-05}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.63627203333e-09}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.77720138692e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.05184910763e-06}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.06043356488e-08}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.82695687532e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.000123511601348}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.62866364624e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.35632670187e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.21916990727e-06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 8.17425733863e-09}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.48195495738e-08}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 5.57509434147e-08}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 1.41185834791e-05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 5.32342287452e-07}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.86069960003e-06}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.56884133246e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.98007087108e-05}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 7.62662627432e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.45786580433e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.75913270933e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.34836336155e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.05538842042e-09}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00934721386542}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 8.26233822306e-05}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.04128130499e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.40471159845e-07}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 8.86419791161e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 4.67837616053e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.42061298909e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.62912175897e-12}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.822201700435}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.67513653743e-07}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000113866883591}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 9.57257078322e-09}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.93265617274e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.13242392627e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.31653582337e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 6.55510120949e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000207153211838}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.80784050713e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.63329092691e-08}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 6.13617407825e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.26769482886e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 5.92881404423e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.40264733665e-07}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.37815045333e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.00163326250869}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.57937156772e-08}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 6.27434656912e-05}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.40370961401e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 6.44497918122e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.93366729362e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 9.45133829235e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 4.76106468608e-08}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.9919583523e-06}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.86496368948e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 3.56886206147e-06}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.53240096284e-09}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.92710058813e-06}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.06696854044e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.03420858705e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.53819687493e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.4093578095e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.72098283662e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.36791710169e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.29593634107e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 7.48223845186e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.09006274799e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.30965089959e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 4.84697205131e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 9.89413748742e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 3.25424364266e-05}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.69739397578e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.3136597817e-06}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.43006424918e-06}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.73332741409e-07}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.26716560536e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 8.097748816e-06}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 7.17326236367e-09}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.01815948721e-05}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 4.36575168894e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0253294573125}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000354948763219}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 8.77283349049e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.20866246998e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.28743287635e-07}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.66486762063e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 4.97229786148e-05}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.000412022501539}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.000718543620283}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6.56022841176e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.93469404124e-07}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.88653937332e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 9.61913751697e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.68447264846e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 5.62829566023e-07}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2.1088893979e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.62031640446e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 6.7208025112e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.38132712796e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.97945084474e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.69150091665e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.000194385620771}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.16157383621e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.18621421203e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.0152329864062}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.00128139027535}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19383597616e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.09730801991e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.80083557369e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62953342758e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62953342758e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 5.83245946775e-07}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air"], "amount": 6.25095208029e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 6.34451934579e-08}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.000731739874733}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.11787094524e-05}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8374485399e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8374485399e-08}, {"name": "Aniline", "categories": ["air"], "amount": 9.08918835815e-07}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.000170539079445}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air"], "amount": 4.18682303082e-05}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08113876614e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08113876614e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 4.14988520627e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.50212719306e-07}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.50212719306e-07}, {"name": "Benzene", "categories": ["air"], "amount": 3.72237744249e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64763414874e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64763414874e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.39756585103e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.14572934446e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.14572934446e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.6269698494e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.31316452946e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.48798887749e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00855733995963}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00855733995963}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0471165738618}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1531946677e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1531946677e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.42615547319e-06}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.88570082977e-08}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0466783734787}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0466783734787}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0456982215613}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.99421471032e-05}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air"], "amount": 5.29140109143e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0887673179e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0887673179e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 1.55085107117e-06}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 2.57751434762e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00428959254482}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00428959254482}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00486807849518}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.34414006803e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.11219290214e-08}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.16134573275e-08}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air"], "amount": 6.58857897185e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 29.0579794183}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.85049517969e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.85049517969e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.04978982637e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65349661173e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65349661173e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.71700609233e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.77309062067e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53845617094e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53845617094e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.39335211293e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.55644290875e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.14623193216e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.33591164361e-08}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.13732373977e-09}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.23932037763e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.23932037763e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3.70056671234e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06282279605e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06282279605e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.55733595183e-06}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.35831711151e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.35831711151e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.22569626152e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.06410741038e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 8.30466291186e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.46109802764e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.46109802764e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.35747556761e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5396201355e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5396201355e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.56701644231e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6425644219e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6425644219e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.36106112326e-07}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8147140338e-08}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00959507981776}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00959507981776}, {"name": "Lead II", "categories": ["air"], "amount": 0.00947114684159}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.861765403753}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.861765403753}, {"name": "Mercury II", "categories": ["air"], "amount": 0.841983552094}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.55441517645e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 9.18664628469e-09}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.4268974382e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.60568633436e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.60568633436e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.46496279853e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.30625470547e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.48239667733e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000195841870189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000195841870189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000201497541013}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.79016274377e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air"], "amount": 1.02297007317e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 9.03046009447e-10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.00166204290756}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74676584092e-08}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74676584092e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.16306870432e-08}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.00109521318e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.00109521318e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 5.4673812534e-05}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0109474618e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0109474618e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 6.23114287707e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 6.02505019232e-06}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air"], "amount": 4.86496047015e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.21894311635e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17703893815e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.17703893815e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.27247801992e-05}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.097748816e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.097748816e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 8.097748816e-06}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air"], "amount": 0.0258419844461}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.99067250485e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.99067250485e-08}, {"name": "Styrene", "categories": ["air"], "amount": 6.14284597513e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0687735866e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.0687735866e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 7.47155117508e-08}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air"], "amount": 0.000705842697333}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.90686469609e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.90686469609e-09}, {"name": "Toluene", "categories": ["air"], "amount": 5.30491199329e-08}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.46109178668e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18592768778e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18592768778e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.15240349041e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air"], "amount": 0.0155955997484}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.000209460358427}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 4.91145219428e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.13942743874e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.129743067172}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00021761734097}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00021761734097}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.00021761734097}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.78266910152e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.52011116072e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.52011116072e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.52011116072e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.00542499689492}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.00535634909434}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.00535634909434}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.00535634909434}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.74152106553e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.5539367722e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.5539367722e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.5539367722e-07}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 5.19471929638e-08}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0265772468851}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.10418621993e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.10418621993e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 7.10418621993e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.38800924455}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0101231288508}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0101231288508}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0101231288508}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.00466203657151}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.847979846e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.847979846e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.847979846e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.000111674468421}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.08255695012e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.08255695012e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.08255695012e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0731569556943}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.000894144905522}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.000139542579104}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0435255724767}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.000702024677515}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.000702024677515}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.000702024677515}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 4.88515042326e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.03809873041e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 1.75541140005e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.92492585824e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 2.87951621395e-08}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.58346765721e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 5.41263142457e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 4.01451753206e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 5.41263142457e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 5.41263142457e-07}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.28420844111e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water"], "amount": 5.8631541117e-09}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.47017083994e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 5.72167555889e-08}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.44903310203e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 7.68478964109e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 7.68478964109e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 3.48069816843e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.33547097472e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 3.48069816843e-06}, {"name": "Aniline", "categories": ["water"], "amount": 3.48069816843e-06}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.67996688402e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.000364132820574}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.02764639602e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water"], "amount": 9.81537186241e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 3.03725376026e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3.11548504927e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 3.03725376026e-07}, {"name": "Benzene", "categories": ["water"], "amount": 3.03725376026e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 9.94500812062e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.71508116158e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.71508116158e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 8.4570471764e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 6.51571853037e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 8.4570471764e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 8.4570471764e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.06915324676e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.44322034491e-06}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 5.89844223747e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water"], "amount": 3.75496697452e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.000158994582533}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.000428189526232}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.000428189526232}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.65988234821e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 3.74932606721e-05}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 8.82697382697e-11}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 5.23471599278e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.56527397682e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.14089013186e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.56527397682e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 1.56527397682e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.0106651995698}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.000629052272255}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0106651995698}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0106651995698}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.45814301083e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 3.02674239709e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 3.02674239709e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.21960644052e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 8.62675705655e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 8.62675705655e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 7.28061097394e-10}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.76718976036e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 6.35445705661e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1.29995398394e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.36056641806e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 5.29594169392e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.63365874629e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.83234605595e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.77720899698e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.77720899698e-05}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 4.64255029641e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 2.54268249009e-09}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 8.00639562845e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 9.47138014411e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 8.00639562845e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 8.00639562845e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.82581890313e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.17576279842e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.82581890313e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.82581890313e-06}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.28941259972e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.30244295051e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 5.64107814793e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 1.87278672374e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.84742034232e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.71589882596e-06}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4.47676949907e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.45023987624e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4.47676949907e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4.47676949907e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.64913921309e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31965152158e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.64913921309e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.64913921309e-07}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.53954919999e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.75913270933e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.75913270933e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.000120182888705}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.000109187060461}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.000120182888705}, {"name": "Lead II", "categories": ["water"], "amount": 0.000120182888705}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0143344371224}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0114153970181}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0143344371224}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0143344371224}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.68266454469e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.19751822369e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.68266454469e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.68266454469e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.0001832486895}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 5.0814031093e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.0001832486895}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.0001832486895}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.96282945807e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water"], "amount": 1.053508057e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.93608528087e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 7.66183687348e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.32413769929e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.80815870193e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.32413769929e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 2.32413769929e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.15399762118e-06}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 4.04275126793e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 4.04275126793e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6.75584385159e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 9.42886530253e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6.75584385159e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6.75584385159e-06}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 4.29623471206e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water"], "amount": 1.44523002991e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 4.13683500911e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.09006274799e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.09006274799e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 1.52128653029e-09}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.2862365188e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.30965089959e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.30965089959e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.53855966671e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.40483823077e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.53855966671e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.53855966671e-06}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.72046594869e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000354948763219}, {"name": "Silver I", "categories": ["water"], "amount": 0.000354948763219}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.98884933804e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.82188665375e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.98884933804e-08}, {"name": "Styrene", "categories": ["water"], "amount": 1.98884933804e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 2.63356154543e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.82272125533e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 2.63356154543e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.63356154543e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.000104920212033}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water"], "amount": 0.00178495070951}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.11261551343e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.00630308791e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.11261551343e-08}, {"name": "Toluene", "categories": ["water"], "amount": 2.11261551343e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 2.67912205763e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.7463868211e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.20478554624e-05}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.000194385620771}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.000194385620771}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9529908522e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.16802521623e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9529908522e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.9529908522e-08}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.000302223973326}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00128139027535}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00128139027535}, {"name": "Allyl chloride", "categories": ["water"], "amount": 8.42901796193e-07}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57581594855e-06}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7455578157e-07}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52002161078e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.52530406654e-06}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0671541812e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01207404659e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96832520896e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31605757416e-06}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43582087857e-07}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08293365611e-06}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 5.61797401589e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.868035843e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87033968479e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 2.39234482596e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.59597206457e-07}, {"name": "Thifensulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44193524069e-06}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69313181097e-06}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82272491782e-06}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2.81621845711e-06}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.645635268e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63321509311e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000368049945771}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33260035377e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6500890021e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.94965317786e-06}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.42609469801e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21547511533e-08}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41714188464e-07}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44718757046e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 4.04275126793e-05}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37487161263e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.42060245278e-10}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.07691308446e-07}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 1.09819742695e-05}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.89386004154e-05}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.83033329321e-07}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 2.89610354978e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.51539024644e-08}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.31727440537e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 6.85411239722e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.000235648603669}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.0232481211e-07}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.73394406547e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.1707571262e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 3.92950189167e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 5.25446437435e-08}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.43949601473e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.50243284237e-06}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4662539461e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 4.10288890135e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 4.1166975182e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0174959536828}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0167632699987}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0167632699987}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0171296118407}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0294166286281}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0146502085202}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0146502085202}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0146502085202}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 9.05452478804e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 9.26804763876e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0277006313345}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0277006313345}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00227249484833}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0277006313345}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.13669122593e-07}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.46637376709e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.78483552391e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.49853944258e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.21067636659e-05}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44146894277e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.13685973855e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.74806423055e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.95240352962e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.41623954322e-09}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 7.17622414338e-08}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.48844354497e-06}]}, {"unit": "CTU", "name": ["USEtox", "ecotoxicity", "total"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 0.877584851265}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.213832412002}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 181.907571259}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.201500544561}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0805092493331}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.254007818656}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.31522045892}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0205719242927}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3.46313641731}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 252.348005989}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.288405388775}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.789914178246}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 10.5159542713}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 7610.91467447}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0792660811821}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.742928699357}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 26.5305279317}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 8495.54699384}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 104.645185471}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 14.5416351349}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 44.5937564368}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9281.12656076}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 11852.494877}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 589.394816651}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 5287.31629169}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.00776756842}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 30.6435409146}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 489.022277493}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 49.3383618825}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 11406.4264869}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 44920.2741276}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 819.750900734}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 607.217272443}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 21.1234848095}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 358.561985444}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 30.7583894484}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 49.5282745557}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.14249909351}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0641848556386}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 6.54175482903}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0296007905203}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 626.63362356}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 342.062610885}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 170.495991795}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 39.297979558}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1612.809976}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 740.722625064}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5733.52633005}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 73.9902502964}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 869.047924983}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 946.62717898}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 4.53042851425}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.110314050257}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.88748682607}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 30.3162206475}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3921.68984432}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 4936.04575274}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 10008.3409621}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 3071.9425648}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 54554.0844418}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 243.104159208}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 21581.8131664}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.30747861538}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 14691.3324384}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1108.35815916}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 45.5357521343}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 758.794303428}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.282103029633}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 86.4129463713}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 57823.876679}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1727.75274855}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 4.7264644488}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 517.146416179}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 41802.2176206}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 650.179138161}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 8.47812563194}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 585.837625922}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 479.723275207}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 269.880036164}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 8.87270330818}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1705.9443794}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 23090.1167695}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 29164.371915}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0907274546453}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 21165.2404087}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.00059565169664}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.1391426236}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 1274.34980467}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.4310591}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 115.463053311}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 280.319262067}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1409.81393453}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1092.53765425}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 476.076207125}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 295.591348607}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 285.091856931}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 9193.9391567}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1534.67733935}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00181061929395}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.114424315594}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1921.72654057}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 169738.0331}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 5.52247787207}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.50951518917}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 1747.27546202}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 20486.628349}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 953.831166407}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3621.59679147}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 14.0313466756}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 24.1739950255}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.244852480819}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 2567.0192411}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 142941.008639}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.407043416927}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 7450.35790744}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 365.7065026}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4019.34035685}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 2172.99361442}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 49.8209340257}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4538.02049618}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 23.9646018947}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 19.0775888949}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 97.0735092246}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 112006.429837}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1.19531644732}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.204997960687}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.57614589605}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.151713303833}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.364871214146}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 135.341583662}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.154420248453}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.725143832352}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0250784955846}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 560.065284455}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 202.580565585}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 17345.464233}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.113169917113}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.231449919653}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.83113132471}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.00783067455}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 30.6061907842}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 384.082670076}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 5875.23276591}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 813.481531495}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 32315.1068764}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 164.642808893}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 264.337890885}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 2660.18257168}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 6137.04937553}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 10219.6455873}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 10054.7533582}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8386.99402138}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1116.7046056}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 21.613539292}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 27.6249870781}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.69232633066}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.20440887968}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00278041910208}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 761.209962198}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 103.944077256}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 62492.7187904}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.68978977302e-05}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000212391668064}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 5495.69785952}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 1035.78217844}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 210.720423099}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1044.85948334}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.49246368075e-05}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.183766566205}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 9461.35207502}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 161.242132537}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 90.0956219738}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 133638.403915}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 173.663608682}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 20981.6418249}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 11123.3031216}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2289.7811287}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 194.241971734}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 266.853115161}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 255.253645922}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 124.972879067}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0347588374378}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 12065.867642}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 225.091346897}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 507.88346243}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 23.1638739103}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5393.37077103}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 220.374273005}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 458.778784193}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 11.6499437265}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0970154355392}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.0631913378953}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.06674912637}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.2256583397}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 14094.5350148}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.576607505372}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.62762952007}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.057728292117}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.529308945736}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.24108364603}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1915.77089829}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6441.70287307}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 745.421708679}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 117.347037233}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1267.94509891}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 4.14229731998}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 2202.55505481}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 17.3618871758}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0204857914181}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 5483.03314242}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 126.204653291}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 6082.16061629}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 215.530846629}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 10.9506349943}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 831.618239881}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 27.4490071731}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 129.472853108}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 21.8555056751}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5616.26291085}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1425.3454298}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 89.9804499302}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0321422533231}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 156.230936334}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 83124.2865481}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2932.02578593}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.0140546231978}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 781.103671913}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 248.743561249}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 23.64350251}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1194.23692098}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4549.47374021}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6039.63943014}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 477399.900897}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 9.10152776605}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 21.8797176827}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 20.9110658397}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.0413948763067}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1116.90069491}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 349.550094036}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 19162.5565369}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 24118.1778032}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 498.135556269}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 6.27104198098}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.375666926493}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 60375.4789921}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0932925356856}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 15.0525551269}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 310.259588849}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 285.069157112}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 10.7466745139}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0953060393702}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.30429241591}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 196.100163711}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3507.53000309}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 11.6430968574}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.08961639208}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 35.5024975135}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 153.002197788}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 145.514101305}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 19.5129109469}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 937.412433146}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3701.9722186}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 2964.10862814}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 47.1862687661}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 80059.4895541}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 100987.433379}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 12634.6399818}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.534489261}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.019891430555}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 5256.02237607}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 1581.689868}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 79.0291838857}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 449.863767219}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0272867515794}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1.18106678075}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 4553.22796733}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 449.513177271}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3383.33375278}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 41283.7582111}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 4664.85311259}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 53712.0311845}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 53644.7897429}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 14085.2938275}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 862.918167377}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 41325.5719851}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1025.56311421}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 15803.2042289}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1347.13020059}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1714.41984509}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0131267190366}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4220.83504003}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 319.761373813}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 6056.63650588}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 175.173865712}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 38.4438237643}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 52549.7251044}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1315.30446537}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.0918471656337}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 592.510750365}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 14604.3343293}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.021957876845}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 163.50212264}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 3.04863294124}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 46228.7322996}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 58269.3699574}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1059.06456811}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0112737888674}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 16684.3640155}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 21139.0169079}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.835334946199}, {"name": "1,4-Butanediol", "categories": ["air", "low population density, long-term"], "amount": 0.835334946199}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.835334946199}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 0.856459898732}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.210596171482}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.210596171482}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.210596171482}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.212214291742}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.198783735445}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.198783735445}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.198783735445}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.200142140003}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0794096203566}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0794096203566}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0794096203566}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0799594348449}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.251546230591}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.251546230591}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.251546230591}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.252777024624}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0209785856491}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.0209785856491}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0209785856491}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0207752549709}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.59610285522}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 2.59610285522}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.59610285522}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3.02961963627}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.296430617956}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.296430617956}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.296430617956}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.292418003365}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.2491571695}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 10.2491571695}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.2491571695}, {"name": "Acetic acid", "categories": ["air"], "amount": 10.3825557204}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0790346968653}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.0790346968653}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0790346968653}, {"name": "Acetone", "categories": ["air"], "amount": 0.0791503890237}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.740570515773}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.740570515773}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.740570515773}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.741749607565}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 108.575306681}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 108.575306681}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 108.575306681}, {"name": "Acrolein", "categories": ["air"], "amount": 106.610246076}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2566863107}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 13.2566863107}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2566863107}, {"name": "Acrylic acid", "categories": ["air"], "amount": 13.8991607228}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58181265975}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 1.58181265975}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58181265975}, {"name": "Aniline", "categories": ["air"], "amount": 2.29479011409}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 493.04979056}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 493.04979056}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 493.04979056}, {"name": "Antimony ion", "categories": ["air"], "amount": 491.036034026}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 612.06483331}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 612.06483331}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 612.06483331}, {"name": "Barium II", "categories": ["air"], "amount": 609.641052877}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15021596859}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.15021596859}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.15021596859}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 3.14635753105}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0638123434892}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.0638123434892}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0638123434892}, {"name": "Benzene", "categories": ["air"], "amount": 0.0639985995639}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0271505150441}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.0271505150441}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0271505150441}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0283756527822}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 621.912773802}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 621.912773802}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 621.912773802}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 624.273198681}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 341.02911476}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 341.02911476}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 341.02911476}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 341.545862823}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.5330803026}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 43.5330803026}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 43.5330803026}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 107.014536049}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1631.16519404}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 1631.16519404}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1631.16519404}, {"name": "Beryllium II", "categories": ["air"], "amount": 1621.98758502}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107942211711}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.107942211711}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107942211711}, {"name": "Butanol", "categories": ["air"], "amount": 0.109128130984}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.5175522617}, {"name": "Butyrolactone", "categories": ["air", "low population density, long-term"], "amount": 29.5175522617}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.5175522617}, {"name": "Butyrolactone", "categories": ["air"], "amount": 29.9168864546}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3955.35973783}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 3955.35973783}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3955.35973783}, {"name": "Cadmium II", "categories": ["air"], "amount": 3938.52479107}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.30654406122}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.30654406122}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.30654406122}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.3070113383}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14212.4900179}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 14212.4900179}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14212.4900179}, {"name": "Chloramine", "categories": ["air"], "amount": 14451.9112281}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 749.484412124}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 749.484412124}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 749.484412124}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 754.139357776}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.281794448257}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.281794448257}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.281794448257}, {"name": "Chloroform", "categories": ["air"], "amount": 0.281948738945}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.3875199741}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 84.3875199741}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84.3875199741}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 85.4002331727}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 521.359242738}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 521.359242738}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 521.359242738}, {"name": "Chromium III", "categories": ["air"], "amount": 519.252829459}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 42142.7644597}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 42142.7644597}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42142.7644597}, {"name": "Chromium VI", "categories": ["air"], "amount": 41972.4910401}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1722.64845736}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 1722.64845736}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1722.64845736}, {"name": "Cobalt II", "categories": ["air"], "amount": 1714.29641838}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 23320.1199541}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 23320.1199541}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23320.1199541}, {"name": "Copper ion", "categories": ["air"], "amount": 23205.1183618}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0740771512599}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.0740771512599}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0740771512599}, {"name": "Cumene", "categories": ["air"], "amount": 0.0824023029526}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000405353473058}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.000405353473058}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000405353473058}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.000500502584849}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00182893035243}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00182893035243}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00182893035243}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00181977482319}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.116780482618}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.116780482618}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.116780482618}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.115602399106}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.5884389935}, {"name": "Dimethyl malonate", "categories": ["air", "low population density, long-term"], "amount": 23.5884389935}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.5884389935}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 23.8812170095}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.25099048109}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.25099048109}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.25099048109}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.247921480955}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 106410.828059}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 106410.828059}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 106410.828059}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 124675.918349}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.412215588906}, {"name": "Dipropylamine", "categories": ["air", "low population density, long-term"], "amount": 0.412215588906}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.412215588906}, {"name": "Dipropylamine", "categories": ["air"], "amount": 0.409629502916}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.0073923683}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 19.0073923683}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.0073923683}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 19.0424906316}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19531644732}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1.19531644732}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19531644732}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.19531644732}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.204908392992}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.204908392992}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.204908392992}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.20495317684}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.575224191555}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.575224191555}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.575224191555}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.575685043803}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.151546557655}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.151546557655}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.151546557655}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.151629930744}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.364404011361}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.364404011361}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.364404011361}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.364637612753}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.151221906768}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.151221906768}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.151221906768}, {"name": "Ethanol", "categories": ["air"], "amount": 0.152821077611}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.721533745751}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.721533745751}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.721533745751}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.723338789052}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0246194040751}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0246194040751}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0246194040751}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.113268388553}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.113268388553}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.113268388553}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.113219152833}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.228364488859}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.228364488859}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.228364488859}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.229907204256}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64711600974}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.64711600974}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64711600974}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.73912366723}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.00621475928}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.00621475928}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.00621475928}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.00702271691}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.9823636252}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 25.9823636252}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.9823636252}, {"name": "Formaldehyde", "categories": ["air"], "amount": 26.8036753517}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67005629758}, {"name": "Formamide", "categories": ["air", "low population density, long-term"], "amount": 1.67005629758}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67005629758}, {"name": "Formamide", "categories": ["air"], "amount": 1.68119131412}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.96030446924}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 8.96030446924}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.96030446924}, {"name": "Formic acid", "categories": ["air"], "amount": 9.08235667446}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00233100240177}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 0.00233100240177}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00233100240177}, {"name": "Furan", "categories": ["air"], "amount": 0.00255571075192}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37442513185e-06}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 3.37442513185e-06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37442513185e-06}, {"name": "Heptane", "categories": ["air"], "amount": 1.0136161431e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.76400672692e-05}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 5.76400672692e-05}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.76400672692e-05}, {"name": "Hexane", "categories": ["air"], "amount": 0.000135015867667}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.88928850923e-05}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 2.88928850923e-05}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.88928850923e-05}, {"name": "Isoprene", "categories": ["air"], "amount": 5.69087609499e-05}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.191379678204}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 0.191379678204}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.191379678204}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.187573122205}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 176.062889039}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 176.062889039}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 176.062889039}, {"name": "Lead II", "categories": ["air"], "amount": 174.86324886}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 12297.3346688}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 12297.3346688}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12297.3346688}, {"name": "Mercury II", "categories": ["air"], "amount": 12181.6011554}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.6381118935}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 11.6381118935}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.6381118935}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 11.64402781}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0969143119131}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.0969143119131}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0969143119131}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0969648737262}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0631311766242}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.0631311766242}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0631311766242}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.0631612572598}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0665506403}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.0665506403}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0665506403}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.06664988334}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22225788207}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.22225788207}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22225788207}, {"name": "Methanol", "categories": ["air"], "amount": 0.223958110885}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57583947294}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.57583947294}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57583947294}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.576223489156}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.66685846076}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 2.66685846076}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.66685846076}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.64724399041}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0576835058781}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.0576835058781}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0576835058781}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0577058989975}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.528720817166}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.528720817166}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.528720817166}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.529014881451}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14951480127}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 2.14951480127}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14951480127}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.19529922365}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 118.302979947}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 118.302979947}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 118.302979947}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 117.82500859}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.85521540325}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 3.85521540325}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.85521540325}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.99875636162}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164468033888}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0164468033888}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0164468033888}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.0184662974034}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6137.38470478}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 6137.38470478}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6137.38470478}, {"name": "Nickel II", "categories": ["air"], "amount": 6109.77266053}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.8739854374}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 10.8739854374}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.8739854374}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 10.9123102159}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.040385767}, {"name": "o-Nitrotoluene", "categories": ["air", "low population density, long-term"], "amount": 27.040385767}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.040385767}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 27.2446964701}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0285629132937}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0285629132937}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0285629132937}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.0303525833084}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00598165461721}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.00598165461721}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00598165461721}, {"name": "Pentane", "categories": ["air"], "amount": 0.0100181389075}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5610007283}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 15.5610007283}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.5610007283}, {"name": "Phenol", "categories": ["air"], "amount": 19.6022516191}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1135.06293036}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1135.06293036}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1135.06293036}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1164.64992567}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3414.13714823}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3414.13714823}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3414.13714823}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3981.80544422}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.388389161408}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.388389161408}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.388389161408}, {"name": "Propanal", "categories": ["air"], "amount": 0.38202804395}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0917394115155}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0917394115155}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0917394115155}, {"name": "Propanol", "categories": ["air"], "amount": 0.0925159736005}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.3227695392}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 10.3227695392}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.3227695392}, {"name": "Propionic acid", "categories": ["air"], "amount": 10.5347220266}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0936882576845}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0936882576845}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0936882576845}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0944971485273}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.30429241591}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.30429241591}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.30429241591}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.30429241591}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 2989.82139002}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 2989.82139002}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2989.82139002}, {"name": "Selenium IV", "categories": ["air"], "amount": 2976.96500908}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 80815.4597124}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 80815.4597124}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80815.4597124}, {"name": "Silver I", "categories": ["air"], "amount": 80437.4746333}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.534489261}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 0.534489261}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.534489261}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.534489261}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0111386365058}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0111386365058}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0111386365058}, {"name": "Styrene", "categories": ["air"], "amount": 0.0155150335304}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 77.9916598746}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 77.9916598746}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 77.9916598746}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 78.5104218802}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0273369643254}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0273369643254}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0273369643254}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.0273118579524}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18753802654}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 1.18753802654}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18753802654}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1.18430240365}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 14197.9185038}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 14197.9185038}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14197.9185038}, {"name": "Thallium I", "categories": ["air"], "amount": 14141.6061657}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1364.56823187}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 1364.56823187}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1364.56823187}, {"name": "Tin ion", "categories": ["air"], "amount": 1355.84921623}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0124211271458}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.0124211271458}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0124211271458}, {"name": "Toluene", "categories": ["air"], "amount": 0.0127739230912}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0241287861807}, {"name": "Trimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0241287861807}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0241287861807}, {"name": "Trimethylamine", "categories": ["air"], "amount": 0.0230433315129}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 46651.9104447}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 46651.9104447}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46651.9104447}, {"name": "Vanadium V", "categories": ["air"], "amount": 46440.3213721}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0100183472103}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0100183472103}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0100183472103}, {"name": "Xylene", "categories": ["air"], "amount": 0.0106460680389}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16872.4717639}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 16872.4717639}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16872.4717639}, {"name": "Zinc II", "categories": ["air"], "amount": 16778.4178897}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["soil"], "amount": 614.959345387}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["soil"], "amount": 763.100537904}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2044.44096164}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 4936.04575274}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4936.04575274}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4936.04575274}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4936.04575274}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 650.179138161}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 650.179138161}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 650.179138161}, {"name": "Chromium III", "categories": ["soil"], "amount": 650.179138161}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["soil"], "amount": 52555.1604784}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2153.79076908}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 29164.371915}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 29164.371915}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 29164.371915}, {"name": "Copper ion", "categories": ["soil"], "amount": 29164.371915}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 103.944077256}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["soil"], "amount": 221.497791887}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["soil"], "amount": 15597.0651453}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 147.533859595}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 7664.97812916}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 7664.97812916}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 7664.97812916}, {"name": "Nickel II", "categories": ["soil"], "amount": 7664.97812916}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["soil"], "amount": 3731.25861636}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 100987.433379}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 100987.433379}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 100987.433379}, {"name": "Silver I", "categories": ["soil"], "amount": 100987.433379}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 92.4913549105}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["soil"], "amount": 17701.2387824}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1714.41984509}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1714.41984509}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1714.41984509}, {"name": "Tin ion", "categories": ["soil"], "amount": 1714.41984509}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 58269.3699574}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 58269.3699574}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 58269.3699574}, {"name": "Vanadium V", "categories": ["soil"], "amount": 58269.3699574}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 21139.0169079}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 21139.0169079}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 21139.0169079}, {"name": "Zinc II", "categories": ["soil"], "amount": 21139.0169079}, {"name": "1,4-Butanediol", "categories": ["water", "ground-"], "amount": 1.88048378921}, {"name": "1,4-Butanediol", "categories": ["water", "ground-, long-term"], "amount": 1.88048378921}, {"name": "1,4-Butanediol", "categories": ["water", "ocean"], "amount": 1.24888237456e-06}, {"name": "1,4-Butanediol", "categories": ["water", "surface water"], "amount": 7.30933198218}, {"name": "1,4-Butanediol", "categories": ["water"], "amount": 7.30933198218}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 2.39767700727}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.39767700727}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.00252054920435}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 15.5680380784}, {"name": "1-Pentanol", "categories": ["water"], "amount": 15.5680380784}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.83532693565}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 1.83532693565}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00335253332003}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.53883712597}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.53883712597}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.563358392411}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.563358392411}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.00122097072413}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.46341652464}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.46341652464}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 4.12620317214}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-, long-term"], "amount": 4.12620317214}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.00539448887153}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 21.4154999078}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 21.4154999078}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.31522045892}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.00474277583209}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 14.5722688399}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 14.5722688399}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.702598655348}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.702598655348}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.00143091470463}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 6.02567201913}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 6.02567201913}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 18.281896538}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 18.281896538}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.365080472264}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 4115.81224674}, {"name": "Acenaphthene", "categories": ["water"], "amount": 4115.81224674}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.4090746304}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 8.4090746304}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0197047366836}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 47.1724719364}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 47.1724719364}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 12.6438444691}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 12.6438444691}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00134658392511}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 49.8391256658}, {"name": "Acetic acid", "categories": ["water"], "amount": 49.8391256658}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.2571833334}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.2571833334}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00354663492385}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.21330906629}, {"name": "Acetone", "categories": ["water"], "amount": 1.21330906629}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 1.95659022868}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 1.95659022868}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0363870763409}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.85687366902}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.85687366902}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 26.5305279317}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.428156522692}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 133.532588712}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 133.532588712}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 44.5937564368}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.329136796886}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 354.907392769}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 354.907392769}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 66.7690720679}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 66.7690720679}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.00592084616789}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 630.6490501}, {"name": "Aniline", "categories": ["water"], "amount": 630.6490501}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 9.07429387723e-18}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1221.51839968}, {"name": "Antimony ion", "categories": ["water"], "amount": 1221.51839968}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.44533885721e-17}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1526.10691053}, {"name": "Barium II", "categories": ["water"], "amount": 1526.10691053}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.04858705518}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 2.04858705518}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0130046485146}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 65.983059347}, {"name": "Benzene", "categories": ["water"], "amount": 65.983059347}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 6.54175482903}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.075129666383}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 393.262078174}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 393.262078174}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1.70380121609}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 1.70380121609}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.00246484482978}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 174.894328739}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 174.894328739}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 39.297979558}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.00403492671258}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 200.43759694}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 200.43759694}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.69894016278e-17}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3719.35347873}, {"name": "Beryllium II", "categories": ["water"], "amount": 3719.35347873}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.94260861398}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.94260861398}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.000990721472819}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.51556379499}, {"name": "Butanol", "categories": ["water"], "amount": 5.51556379499}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.88748682607}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.00630729817118}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 28.3737992555}, {"name": "Butyl acetate", "categories": ["water"], "amount": 28.3737992555}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 40.4477825543}, {"name": "Butyrolactone", "categories": ["water", "ground-, long-term"], "amount": 40.4477825543}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.00307454028955}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 154.646449236}, {"name": "Butyrolactone", "categories": ["water"], "amount": 154.646449236}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 4936.04575274}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.26970102448e-17}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9712.29169009}, {"name": "Cadmium II", "categories": ["water"], "amount": 9712.29169009}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 4.82294471251}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 4.82294471251}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.230171311538}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 153.423085687}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 153.423085687}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 15577.3710813}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 15577.3710813}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.63968414852e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 71953.1321372}, {"name": "Chloramine", "categories": ["water"], "amount": 71953.1321372}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 929.270625492}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 929.270625492}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 0.0133105855615}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 2928.07024673}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 2928.07024673}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.08589206049}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 2.08589206049}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.0534688731889}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 41.1788799623}, {"name": "Chloroform", "categories": ["water"], "amount": 41.1788799623}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 151.296640867}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 151.296640867}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.163343449842}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 553.804523877}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 553.804523877}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.32106975587e-16}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 104644.276363}, {"name": "Chromium VI", "categories": ["water"], "amount": 104644.276363}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 650.179138161}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.69990359972e-18}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1294.59266797}, {"name": "Chromium III", "categories": ["water"], "amount": 1294.59266797}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 9.294818138e-18}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4099.42299394}, {"name": "Cobalt II", "categories": ["water"], "amount": 4099.42299394}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 29164.371915}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.03201448924e-16}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 55247.572332}, {"name": "Copper ion", "categories": ["water"], "amount": 55247.572332}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2.4742100852}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 2.4742100852}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00654705716437}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 665.070188075}, {"name": "Cumene", "categories": ["water"], "amount": 665.070188075}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.125391464036}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.125391464036}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.90157543781e-05}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 48.6887426224}, {"name": "Cyclohexane", "categories": ["water"], "amount": 48.6887426224}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 7.13335497877}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 7.13335497877}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00405279791329}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 65.4673526162}, {"name": "Diethylamine", "categories": ["water"], "amount": 65.4673526162}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 2.50951518917}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.00492028322356}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 44.0393806465}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 44.0393806465}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 14.2844619225}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 14.2844619225}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00784287237722}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 86.1910342993}, {"name": "Dimethylamine", "categories": ["water"], "amount": 86.1910342993}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 19.1969003429}, {"name": "Dipropylamine", "categories": ["water", "ground-, long-term"], "amount": 19.1969003429}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.0193638036234}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 375.153401114}, {"name": "Dipropylamine", "categories": ["water"], "amount": 375.153401114}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.645470406153}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.645470406153}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.0544918255704}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 21.6929221094}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 21.6929221094}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.18602552885}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.18602552885}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0288539804571}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 15.118230043}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 15.118230043}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 135.341583662}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 19.4898450525}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 1911.47985113}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1911.47985113}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.603906199083}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.603906199083}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.000982908829623}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.11364403216}, {"name": "Ethanol", "categories": ["water"], "amount": 3.11364403216}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.73241367889}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 8.73241367889}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.182067694772}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 607.053269966}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 607.053269966}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.871238127174}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.871238127174}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00792142074535}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 5.86649047108}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 5.86649047108}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 4.74695548969}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 4.74695548969}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.00542378418328}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 31.3245702049}, {"name": "Ethylamine", "categories": ["water"], "amount": 31.3245702049}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 9.19599755927}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 9.19599755927}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00149450283134}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 33.8825908879}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 33.8825908879}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 3.76959585656}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 3.76959585656}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.0858467086862}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 23.5345841881}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 23.5345841881}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 83.9611714942}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 83.9611714942}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.0244435939629}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 297.421123119}, {"name": "Formaldehyde", "categories": ["water"], "amount": 297.421123119}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.27635583284}, {"name": "Formamide", "categories": ["water", "ground-, long-term"], "amount": 2.27635583284}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 5.70502569648e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 7.03496309107}, {"name": "Formamide", "categories": ["water"], "amount": 7.03496309107}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 11.1765675378}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 11.1765675378}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00214519858316}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 44.3985978111}, {"name": "Formic acid", "categories": ["water"], "amount": 44.3985978111}, {"name": "Glutaraldehyde", "categories": ["water", "ground-, long-term"], "amount": 761.209962198}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.0835600185334}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 2834.66165807}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 2834.66165807}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.0244198439156}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.0244198439156}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 3.3839735808e-06}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 64.7766136478}, {"name": "Hexane", "categories": ["water"], "amount": 64.7766136478}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 5495.69785952}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 6.84697909866}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 26679.1520578}, {"name": "Hydrazine", "categories": ["water"], "amount": 26679.1520578}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 7.38073006547}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 7.38073006547}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0098284709809}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 63.9075630591}, {"name": "Isopropylamine", "categories": ["water"], "amount": 63.9075630591}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.38723579768e-19}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 374.712087307}, {"name": "Lead II", "categories": ["water"], "amount": 374.712087307}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.78498613101e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 22085.5777807}, {"name": "Mercury II", "categories": ["water"], "amount": 22085.5777807}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.826658447362}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.826658447362}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0196317992577}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 14.6086211315}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 14.6086211315}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 2.26922525202}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 2.26922525202}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.276852728533}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 66.3699032274}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 66.3699032274}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.510872918433}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.510872918433}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.00149137267179}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.64703869861}, {"name": "Methanol", "categories": ["water"], "amount": 2.64703869861}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 2.63934935448}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 2.63934935448}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.0403171258023}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 15.3464598148}, {"name": "Methyl acetate", "categories": ["water"], "amount": 15.3464598148}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 86.4260496376}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 86.4260496376}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.205421548177}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 672.693769619}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 672.693769619}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 2.69699443261}, {"name": "Methyl formate", "categories": ["water", "ground-, long-term"], "amount": 2.69699443261}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.0454930999128}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 17.6594630018}, {"name": "Methyl formate", "categories": ["water"], "amount": 17.6594630018}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 7.40013389918e-19}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 293.759429823}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 293.759429823}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 2.86220566757}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 2.86220566757}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.00149072814059}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 293.377639617}, {"name": "m-Xylene", "categories": ["water"], "amount": 293.377639617}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 7664.97812916}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.52134113463e-17}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 14879.593112}, {"name": "Nickel II", "categories": ["water"], "amount": 14879.593112}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 12.4907504254}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 12.4907504254}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.309274509026}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 179.424851039}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 179.424851039}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 2.44074824773}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 2.44074824773}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.00258295543271}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 220.767480905}, {"name": "o-Xylene", "categories": ["water"], "amount": 220.767480905}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 68.881917707}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 68.881917707}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.00989234102318}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 933.053080439}, {"name": "Phenol", "categories": ["water"], "amount": 933.053080439}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 9.10152776605}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.0921337373485}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5658.10239646}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 5658.10239646}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 21.8797176827}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.104574403899}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6318.72190295}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 6318.72190295}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 20.9110658397}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.00566881201258}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 167.14128465}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 167.14128465}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0413948763067}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.000356393755357}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 322.448744091}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 322.448744091}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 15.3176471858}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 15.3176471858}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.0249055458003}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 85.6478335876}, {"name": "Propanal", "categories": ["water"], "amount": 85.6478335876}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.648709408671}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.648709408671}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.00130704287396}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 2.97231381479}, {"name": "Propanol", "categories": ["water"], "amount": 2.97231381479}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 16.5647075376}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 16.5647075376}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.00558389484262}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 70.6626377096}, {"name": "Propionic acid", "categories": ["water"], "amount": 70.6626377096}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 2.10238456636}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 2.10238456636}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0023607370464}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 17.4700358048}, {"name": "Propylamine", "categories": ["water"], "amount": 17.4700358048}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 5.01480349489}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 5.01480349489}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0816325783193}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 29.005239421}, {"name": "Propylene oxide", "categories": ["water"], "amount": 29.005239421}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.99594386638e-17}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 7324.67649905}, {"name": "Selenium IV", "categories": ["water"], "amount": 7324.67649905}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 100987.433379}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.40217976328e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 194088.664722}, {"name": "Silver I", "categories": ["water"], "amount": 194088.664722}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.591875112103}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 0.591875112103}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.02735443489e-11}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 2.29890588366}, {"name": "Sodium formate", "categories": ["water"], "amount": 2.29890588366}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.836241799581}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.836241799581}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00100227427588}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 185.222322067}, {"name": "Styrene", "categories": ["water"], "amount": 185.222322067}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.552459972141}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.552459972141}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00240860630869}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.63317349449}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.63317349449}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 13.5092073972}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 13.5092073972}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.0506647781598}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 125.389297733}, {"name": "t-Butylamine", "categories": ["water"], "amount": 125.389297733}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.07639023681e-16}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 35389.4077305}, {"name": "Thallium I", "categories": ["water"], "amount": 35389.4077305}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1714.41984509}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 4.30760120816e-18}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2978.23297057}, {"name": "Tin ion", "categories": ["water"], "amount": 2978.23297057}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.69590270572}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.69590270572}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.00116367810532}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 55.9244570735}, {"name": "Toluene", "categories": ["water"], "amount": 55.9244570735}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.83959886735}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.83959886735}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.0341377179356}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 188.861574259}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 188.861574259}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.0918471656337}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 8.45923489413e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.387328217825}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.387328217825}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.65348453121}, {"name": "Trimethylamine", "categories": ["water", "ground-, long-term"], "amount": 2.65348453121}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.00173832682985}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 19.8654420496}, {"name": "Trimethylamine", "categories": ["water"], "amount": 19.8654420496}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 3.04863294124}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 8.80967294413e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 10.2429235335}, {"name": "Urea", "categories": ["water"], "amount": 10.2429235335}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 58269.3699574}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.14855870933e-15}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 112885.975124}, {"name": "Vanadium V", "categories": ["water"], "amount": 112885.975124}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.856084361818}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.856084361818}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.000905963060822}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 77.433462536}, {"name": "Xylene", "categories": ["water"], "amount": 77.433462536}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 21139.0169079}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.26978777143e-15}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 38584.5847928}, {"name": "Zinc II", "categories": ["water"], "amount": 38584.5847928}, {"name": "Allyl chloride", "categories": ["water"], "amount": 150.107994707}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1719.72022222}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.421805319}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 339.317777169}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46475948079}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 857.119620868}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9534.98244551}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6746.64791262}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4323.58210351}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1920.93503576}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6050.10080329}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2426.79990078}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.582607561724}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 103.169086671}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 658.986710852}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 295.110806888}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 3770.7450376}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 4954.65373781}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.3932813926}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 192.999442132}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1283.109173}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.4310591}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 4084.8099935}, {"name": "Thifensulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 35564.4260927}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 411.1785638}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1134.31504454}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 868.275246299}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1240.16841273}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 96.2293583211}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1333.79443753}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8673.14758745}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 105.744292155}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2258.57766265}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.3024755209}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3287.78136202}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 4345.11868303}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.4122233922}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1170.78461728}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 259125.744383}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 910.522764295}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 381628.069557}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 7664.97812916}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 1388.79880804}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 633.556552259}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 10478.7144824}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 893.126030729}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.20246492475}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 23322.8108861}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 28046.6429631}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 98.0040444448}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 116.155359038}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 4596.60659287}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1165.75588348}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 18.9067574535}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 2525.61496079}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 381053.75649}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 17300.8240815}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 48797.7288149}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1194.66483169}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 129.849192762}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 6449.38280516}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 15771.0343836}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 352.621901199}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 677723.624786}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 126.815326465}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 236.821363216}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 652.965951536}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7861577.04964}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1028.90082835}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 2443.47118807}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 6373.08863158}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 170.512437611}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6437.00134825}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 6437.00134825}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6437.00134825}, {"name": "Arsenic ion", "categories": ["air"], "amount": 6405.04498992}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 8050.89994673}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 8050.89994673}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 8050.89994673}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 8050.89994673}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 224.393691341}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 214.756405105}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 214.756405105}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 214.756405105}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 234.030977577}, {"name": "Arsenic ion", "categories": ["water"], "amount": 15222.6509969}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 15222.6509969}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 9.58825682577e-17}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 8050.89994673}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 8050.89994673}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1748.63720722}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 105.779518324}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1618.13667159}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 206.604549058}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 5957.95991504}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2337.13737544}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 90.654292576}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 105993.681159}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 203864.201142}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 96.6568218536}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.75406157419}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 12.5967888633}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.73878567982}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.73878567982}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.73878567982}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.746423627}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 12.5967888633}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.486803588069}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 586.984453573}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 586.984453573}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 16219.0594888}]}, {"unit": "CTU", "name": ["USEtox", "human toxicity", "carcinogenic"], "exchanges": [{"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.25835643585e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.81034369363e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.10822971148e-07}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.40677675031e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2.78915096857e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.53106789654e-08}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.02725822034e-06}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.39137625621e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.74189637316e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 8.42536760991e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.12983385676e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.53036676816e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 4.49513602648e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.000115490564155}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.12591222332e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.000251763798337}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.5900525836e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.12098271166e-08}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.02143353577e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.98978798813e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.52942349063e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00469814945549}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.59396713048e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.58465083306e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 29.6215965571}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 5.54372559772e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.30432522666e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.51551382007e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.82092639599e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.86589948834e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.92272837839e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.59649534071e-06}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.63627203333e-09}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.03415307628e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.29033235366e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.06043356488e-08}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.21916990727e-06}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.86069960003e-06}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.54216857544e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.27974191527e-05}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.79311899168e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.75913270933e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.34836336155e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.65698358987e-05}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 6.56547012814e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3.13488021555e-08}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.00689119536346}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.93265617274e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.91573373907e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.798065886e-05}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.41561486381e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.61755017703e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.59751715034e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.9919583523e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.30137212543e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.44886373212e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.76389568595e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.13599183806e-05}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 9.2668338628e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.10730840774e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.8761556497e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.00721530541e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.10266781435e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.17267040417e-12}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.82551249043e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.01010637222e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.17980717339e-09}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.17980717339e-09}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.17980717339e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.51070882682e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.61481971007e-10}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 7.61481971007e-10}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.61481971007e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.80360804682e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21160330753e-09}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.21160330753e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.21160330753e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.80626829348e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19861648047e-07}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.19861648047e-07}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19861648047e-07}, {"name": "Benzene", "categories": ["air"], "amount": 2.97025642682e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55318865951e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 5.55318865951e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55318865951e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.34257636135e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81334221509e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 6.81334221509e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81334221509e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.17185449163e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.48798887749e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15203102352e-05}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 1.15203102352e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15203102352e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.35054371953e-05}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66364294122e-08}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1.66364294122e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66364294122e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.71274326364e-07}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000181886251444}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.000181886251444}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000181886251444}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00021682502489}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62205188845e-07}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.62205188845e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62205188845e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.30591993829e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00420652364645}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.00420652364645}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00420652364645}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00445233655097}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 29.0579794183}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.98615796658e-07}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 4.98615796658e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.98615796658e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.26494178215e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21127687713e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.21127687713e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21127687713e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.25780105189e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.15703053861e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 6.15703053861e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.15703053861e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.06560843696e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.55644290875e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.14623193216e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.33591164361e-08}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.13732373977e-09}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63093252709e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 4.63093252709e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.63093252709e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.74862316449e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22818037023e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.22818037023e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22818037023e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.25925636194e-07}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.35831711151e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 9.35831711151e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.35831711151e-09}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 8.30466291186e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38568982845e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.38568982845e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38568982845e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.34036877914e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38514597875e-06}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 1.38514597875e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38514597875e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.20912825657e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.92786459021e-10}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.92786459021e-10}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.92786459021e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.92952725352e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8147140338e-08}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72744049579e-05}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 2.72744049579e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.72744049579e-05}, {"name": "Lead II", "categories": ["air"], "amount": 2.69221204283e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00721939609092}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.00721939609092}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00721939609092}, {"name": "Mercury II", "categories": ["air"], "amount": 0.00705529572719}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.4268974382e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41555720358e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 4.41555720358e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41555720358e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.66564547133e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53591407821e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 4.53591407821e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53591407821e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.6669899821e-05}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68430211366e-08}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.68430211366e-08}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68430211366e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.04995848874e-08}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.73466103001e-05}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 4.73466103001e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.73466103001e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 5.17610560352e-05}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08926890585e-07}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.08926890585e-07}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08926890585e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.05322202046e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "low population density, long-term"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 6.02505019232e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.70116176839e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3.70116176839e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.70116176839e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 4.00126694691e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.10730840774e-07}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.10730840774e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.10730840774e-07}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.10730840774e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65875148514e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.65875148514e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65875148514e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1190141013e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.77006340593e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.77006340593e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.77006340593e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 6.39837077473e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18119080314e-12}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3.18119080314e-12}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18119080314e-12}, {"name": "Toluene", "categories": ["air"], "amount": 3.17693060366e-12}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.92033805674e-10}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 4.92033805674e-10}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.92033805674e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.75107008895e-09}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.13042102512e-24}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.13042102512e-24}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.13042102512e-24}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.13042102512e-24}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.000481792025544}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.08107144261e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.08107144261e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 8.08107144261e-07}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.00541281305817}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.00534431943162}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.00534431943162}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.00534431943162}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 7.55469061204e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.01939385121e-07}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.01939385121e-07}, {"name": "Lead II", "categories": ["soil"], "amount": 2.01939385121e-07}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0200044362242}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 8.48018013111e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 8.48018013111e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 8.48018013111e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.000105724992455}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.9716083806e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.9716083806e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.9716083806e-05}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.82611559507e-08}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 8.82611559507e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.5462790678e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.82611559507e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 8.82611559507e-08}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.40677675031e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.11871117885e-08}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.40677675031e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.40677675031e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 6.90690409061e-08}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 6.90690409061e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.65003441604e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 6.90690409061e-08}, {"name": "Aniline", "categories": ["water"], "amount": 6.90690409061e-08}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.42356468163e-07}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 2.42356468163e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 2.48598903073e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.42356468163e-07}, {"name": "Benzene", "categories": ["water"], "amount": 2.42356468163e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 8.42536760991e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.88550344886e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 8.42536760991e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 8.42536760991e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.73175162941e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 4.73175162941e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 5.13884016434e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.73175162941e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.73175162941e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.93228723043e-25}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.93228723043e-25}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.05933518344e-26}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.93228723043e-25}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.93228723043e-25}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.5900525836e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 5.90415531548e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.5900525836e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.5900525836e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.90347838611e-07}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 3.90347838611e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 3.45063784803e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.90347838611e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 3.90347838611e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.0106412469201}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 0.0106412469201}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.000627639502748}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0106412469201}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0106412469201}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 5.29594169392e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.63365874629e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 3.59649534071e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.37947158204e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.59649534071e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.59649534071e-06}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 4.64255029641e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 2.54268249009e-09}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.57410232268e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.57410232268e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 5.22622698116e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.57410232268e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.57410232268e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.4853543737e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 5.4853543737e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 7.71263952757e-08}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.4853543737e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 5.4853543737e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.84742034232e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.71589882596e-06}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.24088463926e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.24088463926e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.31368315406e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.24088463926e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.24088463926e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.93266118363e-09}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1.93266118363e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.62742636959e-11}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.93266118363e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.93266118363e-09}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.75913270933e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.53954919999e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.75913270933e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.75913270933e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.41624753292e-07}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 3.41624753292e-07}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.10368663912e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.41624753292e-07}, {"name": "Lead II", "categories": ["water"], "amount": 3.41624753292e-07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.000120080076691}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.000120080076691}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.56271765466e-05}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.000120080076691}, {"name": "Mercury II", "categories": ["water"], "amount": 0.000120080076691}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.82317292723e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 6.82317292723e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 9.6560046946e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.82317292723e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.82317292723e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.16253257955e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 4.16253257955e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.17587468701e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.16253257955e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.16253257955e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.24102735905e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 2.24102735905e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.74349958773e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.24102735905e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 2.24102735905e-08}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3.82737301858e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.93269270377e-06}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.82737301858e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 3.82737301858e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.14190986335e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.14190986335e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.59371864207e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.14190986335e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.14190986335e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.44886373212e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 1.68836291963e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.44886373212e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.44886373212e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 8.76389568595e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 3.53743317677e-09}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.76389568595e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.76389568595e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.15873471978e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.15873471978e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 7.69667452305e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.15873471978e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.15873471978e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.29829306404e-08}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 1.29829306404e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.48366675471e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.29829306404e-08}, {"name": "Styrene", "categories": ["water"], "amount": 1.29829306404e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.83673645379e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.83673645379e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.55467521351e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.83673645379e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.83673645379e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.2879661946e-09}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 3.2879661946e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.11387645851e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.2879661946e-09}, {"name": "Toluene", "categories": ["water"], "amount": 3.2879661946e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.87817103743e-09}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.87817103743e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 7.91617455349e-11}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.87817103743e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.87817103743e-09}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96832520896e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72488671037e-07}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 2.39234482596e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62111292374e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32045754977e-07}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33260035377e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6500890021e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.02931758558e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.82737301858e-05}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.97337061874e-11}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.53421227985e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0004239869897}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000242335986141}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.000242335986141}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000242335986141}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.000333161487921}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.000391834717788}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.000195143379401}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.000195143379401}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.000195143379401}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 9.05452478804e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 9.26804763876e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.000368977329072}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.000368977329072}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.02700349803e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.000368977329072}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.000368977329072}]}, {"unit": "CTU", "name": ["USEtox", "human toxicity", "non-carcinogenic"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.22107612959e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.14240130852e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.97819564124e-09}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.39267954175e-08}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.000350614722474}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.29162189912e-07}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 9.67186558462e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.7246994101e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00140792037782}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 9.70801684411e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.27801289078e-06}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.44134951538e-05}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 8.82185413283e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.74415250727e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.000186565323829}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.51497689855e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.19084656419e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 5.68929348804e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.51538282679e-05}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 5.67639632829e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.84486970479e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 6.18998015956e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.40028027971e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.20073131874e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 8.7254440059e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.00534430439e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.57784358616e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.46171452185e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0855603171999}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 3.54940227989e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.0970352734e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 6.02634349165e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.19436053997e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.68486677638e-06}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.26863106794e-08}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0444663058455}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.000426599473648}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.33109164235e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 7.57113690084e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.06629840745e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.50206945082e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 5.31479897581e-05}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.78536345821e-07}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.73695147425e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.71395602563e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.60954105991e-07}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.73578090429e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3.56545393639e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.000748414990057}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 3.02674239709e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.32337383641e-05}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 8.62675705655e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02284603255e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.13649260702e-08}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.59597206457e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.41204306953e-07}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.11889118027e-06}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000147547188575}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.34299434762e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.24739604051e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.49802672226e-07}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 2.79449501214e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.59173271959e-06}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65136409165e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.82620591784e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.07319064027e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.07049768116e-06}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.37199576957e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 7.80373245217e-08}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.5590928788e-05}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.86359176402e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.76190346285e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.90380453425e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.73273423485e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.41755946291e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.74304831064e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.62281587226e-06}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.82695687532e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.000123511601348}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.62866364624e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.35632670187e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 8.17425733863e-09}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.48195495738e-08}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 5.57509434147e-08}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 1.41185834791e-05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 5.32342287452e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.6672757021e-07}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 7.0032895581e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 7.62662627432e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.43993461441e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.05538842042e-09}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00932064402952}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 7.60579121025e-05}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.04128130499e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.0912235769e-07}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 8.86419791161e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 4.67837616053e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.42061298909e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.62912175897e-12}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.815310505072}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.67513653743e-07}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000113866883591}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 9.57257078322e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.04326658888e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.31653582337e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 6.55510120949e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000159172552978}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.80784050713e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.63329092691e-08}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 6.13617407825e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.26769482886e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 5.92881404423e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.40264733665e-07}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.37815045333e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.00163326250869}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.63756703912e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 6.27434656912e-05}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.40370961401e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 6.44497918122e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.16117116592e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 7.85382114201e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 4.76106468608e-08}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.86496368948e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 3.56886206147e-06}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.53240096284e-09}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.92710058813e-06}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.06696854044e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.03420858705e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.53819687493e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.4093578095e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.72098283662e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.37779889144e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.29593634107e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 7.48223845186e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 6.45176374779e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.22201194273e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 4.84697205131e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 9.89413748742e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.1182518046e-05}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.69739397578e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.86976395417e-07}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.43006424918e-06}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.73332741409e-07}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.26716560536e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 7.68701797523e-06}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 7.17326236367e-09}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 8.30543922245e-06}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 4.36575168894e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0253294573125}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000354948763219}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 8.77283349049e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 2.0144716457e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.84765062003e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.66486762063e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 4.97229786148e-05}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.000412022501539}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.000718543620283}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6.56022841176e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.93469404124e-07}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.88653937332e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 9.61882024993e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.68447264846e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 5.62829566023e-07}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2.1088893979e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.62031640446e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 6.7208025112e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.38132712796e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.7968995957e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.69150091665e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.000194385620771}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.16157383621e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.09611314831e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.0152329864062}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.00128139027535}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19383597616e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.09730801991e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.80083557369e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.71155271024e-08}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 4.71155271024e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.71155271024e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.88138858507e-07}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air"], "amount": 6.25095208029e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 6.34451934579e-08}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.000731739874733}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.11787094524e-05}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7613003428e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.7613003428e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7613003428e-08}, {"name": "Aniline", "categories": ["air"], "amount": 8.90882755347e-07}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.000170539079445}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air"], "amount": 4.18682303082e-05}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86953545861e-09}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.86953545861e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86953545861e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.34361691279e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.03510712592e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 3.03510712592e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.03510712592e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.52121015665e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44454892341e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 9.44454892341e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.44454892341e-10}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.4989489681e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.33238712937e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.33238712937e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.33238712937e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.45511535777e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.31316452946e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00854581964939}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.00854581964939}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00854581964939}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0470530684246}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48955172648e-08}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 2.48955172648e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.48955172648e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 8.54881146822e-07}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.88570082977e-08}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0464964872273}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.0464964872273}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0464964872273}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0454813965364}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.99421471032e-05}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air"], "amount": 5.29140109143e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.26562129052e-07}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 9.26562129052e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.26562129052e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 1.32025907734e-06}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 2.57751434762e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.30688983653e-05}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 8.30688983653e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.30688983653e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.000415741944211}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.34414006803e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.11219290214e-08}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.16134573275e-08}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air"], "amount": 6.58857897185e-09}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35187938303e-06}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 4.35187938303e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.35187938303e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.97140408551e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.42219734604e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4.42219734604e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.42219734604e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.59205040444e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.77309062067e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.92275311708e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.92275311708e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.92275311708e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 3.32774367597e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 4.0890802845e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.60838785054e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.60838785054e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.60838785054e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.51943547847e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.40004759027e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.40004759027e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.40004759027e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.23141031564e-06}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.22569626152e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.06410741038e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54081991874e-08}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 7.54081991874e-08}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54081991874e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.71067884699e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54474156746e-07}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 1.54474156746e-07}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54474156746e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.57888185742e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.623285776e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.623285776e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.623285776e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.35113159601e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0095678054128}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.0095678054128}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0095678054128}, {"name": "Lead II", "categories": ["air"], "amount": 0.00944422472116}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.854546007662}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.854546007662}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.854546007662}, {"name": "Mercury II", "categories": ["air"], "amount": 0.834928256367}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.55441517645e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 9.18664628469e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.164130614e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 5.164130614e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.164130614e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 7.7983982514e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.30625470547e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.48239667733e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000150482729407}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000150482729407}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000150482729407}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000154827641192}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.79016274377e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air"], "amount": 1.02297007317e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 9.03046009447e-10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.00166204290756}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2463727257e-10}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 6.2463727257e-10}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.2463727257e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.13110215584e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.66434183172e-06}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 2.66434183172e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.66434183172e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.91275649882e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.50202057121e-06}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.50202057121e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.50202057121e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 5.17792085661e-06}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air"], "amount": 4.86496047015e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.21894311635e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06922761308e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8.06922761308e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.06922761308e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.72351325226e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68701797523e-06}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 7.68701797523e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68701797523e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 7.68701797523e-06}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air"], "amount": 0.0258419844461}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.31921019706e-09}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3.31921019706e-09}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.31921019706e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.02383187383e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98710180673e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 2.98710180673e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98710180673e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.07318040035e-08}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air"], "amount": 0.000705842697333}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.90368350529e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 9.90368350529e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.90368350529e-09}, {"name": "Toluene", "categories": ["air"], "amount": 5.30459430023e-08}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.46109178668e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13672430721e-08}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.13672430721e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13672430721e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.10489278952e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air"], "amount": 0.0155955997484}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.000209460358427}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 4.91145219428e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.13942743874e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.129261275146}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.000216809233826}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.000216809233826}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.000216809233826}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.78266910152e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.52011116072e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.52011116072e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.52011116072e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.2183836745e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.20296627222e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.20296627222e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.20296627222e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.74152106553e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.5539367722e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.5539367722e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.5539367722e-07}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 5.19471929638e-08}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.026501699979}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.08399228142e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.08399228142e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 7.08399228142e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.36800480833}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0100383270495}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0100383270495}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0100383270495}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.00466203657151}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.847979846e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.847979846e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.847979846e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 5.94947596608e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.10948569516e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.10948569516e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.10948569516e-06}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0731569556943}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.000894144905522}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.000139542579104}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0435255724767}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.000702024677515}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.000702024677515}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.000702024677515}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 4.88515042326e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.03809873041e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 1.75541140005e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.92492585824e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 2.87951621395e-08}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.58346765721e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.53001986506e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 4.53001986506e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.35988962528e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.53001986506e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.53001986506e-07}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.28420844111e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water"], "amount": 5.8631541117e-09}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.47017083994e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 5.72167555889e-08}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 4.27801289078e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.03716198414e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.27801289078e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.27801289078e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 3.41162912752e-06}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 3.41162912752e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.30897063056e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 3.41162912752e-06}, {"name": "Aniline", "categories": ["water"], "amount": 3.41162912752e-06}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.67996688402e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.000364132820574}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.02764639602e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water"], "amount": 9.81537186241e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.13689078633e-08}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.13689078633e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.2949601854e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.13689078633e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.13689078633e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 8.7254440059e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.05950467176e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 8.7254440059e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 8.7254440059e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.72529554699e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.72529554699e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.37687836603e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.72529554699e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.72529554699e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.06915324676e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.44322034491e-06}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 5.89844223747e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water"], "amount": 3.75496697452e-08}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 0.000426599473648}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.000158404167001}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.000426599473648}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.000426599473648}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.65988234821e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 3.74932606721e-05}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 8.82697382697e-11}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 5.23471599278e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.17492613821e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.17492613821e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.79582634706e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.17492613821e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 1.17492613821e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.39526497303e-05}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 2.39526497303e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4127695071e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.39526497303e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.39526497303e-05}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 3.02674239709e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.45814301083e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 3.02674239709e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 3.02674239709e-09}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 8.62675705655e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.21960644052e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 8.62675705655e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 8.62675705655e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 7.28061097394e-10}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.76718976036e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 6.35445705661e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1.29995398394e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.36056641806e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.62156647091e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 4.41755946291e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.69439889775e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.41755946291e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.41755946291e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.43229330577e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.43229330577e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.24515316295e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.43229330577e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.43229330577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.27728346576e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.27728346576e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 2.40449884566e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.27728346576e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.27728346576e-06}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.28941259972e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.30244295051e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 5.64107814793e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 1.87278672374e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.23588485981e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 3.23588485981e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.36556722181e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.23588485981e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 3.23588485981e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.62981260125e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.62981260125e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31002409521e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.62981260125e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.62981260125e-07}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.000119841263952}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.000119841263952}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.000108876691797}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.000119841263952}, {"name": "Lead II", "categories": ["water"], "amount": 0.000119841263952}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0142143570457}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.0142143570457}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0113197698416}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0142143570457}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0142143570457}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.00034725197e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 7.00034725197e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.10095817674e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.00034725197e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.00034725197e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000141623363705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.000141623363705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 3.90552842229e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000141623363705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000141623363705}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.96282945807e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water"], "amount": 1.053508057e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.93608528087e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 7.66183687348e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 8.31103402386e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 8.31103402386e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.46591142037e-11}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 8.31103402386e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 8.31103402386e-10}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2.15378249348e-06}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.21304917407e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.15378249348e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 2.15378249348e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.61393398824e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 5.61393398824e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 7.83514666046e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.61393398824e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.61393398824e-06}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 4.29623471206e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water"], "amount": 1.44523002991e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 6.45176374779e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.44847208948e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 6.45176374779e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 6.45176374779e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 1.52128653029e-09}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.22201194273e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.93249320112e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.22201194273e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.22201194273e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.12268619473e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.12268619473e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.32787148554e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.12268619473e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.12268619473e-06}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 0.000354948763219}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.72046594869e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000354948763219}, {"name": "Silver I", "categories": ["water"], "amount": 0.000354948763219}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 6.90556274e-09}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 6.90556274e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.38219899035e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 6.90556274e-09}, {"name": "Styrene", "categories": ["water"], "amount": 6.90556274e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 7.96825091643e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 7.96825091643e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 2.68046041819e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 7.96825091643e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 7.96825091643e-09}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.000104920212033}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water"], "amount": 0.00178495070951}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.78381889397e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 1.78381889397e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.85164323324e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.78381889397e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.78381889397e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 2.67912205763e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.7463868211e-07}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 0.000194385620771}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.20478554624e-05}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.000194385620771}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.000194385620771}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.56517374846e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.56517374846e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.0888634707e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.56517374846e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.56517374846e-08}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.00128139027535}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.000302223973326}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00128139027535}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00128139027535}, {"name": "Allyl chloride", "categories": ["water"], "amount": 8.42901796193e-07}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57581594855e-06}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7455578157e-07}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52002161078e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.52530406654e-06}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0671541812e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01207404659e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31605757416e-06}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43582087857e-07}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08293365611e-06}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 5.61797401589e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.868035843e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69785101375e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.59597206457e-07}, {"name": "Thifensulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44193524069e-06}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69313181097e-06}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.20161199408e-06}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2.81621845711e-06}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.645635268e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63321509311e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000367917900016}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0467214193e-06}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.42609469801e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21547511533e-08}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41714188464e-07}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44718757046e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.15378249348e-06}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37487161263e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.23265390903e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.07691308446e-07}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 1.09819742695e-05}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.89386004154e-05}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.83033329321e-07}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 2.89610354978e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.51539024644e-08}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.31727440537e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.31990011737e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.000235648603669}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.0232481211e-07}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.73394406547e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.1707571262e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 3.92950189167e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 5.25446437435e-08}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.43949601473e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.50243284237e-06}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4662539461e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 4.10288890135e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 4.1166975182e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0170719666931}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0165209340126}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.0165209340126}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0165209340126}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0167964503528}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0290247939103}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0144550651408}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0144550651408}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0144550651408}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0273316540054}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0273316540054}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00224222481335}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.0273316540054}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0273316540054}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.13669122593e-07}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.46637376709e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.78483552391e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.49853944258e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.21067636659e-05}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44146894277e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.13685973855e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.74806423055e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.95240352962e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.41623954322e-09}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 7.17622414338e-08}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.48844354497e-06}]}, {"unit": "CTU", "name": ["USEtox", "human toxicity", "total"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.22107612959e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.14240130852e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.97819564124e-09}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.39267954175e-08}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.000350740558118}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.11019655928e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.10822971148e-07}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 9.67186558462e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.7246994101e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00140792037782}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 9.70801684411e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 7.68478964109e-06}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.44134951538e-05}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.000116110051014}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.77946318624e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.000186565323829}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.51497689855e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.21810478453e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 5.68929348804e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.51538282679e-05}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 5.67639632829e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.84486970479e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 6.18998015956e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 7.79165653592e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 5.9426276919e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.71508116158e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.2303682872e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000101082103543}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.46171452185e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 4.49513602648e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0856758077641}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 3.54940227989e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.0970352734e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 6.02634349165e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.19436053997e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.8107789997e-06}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.26863106794e-08}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0447180696438}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.000428189526232}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.74318991352e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.77854722585e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.06629840745e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.50206945082e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 5.31479897581e-05}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.78536345821e-07}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.73695147425e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.01293482444e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.76248340897e-07}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.73578090429e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3.56545393639e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00544656444555}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 3.02674239709e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.32337383641e-05}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 8.62675705655e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02284603255e-08}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.59396713048e-05}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.13649260702e-08}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.59597206457e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.41204306953e-07}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.11889118027e-06}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000163393696906}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.34299434762e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.24739604051e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.49802672226e-07}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 2.79449501214e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.59173271959e-06}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65136409165e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 29.6215965571}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.82620591784e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.07319064027e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.07049768116e-06}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.37199576957e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 7.80373245217e-08}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.61453013478e-05}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.86359176402e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.78051557295e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.90380453425e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 6.24824805492e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.82092639599e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.86589948834e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.92272837839e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.77720899698e-05}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.63627203333e-09}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.77720138692e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.05184910763e-06}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.06043356488e-08}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.82695687532e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.000123511601348}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.62866364624e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.35632670187e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.21916990727e-06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 8.17425733863e-09}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.48195495738e-08}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 5.57509434147e-08}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 1.41185834791e-05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 5.32342287452e-07}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.86069960003e-06}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.56884133246e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.98007087108e-05}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 7.62662627432e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.45786580433e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.75913270933e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.34836336155e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.05538842042e-09}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00934721386542}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 8.26233822306e-05}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.04128130499e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.40471159845e-07}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 8.86419791161e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 4.67837616053e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.42061298909e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.62912175897e-12}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.822201700435}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.67513653743e-07}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000113866883591}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 9.57257078322e-09}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.93265617274e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.13242392627e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.31653582337e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 6.55510120949e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000207153211838}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.80784050713e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.63329092691e-08}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 6.13617407825e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.26769482886e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 5.92881404423e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.40264733665e-07}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.37815045333e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.00163326250869}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.57937156772e-08}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 6.27434656912e-05}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.40370961401e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 6.44497918122e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.93366729362e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 9.45133829235e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 4.76106468608e-08}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.9919583523e-06}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.86496368948e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 3.56886206147e-06}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.53240096284e-09}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.92710058813e-06}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.06696854044e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.03420858705e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.53819687493e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.4093578095e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.72098283662e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.36791710169e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.29593634107e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 7.48223845186e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.09006274799e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.30965089959e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 4.84697205131e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 9.89413748742e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 3.25424364266e-05}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.69739397578e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.3136597817e-06}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.43006424918e-06}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.73332741409e-07}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.26716560536e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 8.097748816e-06}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 7.17326236367e-09}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.01815948721e-05}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 4.36575168894e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0253294573125}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000354948763219}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 8.77283349049e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.20866246998e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.28743287635e-07}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.66486762063e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 4.97229786148e-05}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.000412022501539}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.000718543620283}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6.56022841176e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.93469404124e-07}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.88653937332e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 9.61913751697e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.68447264846e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 5.62829566023e-07}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2.1088893979e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.62031640446e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 6.7208025112e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.38132712796e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.97945084474e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.69150091665e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.000194385620771}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.16157383621e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.18621421203e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.0152329864062}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.00128139027535}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19383597616e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.09730801991e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.80083557369e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62953342758e-08}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.62953342758e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62953342758e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 5.83245946775e-07}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air"], "amount": 6.25095208029e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 6.34451934579e-08}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.000731739874733}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.11787094524e-05}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8374485399e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.8374485399e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8374485399e-08}, {"name": "Aniline", "categories": ["air"], "amount": 9.08918835815e-07}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.000170539079445}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air"], "amount": 4.18682303082e-05}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08113876614e-09}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.08113876614e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08113876614e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 4.14988520627e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.50212719306e-07}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.50212719306e-07}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.50212719306e-07}, {"name": "Benzene", "categories": ["air"], "amount": 3.72237744249e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64763414874e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 5.64763414874e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64763414874e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.39756585103e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.14572934446e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 9.14572934446e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.14572934446e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.6269698494e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.31316452946e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.48798887749e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00855733995963}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.00855733995963}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00855733995963}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0471165738618}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1531946677e-08}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 4.1531946677e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1531946677e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.42615547319e-06}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.88570082977e-08}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0466783734787}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.0466783734787}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0466783734787}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0456982215613}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.99421471032e-05}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air"], "amount": 5.29140109143e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0887673179e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.0887673179e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0887673179e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 1.55085107117e-06}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 2.57751434762e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00428959254482}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.00428959254482}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00428959254482}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00486807849518}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.34414006803e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.11219290214e-08}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.16134573275e-08}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air"], "amount": 6.58857897185e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 29.0579794183}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.85049517969e-06}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 4.85049517969e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.85049517969e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.04978982637e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65349661173e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.65349661173e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65349661173e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.71700609233e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.77309062067e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53845617094e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.53845617094e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53845617094e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.39335211293e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.55644290875e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.14623193216e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.33591164361e-08}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.13732373977e-09}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.23932037763e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.23932037763e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.23932037763e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3.70056671234e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06282279605e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.06282279605e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06282279605e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.55733595183e-06}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.35831711151e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 9.35831711151e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.35831711151e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.22569626152e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.06410741038e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 8.30466291186e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.46109802764e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.46109802764e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.46109802764e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.35747556761e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5396201355e-06}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 1.5396201355e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5396201355e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.56701644231e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6425644219e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.6425644219e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6425644219e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.36106112326e-07}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8147140338e-08}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00959507981776}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.00959507981776}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00959507981776}, {"name": "Lead II", "categories": ["air"], "amount": 0.00947114684159}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.861765403753}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.861765403753}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.861765403753}, {"name": "Mercury II", "categories": ["air"], "amount": 0.841983552094}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.55441517645e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 9.18664628469e-09}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.4268974382e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.60568633436e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 5.60568633436e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.60568633436e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.46496279853e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.30625470547e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.48239667733e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000195841870189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000195841870189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000195841870189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000201497541013}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.79016274377e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air"], "amount": 1.02297007317e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 9.03046009447e-10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.00166204290756}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74676584092e-08}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.74676584092e-08}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74676584092e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.16306870432e-08}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.00109521318e-05}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 5.00109521318e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.00109521318e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 5.4673812534e-05}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0109474618e-06}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 3.0109474618e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0109474618e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 6.23114287707e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "low population density, long-term"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 6.02505019232e-06}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air"], "amount": 4.86496047015e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.21894311635e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17703893815e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.17703893815e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.17703893815e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.27247801992e-05}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.097748816e-06}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 8.097748816e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.097748816e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 8.097748816e-06}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air"], "amount": 0.0258419844461}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.99067250485e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.99067250485e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.99067250485e-08}, {"name": "Styrene", "categories": ["air"], "amount": 6.14284597513e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0687735866e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 2.0687735866e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.0687735866e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 7.47155117508e-08}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air"], "amount": 0.000705842697333}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.90686469609e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 9.90686469609e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.90686469609e-09}, {"name": "Toluene", "categories": ["air"], "amount": 5.30491199329e-08}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.46109178668e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18592768778e-08}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.18592768778e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18592768778e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.15240349041e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air"], "amount": 0.0155955997484}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.000209460358427}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 4.91145219428e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.13942743874e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.129743067172}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00021761734097}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00021761734097}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.00021761734097}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.78266910152e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.52011116072e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.52011116072e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.52011116072e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.00542499689492}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.00535634909434}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.00535634909434}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.00535634909434}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.74152106553e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.5539367722e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.5539367722e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.5539367722e-07}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 5.19471929638e-08}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0265772468851}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.10418621993e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.10418621993e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 7.10418621993e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.38800924455}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0101231288508}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0101231288508}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0101231288508}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.00466203657151}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.847979846e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.847979846e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.847979846e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.000111674468421}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.08255695012e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.08255695012e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.08255695012e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0731569556943}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.000894144905522}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.000139542579104}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0435255724767}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.000702024677515}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.000702024677515}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.000702024677515}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 4.88515042326e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.03809873041e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 1.75541140005e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.92492585824e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 2.87951621395e-08}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.58346765721e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 5.41263142457e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 5.41263142457e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 4.01451753206e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 5.41263142457e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 5.41263142457e-07}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.28420844111e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water"], "amount": 5.8631541117e-09}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.47017083994e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 5.72167555889e-08}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 7.68478964109e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.44903310203e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 7.68478964109e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 7.68478964109e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 3.48069816843e-06}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 3.48069816843e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.33547097472e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 3.48069816843e-06}, {"name": "Aniline", "categories": ["water"], "amount": 3.48069816843e-06}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.67996688402e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.000364132820574}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.02764639602e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water"], "amount": 9.81537186241e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 3.03725376026e-07}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 3.03725376026e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3.11548504927e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 3.03725376026e-07}, {"name": "Benzene", "categories": ["water"], "amount": 3.03725376026e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 1.71508116158e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 9.94500812062e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.71508116158e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.71508116158e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 8.4570471764e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 8.4570471764e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 6.51571853037e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 8.4570471764e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 8.4570471764e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.06915324676e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.44322034491e-06}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 5.89844223747e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water"], "amount": 3.75496697452e-08}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 0.000428189526232}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.000158994582533}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.000428189526232}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.000428189526232}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.65988234821e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 3.74932606721e-05}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 8.82697382697e-11}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 5.23471599278e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.56527397682e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.56527397682e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.14089013186e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.56527397682e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 1.56527397682e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.0106651995698}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 0.0106651995698}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.000629052272255}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0106651995698}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0106651995698}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 3.02674239709e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.45814301083e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 3.02674239709e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 3.02674239709e-09}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 8.62675705655e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.21960644052e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 8.62675705655e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 8.62675705655e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 7.28061097394e-10}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.76718976036e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 6.35445705661e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1.29995398394e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.36056641806e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 5.29594169392e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.63365874629e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 4.77720899698e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.83234605595e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.77720899698e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.77720899698e-05}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 4.64255029641e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 2.54268249009e-09}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 8.00639562845e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 8.00639562845e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 9.47138014411e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 8.00639562845e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 8.00639562845e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.82581890313e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.82581890313e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.17576279842e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.82581890313e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.82581890313e-06}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.28941259972e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.30244295051e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 5.64107814793e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 1.87278672374e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.84742034232e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.71589882596e-06}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4.47676949907e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 4.47676949907e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.45023987624e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4.47676949907e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4.47676949907e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.64913921309e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.64913921309e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31965152158e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.64913921309e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.64913921309e-07}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.75913270933e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.53954919999e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.75913270933e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.75913270933e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.000120182888705}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.000120182888705}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.000109187060461}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.000120182888705}, {"name": "Lead II", "categories": ["water"], "amount": 0.000120182888705}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0143344371224}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.0143344371224}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0114153970181}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0143344371224}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0143344371224}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.68266454469e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 7.68266454469e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.19751822369e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.68266454469e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.68266454469e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.0001832486895}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.0001832486895}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 5.0814031093e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.0001832486895}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.0001832486895}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.96282945807e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water"], "amount": 1.053508057e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.93608528087e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 7.66183687348e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.32413769929e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 2.32413769929e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.80815870193e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.32413769929e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 2.32413769929e-08}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 4.04275126793e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.15399762118e-06}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 4.04275126793e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 4.04275126793e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6.75584385159e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 6.75584385159e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 9.42886530253e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6.75584385159e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6.75584385159e-06}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 4.29623471206e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water"], "amount": 1.44523002991e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.09006274799e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 4.13683500911e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.09006274799e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.09006274799e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 1.52128653029e-09}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.30965089959e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.2862365188e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.30965089959e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.30965089959e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.53855966671e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.53855966671e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.40483823077e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.53855966671e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.53855966671e-06}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 0.000354948763219}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.72046594869e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000354948763219}, {"name": "Silver I", "categories": ["water"], "amount": 0.000354948763219}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.98884933804e-08}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 1.98884933804e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.82188665375e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.98884933804e-08}, {"name": "Styrene", "categories": ["water"], "amount": 1.98884933804e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 2.63356154543e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 2.63356154543e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.82272125533e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 2.63356154543e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.63356154543e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.000104920212033}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water"], "amount": 0.00178495070951}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.11261551343e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 2.11261551343e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.00630308791e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.11261551343e-08}, {"name": "Toluene", "categories": ["water"], "amount": 2.11261551343e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 2.67912205763e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.7463868211e-07}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 0.000194385620771}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.20478554624e-05}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.000194385620771}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.000194385620771}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9529908522e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.9529908522e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.16802521623e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9529908522e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.9529908522e-08}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.00128139027535}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.000302223973326}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00128139027535}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00128139027535}, {"name": "Allyl chloride", "categories": ["water"], "amount": 8.42901796193e-07}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57581594855e-06}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7455578157e-07}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52002161078e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.52530406654e-06}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0671541812e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01207404659e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96832520896e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31605757416e-06}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43582087857e-07}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08293365611e-06}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 5.61797401589e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.868035843e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87033968479e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 2.39234482596e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.59597206457e-07}, {"name": "Thifensulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44193524069e-06}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69313181097e-06}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82272491782e-06}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2.81621845711e-06}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.645635268e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63321509311e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000368049945771}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33260035377e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6500890021e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.94965317786e-06}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.42609469801e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21547511533e-08}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41714188464e-07}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44718757046e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 4.04275126793e-05}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37487161263e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.42060245278e-10}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.07691308446e-07}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 1.09819742695e-05}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.89386004154e-05}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.83033329321e-07}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 2.89610354978e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.51539024644e-08}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.31727440537e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 6.85411239722e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.000235648603669}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.0232481211e-07}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.73394406547e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.1707571262e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 3.92950189167e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 5.25446437435e-08}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.43949601473e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.50243284237e-06}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4662539461e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 4.10288890135e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 4.1166975182e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0174959536828}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0167632699987}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.0167632699987}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0167632699987}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0171296118407}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0294166286281}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0146502085202}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0146502085202}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0146502085202}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 9.05452478804e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 9.26804763876e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0277006313345}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0277006313345}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00227249484833}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.0277006313345}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0277006313345}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.13669122593e-07}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.46637376709e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.78483552391e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.49853944258e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.21067636659e-05}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44146894277e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.13685973855e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.74806423055e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.95240352962e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.41623954322e-09}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 7.17622414338e-08}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.48844354497e-06}]}, {"unit": "mol H+-Eq", "name": ["EF v3.0 EN15804", "acidification", "accumulated exceedance (AE)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 3.02}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.13467}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1.31}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.04821}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0 EN15804", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, in air", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil, resource correction", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Chloroform", "categories": ["air"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 938}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9620}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2350}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 96}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 635}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8520}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3690}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7150}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2110}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 179}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 817}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 15}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 34}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2020}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 712}, {"name": "Methyl formate", "categories": ["air"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 712}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17900}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26100}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.23}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0 EN15804", "climate change: biogenic", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, in air", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil, resource correction", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 34}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0 EN15804", "climate change: fossil", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Chloroform", "categories": ["air"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 938}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9620}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2350}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 96}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 635}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8520}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3690}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7150}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2110}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 179}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 817}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 15}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2020}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 712}, {"name": "Methyl formate", "categories": ["air"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 712}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17900}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26100}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.23}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0 EN15804", "climate change: land use and land use change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 36.8}]}, {"unit": "CTUe", "name": ["EF v3.0 EN15804", "ecotoxicity: freshwater", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 4646.7}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 2.6713}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 30.733}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 112.29}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 68612}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 11624}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 31.157}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 912.29}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 4.1368}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 500.56}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 31.457}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 21.639}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 14.072}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 1845.1}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4860.6}, {"name": "Abamectin", "categories": ["air"], "amount": 8802.3}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Abamectin", "categories": ["water"], "amount": 332160}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6887.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 2139.3}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 96.503}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 325900}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 599.66}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 2.8788}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 4.6517}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 7669.3}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 194540}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water"], "amount": 9541}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1999.7}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Allyl chloride", "categories": ["water"], "amount": 52.64}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 58369000}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air"], "amount": 188000}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil"], "amount": 276000}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.43e-15}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water"], "amount": 204500}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 883.04}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 1246.7}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 52.283}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 9.2245}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 487460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air"], "amount": 43.05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 43}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 122}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 8.22e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 122}, {"name": "Antimony ion", "categories": ["water"], "amount": 61}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air"], "amount": 557}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 803}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.27e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2015}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsine", "categories": ["air"], "amount": 557}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 424730}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 228780}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 161.08}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090}, {"name": "Barium II", "categories": ["air"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1090}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1570}, {"name": "Barium II", "categories": ["soil"], "amount": 1570}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3140}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 9.34e-16}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3140}, {"name": "Barium II", "categories": ["water"], "amount": 1570}, {"name": "Barium sulfide", "categories": ["water"], "amount": 76094}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4382.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 395.82}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 894.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 839.26}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 171240}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 27977}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 28141}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 8173300}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 35.132}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 527}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 527}, {"name": "Beryllium II", "categories": ["air"], "amount": 526}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 525}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil"], "amount": 760}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.55e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water"], "amount": 690}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 814760000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 229740000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2192.2}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 11.793}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 10.242}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 78.497}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 78.497}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 1305.4}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 204.3}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 73.451}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 369.26}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 161.63}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 199.08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air"], "amount": 80800}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 80700}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 116000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.39e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water"], "amount": 114500}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 3800}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 6.38e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 3800}, {"name": "Caesium", "categories": ["water"], "amount": 1900}, {"name": "Calcium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.495}, {"name": "Calcium", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.495}, {"name": "Calcium", "categories": ["air"], "amount": 36.247}, {"name": "Calcium", "categories": ["air", "urban air close to ground"], "amount": 36.998}, {"name": "Calcium", "categories": ["soil", "agricultural"], "amount": 47.27}, {"name": "Calcium", "categories": ["soil", "forestry"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil", "industrial"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil"], "amount": 47.27}, {"name": "Calcium II", "categories": ["water", "ground-"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water", "ocean"], "amount": 7.00649e-45}, {"name": "Calcium II", "categories": ["water", "surface water"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water"], "amount": 109.18}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 3143400}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1158.7}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 23347}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 51145}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 56094}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2518800}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water"], "amount": 150.72}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 150.72}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 150.72}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1705.9}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 970.45}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 37438}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 5964.1}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 16856}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 59379}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 66.766}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 349.64}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 32.609}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 33.571}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 794680}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 196830000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium III", "categories": ["air"], "amount": 364.5}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium III", "categories": ["soil"], "amount": 524}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 809}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.73e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 809}, {"name": "Chromium III", "categories": ["water"], "amount": 404.5}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium VI", "categories": ["air"], "amount": 364.5}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil"], "amount": 524}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.82e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water"], "amount": 520}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 752.52}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air"], "amount": 4490}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4480}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil"], "amount": 6470}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.43e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water"], "amount": 6150}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36500}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 36500}, {"name": "Copper ion", "categories": ["air"], "amount": 36400}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 36300}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil"], "amount": 52400}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 99200}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 9.25e-18}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 99200}, {"name": "Copper ion", "categories": ["water"], "amount": 49600}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 1864.5}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 50458}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 1219.5}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 13400}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1831.5}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 50934000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 88371}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1531.8}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 691.93}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 458.02}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4759}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1234700}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 77330000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2138.6}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 146.75}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 14.079}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 41.875}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 400.44}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 660.23}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 15.723}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 15766000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2241.9}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 513.86}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 27842}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 98085}, {"name": "Dodecanol", "categories": ["water"], "amount": 11313}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 121.22}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 332160}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 617.76}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1129700}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 1864.5}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 248.51}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 25.382}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3140.2}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 18.445}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 61.443}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 890.24}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 68.044}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1361.3}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 6.4334}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 40.121}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 62713000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 73646}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 378860}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 632570}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 3010900}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.5426}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 10.203}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 168290}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2125.4}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 3.4488}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 42.924}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 0.010218}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 50458}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 1020.7}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 7308.6}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 542.27}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 20956}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 0.0014233}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 37438}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 149.48}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 29553}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 11097}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 150.72}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 29.36}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 44670}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 127290}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 480290}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 119590}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.0267}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 332160}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 187.68}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air"], "amount": 50.6}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 50.5}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil"], "amount": 73.2}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 134}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 6.44e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 134}, {"name": "Iron ion", "categories": ["water"], "amount": 67}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 401.31}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water"], "amount": 516.89}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2012700000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 1117.3}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.2}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.2}, {"name": "Lead II", "categories": ["air"], "amount": 28.05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.9}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil"], "amount": 40.7}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.9}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.9e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.9}, {"name": "Lead II", "categories": ["water"], "amount": 34.45}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 0.58961}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 246.66}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 1084900}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air"], "amount": 63.35}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 63.2}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil"], "amount": 91.7}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese II", "categories": ["water"], "amount": 82}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese-55", "categories": ["water"], "amount": 82}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Mercury II", "categories": ["air"], "amount": 1065}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil"], "amount": 1560}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2210}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.54e-18}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2210}, {"name": "Mercury II", "categories": ["water"], "amount": 1105}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 196520}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1281.6}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 70.831}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3241.7}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 2.9582}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 413980}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 110530}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 13.777}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 1981.4}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 107.85}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 15.753}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 88.346}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 111700}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 61309}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.59e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.475}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 70.066}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 659.25}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10700}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 10700}, {"name": "Nickel II", "categories": ["air"], "amount": 10650}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil"], "amount": 15400}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 29800}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.91e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 29800}, {"name": "Nickel II", "categories": ["water"], "amount": 14900}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1789.6}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 13362}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 119590}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 64.453}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 1959600}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 8672}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 5.3621}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.0177}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 31.882}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 6827.4}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 10.486}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 18660}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 7569.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 371.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 50.201}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 22357}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 230.06}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 8.2417}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 96.402}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 148630}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 452.5}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 2674.4}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 62.688}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 18324}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 518980}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2138.6}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 15062000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2138.6}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 433890}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 190510}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2138.6}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air"], "amount": 25.65}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 25.6}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.74e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water"], "amount": 36.6}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water"], "amount": 2.3463}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7030}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7030}, {"name": "Silver I", "categories": ["air"], "amount": 7020}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7010}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 10100}, {"name": "Silver I", "categories": ["soil"], "amount": 10100}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 19400}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.09e-17}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 19400}, {"name": "Silver I", "categories": ["water"], "amount": 9700}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 333470}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 7.6306}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 21.339}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5380}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5380}, {"name": "Strontium", "categories": ["air"], "amount": 5375}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 5370}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 7730}, {"name": "Strontium", "categories": ["soil"], "amount": 7730}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 15400}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.39e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 15400}, {"name": "Strontium", "categories": ["water"], "amount": 7700}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 1322.6}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 210090}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 79836}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil"], "amount": 20911}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 133650}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 153.76}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 133650}, {"name": "Sulfur", "categories": ["water"], "amount": 66901}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 6585.4}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 150700}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21179}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 26919000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 630.38}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230}, {"name": "Thallium I", "categories": ["air"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1230}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil"], "amount": 1760}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3530}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 9.5e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3530}, {"name": "Thallium I", "categories": ["water"], "amount": 1765}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 46196}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 213220}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 385460}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 12129}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 385290}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 119}, {"name": "Tin ion", "categories": ["air"], "amount": 118.5}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 118}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 171}, {"name": "Tin ion", "categories": ["soil"], "amount": 171}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 298}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 3.75e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 298}, {"name": "Tin ion", "categories": ["water"], "amount": 149}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 486.61}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1641.4}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 134.85}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 7.6657}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.25304}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 50458}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 688260000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 831270}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 63.058}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 40.263}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 1.4769}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 181}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 404}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 404}, {"name": "Vanadium V", "categories": ["air"], "amount": 403.5}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 403}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil"], "amount": 581}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 337.41}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 506}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 506}, {"name": "Zinc II", "categories": ["air"], "amount": 504.5}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 503}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 730}, {"name": "Zinc II", "categories": ["soil"], "amount": 730}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1330}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.05e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1330}, {"name": "Zinc II", "categories": ["water"], "amount": 665}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 531.29}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 801.31}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 21.977}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 3022.8}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "MJ, net calorific value", "name": ["EF v3.0 EN15804", "energy resources: non-renewable", "abiotic depletion potential (ADP): fossil fuels"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.76}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}]}, {"unit": "kg P-Eq", "name": ["EF v3.0 EN15804", "eutrophication: freshwater", "fraction of nutrients reaching freshwater end compartment (P)"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["EF v3.0 EN15804", "eutrophication: marine", "fraction of nutrients reaching marine end compartment (N)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.092}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water"], "amount": 0.778}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.028}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water"], "amount": 0.226}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.596}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water"], "amount": 0.304}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 1}, {"name": "Nitrogen", "categories": ["water"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.389}]}, {"unit": "mol N-Eq", "name": ["EF v3.0 EN15804", "eutrophication: terrestrial", "accumulated exceedance (AE)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 13.47}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 3.16065}, {"name": "Nitric oxide", "categories": ["air"], "amount": 6.532}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 4.26}]}, {"unit": "CTUh", "name": ["EF v3.0 EN15804", "human toxicity: carcinogenic", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.0 EN15804", "human toxicity: non-carcinogenic", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3303e-06}, {"name": "Abamectin", "categories": ["air"], "amount": 1.1734e-05}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Abamectin", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 2.2099e-08}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil"], "amount": 1.5387e-08}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6728e-06}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 6.9773e-08}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air"], "amount": 0.00012953}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 0.00013055}, {"name": "Chlorine", "categories": ["soil"], "amount": 0.0001235}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 1.1282e-05}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water"], "amount": 5.5583e-05}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.261e-06}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.261e-06}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 3.1857e-08}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 1.2368e-08}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 3.3487e-07}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 4.3917e-07}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 4.3512e-07}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 8.1969e-10}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil"], "amount": 6.6691e-10}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 2.188e-11}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water"], "amount": 5.5205e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "kBq U235-Eq", "name": ["EF v3.0 EN15804", "ionising radiation: human health", "human exposure efficiency relative to u235"], "exchanges": [{"name": "Americium-241", "categories": ["water", "ground-"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water"], "amount": 1.5}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0386}, {"name": "Antimony-125", "categories": ["water", "ground-"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ground-, long-term"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water"], "amount": 0.0007}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water"], "amount": 6.79}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water"], "amount": 7.86}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Carbon-14", "categories": ["air"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.0557}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00193}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0186}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.29e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.14e-05}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 4.8}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water"], "amount": 4.71}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0236}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000443}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 6.64e-06}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.015}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 3.14}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ground-, long-term"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water"], "amount": 0.00607}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.00679}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0236}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.000193}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 2.14}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ground-, long-term"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.114}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-235", "categories": ["air"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.107}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 6.71e-06}]}, {"unit": "dimensionless", "name": ["EF v3.0 EN15804", "land use", "soil quality index"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 39.581}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 36.405}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 51.699}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 105.24}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 18.128}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 33.964}, {"name": "Occupation, forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 11.459}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 11.488}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 21.463}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 48.218}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 139.1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 38.973}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 58.117}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 17.602}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 138.81}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 121.55}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 161.52}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 69.262}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 28.288}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 165.22}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 116.16}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 48.764}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 138.72}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Transformation, from annual crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": -395.81}, {"name": "Transformation, from annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": -364.05}, {"name": "Transformation, from annual crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from arable land, unspecified use", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from bare area (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -516.99}, {"name": "Transformation, from dump site", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, slag compartment", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from forest, extensive", "categories": ["natural resource", "land"], "amount": -181.28}, {"name": "Transformation, from forest, intensive", "categories": ["natural resource", "land"], "amount": -339.64}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": -114.59}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -114.88}, {"name": "Transformation, from forest, unspecified", "categories": ["natural resource", "land"], "amount": -214.63}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": -482.18}, {"name": "Transformation, from industrial area", "categories": ["natural resource", "land"], "amount": -5911.8}, {"name": "Transformation, from mineral extraction site", "categories": ["natural resource", "land"], "amount": -4708.4}, {"name": "Transformation, from pasture, man made", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": -389.73}, {"name": "Transformation, from pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": -581.17}, {"name": "Transformation, from permanent crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -176.02}, {"name": "Transformation, from snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from traffic area, rail network", "categories": ["natural resource", "land"], "amount": -5899.2}, {"name": "Transformation, from traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": -5165.9}, {"name": "Transformation, from traffic area, road network", "categories": ["natural resource", "land"], "amount": -6864.8}, {"name": "Transformation, from unknown", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -282.88}, {"name": "Transformation, from urban, continuously built", "categories": ["natural resource", "land"], "amount": -7021.9}, {"name": "Transformation, from urban, discontinuously built", "categories": ["natural resource", "land"], "amount": -4937}, {"name": "Transformation, from urban, green area", "categories": ["natural resource", "land"], "amount": -2072.5}, {"name": "Transformation, from urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": -5895.4}, {"name": "Transformation, from wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, to annual crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 395.81}, {"name": "Transformation, to annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 364.05}, {"name": "Transformation, to annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to bare area (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 516.99}, {"name": "Transformation, to dump site", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to forest, extensive", "categories": ["natural resource", "land"], "amount": 181.28}, {"name": "Transformation, to forest, intensive", "categories": ["natural resource", "land"], "amount": 339.64}, {"name": "Transformation, to forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 114.59}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 114.88}, {"name": "Transformation, to forest, unspecified", "categories": ["natural resource", "land"], "amount": 214.63}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 482.18}, {"name": "Transformation, to industrial area", "categories": ["natural resource", "land"], "amount": 5911.8}, {"name": "Transformation, to mineral extraction site", "categories": ["natural resource", "land"], "amount": 4708.4}, {"name": "Transformation, to pasture, man made", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 389.73}, {"name": "Transformation, to pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 581.17}, {"name": "Transformation, to permanent crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 176.02}, {"name": "Transformation, to snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to traffic area, rail network", "categories": ["natural resource", "land"], "amount": 5899.2}, {"name": "Transformation, to traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 5165.9}, {"name": "Transformation, to traffic area, road network", "categories": ["natural resource", "land"], "amount": 6864.8}, {"name": "Transformation, to unknown", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 282.88}, {"name": "Transformation, to urban, continuously built", "categories": ["natural resource", "land"], "amount": 7021.9}, {"name": "Transformation, to urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 4937}, {"name": "Transformation, to urban, green area", "categories": ["natural resource", "land"], "amount": 2072.5}, {"name": "Transformation, to urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 5895.4}, {"name": "Transformation, to wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}]}, {"unit": "kg Sb-Eq", "name": ["EF v3.0 EN15804", "material resources: metals/minerals", "abiotic depletion potential (ADP): elements (ultimate reserves)"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 4.545212805030338e-05}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.00297}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 6.04e-06}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 1.26e-05}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.0411}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 0.0004841517197042984}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.00427}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 5.343572902983674e-10}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 0.000673718497616036}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 6.544113975666994e-12}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 2.66249274670687e-10}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 6.52e-07}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 3.594003392114496e-05}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.308918482603777e-10}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 4.471605694701393e-05}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 5.823075919490471e-10}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 2.02e-09}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.0922}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.93e-05}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 1.6e-08}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 0.000103180813387238}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 0.194}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1.4e-11}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 5.5e-08}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 1.646069875295716e-05}, {"name": "Sodium nitrate", "categories": ["natural resource", "in ground"], "amount": 1.487682357320205e-08}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 4.358140883174752e-05}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.290510533131037e-07}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 7.07e-07}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.000193}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 1.289527155951242e-05}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 3.92505016360851e-10}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.43e-05}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 2.79e-08}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 0.00452}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 0.0005695419030770708}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 7.7e-07}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 5.69e-07}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}]}, {"unit": "kg CFC-11-Eq", "name": ["EF v3.0 EN15804", "ozone depletion", "ozone depletion potential (ODP)"], "exchanges": [{"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.81}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.057}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.26}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.57}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 15.2}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.034}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.72}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "disease incidence", "name": ["EF v3.0 EN15804", "particulate matter formation", "impact on human health"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.6e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01757e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000238497}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.94042e-07}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 5.48544e-05}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}]}, {"unit": "kg NMVOC-Eq", "name": ["EF v3.0 EN15804", "photochemical oxidant formation: human health", "tropospheric ozone concentration increase"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 1.65}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.608}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1.42}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.709}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.318}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.731}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.828}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Acetone", "categories": ["air"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.155}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Benzene", "categories": ["air"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.23}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.595}, {"name": "Butane", "categories": ["air"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.595}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05}, {"name": "Butanol", "categories": ["air"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.454}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0389}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.845}, {"name": "Cumene", "categories": ["air"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.845}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.752}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.0422}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.319}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.208}, {"name": "Ethane", "categories": ["air"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.208}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0152}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.674}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.353}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.69}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.652}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.144}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.877}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.834}, {"name": "Heptane", "categories": ["air"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.834}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Hexane", "categories": ["air"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.814}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.519}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.115}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00845}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.236}, {"name": "Methanol", "categories": ["air"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.236}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0997}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.63}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.667}, {"name": "Pentane", "categories": ["air"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.667}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Propanal", "categories": ["air"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.35}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "Propane", "categories": ["air"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.948}, {"name": "Propanol", "categories": ["air"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.948}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9}, {"name": "Propene", "categories": ["air"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.9}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.253}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Styrene", "categories": ["air"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.049}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Toluene", "categories": ["air"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.549}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.235}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.78}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.296}]}, {"unit": "m3 world eq. deprived", "name": ["EF v3.0 EN15804", "water use", "user deprivation potential (deprivation-weighted water consumption)"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 42.95}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.95}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.95}, {"name": "Water", "categories": ["air"], "amount": 42.95}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 42.95}]}, {"unit": "mol H+-Eq", "name": ["EF v3.1 EN15804", "acidification", "accumulated exceedance (AE)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 3.02}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.13467}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1.31}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.04821}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1 EN15804", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, in air", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil, resource correction", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1 EN15804", "climate change: biogenic", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, in air", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil, resource correction", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1 EN15804", "climate change: fossil", "global warming potential (GWP100)"], "exchanges": [{"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1 EN15804", "climate change: land use and land use change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}]}, {"unit": "CTUe", "name": ["EF v3.1 EN15804", "ecotoxicity: freshwater", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9276}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 5.3426}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 61.45}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 224.58}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 137220}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 23240}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 62.294}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1824.6}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 8.2702}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 1001.1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 62.9}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 28.139}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 3689.2}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 315487.19221037}, {"name": "Abamectin", "categories": ["air"], "amount": 554148.578559852}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Abamectin", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 13773}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 4278.6}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 192.93}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 651800}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 1199.3}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 5.7469}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.2823}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15337}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 389000}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 19082}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 19082}, {"name": "Acrylate", "categories": ["water"], "amount": 19082}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3981.3}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Allyl chloride", "categories": ["water"], "amount": 105.28}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 116730000}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air"], "amount": 2002.745979017675}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 1991.389605163728}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.524933039988502e-17}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water"], "amount": 4351.936148782046}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1766.1}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 2493.2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 104.57}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 18.449}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 974460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air"], "amount": 3936.160566162338}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3932.23811982149}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.513617476334719e-17}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water"], "amount": 11236.40165143179}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.674241505374748e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4740.144065793249}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 849450}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 457560}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 322.16}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air"], "amount": 1285.034232822078}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1283.954063979948}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.099193197912493e-15}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water"], "amount": 3697.562482913057}, {"name": "Barium sulfide", "categories": ["water"], "amount": 152190}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 8762.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 791.57}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1787.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 1678.5}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 341750}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 55563}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 56281}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 16347000}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 70.262}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air"], "amount": 618.9529355888297}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 617.3705322217661}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 6.526234802747784e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water"], "amount": 1626.068806336683}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1629500000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 459480000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 4384.3}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 23.585}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 20.458}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 156.99}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 2607.6}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 408.5}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 146.86}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 738.53}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 323.15}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 398.15}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air"], "amount": 238177.2238474309}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 237902.7122128598}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 7.053900825124722e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water"], "amount": 674494.7621301207}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 7.47862628024277e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water"], "amount": 4470.250219771267}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 6286700}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2314.6}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 46693}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 102290}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 111310}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 5037700}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 1.3453e-19}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water"], "amount": 4.7248}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 301.44}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 301.44}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 55559.1411080776}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 70300.9604413129}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 11918}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 33711}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 118620}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 133.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 696.98}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 65.209}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 67.142}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1588300}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 393650000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.208875862910647e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water"], "amount": 952.2972968312423}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.489493252663161e-17}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water"], "amount": 12274.01347021746}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 1505}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air"], "amount": 2014.507718479836}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2010.987520873756}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.400122046360835e-17}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water"], "amount": 5530.110188853351}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air"], "amount": 17.0387771287493}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 17.00696037116091}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.332001250025555e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water"], "amount": 46.47592828149169}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 157664.999993603}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 2439}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 26453}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3663.1}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 101870000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 176740}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3063.7}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1383.9}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0036901}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0036787}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 916.03}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4.9517}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 2469400}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 154660000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 293.47}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 28.15}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 83.707}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 800.87}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 1320.5}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 31.193}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 31479000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 4483.1}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 1027.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 55683}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 196170}, {"name": "Dodecanol", "categories": ["water"], "amount": 22624}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 242.45}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1233.9}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 2259400}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 157664.999993603}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 495.88}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.1505}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 50.686}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 6258.5}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 36.878}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 122.76}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 1780.5}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 136.09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2722.6}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 12.866}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 80.053}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 125430000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 147290}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 757720}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1265100}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 6021800}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 3.0851}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 20.361}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 336590}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4250.7}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 6.8977}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 85.847}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 64.3102104356947}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2041.4}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 14617}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 1084.5}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 41912}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 25.8706937761006}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 298.96}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 59003}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 22194}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 301.44}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 58.72}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 89339}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 254580}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 960570}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 239130}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 2276.4422267126}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 375.32}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air"], "amount": 795.7333426635905}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 793.8224567056676}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 7.574304470573605e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water"], "amount": 158.0383373682407}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 802.63}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ground-"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water", "surface water"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water"], "amount": 1033.8}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 4025200000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 2234.5}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air"], "amount": 27.80611908286212}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.70215524027599}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.886357418817773e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water"], "amount": 68.25546277139645}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 1.1792}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 493.32}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 2169700}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air"], "amount": 19.94318085460731}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 19.88727144657841}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air"], "amount": 15972.69526442819}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 15871.61649678753}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.31875727413759e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water"], "amount": 33175.97305971487}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 393040}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2563.2}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 141.6}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 6459.6}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 5.9133}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 827960}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 221060}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 27.506}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 3961.6}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 215.57}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 31.451}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 176.69}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 223410}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 122620}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.3442680085561654}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.3439346651696575}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.197321478927571e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.9841866365016807}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 140.06}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1318.5}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air"], "amount": 9671.490845144066}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9658.017917373805}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.452235344870308e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water"], "amount": 27049.47608091963}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 3579.2}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 26696}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 239130}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 128.91}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 3919100}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 17344}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 10.724}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 2.0314}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 63.728}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 13653}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 20.943}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 37320}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 15139}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 742.46}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 100.4}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 44637}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 459.99}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 16.477}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 192.8}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 297260}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 904.99}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 5348.7}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 125.14}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 36647}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 1038000}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 30124000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 867770}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 381030}, {"name": "Saflufenacil", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air"], "amount": 30.16996657803469}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 30.13959371908529}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 2.042628203989072e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water"], "amount": 86.08008602421901}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water"], "amount": 4.6927}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air"], "amount": 64053.54859244861}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 63950.19866656793}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.906840719972556e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water"], "amount": 177087.2896818751}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 666940}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 15.261}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 42.676}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air"], "amount": 6317.818728103488}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 6311.78472154855}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.98284211011834e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water"], "amount": 18073.40979134071}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 2645.2}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 420180}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 159670}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 13171}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 301390}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 42358}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 53839000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1260.2}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air"], "amount": 1442.57764721605}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1441.342024998017}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.117103489229396e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water"], "amount": 4147.520198066774}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 92391}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 426440}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 770900}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 24258}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 770570}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air"], "amount": 203.8836811879324}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 203.2079983047431}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 6.470692433736435e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water"], "amount": 513.1042026334452}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 973.2}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 3281.6}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 269.69}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 15.307}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 101.88}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.50608}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 1376500000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 1661800}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 126.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 80.527}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 2.9538}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 361.96}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air"], "amount": 1710.725551638173}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1708.278576231147}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2464.904813447571}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 674.82}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air"], "amount": 628.4971011469244}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 626.9476836185197}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.305118122386737e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water"], "amount": 1659.512213981416}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 1062.6}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 1602.6}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 43.94}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 6045.4}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "MJ, net calorific value", "name": ["EF v3.1 EN15804", "energy resources: non-renewable", "abiotic depletion potential (ADP): fossil fuels"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.76}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}]}, {"unit": "kg P-Eq", "name": ["EF v3.1 EN15804", "eutrophication: freshwater", "fraction of nutrients reaching freshwater end compartment (P)"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["EF v3.1 EN15804", "eutrophication: marine", "fraction of nutrients reaching marine end compartment (N)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.092}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water"], "amount": 0.778}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.028}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water"], "amount": 0.226}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.596}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water"], "amount": 0.304}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 1}, {"name": "Nitrogen", "categories": ["water"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.389}]}, {"unit": "mol N-Eq", "name": ["EF v3.1 EN15804", "eutrophication: terrestrial", "accumulated exceedance (AE)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 13.47}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 3.16065}, {"name": "Nitric oxide", "categories": ["air"], "amount": 6.532}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 4.26}]}, {"unit": "CTUh", "name": ["EF v3.1 EN15804", "human toxicity: carcinogenic", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 8.1867e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.1 EN15804", "human toxicity: non-carcinogenic", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.80160167313958e-05}, {"name": "Abamectin", "categories": ["air"], "amount": 0.000472506721099211}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Abamectin", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.50356882299721e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 2.53019085248595e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.3238e-10}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.1964e-10}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.00025564}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 1.18650289222135e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 9.59587362857198e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.57199659305063e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ground-"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water", "surface water"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "kBq U235-Eq", "name": ["EF v3.1 EN15804", "ionising radiation: human health", "human exposure efficiency relative to u235"], "exchanges": [{"name": "Americium-241", "categories": ["water", "ground-"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water"], "amount": 1.5}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0386}, {"name": "Antimony-125", "categories": ["water", "ground-"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ground-, long-term"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water"], "amount": 0.0007}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water"], "amount": 6.79}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water"], "amount": 7.86}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Carbon-14", "categories": ["air"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.0557}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00193}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0186}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.29e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.14e-05}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 4.8}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water"], "amount": 4.71}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0236}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000443}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 6.64e-06}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.015}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 3.14}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ground-, long-term"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water"], "amount": 0.00607}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.00679}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0236}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.000193}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 2.14}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ground-, long-term"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.114}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-235", "categories": ["air"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.107}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 6.71e-06}]}, {"unit": "dimensionless", "name": ["EF v3.1 EN15804", "land use", "soil quality index"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 39.581}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 36.405}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 51.699}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 105.24}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 18.128}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 33.964}, {"name": "Occupation, forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 11.459}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 11.488}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 21.463}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 48.218}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 139.1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 38.973}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 58.117}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 17.602}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 138.81}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 121.55}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 161.52}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 69.262}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 28.288}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 165.22}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 116.16}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 48.764}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 138.72}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Transformation, from annual crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": -395.81}, {"name": "Transformation, from annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": -364.05}, {"name": "Transformation, from annual crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from arable land, unspecified use", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from bare area (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -516.99}, {"name": "Transformation, from dump site", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, slag compartment", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from forest, extensive", "categories": ["natural resource", "land"], "amount": -181.28}, {"name": "Transformation, from forest, intensive", "categories": ["natural resource", "land"], "amount": -339.64}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": -114.59}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -114.88}, {"name": "Transformation, from forest, unspecified", "categories": ["natural resource", "land"], "amount": -214.63}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": -482.18}, {"name": "Transformation, from industrial area", "categories": ["natural resource", "land"], "amount": -5911.8}, {"name": "Transformation, from mineral extraction site", "categories": ["natural resource", "land"], "amount": -4708.4}, {"name": "Transformation, from pasture, man made", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": -389.73}, {"name": "Transformation, from pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": -581.17}, {"name": "Transformation, from permanent crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -176.02}, {"name": "Transformation, from snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from traffic area, rail network", "categories": ["natural resource", "land"], "amount": -5899.2}, {"name": "Transformation, from traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": -5165.9}, {"name": "Transformation, from traffic area, road network", "categories": ["natural resource", "land"], "amount": -6864.8}, {"name": "Transformation, from unknown", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -282.88}, {"name": "Transformation, from urban, continuously built", "categories": ["natural resource", "land"], "amount": -7021.9}, {"name": "Transformation, from urban, discontinuously built", "categories": ["natural resource", "land"], "amount": -4937}, {"name": "Transformation, from urban, green area", "categories": ["natural resource", "land"], "amount": -2072.5}, {"name": "Transformation, from urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": -5895.4}, {"name": "Transformation, from wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, to annual crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 395.81}, {"name": "Transformation, to annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 364.05}, {"name": "Transformation, to annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to bare area (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 516.99}, {"name": "Transformation, to dump site", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to forest, extensive", "categories": ["natural resource", "land"], "amount": 181.28}, {"name": "Transformation, to forest, intensive", "categories": ["natural resource", "land"], "amount": 339.64}, {"name": "Transformation, to forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 114.59}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 114.88}, {"name": "Transformation, to forest, unspecified", "categories": ["natural resource", "land"], "amount": 214.63}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 482.18}, {"name": "Transformation, to industrial area", "categories": ["natural resource", "land"], "amount": 5911.8}, {"name": "Transformation, to mineral extraction site", "categories": ["natural resource", "land"], "amount": 4708.4}, {"name": "Transformation, to pasture, man made", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 389.73}, {"name": "Transformation, to pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 581.17}, {"name": "Transformation, to permanent crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 176.02}, {"name": "Transformation, to snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to traffic area, rail network", "categories": ["natural resource", "land"], "amount": 5899.2}, {"name": "Transformation, to traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 5165.9}, {"name": "Transformation, to traffic area, road network", "categories": ["natural resource", "land"], "amount": 6864.8}, {"name": "Transformation, to unknown", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 282.88}, {"name": "Transformation, to urban, continuously built", "categories": ["natural resource", "land"], "amount": 7021.9}, {"name": "Transformation, to urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 4937}, {"name": "Transformation, to urban, green area", "categories": ["natural resource", "land"], "amount": 2072.5}, {"name": "Transformation, to urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 5895.4}, {"name": "Transformation, to wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}]}, {"unit": "kg Sb-Eq", "name": ["EF v3.1 EN15804", "material resources: metals/minerals", "abiotic depletion potential (ADP): elements (ultimate reserves)"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 4.545212805030338e-05}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.00297}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 6.04e-06}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 1.26e-05}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.0411}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 0.0004841517197042984}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.00427}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 5.343572902983674e-10}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 0.000673718497616036}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 6.544113975666994e-12}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 2.66249274670687e-10}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 6.52e-07}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 3.594003392114496e-05}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.308918482603777e-10}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 4.471605694701393e-05}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 5.823075919490471e-10}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 2.02e-09}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.0922}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.93e-05}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 1.6e-08}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 0.000103180813387238}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 0.194}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1.4e-11}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 5.5e-08}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 1.646069875295716e-05}, {"name": "Sodium nitrate", "categories": ["natural resource", "in ground"], "amount": 1.487682357320205e-08}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 4.358140883174752e-05}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.290510533131037e-07}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 7.07e-07}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.000193}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 1.289527155951242e-05}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 3.92505016360851e-10}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.43e-05}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 2.79e-08}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 0.00452}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 0.0005695419030770708}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 7.7e-07}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 5.69e-07}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}]}, {"unit": "kg CFC-11-Eq", "name": ["EF v3.1 EN15804", "ozone depletion", "ozone depletion potential (ODP)"], "exchanges": [{"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.81}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.057}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.26}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.57}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 15.2}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.034}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.72}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "disease incidence", "name": ["EF v3.1 EN15804", "particulate matter formation", "impact on human health"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.6e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01757e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000238497}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.94042e-07}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 5.48544e-05}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}]}, {"unit": "kg NMVOC-Eq", "name": ["EF v3.1 EN15804", "photochemical oxidant formation: human health", "tropospheric ozone concentration increase"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 1.65}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.608}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1.42}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.709}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.318}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.731}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.828}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Acetone", "categories": ["air"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.155}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Benzene", "categories": ["air"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.23}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.595}, {"name": "Butane", "categories": ["air"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.595}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05}, {"name": "Butanol", "categories": ["air"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.454}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0389}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.845}, {"name": "Cumene", "categories": ["air"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.845}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.752}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.0422}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.319}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.208}, {"name": "Ethane", "categories": ["air"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.208}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0152}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.674}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.353}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.69}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.652}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.144}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.877}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.834}, {"name": "Heptane", "categories": ["air"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.834}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Hexane", "categories": ["air"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.814}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.519}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.115}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00845}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.236}, {"name": "Methanol", "categories": ["air"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.236}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0997}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.63}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.667}, {"name": "Pentane", "categories": ["air"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.667}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Propanal", "categories": ["air"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.35}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "Propane", "categories": ["air"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.948}, {"name": "Propanol", "categories": ["air"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.948}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9}, {"name": "Propene", "categories": ["air"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.9}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.253}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Styrene", "categories": ["air"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.049}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Toluene", "categories": ["air"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.549}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.235}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.78}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.296}]}, {"unit": "m3 world eq. deprived", "name": ["EF v3.1 EN15804", "water use", "user deprivation potential (deprivation-weighted water consumption)"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 42.95}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.95}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.95}, {"name": "Water", "categories": ["air"], "amount": 42.95}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 42.95}]}, {"unit": "megajoule", "name": ["EN15804", "inventory indicators ISO21930", "exported energy - electricity"], "exchanges": [{"name": "Exported energy - electricity", "categories": ["inventory indicator", "output flow"], "amount": 1}]}, {"unit": "megajoule", "name": ["EN15804", "inventory indicators ISO21930", "exported energy - heat"], "exchanges": [{"name": "Exported energy - heat", "categories": ["inventory indicator", "output flow"], "amount": 1}]}, {"unit": "kilogram", "name": ["EN15804", "inventory indicators ISO21930", "hazardous waste disposed"], "exchanges": [{"name": "Hazardous waste disposed", "categories": ["inventory indicator", "waste"], "amount": 1}]}, {"unit": "kilogram", "name": ["EN15804", "inventory indicators ISO21930", "high-level radioactive waste disposed"], "exchanges": [{"name": "High-level radioactive waste disposed", "categories": ["inventory indicator", "waste"], "amount": 1}]}, {"unit": "kilogram", "name": ["EN15804", "inventory indicators ISO21930", "intermediate and low-level radioactive waste disposed"], "exchanges": [{"name": "Intermediate and low-level radioactive waste disposed", "categories": ["inventory indicator", "waste"], "amount": 1}]}, {"unit": "kilogram", "name": ["EN15804", "inventory indicators ISO21930", "materials for energy recovery"], "exchanges": [{"name": "Materials for energy recovery", "categories": ["inventory indicator", "output flow"], "amount": 1}]}, {"unit": "kilogram", "name": ["EN15804", "inventory indicators ISO21930", "materials for recycling"], "exchanges": [{"name": "Materials for recycling", "categories": ["inventory indicator", "output flow"], "amount": 1}]}, {"unit": "kilogram", "name": ["EN15804", "inventory indicators ISO21930", "non-hazardous waste disposed"], "exchanges": [{"name": "Non-hazardous waste disposed", "categories": ["inventory indicator", "waste"], "amount": 1}]}, {"unit": "megajoule", "name": ["EN15804", "inventory indicators ISO21930", "recovered energy"], "exchanges": [{"name": "Recovered energy", "categories": ["inventory indicator", "resource use"], "amount": 1}]}, {"unit": "cubic meter", "name": ["EN15804", "inventory indicators ISO21930", "use of net fresh water"], "exchanges": [{"name": "Water", "categories": ["water"], "amount": -1}, {"name": "Water", "categories": ["water", "surface water"], "amount": -1}, {"name": "Water", "categories": ["water", "ground-"], "amount": -1}, {"name": "Water, cooling, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, river", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, well, in ground", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, lake", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, turbine use, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, in air", "categories": ["natural resource", "in air"], "amount": 1}]}, {"unit": "megajoule", "name": ["EN15804", "inventory indicators ISO21930", "use of renewable secondary fuels"], "exchanges": [{"name": "Renewable secondary fuels", "categories": ["inventory indicator", "resource use"], "amount": 1}]}, {"unit": "kilogram", "name": ["EN15804", "inventory indicators ISO21930", "use of secondary material"], "exchanges": [{"name": "Secondary materials", "categories": ["inventory indicator", "resource use"], "amount": 1}]}, {"unit": "megajoule", "name": ["EN15804", "inventory indicators ISO21930", "Cumulative Energy Demand - renewable energy resources"], "exchanges": [{"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 1}]}, {"unit": "megajoule", "name": ["EN15804", "inventory indicators ISO21930", "Cumulative Energy Demand - non-renewable energy resources"], "exchanges": [{"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 27.9}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.76}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "GWP 100a, incl. H"], "exchanges": [{"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 2.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Hydrogen", "categories": ["air", "low population density, long-term"], "amount": 11}, {"name": "Hydrogen", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11}, {"name": "Hydrogen", "categories": ["air", "non-urban air or from high stacks"], "amount": 11}, {"name": "Hydrogen", "categories": ["air"], "amount": 11}, {"name": "Hydrogen", "categories": ["air", "urban air close to ground"], "amount": 11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitric oxide", "categories": ["air"], "amount": -10.8}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.5}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "GWP 20a, incl. H"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Hydrogen", "categories": ["air", "low population density, long-term"], "amount": 33}, {"name": "Hydrogen", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33}, {"name": "Hydrogen", "categories": ["air", "non-urban air or from high stacks"], "amount": 33}, {"name": "Hydrogen", "categories": ["air"], "amount": 33}, {"name": "Hydrogen", "categories": ["air", "urban air close to ground"], "amount": 33}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 7.65}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Nitric oxide", "categories": ["air"], "amount": 16.7}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 14}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "GWP 20a, incl. H and bio CO2"], "exchanges": [{"name": "Carbon dioxide, in air", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Carbon dioxide, non-fossil, resource correction", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Hydrogen", "categories": ["air", "low population density, long-term"], "amount": 33}, {"name": "Hydrogen", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33}, {"name": "Hydrogen", "categories": ["air", "non-urban air or from high stacks"], "amount": 33}, {"name": "Hydrogen", "categories": ["air"], "amount": 33}, {"name": "Hydrogen", "categories": ["air", "urban air close to ground"], "amount": 33}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 7.65}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Nitric oxide", "categories": ["air"], "amount": 16.7}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 14}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "GWP 100a, incl. H and bio CO2"], "exchanges": [{"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, in air", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Carbon dioxide, non-fossil, resource correction", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 2.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Hydrogen", "categories": ["air", "low population density, long-term"], "amount": 11}, {"name": "Hydrogen", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11}, {"name": "Hydrogen", "categories": ["air", "non-urban air or from high stacks"], "amount": 11}, {"name": "Hydrogen", "categories": ["air"], "amount": 11}, {"name": "Hydrogen", "categories": ["air", "urban air close to ground"], "amount": 11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitric oxide", "categories": ["air"], "amount": -10.8}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.5}]}] \ No newline at end of file +[{"unit": "kg SO2-Eq", "name": ["CML v4.8 2016 no LT", "acidification no LT", "acidification (incl. fate, average Europe total, A&B) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.6}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.783673469}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6}, {"name": "Ammonia", "categories": ["air"], "amount": 1.6}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1.2}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.783673469}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.783673469}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.783673469}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.96}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.96}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.96}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.96}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.76}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.5}]}, {"unit": "kg CO2-Eq", "name": ["CML v4.8 2016 no LT", "climate change no LT", "global warming potential [GWP100) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 16}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4800}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 782}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 138}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1980}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 79}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 527}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7670}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3170}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 6290}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1760}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 148}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 677}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 28}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 28}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1730}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6630}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 16100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 23500}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 16}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16}, {"name": "Chloroform", "categories": ["air"], "amount": 16}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 160}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4800}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4800}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4800}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 782}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 782}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 782}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 138}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 138}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 138}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1980}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1980}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1980}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 79}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 79}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 527}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 527}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 527}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7670}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7670}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7670}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3170}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3170}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3170}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 28}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1750}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1750}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 6290}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6290}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 6290}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1760}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1760}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1760}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 13900}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 9}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 148}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 148}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 148}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 677}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 677}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 677}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28}, {"name": "Methane, fossil", "categories": ["air"], "amount": 28}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1730}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1730}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1730}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6630}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6630}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6630}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 16100}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16100}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 16100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 23500}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23500}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 23500}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8550}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 28}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 28}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 28}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8590}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8590}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5820}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5820}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5820}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5820}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 265}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 265}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 265}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["CML v4.8 2016 no LT", "ecotoxicity: freshwater no LT", "freshwater aquatic ecotoxicity [FAETP inf) no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 29.49533085}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 171.8260122}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 27543.9258}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 50.94693271}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 519.4373798}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 79.23967176}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 95850.36583}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 283.1084245}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3.723752847}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 344.5970581}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 194.3865145}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 42.82246292}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 4.58563184}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 8.284720127}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 8.36818e-05}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.360324568}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000131227}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.334773948}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.370678892}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 87.77019479}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 17130.14029}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 103.1859686}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 3.25314e-07}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 289.4303366}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1523.011325}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.401496318}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 23.15337181}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2006.573756}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 584.5336542}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.032958813}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.796783349}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 9.5153e-05}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.038097112}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 1.922646069}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.690584275}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 6.913909397}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 639.1861685}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 221.6538139}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1157.306919}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 805.782122}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 199339.4398}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 24.09919497}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1293.825496}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 8.943808102}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 20139.95554}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 2126816.609}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 72.47918315}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 345.4825421}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 1.188877652}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2.206962213}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000121789}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000119313}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.42593e-11}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.86154e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000412935}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.81057e-05}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 11055.68571}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.098656659}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 380.9895881}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 381.1617771}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 8.255924503}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.921647131}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 4.638464651}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 167.9323357}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.399626922}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 97.42163568}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 693.1429309}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 162.0879155}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.462892182}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 29.99999205}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 29.99999205}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 316.7874757}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.412871049}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 3.926415532}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 43.70064072}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.032679173}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.32865e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000251931}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 14117.59934}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 97.3192924}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 4.37469e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 629.4706747}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 29.53209263}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 970.4507327}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.30679e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 171.8260122}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 497.628906}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 916.7842984}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.515898377}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.403587546}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 10.52329205}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 76.4086027}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 79.47660628}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 3.084748678}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 2.770891361}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1670.238851}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.036846268}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 15.05965114}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 546.2392735}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 2332.496164}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.09075e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1553.337312}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 685.8406233}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 2.537017575}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 10.16626668}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 7.04338e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3307.653992}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 39.76875083}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1733.840782}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 8965.69091}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 17.78364688}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 91.71242268}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.8260122}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 171.8260122}, {"name": "Acenaphthene", "categories": ["air"], "amount": 171.8260122}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 519.4373798}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 519.4373798}, {"name": "Acrolein", "categories": ["air"], "amount": 519.4373798}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.723752847}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.723752847}, {"name": "Antimony ion", "categories": ["air"], "amount": 3.723752847}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.82246292}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.82246292}, {"name": "Barium II", "categories": ["air"], "amount": 42.82246292}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.36818e-05}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.36818e-05}, {"name": "Benzene", "categories": ["air"], "amount": 8.36818e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000131227}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000131227}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000131227}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.334773948}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.334773948}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.334773948}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.370678892}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.370678892}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.370678892}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 87.77019479}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 87.77019479}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 87.77019479}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 17130.14029}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17130.14029}, {"name": "Beryllium II", "categories": ["air"], "amount": 17130.14029}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.25314e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.25314e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 3.25314e-07}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 289.4303366}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 289.4303366}, {"name": "Cadmium II", "categories": ["air"], "amount": 289.4303366}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.032958813}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.032958813}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.032958813}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5153e-05}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5153e-05}, {"name": "Chloroform", "categories": ["air"], "amount": 9.5153e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.922646069}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.922646069}, {"name": "Chromium III", "categories": ["air"], "amount": 1.922646069}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.690584275}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.690584275}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.690584275}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 639.1861685}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 639.1861685}, {"name": "Cobalt II", "categories": ["air"], "amount": 639.1861685}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 221.6538139}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 221.6538139}, {"name": "Copper ion", "categories": ["air"], "amount": 221.6538139}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2126816.609}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2126816.609}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 2126816.609}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000121789}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000121789}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000121789}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000119313}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000119313}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000119313}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42593e-11}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42593e-11}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86154e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86154e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.86154e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000412935}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000412935}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.000412935}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.81057e-05}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.81057e-05}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.098656659}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.098656659}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.098656659}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.255924503}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.255924503}, {"name": "Formaldehyde", "categories": ["air"], "amount": 8.255924503}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.638464651}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.638464651}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 4.638464651}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.399626922}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.399626922}, {"name": "Lead II", "categories": ["air"], "amount": 2.399626922}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 316.7874757}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 316.7874757}, {"name": "Mercury II", "categories": ["air"], "amount": 316.7874757}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.032679173}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.032679173}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.032679173}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32865e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32865e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.32865e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000251931}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000251931}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000251931}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.3192924}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 97.3192924}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 97.3192924}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.37469e-05}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.37469e-05}, {"name": "m-Xylene", "categories": ["air"], "amount": 4.37469e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 629.4706747}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 629.4706747}, {"name": "Nickel II", "categories": ["air"], "amount": 629.4706747}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.30679e-05}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.30679e-05}, {"name": "o-Xylene", "categories": ["air"], "amount": 9.30679e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.8260122}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 171.8260122}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 171.8260122}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.515898377}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.515898377}, {"name": "Phenol", "categories": ["air"], "amount": 1.515898377}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.403587546}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.403587546}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.403587546}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.52329205}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.52329205}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 10.52329205}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.036846268}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.036846268}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.036846268}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 546.2392735}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 546.2392735}, {"name": "Selenium IV", "categories": ["air"], "amount": 546.2392735}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09075e-05}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.09075e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.09075e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1553.337312}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1553.337312}, {"name": "Thallium I", "categories": ["air"], "amount": 1553.337312}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.537017575}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.537017575}, {"name": "Tin ion", "categories": ["air"], "amount": 2.537017575}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.04338e-05}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.04338e-05}, {"name": "Toluene", "categories": ["air"], "amount": 7.04338e-05}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1733.840782}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1733.840782}, {"name": "Vanadium V", "categories": ["air"], "amount": 1733.840782}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.78364688}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.78364688}, {"name": "Zinc II", "categories": ["air"], "amount": 17.78364688}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 9.980626326}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 9.980626326}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 9.980626326}, {"name": "Antimony ion", "categories": ["soil"], "amount": 9.980626326}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 114.754741}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 114.754741}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 114.754741}, {"name": "Barium II", "categories": ["soil"], "amount": 114.754741}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 45897.5345}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 45897.5345}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 45897.5345}, {"name": "Beryllium II", "categories": ["soil"], "amount": 45897.5345}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 776.1149557}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 776.1149557}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 776.1149557}, {"name": "Cadmium II", "categories": ["soil"], "amount": 776.1149557}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.254694777}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.254694777}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.254694777}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.254694777}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 21.01877911}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 21.01877911}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 21.01877911}, {"name": "Chromium VI", "categories": ["soil"], "amount": 21.01877911}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1712.622007}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1712.622007}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1712.622007}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1712.622007}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 594.650583}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 594.650583}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 594.650583}, {"name": "Copper ion", "categories": ["soil"], "amount": 594.650583}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.671884382}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 6.527796616}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 6.527796616}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 6.527796616}, {"name": "Lead II", "categories": ["soil"], "amount": 6.527796616}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 848.1277497}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 848.1277497}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 848.1277497}, {"name": "Mercury II", "categories": ["soil"], "amount": 848.1277497}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 262.0749706}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 262.0749706}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 262.0749706}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 262.0749706}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1690.253104}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1690.253104}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1690.253104}, {"name": "Nickel II", "categories": ["soil"], "amount": 1690.253104}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1463.367658}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1463.367658}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1463.367658}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1463.367658}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 4170.357612}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 4170.357612}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 4170.357612}, {"name": "Thallium I", "categories": ["soil"], "amount": 4170.357612}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 6.901545648}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 6.901545648}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 6.901545648}, {"name": "Tin ion", "categories": ["soil"], "amount": 6.901545648}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4654.224158}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 4654.224158}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 4654.224158}, {"name": "Vanadium V", "categories": ["soil"], "amount": 4654.224158}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 47.74504968}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 47.74504968}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 47.74504968}, {"name": "Zinc II", "categories": ["soil"], "amount": 47.74504968}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 27543.9258}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.117133035}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Acenaphthene", "categories": ["water"], "amount": 27543.9258}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 0.117133035}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 27543.9258}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.006036076}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 79.23967176}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 79.23967176}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 19.7471634}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.56984e-21}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 19.7471634}, {"name": "Antimony ion", "categories": ["water"], "amount": 19.7471634}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 227.7547418}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.40807e-19}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 227.7547418}, {"name": "Barium II", "categories": ["water"], "amount": 227.7547418}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.091442188}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.19439e-06}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.091442188}, {"name": "Benzene", "categories": ["water"], "amount": 0.091442188}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000258594}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.360324568}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.360324568}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.545523699}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.43815e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.545523699}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.545523699}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 91349.16197}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.5677e-16}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 91349.16197}, {"name": "Beryllium II", "categories": ["water"], "amount": 91349.16197}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.52612e-20}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1523.011325}, {"name": "Cadmium II", "categories": ["water"], "amount": 1523.011325}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 105.1696058}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.006529295}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 105.1696058}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 105.1696058}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.042349293}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 4.48297e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.042349293}, {"name": "Chloroform", "categories": ["water"], "amount": 0.042349293}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 27.65563759}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.53467e-22}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 27.65563759}, {"name": "Chromium VI", "categories": ["water"], "amount": 27.65563759}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 8.83668e-23}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 6.913909397}, {"name": "Chromium III", "categories": ["water"], "amount": 6.913909397}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 3407.831958}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.21543e-18}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 3407.831958}, {"name": "Cobalt II", "categories": ["water"], "amount": 3407.831958}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.10941e-20}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1157.306919}, {"name": "Copper ion", "categories": ["water"], "amount": 1157.306919}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.109593474}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 7.10351e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.109593474}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.109593474}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.022946375}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 8.82702e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.022946375}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.022946375}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 0.022490624}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.04966e-12}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 0.022490624}, {"name": "Ethylene", "categories": ["water"], "amount": 0.022490624}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 0.027866613}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.40913e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 0.027866613}, {"name": "Chloroethylene", "categories": ["water"], "amount": 0.027866613}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.696350599}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.000202109}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.696350599}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.696350599}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.096977306}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.55453e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.096977306}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.096977306}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 9.795451453}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.003778204}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 9.795451453}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 9.795451453}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 280.7343279}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.000212611}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 280.7343279}, {"name": "Formaldehyde", "categories": ["water"], "amount": 280.7343279}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 9.615718658}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 5.5714e-23}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 9.615718658}, {"name": "Lead II", "categories": ["water"], "amount": 9.615718658}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1717.144328}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 6.773349297}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1717.144328}, {"name": "Mercury II", "categories": ["water"], "amount": 1717.144328}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.01228851}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 5.01878e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.01228851}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.01228851}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.20840893}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000190563}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.20840893}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.20840893}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 476.1891468}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.58768e-19}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 476.1891468}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 476.1891468}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.59828717}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.2348e-06}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.59828717}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.59828717}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.09427e-19}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3237.610008}, {"name": "Nickel II", "categories": ["water"], "amount": 3237.610008}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.564623853}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.5123e-05}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.564623853}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.564623853}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 27543.9258}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.117133035}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 27543.9258}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 237.0076571}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.72839e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 237.0076571}, {"name": "Phenol", "categories": ["water"], "amount": 237.0076571}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 3.18725e-05}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 76.4086027}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 76.4086027}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.9224e-05}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 79.47660628}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 79.47660628}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 3.8217e-07}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 3.084748678}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 3.084748678}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00014339}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 2.770891361}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 2.770891361}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.964936638}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.000441224}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.964936638}, {"name": "Propylene oxide", "categories": ["water"], "amount": 3.964936638}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 2919.215918}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 7.37855e-18}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 2919.215918}, {"name": "Selenium IV", "categories": ["water"], "amount": 2919.215918}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.439672438}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.01252e-05}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.439672438}, {"name": "Styrene", "categories": ["water"], "amount": 0.439672438}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 8010.748812}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 7.89876e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 8010.748812}, {"name": "Thallium I", "categories": ["water"], "amount": 8010.748812}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 9.45727e-23}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 10.16626668}, {"name": "Tin ion", "categories": ["water"], "amount": 10.16626668}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.294514441}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 8.26905e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.294514441}, {"name": "Toluene", "categories": ["water"], "amount": 0.294514441}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 2.3929e-18}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 8965.69091}, {"name": "Vanadium V", "categories": ["water"], "amount": 8965.69091}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.7611e-21}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 91.71242268}, {"name": "Zinc II", "categories": ["water"], "amount": 91.71242268}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.633354816}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 519.1373278}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15909.97498}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 38.70264593}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.868972369}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 199339.4398}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 986.5000335}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 111.3634597}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1115.193351}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.19295282}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 360.8377327}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.93283786}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1466.6325}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 83602.82745}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3237.610008}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 231.4644637}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 17.26224344}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 4510.732407}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16.11900088}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 199339.4398}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 171.8260122}, {"name": "Anthracene", "categories": ["air"], "amount": 136.6120225}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 41.95943397}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 171.8260122}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 43.59828858}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 3877.313303}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 171.8260122}, {"name": "Fluorene", "categories": ["air"], "amount": 171.8260122}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 165.284645}, {"name": "Phenanthrene", "categories": ["air"], "amount": 1.26038299}, {"name": "Pyrene", "categories": ["air"], "amount": 171.8260122}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.310533909}, {"name": "Permethrin", "categories": ["water"], "amount": 5033760.13}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 83602.82745}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 51746.706}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 1169429.359}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 13151.73799}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 76813.73869}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 658.9115519}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 57270.20995}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 114823.123}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 251689.8554}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 57270.20995}, {"name": "Anthracene", "categories": ["water"], "amount": 57270.20995}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 16.70312979}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 1169429.359}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 1169429.359}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 9.112002017}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 76813.73869}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 76813.73869}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.000741658}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41402952}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.41402952}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41402952}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.41402952}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 172761006.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 172761006.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 172761006.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 133273.7576}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 27543.9258}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 251689.8554}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1368.227175}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1368.227175}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 4957.984372}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 4957.984372}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 4531.703764}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 4531.703764}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 38378.53316}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 27.18350061}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 27.18350061}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.058224124}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 135031.4275}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.099260671}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.012983861}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 5.306394539}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 5.306394539}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 50.70964583}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 50.70964583}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 491210.9319}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 491210.9319}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 123106.4602}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 491210.9319}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 3.81057e-05}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 0.213835093}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 199339.4398}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 6452.497435}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 74.08667954}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 755.4108063}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 30.85501588}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 94.94810336}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 350.2386357}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 254.956018}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.328300702}, {"name": "Glyphosate", "categories": ["water"], "amount": 1368.227175}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 152.987151}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 50.73202763}, {"name": "Acrolein", "categories": ["water"], "amount": 251473.5781}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 653735.0536}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 172.5578345}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 27083.51373}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1814.591747}, {"name": "Thiram", "categories": ["air"], "amount": 2703.849252}, {"name": "Dimethoate", "categories": ["air"], "amount": 12.51989401}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 97982.61947}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 48634.13547}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 49.60329639}, {"name": "Triallate", "categories": ["air"], "amount": 61.24233876}, {"name": "Ethylene", "categories": ["air"], "amount": 1.42593e-11}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.495763292}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 516.5336286}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 18508.73048}, {"name": "Fluoranthene", "categories": ["air"], "amount": 17.80093307}, {"name": "Chrysene", "categories": ["air"], "amount": 39.21597222}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 373.5251898}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["air"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 134.4097828}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 134.4097828}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 134.4097828}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 134.4097828}, {"name": "Arsenic ion", "categories": ["water"], "amount": 206.7462211}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 206.7462211}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.84676e-20}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 206.7462211}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 83602.82745}, {"name": "Bifenthrin", "categories": ["air"], "amount": 820.4307545}, {"name": "Bifenthrin", "categories": ["water"], "amount": 243975.0192}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 411.9497193}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 820.4307545}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 243975.0192}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 7944107.679}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7944107.679}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 688967.2267}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 7944107.679}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 688967.2267}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 83602.82745}, {"name": "Carbendazim", "categories": ["air"], "amount": 2984.253341}, {"name": "Diuron", "categories": ["air"], "amount": 530.4214428}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.534613272}, {"name": "Simazine", "categories": ["air"], "amount": 2102.507808}, {"name": "2,4-D", "categories": ["water"], "amount": 402.5031791}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 81.95312224}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 402.5031791}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 5637.495888}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 27142.89531}, {"name": "Simazine", "categories": ["water"], "amount": 27142.89531}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2102.507808}, {"name": "Carbendazim", "categories": ["water"], "amount": 38370.44685}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 6110.916654}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2984.253341}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 38370.44685}, {"name": "Acephate", "categories": ["water"], "amount": 1100.038327}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 159.4736929}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 1100.038327}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 372.4242025}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 372.4242025}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.749747191}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.534613272}, {"name": "Diuron", "categories": ["water"], "amount": 9418.481705}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1130.909622}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 530.4214428}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 2703.849252}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 155.3675579}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4384.96246}, {"name": "Trifluralin", "categories": ["water"], "amount": 27083.51373}, {"name": "Thiram", "categories": ["water"], "amount": 97982.61947}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 640742.9179}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1448.384406}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.671884382}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5809.442399}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 28448.1302}, {"name": "Metolachlor", "categories": ["water"], "amount": 38378.53316}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 928.8046855}, {"name": "Methomyl", "categories": ["water"], "amount": 135031.4275}, {"name": "Atrazine", "categories": ["water"], "amount": 4957.984372}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 640742.9179}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 135031.4275}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 13866.15252}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 38378.53316}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1893.703975}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 355.7691128}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.011362329}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.001288171}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.011362329}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.011362329}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.233298462}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["CML v4.8 2016 no LT", "ecotoxicity: marine no LT", "marine aquatic ecotoxicity (MAETP inf) no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.166268447}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 4260.507702}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 5484.758202}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.673347713}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 566.0364618}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.541179208}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1640.55123}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 32.25818735}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 33052.50793}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 33.87635225}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 0.141080873}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 779565.3252}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.005770347}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.035936153}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.002800786}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.114144105}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000795715}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2405.978834}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 173.9143878}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1367.099998}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 469829433.5}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 0.113669485}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.74475e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1105226.199}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 220265.8312}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 6.8803e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.007368271}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 30.42401718}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.970646634}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.529975423}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.08091629}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.059163653}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.65378751}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5242.324119}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 20969.29648}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 860.9360739}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 5435082.746}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 893429.8064}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 232741.9688}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 2.844134965}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 296.6379608}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 0.059689858}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 7.805477329}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.039430536}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 390.9612721}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 296410658}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 0.140914206}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 2.090980765}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.003645076}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 0.001353163}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.304302175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.081602129}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.92625e-11}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000129875}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.337578123}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.002682571}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 264.0185609}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.854460841}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 6.796509622}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.125470081}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.633649187}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.002800256}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 40746153.29}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 1.790669499}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 7048.834153}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.402646208}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 12.45284229}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.661495138}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.000617321}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.052923369}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.052923369}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1199665.677}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.001134192}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.032789743}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.998664245}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 4.106691015}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.003840259}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.151577694}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 440.1608248}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1945254.63}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000392614}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3757791.485}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.008423614}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1.977305823}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000914458}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 4260.507702}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.348160602}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 5.473259118}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.552763901}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.33998576}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 40.0189118}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.052669738}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.076518676}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.001724787}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.034863856}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 7.312514195}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.121878186}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 30.4102425}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 21196061.02}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 12.68754919}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.000509345}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 25632232.34}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.650328304}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 7505.452047}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1227.869894}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000699426}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.67350198}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.150987406}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 12207311.7}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 8579403.259}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 67254.71999}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 13846.76932}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4260.507702}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4260.507702}, {"name": "Acenaphthene", "categories": ["air"], "amount": 4260.507702}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 566.0364618}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 566.0364618}, {"name": "Acrolein", "categories": ["air"], "amount": 566.0364618}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 33052.50793}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33052.50793}, {"name": "Antimony ion", "categories": ["air"], "amount": 33052.50793}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 779565.3252}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 779565.3252}, {"name": "Barium II", "categories": ["air"], "amount": 779565.3252}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002800786}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002800786}, {"name": "Benzene", "categories": ["air"], "amount": 0.002800786}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000795715}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000795715}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000795715}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2405.978834}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2405.978834}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2405.978834}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 173.9143878}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 173.9143878}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 173.9143878}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1367.099998}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1367.099998}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1367.099998}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 469829433.5}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 469829433.5}, {"name": "Beryllium II", "categories": ["air"], "amount": 469829433.5}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74475e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74475e-06}, {"name": "Butadiene", "categories": ["air"], "amount": 2.74475e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1105226.199}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1105226.199}, {"name": "Cadmium II", "categories": ["air"], "amount": 1105226.199}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.529975423}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.529975423}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.529975423}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059163653}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059163653}, {"name": "Chloroform", "categories": ["air"], "amount": 0.059163653}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 5242.324119}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5242.324119}, {"name": "Chromium III", "categories": ["air"], "amount": 5242.324119}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 20969.29648}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20969.29648}, {"name": "Chromium VI", "categories": ["air"], "amount": 20969.29648}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5435082.746}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5435082.746}, {"name": "Cobalt II", "categories": ["air"], "amount": 5435082.746}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 893429.8064}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 893429.8064}, {"name": "Copper ion", "categories": ["air"], "amount": 893429.8064}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 296410658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 296410658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 296410658}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.304302175}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.304302175}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.304302175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.081602129}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.081602129}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.081602129}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92625e-11}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.92625e-11}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000129875}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000129875}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.000129875}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.337578123}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.337578123}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.337578123}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002682571}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002682571}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.854460841}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.854460841}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.854460841}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.633649187}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.633649187}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.633649187}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 40746153.29}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40746153.29}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 40746153.29}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7048.834153}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7048.834153}, {"name": "Lead II", "categories": ["air"], "amount": 7048.834153}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1199665.677}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1199665.677}, {"name": "Mercury II", "categories": ["air"], "amount": 1199665.677}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.106691015}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.106691015}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 4.106691015}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003840259}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003840259}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.003840259}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.151577694}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.151577694}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.151577694}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1945254.63}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1945254.63}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1945254.63}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000392614}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000392614}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.000392614}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3757791.485}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3757791.485}, {"name": "Nickel II", "categories": ["air"], "amount": 3757791.485}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000914458}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000914458}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.000914458}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 4260.507702}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4260.507702}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 4260.507702}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.552763901}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.552763901}, {"name": "Phenol", "categories": ["air"], "amount": 0.552763901}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33998576}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.33998576}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.33998576}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.0189118}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.0189118}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 40.0189118}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.121878186}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.121878186}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.121878186}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 21196061.02}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 21196061.02}, {"name": "Selenium IV", "categories": ["air"], "amount": 21196061.02}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000509345}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000509345}, {"name": "Styrene", "categories": ["air"], "amount": 0.000509345}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 25632232.34}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25632232.34}, {"name": "Thallium I", "categories": ["air"], "amount": 25632232.34}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7505.452047}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7505.452047}, {"name": "Tin ion", "categories": ["air"], "amount": 7505.452047}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000699426}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000699426}, {"name": "Toluene", "categories": ["air"], "amount": 0.000699426}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 12207311.7}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12207311.7}, {"name": "Vanadium V", "categories": ["air"], "amount": 12207311.7}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 67254.71999}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67254.71999}, {"name": "Zinc II", "categories": ["air"], "amount": 67254.71999}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 13699.32049}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 13699.32049}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 13699.32049}, {"name": "Antimony ion", "categories": ["soil"], "amount": 13699.32049}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 419874.7663}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 419874.7663}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 419874.7663}, {"name": "Barium II", "categories": ["soil"], "amount": 419874.7663}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 271059202.2}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 271059202.2}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 271059202.2}, {"name": "Beryllium II", "categories": ["soil"], "amount": 271059202.2}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 112245.7876}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 112245.7876}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 112245.7876}, {"name": "Cadmium II", "categories": ["soil"], "amount": 112245.7876}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 654.3268115}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 654.3268115}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 654.3268115}, {"name": "Chromium III", "categories": ["soil"], "amount": 654.3268115}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 2617.307246}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2617.307246}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2617.307246}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2617.307246}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2203266.179}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2203266.179}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2203266.179}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2203266.179}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 119588.1103}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 119588.1103}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 119588.1103}, {"name": "Copper ion", "categories": ["soil"], "amount": 119588.1103}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.011156382}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 753.3606976}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 753.3606977}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 753.3606977}, {"name": "Lead II", "categories": ["soil"], "amount": 753.3606977}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 165517.2757}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 165517.2757}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 165517.2757}, {"name": "Mercury II", "categories": ["soil"], "amount": 165517.2757}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1150000.353}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1150000.353}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1150000.353}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1150000.353}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1174636.474}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1174636.474}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1174636.474}, {"name": "Nickel II", "categories": ["soil"], "amount": 1174636.474}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 12706802.13}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 12706802.13}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 12706802.13}, {"name": "Selenium IV", "categories": ["soil"], "amount": 12706802.13}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 13837686.72}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 13837686.72}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 13837686.72}, {"name": "Thallium I", "categories": ["soil"], "amount": 13837686.72}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 833.5606756}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 833.5606756}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 833.5606756}, {"name": "Tin ion", "categories": ["soil"], "amount": 833.5606756}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4453696.464}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 4453696.464}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 4453696.464}, {"name": "Vanadium V", "categories": ["soil"], "amount": 4453696.464}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 7208.562045}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 7208.562045}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 7208.562045}, {"name": "Zinc II", "categories": ["soil"], "amount": 7208.562045}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 5484.758202}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 23737.83848}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Acenaphthene", "categories": ["water"], "amount": 5484.758202}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 23737.83848}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 5484.758202}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 3.129479467}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.541179208}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.541179208}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 27104.78394}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 48723.01979}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 27104.78394}, {"name": "Antimony ion", "categories": ["water"], "amount": 27104.78394}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 833329.134}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1086641.338}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 833329.134}, {"name": "Barium II", "categories": ["water"], "amount": 833329.134}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.00265539}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.015174218}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00265539}, {"name": "Benzene", "categories": ["water"], "amount": 0.00265539}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.350958141}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.114144105}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.114144105}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.001358689}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.061621478}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.001358689}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.001358689}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 539484990.5}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 643371294.1}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 539484990.5}, {"name": "Beryllium II", "categories": ["water"], "amount": 539484990.5}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1848053.818}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 220265.8312}, {"name": "Cadmium II", "categories": ["water"], "amount": 220265.8312}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 1.794912375}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 29.72565952}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 1.794912375}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.794912375}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.058164962}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.056452223}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.058164962}, {"name": "Chloroform", "categories": ["water"], "amount": 0.058164962}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3443.744296}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 32873.05623}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3443.744296}, {"name": "Chromium VI", "categories": ["water"], "amount": 3443.744296}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 8218.264057}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 860.9360739}, {"name": "Chromium III", "categories": ["water"], "amount": 860.9360739}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4384131.971}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 8048980.529}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4384131.971}, {"name": "Cobalt II", "categories": ["water"], "amount": 4384131.971}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1475564.328}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 232741.9688}, {"name": "Copper ion", "categories": ["water"], "amount": 232741.9688}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.300877436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.269785602}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.300877436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.300877436}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.081452672}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.09060469}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.081452672}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.081452672}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 2.77811e-05}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 0.002584756}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 2.77811e-05}, {"name": "Ethylene", "categories": ["water"], "amount": 2.77811e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 0.000377217}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.019525441}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 0.000377217}, {"name": "Chloroethylene", "categories": ["water"], "amount": 0.000377217}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.336718811}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.648268219}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.336718811}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.336718811}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.003334904}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.056669202}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.003334904}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.003334904}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.627275329}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.736651015}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.627275329}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.627275329}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.189875093}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 5.647157935}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.189875093}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.189875093}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1109.731957}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 11304.99376}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1109.731957}, {"name": "Lead II", "categories": ["water"], "amount": 1109.731957}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 214326.8839}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1875335.379}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 214326.8839}, {"name": "Mercury II", "categories": ["water"], "amount": 214326.8839}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.003539819}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.003244141}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.003539819}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.003539819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.145521766}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.111408081}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.145521766}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.145521766}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2089545.925}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2620221.279}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2089545.925}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2089545.925}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.002122398}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.141496158}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.002122398}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.002122398}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 5766615.509}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2249967.65}, {"name": "Nickel II", "categories": ["water"], "amount": 2249967.65}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.002508141}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.131442012}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.002508141}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.002508141}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5484.758202}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 23737.83848}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 5484.758202}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.056287221}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 4.658646236}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.056287221}, {"name": "Phenol", "categories": ["water"], "amount": 0.056287221}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 1.576270043}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.052669738}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.052669738}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 1.673049608}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.076518676}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.076518676}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.051854268}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.001724787}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.001724787}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 2.480774389}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.034863856}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.034863856}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.057709568}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.144919185}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.057709568}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.057709568}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 25348311.37}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 28720844.53}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 25348311.37}, {"name": "Selenium IV", "categories": ["water"], "amount": 25348311.37}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.002231707}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.124595041}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.002231707}, {"name": "Styrene", "categories": ["water"], "amount": 0.002231707}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 26580510.06}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 35584562.31}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 26580510.06}, {"name": "Thallium I", "categories": ["water"], "amount": 26580510.06}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 12027.03239}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1227.869894}, {"name": "Tin ion", "categories": ["water"], "amount": 1227.869894}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.001236583}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.050902141}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.001236583}, {"name": "Toluene", "categories": ["water"], "amount": 0.001236583}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 18333506.76}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 8579403.259}, {"name": "Vanadium V", "categories": ["water"], "amount": 8579403.259}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 111954.7668}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 13846.76932}, {"name": "Zinc II", "categories": ["water"], "amount": 13846.76932}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.619648147}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 62.05496427}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 30906.51545}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.281333499}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 104.431918}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 296.6379608}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 724.2192353}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.77078953}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 5.857365918}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.41221915}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 278.7568027}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.80881645}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 380.4114192}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 18975.08232}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2249967.65}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 47.88518145}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.042278305}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 707.743079}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.085432048}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 296.6379608}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4260.507702}, {"name": "Anthracene", "categories": ["air"], "amount": 1699.044661}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1018.752889}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 4260.507702}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 1656.938866}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 118520.4269}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 4260.507702}, {"name": "Fluorene", "categories": ["air"], "amount": 4260.507702}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 7276.503979}, {"name": "Phenanthrene", "categories": ["air"], "amount": 7.27368542}, {"name": "Pyrene", "categories": ["air"], "amount": 4260.507702}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.026797867}, {"name": "Permethrin", "categories": ["water"], "amount": 26768.50225}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 18975.08232}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 9056.071685}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 435324.2829}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 867.8601037}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 14519.96574}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.06087036}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 3022.686823}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 8306.18003}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 12122.77648}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 3022.686823}, {"name": "Anthracene", "categories": ["water"], "amount": 3022.686823}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 17693.05209}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 435324.2829}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 435324.2829}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 1475670.997}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 14519.96574}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 14519.96574}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 110121.093}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.905855614}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.905855614}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.905855614}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.905855614}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 44689724.99}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 44689724.99}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 44689724.99}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 502939102}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 5484.758202}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 12122.77648}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.15710571}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.15710571}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 484.3155375}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 484.3155375}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.416176522}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.416176522}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 582.3304636}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 0.036252362}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 0.036252362}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.283757033}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 4206.783074}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.061594649}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 3.59023e-05}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.014672826}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.014672826}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.219884162}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.219884162}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 177778.5123}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 177778.5123}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 44554.55269}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 177778.5123}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.002682571}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 5.0248e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 296.6379608}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 253.7255274}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 0.040927385}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.271818895}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 0.02556258}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 14.23852026}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 0.342412195}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 0.677124279}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.005900367}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.15710571}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 2387.046086}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 171.7339388}, {"name": "Acrolein", "categories": ["water"], "amount": 1080.499342}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 982.0954895}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.752136595}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 422.9033701}, {"name": "Deltamethrin", "categories": ["air"], "amount": 3511.491188}, {"name": "Thiram", "categories": ["air"], "amount": 218.3898935}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.626953421}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 74.38893597}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 780.1600572}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.84496147}, {"name": "Triallate", "categories": ["air"], "amount": 148.5832596}, {"name": "Ethylene", "categories": ["air"], "amount": 7.92625e-11}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.912492033}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 10.46793179}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 2979.888479}, {"name": "Fluoranthene", "categories": ["air"], "amount": 199.9548986}, {"name": "Chrysene", "categories": ["air"], "amount": 413.5266606}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.487440895}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["air"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 77078.25934}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 77078.25934}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 77078.25934}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 77078.25934}, {"name": "Arsenic ion", "categories": ["water"], "amount": 118560.1116}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 118560.1116}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 342656.1385}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 118560.1116}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 18975.08232}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1019.099725}, {"name": "Bifenthrin", "categories": ["water"], "amount": 212.9292696}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 0.453803099}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1019.099725}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 212.9292696}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 10049.92574}, {"name": "Cypermethrin", "categories": ["water"], "amount": 10049.92574}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1025.25538}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 10049.92574}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1025.25538}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 18975.08232}, {"name": "Carbendazim", "categories": ["air"], "amount": 718.5857249}, {"name": "Diuron", "categories": ["air"], "amount": 113.0184131}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 50.6043711}, {"name": "Simazine", "categories": ["air"], "amount": 275.1322673}, {"name": "2,4-D", "categories": ["water"], "amount": 2.268953866}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.4619809}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 2.268953866}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 30.66500492}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 143.743963}, {"name": "Simazine", "categories": ["water"], "amount": 143.743963}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 275.1322673}, {"name": "Carbendazim", "categories": ["water"], "amount": 581.7791703}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 92.65499302}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 718.5857249}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 581.7791703}, {"name": "Acephate", "categories": ["water"], "amount": 14.53877309}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 2.107707778}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 14.53877309}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 39.72920839}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 39.72920839}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 5.973704191}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.6043711}, {"name": "Diuron", "categories": ["water"], "amount": 54.66291684}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.844659219}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 113.0184131}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 218.3898935}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.496648719}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.157912353}, {"name": "Trifluralin", "categories": ["water"], "amount": 422.9033701}, {"name": "Thiram", "categories": ["water"], "amount": 74.38893597}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 239.5760275}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 0.584486595}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.011156382}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 91.31733999}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 886.9604635}, {"name": "Metolachlor", "categories": ["water"], "amount": 582.3304636}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 91.30813498}, {"name": "Methomyl", "categories": ["water"], "amount": 4206.783074}, {"name": "Atrazine", "categories": ["water"], "amount": 484.3155375}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 239.5760275}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 4206.783074}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3890.877234}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 582.3304636}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 29.76671388}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 0.143568431}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.659224841}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.947615996}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.659224841}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.659224841}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.18883e-05}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["CML v4.8 2016 no LT", "ecotoxicity: terrestrial no LT", "terrestrial ecotoxicity (TETP inf) no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.57851244}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.019197865}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 0.002117132}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.686908257}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 16.3291159}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.003851263}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4220.13516}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 20.44124316}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.610706495}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 6.589018491}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 0.972861498}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.859760308}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.490183413}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.594972359}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.55771e-05}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.000716486}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.43178e-06}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.260630905}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.039152073}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.241153066}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1766.961648}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 83.31013088}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.32408e-08}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 81.2492588}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.41506e-20}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.04096702}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.107050434}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 49.38152623}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 7.50168812}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.005142978}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.896431354}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.01912e-05}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.677825069}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3031.119801}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.27196e-19}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 108.7097487}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 6.991272773}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 4.0632e-21}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 69.02741802}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 89744.2628}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 8.544692429}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 11.53865332}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.804877405}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 588.2692621}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 11991.58892}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 11.4875777}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 22.66603011}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.516636803}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2.745601943}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000178048}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.64203e-05}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.34791e-12}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.61477e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008113672}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.72388e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 271.483092}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.002523741}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 11.54793215}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 11.54811747}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.939745149}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.096342491}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.002949857}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 6.439093707}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 15.66983733}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 23.44629566}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 20.70611846}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.075688031}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.094486765}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 4.726490856}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 4.726490856}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 28312.6357}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.04161199}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.173846406}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.088504744}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.012770435}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 4.27196e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.00047115}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 304.597033}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 17.53812242}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.50812e-07}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 116.0434782}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5.865380501}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 92.25673286}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.26837e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.019197865}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 17.16341161}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 251.2313155}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.003314907}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.030416826}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.252814177}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 6.56524e-06}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.26928e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.00036558}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.30169e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 120.4248996}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00150898}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.693729029}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 53.4729737}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 29.33138885}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.35979e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 339.8323841}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 50.7618752}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 14.36401755}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 7.86268e-22}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.59178e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1879.533466}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 35.16705282}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 665.2345714}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.02117e-17}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 11.96305468}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.5338e-21}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.019197865}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.019197865}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.019197865}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.3291159}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.3291159}, {"name": "Acrolein", "categories": ["air"], "amount": 16.3291159}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.610706495}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.610706495}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.610706495}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.859760308}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.859760308}, {"name": "Barium II", "categories": ["air"], "amount": 4.859760308}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55771e-05}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55771e-05}, {"name": "Benzene", "categories": ["air"], "amount": 1.55771e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43178e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43178e-06}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.43178e-06}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.260630905}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.260630905}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.260630905}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.039152073}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.039152073}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.039152073}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.241153066}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.241153066}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.241153066}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1766.961648}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1766.961648}, {"name": "Beryllium II", "categories": ["air"], "amount": 1766.961648}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.32408e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.32408e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 2.32408e-08}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 81.2492588}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 81.2492588}, {"name": "Cadmium II", "categories": ["air"], "amount": 81.2492588}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.005142978}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.005142978}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.005142978}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.01912e-05}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.01912e-05}, {"name": "Chloroform", "categories": ["air"], "amount": 4.01912e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3031.119801}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3031.119801}, {"name": "Chromium III", "categories": ["air"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air"], "amount": 3031.119801}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 108.7097487}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 108.7097487}, {"name": "Cobalt II", "categories": ["air"], "amount": 108.7097487}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.991272773}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.991272773}, {"name": "Copper ion", "categories": ["air"], "amount": 6.991272773}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11991.58892}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11991.58892}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 11991.58892}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000178048}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000178048}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000178048}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64203e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64203e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.64203e-05}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34791e-12}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.34791e-12}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.61477e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.61477e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.61477e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008113672}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008113672}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.008113672}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.72388e-06}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.72388e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002523741}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002523741}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.002523741}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.939745149}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.939745149}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.939745149}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002949857}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002949857}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.002949857}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.66983733}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.66983733}, {"name": "Lead II", "categories": ["air"], "amount": 15.66983733}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 28312.6357}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28312.6357}, {"name": "Mercury II", "categories": ["air"], "amount": 28312.6357}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.012770435}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.012770435}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.012770435}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.27196e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.27196e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 4.27196e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00047115}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00047115}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.00047115}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.53812242}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.53812242}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 17.53812242}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.50812e-07}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.50812e-07}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.50812e-07}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.0434782}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.0434782}, {"name": "Nickel II", "categories": ["air"], "amount": 116.0434782}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26837e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26837e-06}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.26837e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.019197865}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.019197865}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.019197865}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003314907}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003314907}, {"name": "Phenol", "categories": ["air"], "amount": 0.003314907}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.030416826}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.030416826}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.030416826}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.252814177}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.252814177}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 2.252814177}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00150898}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00150898}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.00150898}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 53.4729737}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53.4729737}, {"name": "Selenium IV", "categories": ["air"], "amount": 53.4729737}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35979e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35979e-07}, {"name": "Styrene", "categories": ["air"], "amount": 1.35979e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 339.8323841}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 339.8323841}, {"name": "Thallium I", "categories": ["air"], "amount": 339.8323841}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.36401755}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.36401755}, {"name": "Tin ion", "categories": ["air"], "amount": 14.36401755}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.59178e-05}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.59178e-05}, {"name": "Toluene", "categories": ["air"], "amount": 1.59178e-05}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 665.2345714}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 665.2345714}, {"name": "Vanadium V", "categories": ["air"], "amount": 665.2345714}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.96305468}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.96305468}, {"name": "Zinc II", "categories": ["air"], "amount": 11.96305468}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.253223943}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.253223943}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.253223943}, {"name": "Antimony ion", "categories": ["soil"], "amount": 1.253223943}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9.97088385}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 9.97088385}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 9.97088385}, {"name": "Barium II", "categories": ["soil"], "amount": 9.97088385}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3624.728815}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3624.728815}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3624.728815}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3624.728815}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 166.8079461}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 166.8079461}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 166.8079461}, {"name": "Cadmium II", "categories": ["soil"], "amount": 166.8079461}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 6302.861689}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6302.861689}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6302.861689}, {"name": "Chromium III", "categories": ["soil"], "amount": 6302.861689}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 6302.861689}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6302.861689}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6302.861689}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6302.861689}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 223.0091107}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 223.0091107}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 223.0091107}, {"name": "Cobalt II", "categories": ["soil"], "amount": 223.0091107}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 14.35989027}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 14.35989027}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 14.35989027}, {"name": "Copper ion", "categories": ["soil"], "amount": 14.35989027}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.095958223}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 32.51821421}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 32.51821421}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 32.51821421}, {"name": "Lead II", "categories": ["soil"], "amount": 32.51821421}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 55994.13828}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 55994.13828}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 55994.13828}, {"name": "Mercury II", "categories": ["soil"], "amount": 55994.13828}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 36.14502748}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 36.14502748}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 36.14502748}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 36.14502748}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 238.5519273}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 238.5519274}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 238.5519274}, {"name": "Nickel II", "categories": ["soil"], "amount": 238.5519274}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 109.6792964}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 109.6792964}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 109.6792964}, {"name": "Selenium IV", "categories": ["soil"], "amount": 109.6792964}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 698.4945098}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 698.4945098}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 698.4945098}, {"name": "Thallium I", "categories": ["soil"], "amount": 698.4945098}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 29.80836303}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 29.80836303}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 29.80836303}, {"name": "Tin ion", "categories": ["soil"], "amount": 29.80836303}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1367.124462}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1367.124462}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1367.124462}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1367.124462}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 24.58896916}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 24.58896916}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 24.58896916}, {"name": "Zinc II", "categories": ["soil"], "amount": 24.58896916}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 0.002117132}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.000814222}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.002117132}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 0.000814222}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 0.002117132}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.00011682}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.003851263}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.003851263}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 1.65527e-20}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 2.95793e-20}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1.65527e-20}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.65527e-20}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 5.08404e-19}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 6.61473e-19}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 5.08404e-19}, {"name": "Barium II", "categories": ["water"], "amount": 5.08404e-19}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.37489e-05}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.71474e-06}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.37489e-05}, {"name": "Benzene", "categories": ["water"], "amount": 1.37489e-05}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000410059}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.000716486}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.000716486}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1.18734e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.03112e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1.18734e-06}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 1.18734e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.29791e-16}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.92755e-16}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.29791e-16}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.29791e-16}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.12511e-19}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.41506e-20}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.41506e-20}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.004805763}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.001022648}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.004805763}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.004805763}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.92432e-05}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.91233e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.92432e-05}, {"name": "Chloroform", "categories": ["water"], "amount": 3.92432e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.27196e-19}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 2.04903e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.27196e-19}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.27196e-19}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.04903e-18}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.27196e-19}, {"name": "Chromium III", "categories": ["water"], "amount": 2.27196e-19}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.69481e-18}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 4.91636e-18}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.69481e-18}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.69481e-18}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.47671e-20}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 4.0632e-21}, {"name": "Copper ion", "categories": ["water"], "amount": 4.0632e-21}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.000175355}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.000104507}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.000175355}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.000175355}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.62095e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.02926e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.62095e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 2.62095e-05}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 1.12337e-12}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.93462e-14}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 1.12337e-12}, {"name": "Ethylene", "categories": ["water"], "amount": 1.12337e-12}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.56142e-07}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.30672e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.56142e-07}, {"name": "Chloroethylene", "categories": ["water"], "amount": 2.56142e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.007943515}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.004009301}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.007943515}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.007943515}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.59242e-06}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.94708e-06}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.59242e-06}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 4.59242e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.001757229}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 9.6932e-05}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.001757229}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.001757229}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.001560067}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.42154e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.001560067}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.001560067}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.77422e-22}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 4.56635e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.77422e-22}, {"name": "Lead II", "categories": ["water"], "amount": 4.77422e-22}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 930.3282657}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7642.71941}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 930.3282657}, {"name": "Mercury II", "categories": ["water"], "amount": 930.3282657}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 3.8969e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 6.45675e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 3.8969e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 3.8969e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000467436}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000358658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000467436}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000467436}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.31009e-18}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.89143e-18}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.31009e-18}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.31009e-18}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 5.98822e-07}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 1.0799e-07}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 5.98822e-07}, {"name": "m-Xylene", "categories": ["water"], "amount": 5.98822e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.60828e-18}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.02958e-18}, {"name": "Nickel II", "categories": ["water"], "amount": 1.02958e-18}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.16564e-06}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 2.06792e-07}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.16564e-06}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.16564e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 0.002117132}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.000814222}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.002117132}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 2.48776e-06}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 3.78042e-08}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 2.48776e-06}, {"name": "Phenol", "categories": ["water"], "amount": 2.48776e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 1.0451e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 6.56524e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 6.56524e-06}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.05932e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.26928e-05}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.26928e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 4.74435e-06}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.00036558}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.00036558}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 8.82537e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.30169e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.30169e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.000647466}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.80926e-05}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.000647466}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.000647466}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.55254e-17}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.75745e-17}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.55254e-17}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.55254e-17}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.26503e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.71653e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.26503e-07}, {"name": "Styrene", "categories": ["water"], "amount": 1.26503e-07}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.13184e-17}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.18247e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.13184e-17}, {"name": "Thallium I", "categories": ["water"], "amount": 3.13184e-17}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 7.24832e-21}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 7.86268e-22}, {"name": "Tin ion", "categories": ["water"], "amount": 7.86268e-22}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.41614e-05}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.8729e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.41614e-05}, {"name": "Toluene", "categories": ["water"], "amount": 1.41614e-05}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 2.16377e-17}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.02117e-17}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.02117e-17}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.94558e-20}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.5338e-21}, {"name": "Zinc II", "categories": ["water"], "amount": 2.5338e-21}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.253138655}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.126483729}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.44037674}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.596861512}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.016707204}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 89744.2628}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.663267175}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.063006827}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 80.85467582}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.689752657}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.984006513}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.046591303}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.112568797}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8917.249644}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.02958e-18}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 6.277859761}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 2.489601068}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 105.652796}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1.314098078}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 89744.2628}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 1.019197865}, {"name": "Anthracene", "categories": ["air"], "amount": 0.03165522}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.230183862}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 1.019197865}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 0.203597118}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 29.73408185}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.019197865}, {"name": "Fluorene", "categories": ["air"], "amount": 1.019197865}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.802815412}, {"name": "Phenanthrene", "categories": ["air"], "amount": 0.00013547}, {"name": "Pyrene", "categories": ["air"], "amount": 1.019197865}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4.794461775}, {"name": "Permethrin", "categories": ["water"], "amount": 0.390269878}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8917.249644}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 0.000434591}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.206463693}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 0.004935323}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 6.19698e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.000491331}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.019730523}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.013964808}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.002531442}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.019730523}, {"name": "Anthracene", "categories": ["water"], "amount": 0.019730523}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.004031554}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.206463693}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.206463693}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.087717724}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 6.19698e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 6.19698e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 4.06739e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008002759}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.008002759}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008002759}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.008002759}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 587.3381951}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 587.3381951}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 587.3381951}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 830.0602948}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.002117132}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.002531442}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.24704e-11}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.24704e-11}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 0.000762269}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 0.000762269}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.58839e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.58839e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 0.000213114}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.35214e-11}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.35214e-11}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.042760823}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 0.00216456}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000680873}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.001418673}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 6.07759e-12}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 6.07759e-12}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.83073e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.83073e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 26909.24466}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 26909.24466}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26972.99909}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 26909.24466}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 4.72388e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 0.225852834}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 89744.2628}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 634.332364}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 200.3452311}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 83.00538627}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 16.02197304}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.168548893}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 86.81610585}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 29.8896806}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.807119009}, {"name": "Glyphosate", "categories": ["water"], "amount": 2.24704e-11}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.258001228}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.038407254}, {"name": "Acrolein", "categories": ["water"], "amount": 5.837651345}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 0.031755535}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.22042e-05}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 0.01347489}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.764819509}, {"name": "Thiram", "categories": ["air"], "amount": 31.57040007}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.303757155}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 0.092878258}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 0.002660134}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.312798883}, {"name": "Triallate", "categories": ["air"], "amount": 0.006883873}, {"name": "Ethylene", "categories": ["air"], "amount": 1.34791e-12}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.000819184}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 6.04813e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.008369001}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.018210122}, {"name": "Chrysene", "categories": ["air"], "amount": 0.215190847}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 15.77051225}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 3335.673763}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 3335.673763}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 3335.673763}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3335.673763}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.0385e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.0385e-17}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.96079e-17}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.0385e-17}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 8917.249644}, {"name": "Bifenthrin", "categories": ["air"], "amount": 8.78153598}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.02102326}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 83.15047122}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.78153598}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.02102326}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 15.78326675}, {"name": "Cypermethrin", "categories": ["water"], "amount": 15.78326675}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 77600.1715}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 15.78326675}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 77600.1715}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8917.249644}, {"name": "Carbendazim", "categories": ["air"], "amount": 19.81889052}, {"name": "Diuron", "categories": ["air"], "amount": 8.735349275}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 0.007067536}, {"name": "Simazine", "categories": ["air"], "amount": 8.762236893}, {"name": "2,4-D", "categories": ["water"], "amount": 9.25695e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.096478878}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 9.25695e-10}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 20.66324254}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 0.00100887}, {"name": "Simazine", "categories": ["water"], "amount": 0.00100887}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.762236893}, {"name": "Carbendazim", "categories": ["water"], "amount": 6.2678e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 37.59722245}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.81889052}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6.2678e-08}, {"name": "Acephate", "categories": ["water"], "amount": 2.18433e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.320086974}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.18433e-08}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 0.005462096}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 0.005462096}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.612724082}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007067536}, {"name": "Diuron", "categories": ["water"], "amount": 0.001676646}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 18.56576338}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.735349275}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.57040007}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 34.34774662}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 81.23108427}, {"name": "Trifluralin", "categories": ["water"], "amount": 0.01347489}, {"name": "Thiram", "categories": ["water"], "amount": 0.092878258}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.021307616}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 16.98380089}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.095958223}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 0.413157136}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 222.8364451}, {"name": "Metolachlor", "categories": ["water"], "amount": 0.000213114}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 4.443547838}, {"name": "Methomyl", "categories": ["water"], "amount": 0.00216456}, {"name": "Atrazine", "categories": ["water"], "amount": 0.000762269}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.021307616}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 0.00216456}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 118.9485519}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 0.000213114}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.537701937}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 16.68693885}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.000515628}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.000239843}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.000515628}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.000515628}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.144899733}]}, {"unit": "megajoule", "name": ["CML v4.8 2016 no LT", "energy resources: non-renewable no LT", "abiotic depletion potential (ADP): fossil fuels no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}]}, {"unit": "kg PO4-Eq", "name": ["CML v4.8 2016 no LT", "eutrophication no LT", "eutrophication (fate not incl.) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.35}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.022}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.1}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.42}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 0.97}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 3.06}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35}, {"name": "Ammonia", "categories": ["air"], "amount": 0.35}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Nitrate", "categories": ["air"], "amount": 0.1}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.97}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.97}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 0.97}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["air"], "amount": 3.06}, {"name": "Nitrogen", "categories": ["soil", "forestry"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["soil", "industrial"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["soil"], "amount": 0.42}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil"], "amount": 3.06}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.33}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Ammonium", "categories": ["water"], "amount": 0.33}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 0.022}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.022}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 0.022}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.1}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.1}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.1}, {"name": "Nitrate", "categories": ["water"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water"], "amount": 0.1}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.42}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 1}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphate", "categories": ["water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["water"], "amount": 3.06}, {"name": "Nitrate", "categories": ["soil"], "amount": 0.1}, {"name": "Nitrogen", "categories": ["air"], "amount": 0.42}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.2}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.97}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 1}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.1}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 0.35}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.27}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.13}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.13}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.1}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["CML v4.8 2016 no LT", "human toxicity no LT", "human toxicity (HTP inf) no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 46.95248552}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 572399.6238}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 280468.7123}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 21.6158398}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 56.90600399}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 7065.337009}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 506.5604567}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4669.038981}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 6707.542439}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 21.29570277}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 38.96120538}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 756.4636536}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.428415284}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 15.08444889}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1899.909223}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.101492617}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.973210461}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 3157103.03}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 409.4755204}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 226630.8493}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 28.59462036}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2224.391497}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 145040.5399}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 22.89077835}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.097484578}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 20.96550871}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 141.1897573}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1423.264744}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.41434511}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 2.176965739}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 12.66010972}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.940444523}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 646.8397982}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3425330.245}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.0522661}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 17470.22468}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 4295.027793}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.339256586}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 24.45949255}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 5203.22925}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 0.159576856}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 117.0824573}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 317.7014202}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 561.75174}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1933982792}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 168.3598988}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1269.59515}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 276.4234481}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 0.263478527}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 16.44430059}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 6.807735251}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.636745223}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 84.3427304}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.528467685}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 34.40934674}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 5675.883451}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 14074.62877}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 71.68935956}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 87.9434291}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.830667251}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.014873106}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 2850.61598}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 0.22}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 960.5245308}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 466.517307}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 488.9721488}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 168.9280705}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.025679269}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 104.2537922}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 743.5060416}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 743.5060416}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6008.157802}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 6.462060062}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 49.07942564}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 50.83126765}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 350.9998319}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.975109844}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 220.43152129999999}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 43.32398112}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 5426.282198}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.02714893}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 35032.83874}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 10.09682066}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 611.4515635}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.12474733}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 572399.6238}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.915905394}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 11.33104861}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.518172944}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 95.31928284}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 5.079340246}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.086137019}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.536966302}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 7.153902703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 6.341172176}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 26.08302291}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1262.37464}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 72.47340019}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 47687.15468}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 205.5657513}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.047384819}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.096}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 432190.2296}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 7.913637413}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.734086071}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 0.017319702}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.32691844}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 32.56742982}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 124.8288183}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 6240.349576}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 3163.049164}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 104.4419271}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.583947274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 572399.6238}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 572399.6238}, {"name": "Acenaphthene", "categories": ["air"], "amount": 572399.6238}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 56.90600399}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 56.90600399}, {"name": "Acrolein", "categories": ["air"], "amount": 56.90600399}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Ammonia", "categories": ["air"], "amount": 0.1}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6707.542439}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6707.542439}, {"name": "Antimony ion", "categories": ["air"], "amount": 6707.542439}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 756.4636536}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 756.4636536}, {"name": "Barium II", "categories": ["air"], "amount": 756.4636536}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1899.909223}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1899.909223}, {"name": "Benzene", "categories": ["air"], "amount": 1899.909223}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.973210461}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.973210461}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.973210461}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3157103.03}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3157103.03}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 3157103.03}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 409.4755204}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 409.4755204}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 409.4755204}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 226630.8493}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 226630.8493}, {"name": "Beryllium II", "categories": ["air"], "amount": 226630.8493}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2224.391497}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2224.391497}, {"name": "Butadiene", "categories": ["air"], "amount": 2224.391497}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 145040.5399}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 145040.5399}, {"name": "Cadmium II", "categories": ["air"], "amount": 145040.5399}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.41434511}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.41434511}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.41434511}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.66010972}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.66010972}, {"name": "Chloroform", "categories": ["air"], "amount": 12.66010972}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 646.8397982}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 646.8397982}, {"name": "Chromium III", "categories": ["air"], "amount": 646.8397982}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 3425330.245}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3425330.245}, {"name": "Chromium VI", "categories": ["air"], "amount": 3425330.245}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 17470.22468}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17470.22468}, {"name": "Cobalt II", "categories": ["air"], "amount": 17470.22468}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4295.027793}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4295.027793}, {"name": "Copper ion", "categories": ["air"], "amount": 4295.027793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1933982792}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1933982792}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1933982792}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.44430059}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.44430059}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 16.44430059}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.807735251}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.807735251}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 6.807735251}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.636745223}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.636745223}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.3427304}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84.3427304}, {"name": "Chloroethylene", "categories": ["air"], "amount": 84.3427304}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.528467685}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.528467685}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.528467685}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.40934674}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.40934674}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14074.62877}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14074.62877}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 14074.62877}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.830667251}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.830667251}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.830667251}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 2850.61598}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2850.61598}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 2850.61598}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 0.22}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 466.517307}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 466.517307}, {"name": "Lead II", "categories": ["air"], "amount": 466.517307}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6008.157802}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6008.157802}, {"name": "Mercury II", "categories": ["air"], "amount": 6008.157802}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 350.9998319}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 350.9998319}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 350.9998319}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.975109844}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.975109844}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.975109844}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 220.43152129999999}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 220.43152129999999}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 220.43152129999999}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5426.282198}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5426.282198}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 5426.282198}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02714893}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02714893}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.02714893}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 35032.83874}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35032.83874}, {"name": "Nickel II", "categories": ["air"], "amount": 35032.83874}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12474733}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12474733}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.12474733}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 572399.6238}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 572399.6238}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 572399.6238}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.518172944}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.518172944}, {"name": "Phenol", "categories": ["air"], "amount": 0.518172944}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 95.31928284}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 95.31928284}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 95.31928284}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.079340246}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.079340246}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 5.079340246}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1262.37464}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1262.37464}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1262.37464}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 47687.15468}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 47687.15468}, {"name": "Selenium IV", "categories": ["air"], "amount": 47687.15468}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.047384819}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.047384819}, {"name": "Styrene", "categories": ["air"], "amount": 0.047384819}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.096}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.096}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.096}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 432190.2296}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 432190.2296}, {"name": "Thallium I", "categories": ["air"], "amount": 432190.2296}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.734086071}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.734086071}, {"name": "Tin ion", "categories": ["air"], "amount": 1.734086071}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.32691844}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.32691844}, {"name": "Toluene", "categories": ["air"], "amount": 0.32691844}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 6240.349576}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6240.349576}, {"name": "Vanadium V", "categories": ["air"], "amount": 6240.349576}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 104.4419271}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 104.4419271}, {"name": "Zinc II", "categories": ["air"], "amount": 104.4419271}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 8886.17791}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 2634.762665}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 2634.762665}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2634.762665}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 362.7992628}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 317.9863027}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 317.9863027}, {"name": "Barium II", "categories": ["soil"], "amount": 317.9863027}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 12759.74363}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 7049.473022}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 7049.473022}, {"name": "Beryllium II", "categories": ["soil"], "amount": 7049.473022}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 19635.29994}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 66.68443569}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 66.68443569}, {"name": "Cadmium II", "categories": ["soil"], "amount": 66.68443569}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5127.707054}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 299.8393545}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 299.8393545}, {"name": "Chromium III", "categories": ["soil"], "amount": 299.8393545}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 8546.178423}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 499.7322575}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 499.7322575}, {"name": "Chromium VI", "categories": ["soil"], "amount": 499.7322575}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2385.442004}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 59.06461831}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 59.06461831}, {"name": "Cobalt II", "categories": ["soil"], "amount": 59.06461831}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 93.85679802}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.254452298}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.254452298}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.254452298}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.00064887}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3280.690192}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 293.3054054}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 293.3054054}, {"name": "Lead II", "categories": ["soil"], "amount": 293.3054054}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 5921.154138}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1080.535201}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1080.535201}, {"name": "Mercury II", "categories": ["soil"], "amount": 1080.535201}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 6168.303633}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3063.38868}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3063.38868}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3063.38868}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2678.846488}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 198.1619649}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 198.1619649}, {"name": "Nickel II", "categories": ["soil"], "amount": 198.1619649}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 28862.50761}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 28079.08675}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 28079.08675}, {"name": "Selenium IV", "categories": ["soil"], "amount": 28079.08675}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2017113.894}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 117789.0589}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 117789.0589}, {"name": "Thallium I", "categories": ["soil"], "amount": 117789.0589}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 13.138903}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.524726874}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.524726874}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.524726874}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 18500.01247}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1696.80539}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1696.80539}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1696.80539}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 63.74466425}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.422129282}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.422129282}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.422129282}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 280468.7123}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 28788.29537}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Acenaphthene", "categories": ["water"], "amount": 280468.7123}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 28788.29537}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 280468.7123}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 50.90890083}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 7065.337009}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 7065.337009}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 5141.476631}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 8635.388246}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 5141.476631}, {"name": "Antimony ion", "categories": ["water"], "amount": 5141.476631}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 630.48373}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 804.5390233}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 630.48373}, {"name": "Barium II", "categories": ["water"], "amount": 630.48373}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1830.884085}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 209.8918122}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1830.884085}, {"name": "Benzene", "categories": ["water"], "amount": 1830.884085}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.164478016}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.101492617}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 9.101492617}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.826606711}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.070199334}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.826606711}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.826606711}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 13974.73411}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 16171.15242}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 13974.73411}, {"name": "Beryllium II", "categories": ["water"], "amount": 13974.73411}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 103.9128177}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 22.89077835}, {"name": "Cadmium II", "categories": ["water"], "amount": 22.89077835}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.430394716}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.48164415}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.430394716}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.430394716}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 12.5243439}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 6.015220004}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 12.5243439}, {"name": "Chloroform", "categories": ["water"], "amount": 12.5243439}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.4204435}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 16.73299543}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.4204435}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.4204435}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 10.03979726}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.0522661}, {"name": "Chromium III", "categories": ["water"], "amount": 2.0522661}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 96.70201437}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 60.45069603}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 96.70201437}, {"name": "Cobalt II", "categories": ["water"], "amount": 96.70201437}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 5.905060312}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.339256586}, {"name": "Copper ion", "categories": ["water"], "amount": 1.339256586}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 16.24329096}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 9.64873939}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 16.24329096}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 16.24329096}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 27.8696181}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 5.451970744}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 27.8696181}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 27.8696181}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 0.654052646}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 0.047072421}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 0.654052646}, {"name": "Ethylene", "categories": ["water"], "amount": 0.654052646}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 144.6682248}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 42.60548615}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 144.6682248}, {"name": "Chloroethylene", "categories": ["water"], "amount": 144.6682248}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.721910837}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 2.752523179}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.721910837}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 5.721910837}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 33.45953481}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 14.11827287}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 33.45953481}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 33.45953481}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 11426.26443}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 541.085742}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 11426.26443}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 11426.26443}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.037052116}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.8154e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.037052116}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.037052116}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 12.25950173}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 78.76428612}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 12.25950173}, {"name": "Lead II", "categories": ["water"], "amount": 12.25950173}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1425.959363}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 8195.224968}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1425.959363}, {"name": "Mercury II", "categories": ["water"], "amount": 1425.959363}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.839853574}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.298493641}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.839853574}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.839853574}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 219.692705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 167.828564}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 219.692705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 219.692705}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 5513.681367}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6788.946972}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 5513.681367}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5513.681367}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.336783791}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.010334512}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.336783791}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.336783791}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 746.665693}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 331.0802679}, {"name": "Nickel II", "categories": ["water"], "amount": 331.0802679}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.424561724}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.025771414}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.424561724}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.424561724}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 280468.7123}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 28788.29537}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 280468.7123}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.049158431}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 7.95894e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.049158431}, {"name": "Phenol", "categories": ["water"], "amount": 0.049158431}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.000851871}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.086137019}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.086137019}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.003009561}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.536966302}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.536966302}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.008385921}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 7.153902703}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 7.153902703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.28519923}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 6.341172176}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 6.341172176}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 2642.980524}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 15.84498715}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 2642.980524}, {"name": "Propylene oxide", "categories": ["water"], "amount": 2642.980524}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 56010.94407}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 62917.77073}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 56010.94407}, {"name": "Selenium IV", "categories": ["water"], "amount": 56010.94407}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.085066175}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.010186849}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.085066175}, {"name": "Styrene", "categories": ["water"], "amount": 0.085066175}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 225123.8713}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 294343.489}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 225123.8713}, {"name": "Thallium I", "categories": ["water"], "amount": 225123.8713}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 0.105182287}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 0.017319702}, {"name": "Tin ion", "categories": ["water"], "amount": 0.017319702}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.302760499}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.038517634}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.302760499}, {"name": "Toluene", "categories": ["water"], "amount": 0.302760499}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 6233.917231}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 3163.049164}, {"name": "Vanadium V", "categories": ["water"], "amount": 3163.049164}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.19999566}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.583947274}, {"name": "Zinc II", "categories": ["water"], "amount": 0.583947274}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.136013664}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.18145336}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.850360928}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.638457455}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.738320271}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 5203.22925}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.7389661}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.210621665}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 23.56553774}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.057595997}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.450871169}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003098997}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.577086947}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 166.431544}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 331.0802679}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 2734.917543}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 15.27470602}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 12.7781966}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1223.050434}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 5203.22925}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 572399.6238}, {"name": "Anthracene", "categories": ["air"], "amount": 0.520422664}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 572399.6238}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 572399.6238}, {"name": "Fluorene", "categories": ["air"], "amount": 572399.6238}, {"name": "Pyrene", "categories": ["air"], "amount": 572399.6238}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.039195746}, {"name": "Permethrin", "categories": ["water"], "amount": 22.54924968}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 166.431544}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 5.553238233}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.05711587}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.05711587}, {"name": "Anthracene", "categories": ["water"], "amount": 2.05711587}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.156677578}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3351.180314}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3351.180314}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3351.180314}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3351.180314}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 858267345.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 858267345.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 858267345.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 422342786.9}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 280468.7123}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.066237718}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.066237718}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 4.555788198}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 4.555788198}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 4.694817632}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 4.694817632}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 0.554356861}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 15.13770331}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 15.13770331}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.65427582}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.269386885}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.124918372}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 4.524656751}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 23.95944151}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 23.95944151}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.733209571}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.733209571}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 10123779.93}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 10123779.93}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1299184496}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 10123779.93}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 34.40934674}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 0.080087751}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 5203.22925}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 278.774953}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 0.968191034}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 12.00018312}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 3.380127333}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 413.0108847}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.717284771}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 51.45627099}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.149323301}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.066237718}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 5649677.483}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1198.715728}, {"name": "Acrolein", "categories": ["water"], "amount": 58.59259586}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 2.845330678}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 18.01470286}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 97.04684555}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1.617587491}, {"name": "Thiram", "categories": ["air"], "amount": 18.91443696}, {"name": "Dimethoate", "categories": ["air"], "amount": 43.54358934}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.310226295}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 83.44656586}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.753387639}, {"name": "Triallate", "categories": ["air"], "amount": 9.689976174}, {"name": "Ethylene", "categories": ["air"], "amount": 0.636745223}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.111306559}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 0.5}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 20.37430754}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["air"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 31813.03016}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1020.374027}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1020.374027}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1020.374027}, {"name": "Arsenic ion", "categories": ["water"], "amount": 950.6167656}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 950.6167656}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2397.031702}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 950.6167656}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 166.431544}, {"name": "Bifenthrin", "categories": ["air"], "amount": 19.42076798}, {"name": "Bifenthrin", "categories": ["water"], "amount": 98.18592011}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 0.297107111}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.42076798}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 98.18592011}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 5.548800031}, {"name": "Cypermethrin", "categories": ["water"], "amount": 5.548800031}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84613789}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.548800031}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84613789}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 166.431544}, {"name": "Carbendazim", "categories": ["air"], "amount": 19.23469038}, {"name": "Diuron", "categories": ["air"], "amount": 214.2614033}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 8.390622577}, {"name": "Simazine", "categories": ["air"], "amount": 33.32637426}, {"name": "2,4-D", "categories": ["water"], "amount": 3.466807207}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.721599071}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.466807207}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.193224878}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 9.736157846}, {"name": "Simazine", "categories": ["water"], "amount": 9.736157846}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.32637426}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.50851113}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 0.431865359}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.23469038}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.50851113}, {"name": "Acephate", "categories": ["water"], "amount": 2.111216706}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.306684008}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.111216706}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.68939329}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 6.68939329}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.998669009}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.390622577}, {"name": "Diuron", "categories": ["water"], "amount": 53.10208373}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 7.235435534}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 214.2614033}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 18.91443696}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.68248084}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.252862858}, {"name": "Trifluralin", "categories": ["water"], "amount": 97.04684555}, {"name": "Thiram", "categories": ["water"], "amount": 3.310226295}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 44.34622685}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 0.139274158}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.00064887}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 0.109797211}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 0.693002197}, {"name": "Metolachlor", "categories": ["water"], "amount": 0.554356861}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 0.875981568}, {"name": "Methomyl", "categories": ["water"], "amount": 3.269386885}, {"name": "Atrazine", "categories": ["water"], "amount": 4.555788198}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 44.34622685}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.269386885}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.158518232}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 0.554356861}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 11.44844615}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 14.45331682}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 8.854417106}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 4.093422131}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 8.854417106}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 8.854417106}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.2}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.2}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 1.838961201}]}, {"unit": "kg Sb-Eq", "name": ["CML v4.8 2016 no LT", "material resources: metals/minerals no LT", "abiotic depletion potential (ADP): elements (ultimate reserves) no LT"], "exchanges": [{"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.156577463}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.000442708}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 1.45748e-07}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 0.006888901}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24473e-08}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.006338267}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.14656e-05}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 2.02016e-09}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.53988e-06}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.51553e-06}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.51553e-06}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.603394795}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.000192838}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.05816e-05}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.66356227}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.016229792}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.671456e-08}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.671456e-08}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.000538067}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.44494e-06}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.671456e-08}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24473e-08}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.006338267}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538067}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.006338267}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538067}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.56882e-05}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.000538067}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.006338267}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 6.04204e-06}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.156577463}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.53988e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.092226828}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 1.59761e-08}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 5.51553e-06}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 5.50238e-08}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 7.70121e-07}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.002974487}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 1.25902e-05}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.041076119}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.004271652}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 6.52264e-07}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 0.006888901}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.14656e-05}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 2.02016e-09}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.9348e-05}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 0.603394795}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 0.194094965}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1.40205e-11}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 4.05816e-05}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 40.66356227}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.42912e-05}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 0.004518138}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 5.69217e-07}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.56882e-05}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 0.001398204}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 1.45748e-07}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.09433e-09}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 7.07133e-07}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.24473e-08}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.000442708}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 2.78576e-08}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 5.44494e-06}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2.216820008}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 0.5706016}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 2.02016e-09}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.016229792}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 0.024965696}, {"name": "Bromine", "categories": ["natural resource", "in water"], "amount": 0.004392025}, {"name": "Bromine, 0.23% in water", "categories": ["natural resource", "in water"], "amount": 0.004392025}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 0.024965696}]}, {"unit": "kg CFC-11-Eq", "name": ["CML v4.8 2016 no LT", "ozone depletion no LT", "ozone layer depletion (ODP steady state) no LT"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.38}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.38}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 12}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.94}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.94}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg ethylene-Eq", "name": ["CML v4.8 2016 no LT", "photochemical oxidant formation no LT", "photochemical oxidation (high NOx) no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.977}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.42}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.36}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.842}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.188}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.433}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.641}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.097}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.094}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.092}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.218}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.851}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.352}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.62}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.027}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.027}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.023}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.445}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.123}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.009}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.399}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.325}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.209}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.386}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.085}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.519}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.032}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.494}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.482}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.092}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.068}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.005}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.14}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.373}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.027}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.108}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.053}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.395}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.798}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.176}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.561}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.123}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.142}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.048}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.175}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.637}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.977}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.977}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.977}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.42}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.42}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.42}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.36}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.36}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.36}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.842}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.842}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.842}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.188}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.188}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.433}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.433}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.433}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.49}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.641}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.641}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.641}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.097}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.097}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.097}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.094}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.094}, {"name": "Acetone", "categories": ["air"], "amount": 0.094}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.092}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.092}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.092}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.218}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.218}, {"name": "Benzene", "categories": ["air"], "amount": 0.218}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.73}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.851}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.851}, {"name": "Butadiene", "categories": ["air"], "amount": 0.851}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.352}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.352}, {"name": "Butane", "categories": ["air"], "amount": 0.352}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.62}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.62}, {"name": "Butanol", "categories": ["air"], "amount": 0.62}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.027}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.027}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.023}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.023}, {"name": "Chloroform", "categories": ["air"], "amount": 0.023}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Cumene", "categories": ["air"], "amount": 0.5}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.29}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.445}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.445}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.445}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.123}, {"name": "Ethane", "categories": ["air"], "amount": 0.123}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.009}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.009}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.009}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.399}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.399}, {"name": "Ethanol", "categories": ["air"], "amount": 0.399}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.029}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.325}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.325}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.209}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.209}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.209}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.386}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.386}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.386}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.085}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.085}, {"name": "Ethyne", "categories": ["air"], "amount": 0.085}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.519}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.519}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.519}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.032}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.032}, {"name": "Formic acid", "categories": ["air"], "amount": 0.032}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.494}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.494}, {"name": "Heptane", "categories": ["air"], "amount": 0.494}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.482}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.482}, {"name": "Hexane", "categories": ["air"], "amount": 0.482}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.092}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.092}, {"name": "Isoprene", "categories": ["air"], "amount": 1.092}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.006}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.068}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.006}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.005}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.005}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.005}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14}, {"name": "Methanol", "categories": ["air"], "amount": 0.14}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.059}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.373}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.373}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.373}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.027}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.108}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.108}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.108}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.053}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.053}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.053}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.395}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.395}, {"name": "Pentane", "categories": ["air"], "amount": 0.395}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.798}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.798}, {"name": "Propanal", "categories": ["air"], "amount": 0.798}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.176}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.176}, {"name": "Propane", "categories": ["air"], "amount": 0.176}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.561}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.561}, {"name": "Propanol", "categories": ["air"], "amount": 0.561}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.123}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.123}, {"name": "Propene", "categories": ["air"], "amount": 1.123}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.15}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.15}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.15}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.142}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.142}, {"name": "Styrene", "categories": ["air"], "amount": 0.142}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.048}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.048}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.048}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.175}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.175}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.175}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.637}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.637}, {"name": "Toluene", "categories": ["air"], "amount": 0.637}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.027}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.006}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.027}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.269}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.269}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.269}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.189}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.189}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.189}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.325}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.025}, {"name": "Nitric oxide", "categories": ["air"], "amount": -0.427}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.307}, {"name": "Ethylene", "categories": ["air"], "amount": 1}, {"name": "Butene", "categories": ["air"], "amount": 1.079}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.079}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.079}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 1.079}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.028}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.028}]}, {"unit": "kg SO2-Eq", "name": ["CML v4.8 2016", "acidification", "acidification (incl. fate, average Europe total, A&B)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.6}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.783673469}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 1.6}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6}, {"name": "Ammonia", "categories": ["air"], "amount": 1.6}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1.2}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1.2}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.783673469}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 0.783673469}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.783673469}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.783673469}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.96}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.96}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.96}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.96}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.96}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.76}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.5}]}, {"unit": "kg CO2-Eq", "name": ["CML v4.8 2016", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 16}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4800}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 782}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 138}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1980}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 79}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 527}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7670}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3170}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 6290}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1760}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 148}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 677}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 28}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 28}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1730}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6630}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 16100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 23500}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 16}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 16}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16}, {"name": "Chloroform", "categories": ["air"], "amount": 16}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 160}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4800}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 4800}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4800}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4800}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 5820}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 782}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 782}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 782}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 782}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 138}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 138}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 138}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 138}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1980}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 1980}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1980}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1980}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 79}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 79}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 79}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 527}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 527}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 527}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 527}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7670}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7670}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7670}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7670}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 11100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3170}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3170}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3170}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3170}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 28}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 28}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1750}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1750}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1750}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 6290}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 6290}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6290}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 6290}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1760}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1760}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1760}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1760}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 13900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 13900}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 9}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 9}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 148}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 148}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 148}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 148}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 677}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 677}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 677}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 677}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 28}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28}, {"name": "Methane, fossil", "categories": ["air"], "amount": 28}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1730}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1730}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1730}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1730}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6630}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 6630}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6630}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6630}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 4660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 16100}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 16100}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16100}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 16100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 23500}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 23500}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23500}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 23500}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8550}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 28}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 28}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 28}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 28}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8590}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8590}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8590}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5820}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5820}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5820}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5820}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 265}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 265}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 265}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 265}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["CML v4.8 2016", "ecotoxicity: freshwater", "freshwater aquatic ecotoxicity (FAETP inf)"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 29.49533085}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 171.8260122}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 27543.9258}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 50.94693271}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 519.4373798}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 79.23967176}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 95850.36583}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 283.1084245}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3.723752847}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 344.5970581}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 194.3865145}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 42.82246292}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 4.58563184}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 8.284720127}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 8.36818e-05}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.360324568}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000131227}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.334773948}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.370678892}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 87.77019479}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 17130.14029}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 103.1859686}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 3.25314e-07}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 289.4303366}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1523.011325}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.401496318}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 23.15337181}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2006.573756}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 584.5336542}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.032958813}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.796783349}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 9.5153e-05}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.038097112}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 1.922646069}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.690584275}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 6.913909397}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 639.1861685}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 221.6538139}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1157.306919}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 805.782122}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 199339.4398}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 24.09919497}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1293.825496}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 8.943808102}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 20139.95554}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 2126816.609}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 72.47918315}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 345.4825421}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 1.188877652}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2.206962213}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000121789}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000119313}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.42593e-11}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.86154e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000412935}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.81057e-05}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 11055.68571}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.098656659}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 380.9895881}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 381.1617771}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 8.255924503}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.921647131}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 4.638464651}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 167.9323357}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.399626922}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 97.42163568}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 693.1429309}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 162.0879155}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.462892182}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 29.99999205}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 29.99999205}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 316.7874757}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.412871049}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 3.926415532}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 43.70064072}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.032679173}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.32865e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000251931}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 14117.59934}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 97.3192924}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 4.37469e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 629.4706747}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 29.53209263}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 970.4507327}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.30679e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 171.8260122}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 497.628906}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 916.7842984}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.515898377}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.403587546}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 10.52329205}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 76.4086027}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 79.47660628}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 3.084748678}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 2.770891361}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1670.238851}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.036846268}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 15.05965114}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 546.2392735}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 2332.496164}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.09075e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1553.337312}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 685.8406233}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 2.537017575}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 10.16626668}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 7.04338e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3307.653992}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 39.76875083}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1733.840782}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 8965.69091}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 17.78364688}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 91.71242268}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.8260122}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 171.8260122}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 171.8260122}, {"name": "Acenaphthene", "categories": ["air"], "amount": 171.8260122}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 519.4373798}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 519.4373798}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 519.4373798}, {"name": "Acrolein", "categories": ["air"], "amount": 519.4373798}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.723752847}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 3.723752847}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.723752847}, {"name": "Antimony ion", "categories": ["air"], "amount": 3.723752847}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.82246292}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 42.82246292}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.82246292}, {"name": "Barium II", "categories": ["air"], "amount": 42.82246292}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.36818e-05}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 8.36818e-05}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.36818e-05}, {"name": "Benzene", "categories": ["air"], "amount": 8.36818e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000131227}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.000131227}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000131227}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000131227}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.334773948}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.334773948}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.334773948}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.334773948}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.370678892}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.370678892}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.370678892}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.370678892}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 87.77019479}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 87.77019479}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 87.77019479}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 87.77019479}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 17130.14029}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 17130.14029}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17130.14029}, {"name": "Beryllium II", "categories": ["air"], "amount": 17130.14029}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.25314e-07}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 3.25314e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.25314e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 3.25314e-07}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 289.4303366}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 289.4303366}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 289.4303366}, {"name": "Cadmium II", "categories": ["air"], "amount": 289.4303366}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.032958813}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.032958813}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.032958813}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.032958813}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5153e-05}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 9.5153e-05}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5153e-05}, {"name": "Chloroform", "categories": ["air"], "amount": 9.5153e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.922646069}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.922646069}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.922646069}, {"name": "Chromium III", "categories": ["air"], "amount": 1.922646069}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.690584275}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 7.690584275}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.690584275}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.690584275}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 639.1861685}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 639.1861685}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 639.1861685}, {"name": "Cobalt II", "categories": ["air"], "amount": 639.1861685}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 221.6538139}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 221.6538139}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 221.6538139}, {"name": "Copper ion", "categories": ["air"], "amount": 221.6538139}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2126816.609}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 2126816.609}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2126816.609}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 2126816.609}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000121789}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.000121789}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000121789}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000121789}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000119313}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000119313}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000119313}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000119313}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42593e-11}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1.42593e-11}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42593e-11}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86154e-06}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.86154e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86154e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.86154e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000412935}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.000412935}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000412935}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.000412935}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.81057e-05}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.81057e-05}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.81057e-05}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.098656659}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.098656659}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.098656659}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.098656659}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.255924503}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 8.255924503}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.255924503}, {"name": "Formaldehyde", "categories": ["air"], "amount": 8.255924503}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.638464651}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 4.638464651}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.638464651}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 4.638464651}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.399626922}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 2.399626922}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.399626922}, {"name": "Lead II", "categories": ["air"], "amount": 2.399626922}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 316.7874757}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 316.7874757}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 316.7874757}, {"name": "Mercury II", "categories": ["air"], "amount": 316.7874757}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.032679173}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.032679173}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.032679173}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.032679173}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32865e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 3.32865e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32865e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.32865e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000251931}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000251931}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000251931}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000251931}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.3192924}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 97.3192924}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 97.3192924}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 97.3192924}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.37469e-05}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 4.37469e-05}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.37469e-05}, {"name": "m-Xylene", "categories": ["air"], "amount": 4.37469e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 629.4706747}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 629.4706747}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 629.4706747}, {"name": "Nickel II", "categories": ["air"], "amount": 629.4706747}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.30679e-05}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 9.30679e-05}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.30679e-05}, {"name": "o-Xylene", "categories": ["air"], "amount": 9.30679e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.8260122}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 171.8260122}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 171.8260122}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 171.8260122}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.515898377}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1.515898377}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.515898377}, {"name": "Phenol", "categories": ["air"], "amount": 1.515898377}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.403587546}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.403587546}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.403587546}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.403587546}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.52329205}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 10.52329205}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.52329205}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 10.52329205}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.036846268}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.036846268}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.036846268}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.036846268}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 546.2392735}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 546.2392735}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 546.2392735}, {"name": "Selenium IV", "categories": ["air"], "amount": 546.2392735}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09075e-05}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 5.09075e-05}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.09075e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.09075e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1553.337312}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 1553.337312}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1553.337312}, {"name": "Thallium I", "categories": ["air"], "amount": 1553.337312}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.537017575}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 2.537017575}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.537017575}, {"name": "Tin ion", "categories": ["air"], "amount": 2.537017575}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.04338e-05}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 7.04338e-05}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.04338e-05}, {"name": "Toluene", "categories": ["air"], "amount": 7.04338e-05}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1733.840782}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 1733.840782}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1733.840782}, {"name": "Vanadium V", "categories": ["air"], "amount": 1733.840782}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.78364688}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 17.78364688}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.78364688}, {"name": "Zinc II", "categories": ["air"], "amount": 17.78364688}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 9.980626326}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 9.980626326}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 9.980626326}, {"name": "Antimony ion", "categories": ["soil"], "amount": 9.980626326}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 114.754741}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 114.754741}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 114.754741}, {"name": "Barium II", "categories": ["soil"], "amount": 114.754741}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 45897.5345}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 45897.5345}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 45897.5345}, {"name": "Beryllium II", "categories": ["soil"], "amount": 45897.5345}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 776.1149557}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 776.1149557}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 776.1149557}, {"name": "Cadmium II", "categories": ["soil"], "amount": 776.1149557}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.254694777}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.254694777}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.254694777}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.254694777}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 21.01877911}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 21.01877911}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 21.01877911}, {"name": "Chromium VI", "categories": ["soil"], "amount": 21.01877911}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1712.622007}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1712.622007}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1712.622007}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1712.622007}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 594.650583}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 594.650583}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 594.650583}, {"name": "Copper ion", "categories": ["soil"], "amount": 594.650583}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.671884382}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 6.527796616}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 6.527796616}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 6.527796616}, {"name": "Lead II", "categories": ["soil"], "amount": 6.527796616}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 848.1277497}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 848.1277497}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 848.1277497}, {"name": "Mercury II", "categories": ["soil"], "amount": 848.1277497}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 262.0749706}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 262.0749706}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 262.0749706}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 262.0749706}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1690.253104}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1690.253104}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1690.253104}, {"name": "Nickel II", "categories": ["soil"], "amount": 1690.253104}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1463.367658}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1463.367658}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1463.367658}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1463.367658}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 4170.357612}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 4170.357612}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 4170.357612}, {"name": "Thallium I", "categories": ["soil"], "amount": 4170.357612}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 6.901545648}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 6.901545648}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 6.901545648}, {"name": "Tin ion", "categories": ["soil"], "amount": 6.901545648}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4654.224158}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 4654.224158}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 4654.224158}, {"name": "Vanadium V", "categories": ["soil"], "amount": 4654.224158}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 47.74504968}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 47.74504968}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 47.74504968}, {"name": "Zinc II", "categories": ["soil"], "amount": 47.74504968}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 27543.9258}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 27543.9258}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.117133035}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Acenaphthene", "categories": ["water"], "amount": 27543.9258}, {"name": "Acenaphthylene", "categories": ["water", "ground-, long-term"], "amount": 27543.9258}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 0.117133035}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 27543.9258}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 79.23967176}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.006036076}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 79.23967176}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 79.23967176}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 19.7471634}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 19.7471634}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.56984e-21}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 19.7471634}, {"name": "Antimony ion", "categories": ["water"], "amount": 19.7471634}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 227.7547418}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 227.7547418}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.40807e-19}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 227.7547418}, {"name": "Barium II", "categories": ["water"], "amount": 227.7547418}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.091442188}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.091442188}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.19439e-06}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.091442188}, {"name": "Benzene", "categories": ["water"], "amount": 0.091442188}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.360324568}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000258594}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.360324568}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.360324568}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.545523699}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.545523699}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.43815e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.545523699}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.545523699}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 91349.16197}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 91349.16197}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.5677e-16}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 91349.16197}, {"name": "Beryllium II", "categories": ["water"], "amount": 91349.16197}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1523.011325}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.52612e-20}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1523.011325}, {"name": "Cadmium II", "categories": ["water"], "amount": 1523.011325}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 105.1696058}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 105.1696058}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.006529295}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 105.1696058}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 105.1696058}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.042349293}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.042349293}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 4.48297e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.042349293}, {"name": "Chloroform", "categories": ["water"], "amount": 0.042349293}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 27.65563759}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 27.65563759}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.53467e-22}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 27.65563759}, {"name": "Chromium VI", "categories": ["water"], "amount": 27.65563759}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 6.913909397}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 8.83668e-23}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 6.913909397}, {"name": "Chromium III", "categories": ["water"], "amount": 6.913909397}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 3407.831958}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 3407.831958}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.21543e-18}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 3407.831958}, {"name": "Cobalt II", "categories": ["water"], "amount": 3407.831958}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1157.306919}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.10941e-20}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1157.306919}, {"name": "Copper ion", "categories": ["water"], "amount": 1157.306919}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.109593474}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.109593474}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 7.10351e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.109593474}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.109593474}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.022946375}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.022946375}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 8.82702e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.022946375}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.022946375}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 0.022490624}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 0.022490624}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.04966e-12}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 0.022490624}, {"name": "Ethylene", "categories": ["water"], "amount": 0.022490624}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 0.027866613}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.027866613}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.40913e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 0.027866613}, {"name": "Chloroethylene", "categories": ["water"], "amount": 0.027866613}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.696350599}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.696350599}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.000202109}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.696350599}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.696350599}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.096977306}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.096977306}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.55453e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.096977306}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.096977306}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 9.795451453}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 9.795451453}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.003778204}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 9.795451453}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 9.795451453}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 280.7343279}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 280.7343279}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.000212611}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 280.7343279}, {"name": "Formaldehyde", "categories": ["water"], "amount": 280.7343279}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 9.615718658}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 9.615718658}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 5.5714e-23}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 9.615718658}, {"name": "Lead II", "categories": ["water"], "amount": 9.615718658}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1717.144328}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 1717.144328}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 6.773349297}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1717.144328}, {"name": "Mercury II", "categories": ["water"], "amount": 1717.144328}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.01228851}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.01228851}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 5.01878e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.01228851}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.01228851}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.20840893}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.20840893}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000190563}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.20840893}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.20840893}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 476.1891468}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 476.1891468}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.58768e-19}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 476.1891468}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 476.1891468}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.59828717}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.59828717}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.2348e-06}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.59828717}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.59828717}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3237.610008}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.09427e-19}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3237.610008}, {"name": "Nickel II", "categories": ["water"], "amount": 3237.610008}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.564623853}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.564623853}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.5123e-05}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.564623853}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.564623853}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 27543.9258}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 27543.9258}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.117133035}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 27543.9258}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 237.0076571}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 237.0076571}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.72839e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 237.0076571}, {"name": "Phenol", "categories": ["water"], "amount": 237.0076571}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 76.4086027}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 3.18725e-05}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 76.4086027}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 76.4086027}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 79.47660628}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.9224e-05}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 79.47660628}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 79.47660628}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.084748678}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 3.8217e-07}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 3.084748678}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 3.084748678}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 2.770891361}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00014339}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 2.770891361}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 2.770891361}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.964936638}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 3.964936638}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.000441224}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.964936638}, {"name": "Propylene oxide", "categories": ["water"], "amount": 3.964936638}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 2919.215918}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 2919.215918}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 7.37855e-18}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 2919.215918}, {"name": "Selenium IV", "categories": ["water"], "amount": 2919.215918}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.439672438}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.439672438}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.01252e-05}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.439672438}, {"name": "Styrene", "categories": ["water"], "amount": 0.439672438}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 8010.748812}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 8010.748812}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 7.89876e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 8010.748812}, {"name": "Thallium I", "categories": ["water"], "amount": 8010.748812}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 10.16626668}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 9.45727e-23}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 10.16626668}, {"name": "Tin ion", "categories": ["water"], "amount": 10.16626668}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.294514441}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.294514441}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 8.26905e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.294514441}, {"name": "Toluene", "categories": ["water"], "amount": 0.294514441}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 8965.69091}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 2.3929e-18}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 8965.69091}, {"name": "Vanadium V", "categories": ["water"], "amount": 8965.69091}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 91.71242268}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.7611e-21}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 91.71242268}, {"name": "Zinc II", "categories": ["water"], "amount": 91.71242268}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.633354816}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 519.1373278}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15909.97498}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 38.70264593}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.868972369}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 199339.4398}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 986.5000335}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 111.3634597}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1115.193351}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.19295282}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 360.8377327}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.93283786}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1466.6325}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 83602.82745}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3237.610008}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 231.4644637}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 17.26224344}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 4510.732407}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16.11900088}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 199339.4398}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 171.8260122}, {"name": "Anthracene", "categories": ["air"], "amount": 136.6120225}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 41.95943397}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 171.8260122}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 43.59828858}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 3877.313303}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 171.8260122}, {"name": "Fluorene", "categories": ["air"], "amount": 171.8260122}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 165.284645}, {"name": "Phenanthrene", "categories": ["air"], "amount": 1.26038299}, {"name": "Pyrene", "categories": ["air"], "amount": 171.8260122}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.310533909}, {"name": "Permethrin", "categories": ["water"], "amount": 5033760.13}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 83602.82745}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 51746.706}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 1169429.359}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 13151.73799}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 76813.73869}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 658.9115519}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 57270.20995}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 114823.123}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 251689.8554}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 27543.9258}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 57270.20995}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 57270.20995}, {"name": "Anthracene", "categories": ["water"], "amount": 57270.20995}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 16.70312979}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-, long-term"], "amount": 1169429.359}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 1169429.359}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 1169429.359}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 9.112002017}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 76813.73869}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 76813.73869}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-, long-term"], "amount": 76813.73869}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.000741658}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41402952}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.41402952}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.41402952}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41402952}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.41402952}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 172761006.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 172761006.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 172761006.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 172761006.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 133273.7576}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 27543.9258}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 251689.8554}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1368.227175}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1368.227175}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 4957.984372}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 4957.984372}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 4531.703764}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 4531.703764}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 38378.53316}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 27.18350061}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 27.18350061}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.058224124}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 135031.4275}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.099260671}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.012983861}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 5.306394539}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 5.306394539}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 50.70964583}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 50.70964583}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 491210.9319}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 491210.9319}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 123106.4602}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 491210.9319}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 3.81057e-05}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 0.213835093}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 199339.4398}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 6452.497435}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 74.08667954}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 755.4108063}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 30.85501588}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 94.94810336}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 350.2386357}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 254.956018}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.328300702}, {"name": "Glyphosate", "categories": ["water"], "amount": 1368.227175}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 152.987151}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 50.73202763}, {"name": "Acrolein", "categories": ["water"], "amount": 251473.5781}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 653735.0536}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 1814.591747}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 12.51989401}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 172.5578345}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 27083.51373}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1814.591747}, {"name": "Thiram", "categories": ["air"], "amount": 2703.849252}, {"name": "Dimethoate", "categories": ["air"], "amount": 12.51989401}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 97982.61947}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 48634.13547}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 49.60329639}, {"name": "Triallate", "categories": ["air"], "amount": 61.24233876}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 61.24233876}, {"name": "Ethylene", "categories": ["air"], "amount": 1.42593e-11}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.495763292}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 516.5336286}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 18508.73048}, {"name": "Fluoranthene", "categories": ["air"], "amount": 17.80093307}, {"name": "Chrysene", "categories": ["air"], "amount": 39.21597222}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 373.5251898}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["air"], "amount": 49.50441822}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 134.4097828}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 134.4097828}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 134.4097828}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 134.4097828}, {"name": "Arsenic ion", "categories": ["water"], "amount": 206.7462211}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 206.7462211}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.84676e-20}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 206.7462211}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 206.7462211}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 83602.82745}, {"name": "Bifenthrin", "categories": ["air"], "amount": 820.4307545}, {"name": "Bifenthrin", "categories": ["water"], "amount": 243975.0192}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 411.9497193}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 820.4307545}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 243975.0192}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 7944107.679}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7944107.679}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 688967.2267}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 7944107.679}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 688967.2267}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 83602.82745}, {"name": "Carbendazim", "categories": ["air"], "amount": 2984.253341}, {"name": "Diuron", "categories": ["air"], "amount": 530.4214428}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.534613272}, {"name": "Simazine", "categories": ["air"], "amount": 2102.507808}, {"name": "2,4-D", "categories": ["water"], "amount": 402.5031791}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 81.95312224}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 402.5031791}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 5637.495888}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 27142.89531}, {"name": "Simazine", "categories": ["water"], "amount": 27142.89531}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2102.507808}, {"name": "Carbendazim", "categories": ["water"], "amount": 38370.44685}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 6110.916654}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2984.253341}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 38370.44685}, {"name": "Acephate", "categories": ["water"], "amount": 1100.038327}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 159.4736929}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 1100.038327}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 372.4242025}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 372.4242025}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.749747191}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.534613272}, {"name": "Diuron", "categories": ["water"], "amount": 9418.481705}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1130.909622}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 530.4214428}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 2703.849252}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 155.3675579}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4384.96246}, {"name": "Trifluralin", "categories": ["water"], "amount": 27083.51373}, {"name": "Thiram", "categories": ["water"], "amount": 97982.61947}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 640742.9179}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1448.384406}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.671884382}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5809.442399}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 28448.1302}, {"name": "Metolachlor", "categories": ["water"], "amount": 38378.53316}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 928.8046855}, {"name": "Methomyl", "categories": ["water"], "amount": 135031.4275}, {"name": "Atrazine", "categories": ["water"], "amount": 4957.984372}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 2703.849252}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 640742.9179}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 135031.4275}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 13866.15252}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 38378.53316}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1893.703975}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 355.7691128}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.011362329}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.002876394}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.011362329}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.001288171}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.011362329}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.011362329}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.233298462}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["CML v4.8 2016", "ecotoxicity: marine", "marine aquatic ecotoxicity (MAETP inf)"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.166268447}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 4260.507702}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 5484.758202}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.673347713}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 566.0364618}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.541179208}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1640.55123}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 32.25818735}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 33052.50793}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 33.87635225}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 0.141080873}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 779565.3252}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.005770347}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.035936153}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.002800786}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.114144105}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000795715}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2405.978834}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 173.9143878}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1367.099998}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 469829433.5}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 0.113669485}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.74475e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1105226.199}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 220265.8312}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 6.8803e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.007368271}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 30.42401718}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.970646634}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.529975423}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.08091629}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.059163653}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.65378751}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5242.324119}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 20969.29648}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 860.9360739}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 5435082.746}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 893429.8064}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 232741.9688}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 2.844134965}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 296.6379608}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 0.059689858}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 7.805477329}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.039430536}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 390.9612721}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 296410658}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 0.140914206}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 2.090980765}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.003645076}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 0.001353163}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.304302175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.081602129}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.92625e-11}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000129875}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.337578123}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.002682571}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 264.0185609}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.854460841}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 6.796509622}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.125470081}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.633649187}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.002800256}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 40746153.29}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 1.790669499}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 7048.834153}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.402646208}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 12.45284229}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.661495138}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.000617321}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.052923369}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.052923369}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1199665.677}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.001134192}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.032789743}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.998664245}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 4.106691015}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.003840259}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.151577694}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 440.1608248}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1945254.63}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000392614}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3757791.485}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.008423614}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1.977305823}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000914458}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 4260.507702}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.348160602}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 5.473259118}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.552763901}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.33998576}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 40.0189118}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.052669738}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.076518676}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.001724787}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.034863856}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 7.312514195}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.121878186}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 30.4102425}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 21196061.02}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 12.68754919}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.000509345}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 25632232.34}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.650328304}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 7505.452047}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1227.869894}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000699426}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.67350198}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.150987406}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 12207311.7}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 8579403.259}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 67254.71999}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 13846.76932}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4260.507702}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 4260.507702}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4260.507702}, {"name": "Acenaphthene", "categories": ["air"], "amount": 4260.507702}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 566.0364618}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 566.0364618}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 566.0364618}, {"name": "Acrolein", "categories": ["air"], "amount": 566.0364618}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 33052.50793}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 33052.50793}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33052.50793}, {"name": "Antimony ion", "categories": ["air"], "amount": 33052.50793}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 779565.3252}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 779565.3252}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 779565.3252}, {"name": "Barium II", "categories": ["air"], "amount": 779565.3252}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002800786}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.002800786}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002800786}, {"name": "Benzene", "categories": ["air"], "amount": 0.002800786}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000795715}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.000795715}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000795715}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000795715}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2405.978834}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 2405.978834}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2405.978834}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2405.978834}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 173.9143878}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 173.9143878}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 173.9143878}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 173.9143878}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1367.099998}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1367.099998}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1367.099998}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1367.099998}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 469829433.5}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 469829433.5}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 469829433.5}, {"name": "Beryllium II", "categories": ["air"], "amount": 469829433.5}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74475e-06}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 2.74475e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74475e-06}, {"name": "Butadiene", "categories": ["air"], "amount": 2.74475e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1105226.199}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 1105226.199}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1105226.199}, {"name": "Cadmium II", "categories": ["air"], "amount": 1105226.199}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.529975423}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.529975423}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.529975423}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.529975423}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059163653}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.059163653}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059163653}, {"name": "Chloroform", "categories": ["air"], "amount": 0.059163653}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 5242.324119}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 5242.324119}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5242.324119}, {"name": "Chromium III", "categories": ["air"], "amount": 5242.324119}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 20969.29648}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 20969.29648}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20969.29648}, {"name": "Chromium VI", "categories": ["air"], "amount": 20969.29648}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5435082.746}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 5435082.746}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5435082.746}, {"name": "Cobalt II", "categories": ["air"], "amount": 5435082.746}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 893429.8064}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 893429.8064}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 893429.8064}, {"name": "Copper ion", "categories": ["air"], "amount": 893429.8064}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 296410658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 296410658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 296410658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 296410658}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.304302175}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.304302175}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.304302175}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.304302175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.081602129}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.081602129}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.081602129}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.081602129}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92625e-11}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 7.92625e-11}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.92625e-11}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000129875}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.000129875}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000129875}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.000129875}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.337578123}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.337578123}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.337578123}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.337578123}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002682571}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.002682571}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002682571}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.854460841}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.854460841}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.854460841}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.854460841}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.633649187}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.633649187}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.633649187}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.633649187}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 40746153.29}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 40746153.29}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40746153.29}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 40746153.29}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7048.834153}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 7048.834153}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7048.834153}, {"name": "Lead II", "categories": ["air"], "amount": 7048.834153}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1199665.677}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 1199665.677}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1199665.677}, {"name": "Mercury II", "categories": ["air"], "amount": 1199665.677}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.106691015}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 4.106691015}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.106691015}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 4.106691015}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003840259}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.003840259}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003840259}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.003840259}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.151577694}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.151577694}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.151577694}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.151577694}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1945254.63}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1945254.63}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1945254.63}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1945254.63}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000392614}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000392614}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000392614}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.000392614}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3757791.485}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 3757791.485}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3757791.485}, {"name": "Nickel II", "categories": ["air"], "amount": 3757791.485}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000914458}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000914458}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000914458}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.000914458}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 4260.507702}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 4260.507702}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4260.507702}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 4260.507702}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.552763901}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.552763901}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.552763901}, {"name": "Phenol", "categories": ["air"], "amount": 0.552763901}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33998576}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.33998576}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.33998576}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.33998576}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.0189118}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 40.0189118}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.0189118}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 40.0189118}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.121878186}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.121878186}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.121878186}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.121878186}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 21196061.02}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 21196061.02}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 21196061.02}, {"name": "Selenium IV", "categories": ["air"], "amount": 21196061.02}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000509345}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.000509345}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000509345}, {"name": "Styrene", "categories": ["air"], "amount": 0.000509345}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 25632232.34}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 25632232.34}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25632232.34}, {"name": "Thallium I", "categories": ["air"], "amount": 25632232.34}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7505.452047}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 7505.452047}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7505.452047}, {"name": "Tin ion", "categories": ["air"], "amount": 7505.452047}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000699426}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.000699426}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000699426}, {"name": "Toluene", "categories": ["air"], "amount": 0.000699426}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 12207311.7}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 12207311.7}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12207311.7}, {"name": "Vanadium V", "categories": ["air"], "amount": 12207311.7}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 67254.71999}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 67254.71999}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67254.71999}, {"name": "Zinc II", "categories": ["air"], "amount": 67254.71999}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 13699.32049}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 13699.32049}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 13699.32049}, {"name": "Antimony ion", "categories": ["soil"], "amount": 13699.32049}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 419874.7663}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 419874.7663}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 419874.7663}, {"name": "Barium II", "categories": ["soil"], "amount": 419874.7663}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 271059202.2}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 271059202.2}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 271059202.2}, {"name": "Beryllium II", "categories": ["soil"], "amount": 271059202.2}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 112245.7876}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 112245.7876}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 112245.7876}, {"name": "Cadmium II", "categories": ["soil"], "amount": 112245.7876}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 654.3268115}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 654.3268115}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 654.3268115}, {"name": "Chromium III", "categories": ["soil"], "amount": 654.3268115}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 2617.307246}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2617.307246}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2617.307246}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2617.307246}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2203266.179}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2203266.179}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2203266.179}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2203266.179}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 119588.1103}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 119588.1103}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 119588.1103}, {"name": "Copper ion", "categories": ["soil"], "amount": 119588.1103}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.011156382}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 753.3606976}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 753.3606977}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 753.3606977}, {"name": "Lead II", "categories": ["soil"], "amount": 753.3606977}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 165517.2757}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 165517.2757}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 165517.2757}, {"name": "Mercury II", "categories": ["soil"], "amount": 165517.2757}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1150000.353}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1150000.353}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1150000.353}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1150000.353}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1174636.474}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1174636.474}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1174636.474}, {"name": "Nickel II", "categories": ["soil"], "amount": 1174636.474}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 12706802.13}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 12706802.13}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 12706802.13}, {"name": "Selenium IV", "categories": ["soil"], "amount": 12706802.13}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 13837686.72}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 13837686.72}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 13837686.72}, {"name": "Thallium I", "categories": ["soil"], "amount": 13837686.72}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 833.5606756}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 833.5606756}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 833.5606756}, {"name": "Tin ion", "categories": ["soil"], "amount": 833.5606756}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4453696.464}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 4453696.464}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 4453696.464}, {"name": "Vanadium V", "categories": ["soil"], "amount": 4453696.464}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 7208.562045}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 7208.562045}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 7208.562045}, {"name": "Zinc II", "categories": ["soil"], "amount": 7208.562045}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 5484.758202}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 5484.758202}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 23737.83848}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Acenaphthene", "categories": ["water"], "amount": 5484.758202}, {"name": "Acenaphthylene", "categories": ["water", "ground-, long-term"], "amount": 5484.758202}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 23737.83848}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 5484.758202}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.541179208}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 3.129479467}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.541179208}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.541179208}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 27104.78394}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 27104.78394}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 48723.01979}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 27104.78394}, {"name": "Antimony ion", "categories": ["water"], "amount": 27104.78394}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 833329.134}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 833329.134}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1086641.338}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 833329.134}, {"name": "Barium II", "categories": ["water"], "amount": 833329.134}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.00265539}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.00265539}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.015174218}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00265539}, {"name": "Benzene", "categories": ["water"], "amount": 0.00265539}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.114144105}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.350958141}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.114144105}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.114144105}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.001358689}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.001358689}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.061621478}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.001358689}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.001358689}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 539484990.5}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 539484990.5}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 643371294.1}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 539484990.5}, {"name": "Beryllium II", "categories": ["water"], "amount": 539484990.5}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 220265.8312}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1848053.818}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 220265.8312}, {"name": "Cadmium II", "categories": ["water"], "amount": 220265.8312}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 1.794912375}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 1.794912375}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 29.72565952}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 1.794912375}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.794912375}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.058164962}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.058164962}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.056452223}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.058164962}, {"name": "Chloroform", "categories": ["water"], "amount": 0.058164962}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3443.744296}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 3443.744296}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 32873.05623}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3443.744296}, {"name": "Chromium VI", "categories": ["water"], "amount": 3443.744296}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 860.9360739}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 8218.264057}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 860.9360739}, {"name": "Chromium III", "categories": ["water"], "amount": 860.9360739}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4384131.971}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 4384131.971}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 8048980.529}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4384131.971}, {"name": "Cobalt II", "categories": ["water"], "amount": 4384131.971}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 232741.9688}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1475564.328}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 232741.9688}, {"name": "Copper ion", "categories": ["water"], "amount": 232741.9688}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.300877436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.300877436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.269785602}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.300877436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.300877436}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.081452672}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.081452672}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.09060469}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.081452672}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.081452672}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 2.77811e-05}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 2.77811e-05}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 0.002584756}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 2.77811e-05}, {"name": "Ethylene", "categories": ["water"], "amount": 2.77811e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 0.000377217}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.000377217}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.019525441}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 0.000377217}, {"name": "Chloroethylene", "categories": ["water"], "amount": 0.000377217}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.336718811}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.336718811}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.648268219}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.336718811}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.336718811}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.003334904}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.003334904}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.056669202}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.003334904}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.003334904}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.627275329}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.627275329}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.736651015}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.627275329}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.627275329}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.189875093}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.189875093}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 5.647157935}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.189875093}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.189875093}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1109.731957}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 1109.731957}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 11304.99376}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1109.731957}, {"name": "Lead II", "categories": ["water"], "amount": 1109.731957}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 214326.8839}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 214326.8839}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1875335.379}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 214326.8839}, {"name": "Mercury II", "categories": ["water"], "amount": 214326.8839}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.003539819}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.003539819}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.003244141}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.003539819}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.003539819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.145521766}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 1.145521766}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.111408081}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.145521766}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.145521766}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2089545.925}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2089545.925}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2620221.279}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2089545.925}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2089545.925}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.002122398}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.002122398}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.141496158}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.002122398}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.002122398}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2249967.65}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 5766615.509}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2249967.65}, {"name": "Nickel II", "categories": ["water"], "amount": 2249967.65}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.002508141}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.002508141}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.131442012}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.002508141}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.002508141}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5484.758202}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 5484.758202}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 23737.83848}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 5484.758202}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.056287221}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.056287221}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 4.658646236}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.056287221}, {"name": "Phenol", "categories": ["water"], "amount": 0.056287221}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.052669738}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 1.576270043}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.052669738}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.052669738}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 0.076518676}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 1.673049608}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.076518676}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.076518676}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.001724787}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.051854268}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.001724787}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.001724787}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.034863856}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 2.480774389}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.034863856}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.034863856}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.057709568}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.057709568}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.144919185}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.057709568}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.057709568}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 25348311.37}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 25348311.37}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 28720844.53}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 25348311.37}, {"name": "Selenium IV", "categories": ["water"], "amount": 25348311.37}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.002231707}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.002231707}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.124595041}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.002231707}, {"name": "Styrene", "categories": ["water"], "amount": 0.002231707}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 26580510.06}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 26580510.06}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 35584562.31}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 26580510.06}, {"name": "Thallium I", "categories": ["water"], "amount": 26580510.06}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1227.869894}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 12027.03239}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1227.869894}, {"name": "Tin ion", "categories": ["water"], "amount": 1227.869894}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.001236583}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.001236583}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.050902141}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.001236583}, {"name": "Toluene", "categories": ["water"], "amount": 0.001236583}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 8579403.259}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 18333506.76}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 8579403.259}, {"name": "Vanadium V", "categories": ["water"], "amount": 8579403.259}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 13846.76932}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 111954.7668}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 13846.76932}, {"name": "Zinc II", "categories": ["water"], "amount": 13846.76932}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.619648147}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 62.05496427}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 30906.51545}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.281333499}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 104.431918}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 296.6379608}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 724.2192353}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.77078953}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 5.857365918}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.41221915}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 278.7568027}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.80881645}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 380.4114192}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 18975.08232}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2249967.65}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 47.88518145}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.042278305}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 707.743079}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.085432048}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 296.6379608}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4260.507702}, {"name": "Anthracene", "categories": ["air"], "amount": 1699.044661}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1018.752889}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 4260.507702}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 1656.938866}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 118520.4269}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 4260.507702}, {"name": "Fluorene", "categories": ["air"], "amount": 4260.507702}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 7276.503979}, {"name": "Phenanthrene", "categories": ["air"], "amount": 7.27368542}, {"name": "Pyrene", "categories": ["air"], "amount": 4260.507702}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.026797867}, {"name": "Permethrin", "categories": ["water"], "amount": 26768.50225}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 18975.08232}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 9056.071685}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 435324.2829}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 867.8601037}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 14519.96574}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.06087036}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 3022.686823}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 8306.18003}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 12122.77648}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 5484.758202}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 3022.686823}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 3022.686823}, {"name": "Anthracene", "categories": ["water"], "amount": 3022.686823}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 17693.05209}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-, long-term"], "amount": 435324.2829}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 435324.2829}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 435324.2829}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 1475670.997}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 14519.96574}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 14519.96574}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-, long-term"], "amount": 14519.96574}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 110121.093}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.905855614}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.905855614}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.905855614}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.905855614}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.905855614}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 44689724.99}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 44689724.99}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 44689724.99}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 44689724.99}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 502939102}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 5484.758202}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 12122.77648}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.15710571}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.15710571}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 484.3155375}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 484.3155375}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.416176522}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.416176522}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 582.3304636}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 0.036252362}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 0.036252362}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.283757033}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 4206.783074}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.061594649}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 3.59023e-05}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.014672826}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.014672826}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.219884162}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.219884162}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 177778.5123}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 177778.5123}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 44554.55269}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 177778.5123}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.002682571}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 5.0248e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 296.6379608}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 253.7255274}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 0.040927385}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.271818895}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 0.02556258}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 14.23852026}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 0.342412195}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 0.677124279}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.005900367}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.15710571}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 2387.046086}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 171.7339388}, {"name": "Acrolein", "categories": ["water"], "amount": 1080.499342}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 982.0954895}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 3511.491188}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.626953421}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.752136595}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 422.9033701}, {"name": "Deltamethrin", "categories": ["air"], "amount": 3511.491188}, {"name": "Thiram", "categories": ["air"], "amount": 218.3898935}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.626953421}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 74.38893597}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 780.1600572}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.84496147}, {"name": "Triallate", "categories": ["air"], "amount": 148.5832596}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 148.5832596}, {"name": "Ethylene", "categories": ["air"], "amount": 7.92625e-11}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.912492033}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 10.46793179}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 2979.888479}, {"name": "Fluoranthene", "categories": ["air"], "amount": 199.9548986}, {"name": "Chrysene", "categories": ["air"], "amount": 413.5266606}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.487440895}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["air"], "amount": 231410.738}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 77078.25934}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 77078.25934}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 77078.25934}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 77078.25934}, {"name": "Arsenic ion", "categories": ["water"], "amount": 118560.1116}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 118560.1116}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 342656.1385}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 118560.1116}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 118560.1116}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 18975.08232}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1019.099725}, {"name": "Bifenthrin", "categories": ["water"], "amount": 212.9292696}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 0.453803099}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1019.099725}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 212.9292696}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 10049.92574}, {"name": "Cypermethrin", "categories": ["water"], "amount": 10049.92574}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1025.25538}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 10049.92574}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1025.25538}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 18975.08232}, {"name": "Carbendazim", "categories": ["air"], "amount": 718.5857249}, {"name": "Diuron", "categories": ["air"], "amount": 113.0184131}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 50.6043711}, {"name": "Simazine", "categories": ["air"], "amount": 275.1322673}, {"name": "2,4-D", "categories": ["water"], "amount": 2.268953866}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.4619809}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 2.268953866}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 30.66500492}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 143.743963}, {"name": "Simazine", "categories": ["water"], "amount": 143.743963}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 275.1322673}, {"name": "Carbendazim", "categories": ["water"], "amount": 581.7791703}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 92.65499302}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 718.5857249}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 581.7791703}, {"name": "Acephate", "categories": ["water"], "amount": 14.53877309}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 2.107707778}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 14.53877309}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 39.72920839}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 39.72920839}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 5.973704191}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.6043711}, {"name": "Diuron", "categories": ["water"], "amount": 54.66291684}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.844659219}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 113.0184131}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 218.3898935}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.496648719}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.157912353}, {"name": "Trifluralin", "categories": ["water"], "amount": 422.9033701}, {"name": "Thiram", "categories": ["water"], "amount": 74.38893597}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 239.5760275}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 0.584486595}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.011156382}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 91.31733999}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 886.9604635}, {"name": "Metolachlor", "categories": ["water"], "amount": 582.3304636}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 91.30813498}, {"name": "Methomyl", "categories": ["water"], "amount": 4206.783074}, {"name": "Atrazine", "categories": ["water"], "amount": 484.3155375}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 218.3898935}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 239.5760275}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 4206.783074}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3890.877234}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 582.3304636}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 29.76671388}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 0.143568431}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.659224841}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.666362413}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.659224841}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.947615996}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.659224841}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.659224841}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.18883e-05}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["CML v4.8 2016", "ecotoxicity: terrestrial", "terrestrial ecotoxicity (TETP inf)"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.57851244}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.019197865}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 0.002117132}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.686908257}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 16.3291159}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.003851263}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4220.13516}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 20.44124316}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.610706495}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 6.589018491}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 0.972861498}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.859760308}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.490183413}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.594972359}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.55771e-05}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.000716486}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.43178e-06}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.260630905}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.039152073}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.241153066}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1766.961648}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 83.31013088}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.32408e-08}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 81.2492588}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.41506e-20}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.04096702}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.107050434}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 49.38152623}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 7.50168812}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.005142978}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.896431354}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.01912e-05}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.677825069}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3031.119801}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.27196e-19}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 108.7097487}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 6.991272773}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 4.0632e-21}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 69.02741802}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 89744.2628}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 8.544692429}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 11.53865332}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.804877405}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 588.2692621}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 11991.58892}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 11.4875777}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 22.66603011}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.516636803}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2.745601943}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000178048}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.64203e-05}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.34791e-12}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.61477e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008113672}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.72388e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 271.483092}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.002523741}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 11.54793215}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 11.54811747}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.939745149}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.096342491}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.002949857}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 6.439093707}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 15.66983733}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 23.44629566}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 20.70611846}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.075688031}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.094486765}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 4.726490856}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 4.726490856}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 28312.6357}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.04161199}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.173846406}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.088504744}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.012770435}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 4.27196e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.00047115}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 304.597033}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 17.53812242}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.50812e-07}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 116.0434782}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5.865380501}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 92.25673286}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.26837e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.019197865}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 17.16341161}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 251.2313155}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.003314907}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.030416826}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.252814177}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 6.56524e-06}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.26928e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.00036558}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.30169e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 120.4248996}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00150898}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.693729029}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 53.4729737}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 29.33138885}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.35979e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 339.8323841}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 50.7618752}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 14.36401755}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 7.86268e-22}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.59178e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1879.533466}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 35.16705282}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 665.2345714}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.02117e-17}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 11.96305468}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.5338e-21}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.019197865}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.019197865}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.019197865}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.019197865}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.3291159}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 16.3291159}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.3291159}, {"name": "Acrolein", "categories": ["air"], "amount": 16.3291159}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.610706495}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.610706495}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.610706495}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.610706495}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.859760308}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 4.859760308}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.859760308}, {"name": "Barium II", "categories": ["air"], "amount": 4.859760308}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55771e-05}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.55771e-05}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55771e-05}, {"name": "Benzene", "categories": ["air"], "amount": 1.55771e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43178e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1.43178e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43178e-06}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.43178e-06}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.260630905}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.260630905}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.260630905}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.260630905}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.039152073}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.039152073}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.039152073}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.039152073}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.241153066}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.241153066}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.241153066}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.241153066}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1766.961648}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 1766.961648}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1766.961648}, {"name": "Beryllium II", "categories": ["air"], "amount": 1766.961648}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.32408e-08}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 2.32408e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.32408e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 2.32408e-08}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 81.2492588}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 81.2492588}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 81.2492588}, {"name": "Cadmium II", "categories": ["air"], "amount": 81.2492588}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.005142978}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.005142978}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.005142978}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.005142978}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.01912e-05}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.01912e-05}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.01912e-05}, {"name": "Chloroform", "categories": ["air"], "amount": 4.01912e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3031.119801}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 3031.119801}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3031.119801}, {"name": "Chromium III", "categories": ["air"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3031.119801}, {"name": "Chromium VI", "categories": ["air"], "amount": 3031.119801}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 108.7097487}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 108.7097487}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 108.7097487}, {"name": "Cobalt II", "categories": ["air"], "amount": 108.7097487}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.991272773}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 6.991272773}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.991272773}, {"name": "Copper ion", "categories": ["air"], "amount": 6.991272773}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11991.58892}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 11991.58892}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11991.58892}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 11991.58892}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000178048}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.000178048}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000178048}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000178048}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64203e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.64203e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64203e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.64203e-05}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34791e-12}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1.34791e-12}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.34791e-12}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.61477e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.61477e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.61477e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.61477e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008113672}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.008113672}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008113672}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.008113672}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.72388e-06}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 4.72388e-06}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.72388e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002523741}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.002523741}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002523741}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.002523741}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.939745149}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.939745149}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.939745149}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.939745149}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002949857}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.002949857}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002949857}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.002949857}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.66983733}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 15.66983733}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.66983733}, {"name": "Lead II", "categories": ["air"], "amount": 15.66983733}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 28312.6357}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 28312.6357}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28312.6357}, {"name": "Mercury II", "categories": ["air"], "amount": 28312.6357}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.012770435}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.012770435}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.012770435}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.012770435}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.27196e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 4.27196e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.27196e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 4.27196e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00047115}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.00047115}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00047115}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.00047115}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.53812242}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 17.53812242}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.53812242}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 17.53812242}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.50812e-07}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 6.50812e-07}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.50812e-07}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.50812e-07}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.0434782}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 116.0434782}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.0434782}, {"name": "Nickel II", "categories": ["air"], "amount": 116.0434782}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26837e-06}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.26837e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26837e-06}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.26837e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.019197865}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 1.019197865}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.019197865}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.019197865}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003314907}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.003314907}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003314907}, {"name": "Phenol", "categories": ["air"], "amount": 0.003314907}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.030416826}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.030416826}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.030416826}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.030416826}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.252814177}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.252814177}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.252814177}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 2.252814177}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00150898}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.00150898}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00150898}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.00150898}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 53.4729737}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 53.4729737}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53.4729737}, {"name": "Selenium IV", "categories": ["air"], "amount": 53.4729737}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35979e-07}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.35979e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35979e-07}, {"name": "Styrene", "categories": ["air"], "amount": 1.35979e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 339.8323841}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 339.8323841}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 339.8323841}, {"name": "Thallium I", "categories": ["air"], "amount": 339.8323841}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.36401755}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 14.36401755}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.36401755}, {"name": "Tin ion", "categories": ["air"], "amount": 14.36401755}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.59178e-05}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.59178e-05}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.59178e-05}, {"name": "Toluene", "categories": ["air"], "amount": 1.59178e-05}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 665.2345714}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 665.2345714}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 665.2345714}, {"name": "Vanadium V", "categories": ["air"], "amount": 665.2345714}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.96305468}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 11.96305468}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.96305468}, {"name": "Zinc II", "categories": ["air"], "amount": 11.96305468}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.253223943}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.253223943}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.253223943}, {"name": "Antimony ion", "categories": ["soil"], "amount": 1.253223943}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9.97088385}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 9.97088385}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 9.97088385}, {"name": "Barium II", "categories": ["soil"], "amount": 9.97088385}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3624.728815}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3624.728815}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3624.728815}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3624.728815}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 166.8079461}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 166.8079461}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 166.8079461}, {"name": "Cadmium II", "categories": ["soil"], "amount": 166.8079461}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 6302.861689}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6302.861689}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6302.861689}, {"name": "Chromium III", "categories": ["soil"], "amount": 6302.861689}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 6302.861689}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6302.861689}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6302.861689}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6302.861689}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 223.0091107}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 223.0091107}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 223.0091107}, {"name": "Cobalt II", "categories": ["soil"], "amount": 223.0091107}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 14.35989027}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 14.35989027}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 14.35989027}, {"name": "Copper ion", "categories": ["soil"], "amount": 14.35989027}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.095958223}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 32.51821421}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 32.51821421}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 32.51821421}, {"name": "Lead II", "categories": ["soil"], "amount": 32.51821421}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 55994.13828}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 55994.13828}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 55994.13828}, {"name": "Mercury II", "categories": ["soil"], "amount": 55994.13828}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 36.14502748}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 36.14502748}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 36.14502748}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 36.14502748}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 238.5519273}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 238.5519274}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 238.5519274}, {"name": "Nickel II", "categories": ["soil"], "amount": 238.5519274}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 109.6792964}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 109.6792964}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 109.6792964}, {"name": "Selenium IV", "categories": ["soil"], "amount": 109.6792964}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 698.4945098}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 698.4945098}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 698.4945098}, {"name": "Thallium I", "categories": ["soil"], "amount": 698.4945098}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 29.80836303}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 29.80836303}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 29.80836303}, {"name": "Tin ion", "categories": ["soil"], "amount": 29.80836303}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1367.124462}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1367.124462}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1367.124462}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1367.124462}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 24.58896916}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 24.58896916}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 24.58896916}, {"name": "Zinc II", "categories": ["soil"], "amount": 24.58896916}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 0.002117132}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 0.002117132}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.000814222}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.002117132}, {"name": "Acenaphthylene", "categories": ["water", "ground-, long-term"], "amount": 0.002117132}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 0.000814222}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 0.002117132}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.003851263}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.00011682}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.003851263}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.003851263}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 1.65527e-20}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 1.65527e-20}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 2.95793e-20}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1.65527e-20}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.65527e-20}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 5.08404e-19}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 5.08404e-19}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 6.61473e-19}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 5.08404e-19}, {"name": "Barium II", "categories": ["water"], "amount": 5.08404e-19}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.37489e-05}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 1.37489e-05}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.71474e-06}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.37489e-05}, {"name": "Benzene", "categories": ["water"], "amount": 1.37489e-05}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.000716486}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000410059}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.000716486}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.000716486}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1.18734e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 1.18734e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.03112e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1.18734e-06}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 1.18734e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.29791e-16}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 3.29791e-16}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.92755e-16}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.29791e-16}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.29791e-16}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.41506e-20}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.12511e-19}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.41506e-20}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.41506e-20}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.004805763}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.004805763}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.001022648}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.004805763}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.004805763}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.92432e-05}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 3.92432e-05}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.91233e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.92432e-05}, {"name": "Chloroform", "categories": ["water"], "amount": 3.92432e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.27196e-19}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 2.27196e-19}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 2.04903e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.27196e-19}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.27196e-19}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 2.27196e-19}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.04903e-18}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.27196e-19}, {"name": "Chromium III", "categories": ["water"], "amount": 2.27196e-19}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.69481e-18}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 2.69481e-18}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 4.91636e-18}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.69481e-18}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.69481e-18}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 4.0632e-21}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.47671e-20}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 4.0632e-21}, {"name": "Copper ion", "categories": ["water"], "amount": 4.0632e-21}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.000175355}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.000175355}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.000104507}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.000175355}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.000175355}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.62095e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 2.62095e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.02926e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.62095e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 2.62095e-05}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 1.12337e-12}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 1.12337e-12}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.93462e-14}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 1.12337e-12}, {"name": "Ethylene", "categories": ["water"], "amount": 1.12337e-12}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.56142e-07}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 2.56142e-07}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.30672e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.56142e-07}, {"name": "Chloroethylene", "categories": ["water"], "amount": 2.56142e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.007943515}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.007943515}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.004009301}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.007943515}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.007943515}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.59242e-06}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 4.59242e-06}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.94708e-06}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.59242e-06}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 4.59242e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.001757229}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.001757229}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 9.6932e-05}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.001757229}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.001757229}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.001560067}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.001560067}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.42154e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.001560067}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.001560067}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.77422e-22}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 4.77422e-22}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 4.56635e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.77422e-22}, {"name": "Lead II", "categories": ["water"], "amount": 4.77422e-22}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 930.3282657}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 930.3282657}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7642.71941}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 930.3282657}, {"name": "Mercury II", "categories": ["water"], "amount": 930.3282657}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 3.8969e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 3.8969e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 6.45675e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 3.8969e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 3.8969e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000467436}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.000467436}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000358658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000467436}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000467436}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.31009e-18}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.31009e-18}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.89143e-18}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.31009e-18}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.31009e-18}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 5.98822e-07}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 5.98822e-07}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 1.0799e-07}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 5.98822e-07}, {"name": "m-Xylene", "categories": ["water"], "amount": 5.98822e-07}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 1.02958e-18}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.60828e-18}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.02958e-18}, {"name": "Nickel II", "categories": ["water"], "amount": 1.02958e-18}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.16564e-06}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.16564e-06}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 2.06792e-07}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.16564e-06}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.16564e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 0.002117132}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 0.002117132}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.000814222}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.002117132}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 2.48776e-06}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 2.48776e-06}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 3.78042e-08}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 2.48776e-06}, {"name": "Phenol", "categories": ["water"], "amount": 2.48776e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 6.56524e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 1.0451e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 6.56524e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 6.56524e-06}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.26928e-05}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.05932e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.26928e-05}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.26928e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.00036558}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 4.74435e-06}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.00036558}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.00036558}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.30169e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 8.82537e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.30169e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.30169e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.000647466}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.000647466}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.80926e-05}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.000647466}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.000647466}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.55254e-17}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 1.55254e-17}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.75745e-17}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.55254e-17}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.55254e-17}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.26503e-07}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 1.26503e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.71653e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.26503e-07}, {"name": "Styrene", "categories": ["water"], "amount": 1.26503e-07}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.13184e-17}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 3.13184e-17}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.18247e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.13184e-17}, {"name": "Thallium I", "categories": ["water"], "amount": 3.13184e-17}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 7.86268e-22}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 7.24832e-21}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 7.86268e-22}, {"name": "Tin ion", "categories": ["water"], "amount": 7.86268e-22}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.41614e-05}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 1.41614e-05}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.8729e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.41614e-05}, {"name": "Toluene", "categories": ["water"], "amount": 1.41614e-05}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 1.02117e-17}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 2.16377e-17}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.02117e-17}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.02117e-17}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 2.5338e-21}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.94558e-20}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.5338e-21}, {"name": "Zinc II", "categories": ["water"], "amount": 2.5338e-21}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.253138655}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.126483729}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.44037674}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.596861512}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.016707204}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 89744.2628}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.663267175}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.063006827}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 80.85467582}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.689752657}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.984006513}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.046591303}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.112568797}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8917.249644}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.02958e-18}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 6.277859761}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 2.489601068}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 105.652796}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1.314098078}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 89744.2628}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 1.019197865}, {"name": "Anthracene", "categories": ["air"], "amount": 0.03165522}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.230183862}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 1.019197865}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 0.203597118}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 29.73408185}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.019197865}, {"name": "Fluorene", "categories": ["air"], "amount": 1.019197865}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.802815412}, {"name": "Phenanthrene", "categories": ["air"], "amount": 0.00013547}, {"name": "Pyrene", "categories": ["air"], "amount": 1.019197865}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4.794461775}, {"name": "Permethrin", "categories": ["water"], "amount": 0.390269878}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8917.249644}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 0.000434591}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.206463693}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 0.004935323}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 6.19698e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.000491331}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.019730523}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.013964808}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.002531442}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.002117132}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.019730523}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 0.019730523}, {"name": "Anthracene", "categories": ["water"], "amount": 0.019730523}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.004031554}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-, long-term"], "amount": 0.206463693}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.206463693}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.206463693}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.087717724}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 6.19698e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 6.19698e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-, long-term"], "amount": 6.19698e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 4.06739e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008002759}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.008002759}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.008002759}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008002759}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.008002759}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 587.3381951}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 587.3381951}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 587.3381951}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 587.3381951}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 830.0602948}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.002117132}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.002531442}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.24704e-11}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.24704e-11}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 0.000762269}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 0.000762269}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.58839e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.58839e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 0.000213114}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.35214e-11}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.35214e-11}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.042760823}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 0.00216456}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000680873}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.001418673}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 6.07759e-12}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 6.07759e-12}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.83073e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.83073e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 26909.24466}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 26909.24466}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26972.99909}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 26909.24466}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 4.72388e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 0.225852834}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 89744.2628}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 634.332364}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 200.3452311}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 83.00538627}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 16.02197304}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.168548893}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 86.81610585}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 29.8896806}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.807119009}, {"name": "Glyphosate", "categories": ["water"], "amount": 2.24704e-11}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.258001228}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.038407254}, {"name": "Acrolein", "categories": ["water"], "amount": 5.837651345}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 0.031755535}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 0.764819509}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 0.303757155}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.22042e-05}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 0.01347489}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.764819509}, {"name": "Thiram", "categories": ["air"], "amount": 31.57040007}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.303757155}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 0.092878258}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 0.002660134}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.312798883}, {"name": "Triallate", "categories": ["air"], "amount": 0.006883873}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 0.006883873}, {"name": "Ethylene", "categories": ["air"], "amount": 1.34791e-12}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.000819184}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 6.04813e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.008369001}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.018210122}, {"name": "Chrysene", "categories": ["air"], "amount": 0.215190847}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 15.77051225}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1609.101123}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 3335.673763}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 3335.673763}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 3335.673763}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3335.673763}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.0385e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.0385e-17}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.96079e-17}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.0385e-17}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.0385e-17}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 8917.249644}, {"name": "Bifenthrin", "categories": ["air"], "amount": 8.78153598}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.02102326}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 83.15047122}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.78153598}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.02102326}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 15.78326675}, {"name": "Cypermethrin", "categories": ["water"], "amount": 15.78326675}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 77600.1715}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 15.78326675}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 77600.1715}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8917.249644}, {"name": "Carbendazim", "categories": ["air"], "amount": 19.81889052}, {"name": "Diuron", "categories": ["air"], "amount": 8.735349275}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 0.007067536}, {"name": "Simazine", "categories": ["air"], "amount": 8.762236893}, {"name": "2,4-D", "categories": ["water"], "amount": 9.25695e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.096478878}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 9.25695e-10}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 20.66324254}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 0.00100887}, {"name": "Simazine", "categories": ["water"], "amount": 0.00100887}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.762236893}, {"name": "Carbendazim", "categories": ["water"], "amount": 6.2678e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 37.59722245}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.81889052}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6.2678e-08}, {"name": "Acephate", "categories": ["water"], "amount": 2.18433e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.320086974}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.18433e-08}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 0.005462096}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 0.005462096}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.612724082}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007067536}, {"name": "Diuron", "categories": ["water"], "amount": 0.001676646}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 18.56576338}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.735349275}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.57040007}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 34.34774662}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 81.23108427}, {"name": "Trifluralin", "categories": ["water"], "amount": 0.01347489}, {"name": "Thiram", "categories": ["water"], "amount": 0.092878258}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.021307616}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 16.98380089}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.095958223}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 0.413157136}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 222.8364451}, {"name": "Metolachlor", "categories": ["water"], "amount": 0.000213114}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 4.443547838}, {"name": "Methomyl", "categories": ["water"], "amount": 0.00216456}, {"name": "Atrazine", "categories": ["water"], "amount": 0.000762269}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 31.57040007}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.021307616}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 0.00216456}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 118.9485519}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 0.000213114}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.537701937}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 16.68693885}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.000515628}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.000529152}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.000515628}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.000239843}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.000515628}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.000515628}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.144899733}]}, {"unit": "megajoule", "name": ["CML v4.8 2016", "energy resources: non-renewable", "abiotic depletion potential (ADP): fossil fuels"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}]}, {"unit": "kg PO4-Eq", "name": ["CML v4.8 2016", "eutrophication", "eutrophication (fate not incl.)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.35}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.022}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.1}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.42}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 0.97}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 3.06}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.35}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35}, {"name": "Ammonia", "categories": ["air"], "amount": 0.35}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.1}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Nitrate", "categories": ["air"], "amount": 0.1}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.97}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 0.97}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.97}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 0.97}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["air", "low population density, long-term"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["air"], "amount": 3.06}, {"name": "Nitrogen", "categories": ["soil", "forestry"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["soil", "industrial"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["soil"], "amount": 0.42}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil"], "amount": 3.06}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.33}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.33}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Ammonium", "categories": ["water"], "amount": 0.33}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-, long-term"], "amount": 0.022}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 0.022}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.022}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 0.022}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.1}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.1}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.1}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.1}, {"name": "Nitrate", "categories": ["water"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.1}, {"name": "Nitrite", "categories": ["water"], "amount": 0.1}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.42}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.42}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.42}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 1}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphate", "categories": ["water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["water"], "amount": 3.06}, {"name": "Nitrate", "categories": ["soil"], "amount": 0.1}, {"name": "Nitrogen", "categories": ["air"], "amount": 0.42}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.2}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.97}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 1}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.1}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 0.35}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.27}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.27}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.13}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.13}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.13}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.1}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["CML v4.8 2016", "human toxicity", "human toxicity (HTP inf)"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 46.95248552}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 572399.6238}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 280468.7123}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 21.6158398}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 56.90600399}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 7065.337009}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 506.5604567}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4669.038981}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 6707.542439}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 21.29570277}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 38.96120538}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 756.4636536}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.428415284}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 15.08444889}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1899.909223}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.101492617}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.973210461}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 3157103.03}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 409.4755204}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 226630.8493}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 28.59462036}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2224.391497}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 145040.5399}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 22.89077835}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.097484578}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 20.96550871}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 141.1897573}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1423.264744}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.41434511}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 2.176965739}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 12.66010972}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.940444523}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 646.8397982}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3425330.245}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.0522661}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 17470.22468}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 4295.027793}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.339256586}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 24.45949255}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 5203.22925}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 0.159576856}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 117.0824573}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 317.7014202}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 561.75174}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1933982792}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 168.3598988}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1269.59515}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 276.4234481}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 0.263478527}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 16.44430059}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 6.807735251}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.636745223}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 84.3427304}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.528467685}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 34.40934674}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 5675.883451}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 14074.62877}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 71.68935956}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 87.9434291}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.830667251}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.014873106}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 2850.61598}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 0.22}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 960.5245308}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 466.517307}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 488.9721488}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 168.9280705}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.025679269}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 104.2537922}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 743.5060416}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 743.5060416}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6008.157802}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 6.462060062}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 49.07942564}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 50.83126765}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 350.9998319}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.975109844}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 220.43152129999999}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 43.32398112}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 5426.282198}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.02714893}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 35032.83874}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 10.09682066}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 611.4515635}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.12474733}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 572399.6238}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.915905394}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 11.33104861}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.518172944}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 95.31928284}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 5.079340246}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.086137019}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.536966302}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 7.153902703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 6.341172176}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 26.08302291}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1262.37464}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 72.47340019}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 47687.15468}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 205.5657513}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.047384819}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.096}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 432190.2296}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 7.913637413}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.734086071}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 0.017319702}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.32691844}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 32.56742982}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 124.8288183}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 6240.349576}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 3163.049164}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 104.4419271}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.583947274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 572399.6238}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 572399.6238}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 572399.6238}, {"name": "Acenaphthene", "categories": ["air"], "amount": 572399.6238}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 56.90600399}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 56.90600399}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 56.90600399}, {"name": "Acrolein", "categories": ["air"], "amount": 56.90600399}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.1}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Ammonia", "categories": ["air"], "amount": 0.1}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6707.542439}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 6707.542439}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6707.542439}, {"name": "Antimony ion", "categories": ["air"], "amount": 6707.542439}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 756.4636536}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 756.4636536}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 756.4636536}, {"name": "Barium II", "categories": ["air"], "amount": 756.4636536}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1899.909223}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1899.909223}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1899.909223}, {"name": "Benzene", "categories": ["air"], "amount": 1899.909223}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.973210461}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.973210461}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.973210461}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.973210461}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3157103.03}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 3157103.03}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3157103.03}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 3157103.03}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 409.4755204}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 409.4755204}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 409.4755204}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 409.4755204}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 226630.8493}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 226630.8493}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 226630.8493}, {"name": "Beryllium II", "categories": ["air"], "amount": 226630.8493}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2224.391497}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 2224.391497}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2224.391497}, {"name": "Butadiene", "categories": ["air"], "amount": 2224.391497}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 145040.5399}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 145040.5399}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 145040.5399}, {"name": "Cadmium II", "categories": ["air"], "amount": 145040.5399}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.41434511}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.41434511}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.41434511}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.41434511}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.66010972}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 12.66010972}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.66010972}, {"name": "Chloroform", "categories": ["air"], "amount": 12.66010972}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 646.8397982}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 646.8397982}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 646.8397982}, {"name": "Chromium III", "categories": ["air"], "amount": 646.8397982}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 3425330.245}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 3425330.245}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3425330.245}, {"name": "Chromium VI", "categories": ["air"], "amount": 3425330.245}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 17470.22468}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 17470.22468}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17470.22468}, {"name": "Cobalt II", "categories": ["air"], "amount": 17470.22468}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4295.027793}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 4295.027793}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4295.027793}, {"name": "Copper ion", "categories": ["air"], "amount": 4295.027793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1933982792}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1933982792}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1933982792}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1933982792}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.44430059}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 16.44430059}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.44430059}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 16.44430059}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.807735251}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 6.807735251}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.807735251}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 6.807735251}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.636745223}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.636745223}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.636745223}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.3427304}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 84.3427304}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84.3427304}, {"name": "Chloroethylene", "categories": ["air"], "amount": 84.3427304}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.528467685}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 5.528467685}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.528467685}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.528467685}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.40934674}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 34.40934674}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.40934674}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14074.62877}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 14074.62877}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14074.62877}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 14074.62877}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.830667251}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.830667251}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.830667251}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.830667251}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Hydrochloric acid", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 2850.61598}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 2850.61598}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2850.61598}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 2850.61598}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 0.22}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 0.22}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 466.517307}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 466.517307}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 466.517307}, {"name": "Lead II", "categories": ["air"], "amount": 466.517307}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6008.157802}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 6008.157802}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6008.157802}, {"name": "Mercury II", "categories": ["air"], "amount": 6008.157802}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 350.9998319}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 350.9998319}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 350.9998319}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 350.9998319}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.975109844}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1.975109844}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.975109844}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.975109844}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 220.43152129999999}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 220.43152129999999}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 220.43152129999999}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 220.43152129999999}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5426.282198}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 5426.282198}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5426.282198}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 5426.282198}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02714893}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.02714893}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02714893}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.02714893}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 35032.83874}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 35032.83874}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35032.83874}, {"name": "Nickel II", "categories": ["air"], "amount": 35032.83874}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12474733}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.12474733}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12474733}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.12474733}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 572399.6238}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 572399.6238}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 572399.6238}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 572399.6238}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.518172944}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.518172944}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.518172944}, {"name": "Phenol", "categories": ["air"], "amount": 0.518172944}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 95.31928284}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 95.31928284}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 95.31928284}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 95.31928284}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.079340246}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 5.079340246}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.079340246}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 5.079340246}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1262.37464}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1262.37464}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1262.37464}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1262.37464}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 47687.15468}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 47687.15468}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 47687.15468}, {"name": "Selenium IV", "categories": ["air"], "amount": 47687.15468}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.047384819}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.047384819}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.047384819}, {"name": "Styrene", "categories": ["air"], "amount": 0.047384819}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.096}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.096}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.096}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.096}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 432190.2296}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 432190.2296}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 432190.2296}, {"name": "Thallium I", "categories": ["air"], "amount": 432190.2296}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.734086071}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 1.734086071}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.734086071}, {"name": "Tin ion", "categories": ["air"], "amount": 1.734086071}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.32691844}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.32691844}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.32691844}, {"name": "Toluene", "categories": ["air"], "amount": 0.32691844}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 6240.349576}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 6240.349576}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6240.349576}, {"name": "Vanadium V", "categories": ["air"], "amount": 6240.349576}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 104.4419271}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 104.4419271}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 104.4419271}, {"name": "Zinc II", "categories": ["air"], "amount": 104.4419271}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 8886.17791}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 2634.762665}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 2634.762665}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2634.762665}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 362.7992628}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 317.9863027}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 317.9863027}, {"name": "Barium II", "categories": ["soil"], "amount": 317.9863027}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 12759.74363}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 7049.473022}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 7049.473022}, {"name": "Beryllium II", "categories": ["soil"], "amount": 7049.473022}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 19635.29994}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 66.68443569}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 66.68443569}, {"name": "Cadmium II", "categories": ["soil"], "amount": 66.68443569}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5127.707054}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 299.8393545}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 299.8393545}, {"name": "Chromium III", "categories": ["soil"], "amount": 299.8393545}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 8546.178423}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 499.7322575}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 499.7322575}, {"name": "Chromium VI", "categories": ["soil"], "amount": 499.7322575}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2385.442004}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 59.06461831}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 59.06461831}, {"name": "Cobalt II", "categories": ["soil"], "amount": 59.06461831}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 93.85679802}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.254452298}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.254452298}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.254452298}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.00064887}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3280.690192}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 293.3054054}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 293.3054054}, {"name": "Lead II", "categories": ["soil"], "amount": 293.3054054}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 5921.154138}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1080.535201}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1080.535201}, {"name": "Mercury II", "categories": ["soil"], "amount": 1080.535201}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 6168.303633}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3063.38868}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3063.38868}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3063.38868}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2678.846488}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 198.1619649}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 198.1619649}, {"name": "Nickel II", "categories": ["soil"], "amount": 198.1619649}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 28862.50761}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 28079.08675}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 28079.08675}, {"name": "Selenium IV", "categories": ["soil"], "amount": 28079.08675}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2017113.894}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 117789.0589}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 117789.0589}, {"name": "Thallium I", "categories": ["soil"], "amount": 117789.0589}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 13.138903}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.524726874}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.524726874}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.524726874}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 18500.01247}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1696.80539}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1696.80539}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1696.80539}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 63.74466425}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.422129282}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.422129282}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.422129282}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 280468.7123}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 280468.7123}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 28788.29537}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Acenaphthene", "categories": ["water"], "amount": 280468.7123}, {"name": "Acenaphthylene", "categories": ["water", "ground-, long-term"], "amount": 280468.7123}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 28788.29537}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 280468.7123}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 7065.337009}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 50.90890083}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 7065.337009}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 7065.337009}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 5141.476631}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 5141.476631}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 8635.388246}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 5141.476631}, {"name": "Antimony ion", "categories": ["water"], "amount": 5141.476631}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 630.48373}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 630.48373}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 804.5390233}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 630.48373}, {"name": "Barium II", "categories": ["water"], "amount": 630.48373}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1830.884085}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 1830.884085}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 209.8918122}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1830.884085}, {"name": "Benzene", "categories": ["water"], "amount": 1830.884085}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 9.101492617}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.164478016}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.101492617}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 9.101492617}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.826606711}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.826606711}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.070199334}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.826606711}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.826606711}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 13974.73411}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 13974.73411}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 16171.15242}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 13974.73411}, {"name": "Beryllium II", "categories": ["water"], "amount": 13974.73411}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 22.89077835}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 103.9128177}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 22.89077835}, {"name": "Cadmium II", "categories": ["water"], "amount": 22.89077835}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.430394716}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 2.430394716}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.48164415}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.430394716}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.430394716}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 12.5243439}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 12.5243439}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 6.015220004}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 12.5243439}, {"name": "Chloroform", "categories": ["water"], "amount": 12.5243439}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.4204435}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 3.4204435}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 16.73299543}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.4204435}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.4204435}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 2.0522661}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 10.03979726}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.0522661}, {"name": "Chromium III", "categories": ["water"], "amount": 2.0522661}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 96.70201437}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 96.70201437}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 60.45069603}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 96.70201437}, {"name": "Cobalt II", "categories": ["water"], "amount": 96.70201437}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1.339256586}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 5.905060312}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.339256586}, {"name": "Copper ion", "categories": ["water"], "amount": 1.339256586}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 16.24329096}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 16.24329096}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 9.64873939}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 16.24329096}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 16.24329096}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 27.8696181}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 27.8696181}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 5.451970744}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 27.8696181}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 27.8696181}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 0.654052646}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 0.654052646}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 0.047072421}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 0.654052646}, {"name": "Ethylene", "categories": ["water"], "amount": 0.654052646}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 144.6682248}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 144.6682248}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 42.60548615}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 144.6682248}, {"name": "Chloroethylene", "categories": ["water"], "amount": 144.6682248}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.721910837}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 5.721910837}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 2.752523179}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.721910837}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 5.721910837}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 33.45953481}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 33.45953481}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 14.11827287}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 33.45953481}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 33.45953481}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 11426.26443}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 11426.26443}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 541.085742}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 11426.26443}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 11426.26443}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.037052116}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.037052116}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.8154e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.037052116}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.037052116}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 12.25950173}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 12.25950173}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 78.76428612}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 12.25950173}, {"name": "Lead II", "categories": ["water"], "amount": 12.25950173}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1425.959363}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 1425.959363}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 8195.224968}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1425.959363}, {"name": "Mercury II", "categories": ["water"], "amount": 1425.959363}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.839853574}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 1.839853574}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.298493641}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.839853574}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.839853574}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 219.692705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 219.692705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 167.828564}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 219.692705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 219.692705}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 5513.681367}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 5513.681367}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6788.946972}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 5513.681367}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5513.681367}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.336783791}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.336783791}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.010334512}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.336783791}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.336783791}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 331.0802679}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 746.665693}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 331.0802679}, {"name": "Nickel II", "categories": ["water"], "amount": 331.0802679}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.424561724}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.424561724}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.025771414}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.424561724}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.424561724}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 280468.7123}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 280468.7123}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 28788.29537}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 280468.7123}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.049158431}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.049158431}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 7.95894e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.049158431}, {"name": "Phenol", "categories": ["water"], "amount": 0.049158431}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.086137019}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.000851871}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.086137019}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.086137019}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 0.536966302}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.003009561}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.536966302}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.536966302}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 7.153902703}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.008385921}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 7.153902703}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 7.153902703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 6.341172176}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.28519923}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 6.341172176}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 6.341172176}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 2642.980524}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 2642.980524}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 15.84498715}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 2642.980524}, {"name": "Propylene oxide", "categories": ["water"], "amount": 2642.980524}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 56010.94407}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 56010.94407}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 62917.77073}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 56010.94407}, {"name": "Selenium IV", "categories": ["water"], "amount": 56010.94407}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.085066175}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.085066175}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.010186849}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.085066175}, {"name": "Styrene", "categories": ["water"], "amount": 0.085066175}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 225123.8713}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 225123.8713}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 294343.489}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 225123.8713}, {"name": "Thallium I", "categories": ["water"], "amount": 225123.8713}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 0.017319702}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 0.105182287}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 0.017319702}, {"name": "Tin ion", "categories": ["water"], "amount": 0.017319702}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.302760499}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.302760499}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.038517634}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.302760499}, {"name": "Toluene", "categories": ["water"], "amount": 0.302760499}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 3163.049164}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 6233.917231}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 3163.049164}, {"name": "Vanadium V", "categories": ["water"], "amount": 3163.049164}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.583947274}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.19999566}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.583947274}, {"name": "Zinc II", "categories": ["water"], "amount": 0.583947274}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.136013664}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.18145336}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.850360928}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.638457455}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.738320271}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 5203.22925}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.7389661}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.210621665}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 23.56553774}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.057595997}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.450871169}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003098997}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.577086947}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 166.431544}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 331.0802679}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 2734.917543}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 15.27470602}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 12.7781966}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1223.050434}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 5203.22925}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 572399.6238}, {"name": "Anthracene", "categories": ["air"], "amount": 0.520422664}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 572399.6238}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 572399.6238}, {"name": "Fluorene", "categories": ["air"], "amount": 572399.6238}, {"name": "Pyrene", "categories": ["air"], "amount": 572399.6238}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.039195746}, {"name": "Permethrin", "categories": ["water"], "amount": 22.54924968}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 166.431544}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 5.553238233}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.05711587}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 280468.7123}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.05711587}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 2.05711587}, {"name": "Anthracene", "categories": ["water"], "amount": 2.05711587}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.156677578}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3351.180314}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 3351.180314}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3351.180314}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3351.180314}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3351.180314}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 858267345.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 858267345.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 858267345.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 858267345.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 422342786.9}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 280468.7123}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.066237718}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.066237718}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 4.555788198}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 4.555788198}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 4.694817632}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 4.694817632}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 0.554356861}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 15.13770331}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 15.13770331}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.65427582}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.269386885}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.124918372}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 4.524656751}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 23.95944151}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 23.95944151}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.733209571}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.733209571}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 10123779.93}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 10123779.93}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1299184496}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 10123779.93}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 34.40934674}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 0.080087751}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 5203.22925}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 278.774953}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 0.968191034}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 12.00018312}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 3.380127333}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 413.0108847}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.717284771}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 51.45627099}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.149323301}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.066237718}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 5649677.483}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1198.715728}, {"name": "Acrolein", "categories": ["water"], "amount": 58.59259586}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 2.845330678}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 1.617587491}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 43.54358934}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 18.01470286}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 97.04684555}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1.617587491}, {"name": "Thiram", "categories": ["air"], "amount": 18.91443696}, {"name": "Dimethoate", "categories": ["air"], "amount": 43.54358934}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.310226295}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 83.44656586}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.753387639}, {"name": "Triallate", "categories": ["air"], "amount": 9.689976174}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 9.689976174}, {"name": "Ethylene", "categories": ["air"], "amount": 0.636745223}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.111306559}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 0.5}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 20.37430754}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["air"], "amount": 347699.6973}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 31813.03016}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1020.374027}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1020.374027}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1020.374027}, {"name": "Arsenic ion", "categories": ["water"], "amount": 950.6167656}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 950.6167656}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2397.031702}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 950.6167656}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 950.6167656}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 166.431544}, {"name": "Bifenthrin", "categories": ["air"], "amount": 19.42076798}, {"name": "Bifenthrin", "categories": ["water"], "amount": 98.18592011}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 0.297107111}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.42076798}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 98.18592011}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 5.548800031}, {"name": "Cypermethrin", "categories": ["water"], "amount": 5.548800031}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84613789}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.548800031}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84613789}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 166.431544}, {"name": "Carbendazim", "categories": ["air"], "amount": 19.23469038}, {"name": "Diuron", "categories": ["air"], "amount": 214.2614033}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 8.390622577}, {"name": "Simazine", "categories": ["air"], "amount": 33.32637426}, {"name": "2,4-D", "categories": ["water"], "amount": 3.466807207}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.721599071}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.466807207}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.193224878}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 9.736157846}, {"name": "Simazine", "categories": ["water"], "amount": 9.736157846}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.32637426}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.50851113}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 0.431865359}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.23469038}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.50851113}, {"name": "Acephate", "categories": ["water"], "amount": 2.111216706}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.306684008}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.111216706}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.68939329}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 6.68939329}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.998669009}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.390622577}, {"name": "Diuron", "categories": ["water"], "amount": 53.10208373}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 7.235435534}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 214.2614033}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 18.91443696}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.68248084}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.252862858}, {"name": "Trifluralin", "categories": ["water"], "amount": 97.04684555}, {"name": "Thiram", "categories": ["water"], "amount": 3.310226295}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 44.34622685}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 0.139274158}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.00064887}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 0.109797211}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 0.693002197}, {"name": "Metolachlor", "categories": ["water"], "amount": 0.554356861}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 0.875981568}, {"name": "Methomyl", "categories": ["water"], "amount": 3.269386885}, {"name": "Atrazine", "categories": ["water"], "amount": 4.555788198}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 18.91443696}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 44.34622685}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.269386885}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.158518232}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 0.554356861}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 11.44844615}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 14.45331682}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 8.854417106}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 9.057585321}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 8.854417106}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 4.093422131}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 8.854417106}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 8.854417106}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.2}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.2}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.2}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 1.838961201}]}, {"unit": "kg Sb-Eq", "name": ["CML v4.8 2016", "material resources: metals/minerals", "abiotic depletion potential (ADP): elements (ultimate reserves)"], "exchanges": [{"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.156577463}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.000442708}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 1.45748e-07}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 0.006888901}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24473e-08}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.006338267}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.14656e-05}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 2.02016e-09}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.53988e-06}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.51553e-06}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.51553e-06}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.603394795}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.000192838}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.05816e-05}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.66356227}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.016229792}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.671456e-08}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.671456e-08}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.000538067}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.44494e-06}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.671456e-08}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24473e-08}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.006338267}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538067}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.006338267}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538067}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.56882e-05}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.000538067}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.006338267}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1.183978618}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 6.04204e-06}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.156577463}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.53988e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.092226828}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 1.59761e-08}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 5.51553e-06}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 5.50238e-08}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 7.70121e-07}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.002974487}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 1.25902e-05}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.041076119}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.004271652}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 6.52264e-07}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 0.006888901}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.14656e-05}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 2.02016e-09}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 0.017767381}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.9348e-05}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 0.603394795}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 0.194094965}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1.40205e-11}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 4.05816e-05}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 40.66356227}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.42912e-05}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 0.004518138}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 5.69217e-07}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.56882e-05}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 0.001398204}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 1.45748e-07}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.09433e-09}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 7.07133e-07}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.24473e-08}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.000442708}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 2.78576e-08}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 5.44494e-06}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2.216820008}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 0.5706016}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 6.52943e-05}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 52.04250371}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.001365923}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 2.02016e-09}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.016229792}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 0.024965696}, {"name": "Bromine", "categories": ["natural resource", "in water"], "amount": 0.004392025}, {"name": "Bromine, 0.23% in water", "categories": ["natural resource", "in water"], "amount": 0.004392025}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 0.024965696}]}, {"unit": "kg CFC-11-Eq", "name": ["CML v4.8 2016", "ozone depletion", "ozone layer depletion (ODP steady state)"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.38}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.38}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 12}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.94}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.94}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg ethylene-Eq", "name": ["CML v4.8 2016", "photochemical oxidant formation", "photochemical oxidation (high NOx)"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.977}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.42}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.36}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.842}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.188}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.433}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.641}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.097}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.094}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.092}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.218}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.851}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.352}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.62}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.027}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.027}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.023}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.445}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.123}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.009}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.399}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.325}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.209}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.386}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.085}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.519}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.032}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.494}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.482}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.092}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.068}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.005}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.14}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.373}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.027}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.108}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.053}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.395}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.798}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.176}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.561}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.123}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.142}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.048}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.175}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.637}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.977}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.977}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.977}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.977}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.42}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.42}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.42}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.42}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.36}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.36}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.36}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.36}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.842}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.842}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.842}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.842}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.188}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.188}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.188}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.433}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.433}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.433}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.433}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.49}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.49}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.641}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.641}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.641}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.641}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.097}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.097}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.097}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.097}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.094}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.094}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.094}, {"name": "Acetone", "categories": ["air"], "amount": 0.094}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.092}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": -0.092}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.092}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.092}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.218}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.218}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.218}, {"name": "Benzene", "categories": ["air"], "amount": 0.218}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.73}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.73}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.851}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.851}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.851}, {"name": "Butadiene", "categories": ["air"], "amount": 0.851}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.352}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.352}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.352}, {"name": "Butane", "categories": ["air"], "amount": 0.352}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.62}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.62}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.62}, {"name": "Butanol", "categories": ["air"], "amount": 0.62}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.027}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.027}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.027}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.027}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.023}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.023}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.023}, {"name": "Chloroform", "categories": ["air"], "amount": 0.023}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Cumene", "categories": ["air"], "amount": 0.5}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.29}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.29}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.445}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.445}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.445}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.445}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.123}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.123}, {"name": "Ethane", "categories": ["air"], "amount": 0.123}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.009}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.009}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.009}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.009}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.399}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.399}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.399}, {"name": "Ethanol", "categories": ["air"], "amount": 0.399}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.029}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.029}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.325}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.325}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.325}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.209}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.209}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.209}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.209}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.386}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.386}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.386}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.386}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.085}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.085}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.085}, {"name": "Ethyne", "categories": ["air"], "amount": 0.085}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.519}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.519}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.519}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.519}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.032}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.032}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.032}, {"name": "Formic acid", "categories": ["air"], "amount": 0.032}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.494}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 0.494}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.494}, {"name": "Heptane", "categories": ["air"], "amount": 0.494}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.482}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.482}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.482}, {"name": "Hexane", "categories": ["air"], "amount": 0.482}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.092}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.092}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.092}, {"name": "Isoprene", "categories": ["air"], "amount": 1.092}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.006}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.068}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.068}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.006}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.005}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.005}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.005}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.005}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.14}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14}, {"name": "Methanol", "categories": ["air"], "amount": 0.14}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.059}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.373}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.373}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.373}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.373}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.027}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.027}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.108}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.108}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.108}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.108}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.053}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.053}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.053}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.053}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.395}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.395}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.395}, {"name": "Pentane", "categories": ["air"], "amount": 0.395}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.798}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.798}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.798}, {"name": "Propanal", "categories": ["air"], "amount": 0.798}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.176}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.176}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.176}, {"name": "Propane", "categories": ["air"], "amount": 0.176}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.561}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.561}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.561}, {"name": "Propanol", "categories": ["air"], "amount": 0.561}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.123}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 1.123}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.123}, {"name": "Propene", "categories": ["air"], "amount": 1.123}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.15}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.15}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.15}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.15}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.142}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.142}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.142}, {"name": "Styrene", "categories": ["air"], "amount": 0.142}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.048}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.048}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.048}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.048}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.175}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.175}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.175}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.175}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.637}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.637}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.637}, {"name": "Toluene", "categories": ["air"], "amount": 0.637}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.027}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.027}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.006}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.027}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.269}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.269}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.269}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.269}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.189}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.189}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.189}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.189}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.325}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.025}, {"name": "Nitric oxide", "categories": ["air"], "amount": -0.427}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.307}, {"name": "Ethylene", "categories": ["air"], "amount": 1}, {"name": "Butene", "categories": ["air"], "amount": 1.079}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.079}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 1.079}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.079}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 1.079}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.028}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.028}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.028}]}, {"unit": "kg Si-Eq", "name": ["Crustal Scarcity Indicator 2020", "material resources: metals/minerals", "crustal scarcity potential (CSP)"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.4}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 170}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 460}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 1.5}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 2900}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 3500000}, {"name": "Calcite", "categories": ["natural resource", "in ground"], "amount": 19}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6600}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 2.8}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 8100000}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 1.4}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.82}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 170}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 180}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 4100}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.47}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 21}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 260000}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 2.5}, {"name": "Fluorspar, 92%", "categories": ["natural resource", "in ground"], "amount": 250}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 76000}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 18000}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Granite", "categories": ["natural resource", "in ground"], "amount": 2.4}, {"name": "Gravel", "categories": ["natural resource", "in ground"], "amount": 2.8}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 130}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 5400000}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.4}, {"name": "Kaolinite, 24% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.82}, {"name": "Kieserite, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 160}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 14000}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 18000}, {"name": "Magnesite, 60% in crude ore", "categories": ["natural resource", "in ground"], "amount": 23}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 370}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 140}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 14000}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 4800}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 4800}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4800}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4800}, {"name": "Olivine", "categories": ["natural resource", "in ground"], "amount": 3.5}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 190000000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 190000000}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 1.7}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 650}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 650}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5800}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 190000000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 190000000}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 380}, {"name": "Pyrolusite", "categories": ["natural resource", "in ground"], "amount": 230}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 4700000000}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 4700000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1500000000}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 74000}, {"name": "Sand, unspecified", "categories": ["natural resource", "in ground"], "amount": 2.1}, {"name": "Shale", "categories": ["natural resource", "in ground"], "amount": 0.82}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 730}, {"name": "Sodium nitrate", "categories": ["natural resource", "in ground"], "amount": 840}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 160}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 670}, {"name": "Stibnite", "categories": ["natural resource", "in ground"], "amount": 1000000}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 700}, {"name": "Sylvite, 25 % in sylvinite", "categories": ["natural resource", "in ground"], "amount": 580}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 2.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 400000}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 57000000}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 170000}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.2}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.2}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 3500}, {"name": "Vermiculite", "categories": ["natural resource", "in ground"], "amount": 2.2}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 3900}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 1600}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.2}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.4}, {"name": "Steatite", "categories": ["natural resource", "in ground"], "amount": 2.2}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3900}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3900}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4800}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 11000}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 190000000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 190000000}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4700000000}, {"name": "Laterite", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 3900}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 5100000}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 620}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 3500000}, {"name": "Calcium", "categories": ["natural resource", "in ground"], "amount": 6.2}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 370}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 9400000}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 19}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 650}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 12}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 2000}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1400000}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 110000}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 150000}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 1600000}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 6600}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 79000}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 130000}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 260000}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 510}, {"name": "Fluorspar", "categories": ["natural resource", "in ground"], "amount": 250}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 76000}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 22000}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 76000}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 370000}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 5400000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 7600000000}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 0.82}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 14000}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 160}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 18000}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 940000}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 23}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 14000}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 35000}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 6900000000}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 5800}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 1500000000}, {"name": "Rubidium", "categories": ["natural resource", "in ground"], "amount": 5800}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 470000000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 74000}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 13000}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 2200000}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 580}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 400000}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 57000000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 470000}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 570000}, {"name": "Thorium", "categories": ["natural resource", "in ground"], "amount": 51000}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 280000}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 1000000}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 150000}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 15000}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 11000}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 220000}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 18000}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 3.4}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 880}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.4}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 67}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 190000000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 190000000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 4700000000}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 4800}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 220000000}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 10000}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 10}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 170000}, {"name": "Gangue", "categories": ["natural resource", "in ground"], "amount": 2.8}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 140000}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 510}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 510}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 200}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: non-renewable", "energy content (HHV)"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.9}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 19.1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.9}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 46}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: non-renewable, biomass", "energy content (HHV)"], "exchanges": [{"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: non-renewable, fossil", "energy content (HHV)"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.9}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 19.1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.9}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 46}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: non-renewable, nuclear", "energy content (HHV)"], "exchanges": [{"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: renewable", "energy content (HHV)"], "exchanges": [{"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: renewable, biomass", "energy content (HHV)"], "exchanges": [{"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: renewable, geothermal", "energy content (HHV)"], "exchanges": [{"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: renewable, geothermal, solar, wind", "energy content (HHV)"], "exchanges": [{"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: renewable, solar", "energy content (HHV)"], "exchanges": [{"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: renewable, water", "energy content (HHV)"], "exchanges": [{"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "energy resources: renewable, wind", "energy content (HHV)"], "exchanges": [{"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Energy Demand (CED)", "total", "energy content (HHV)"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.9}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 19.1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.9}, {"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 46}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: non-renewable", "exergy content"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 10.3}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 19.7}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 10.3}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 1.05}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 37.6}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 37.6}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 46.7}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: non-renewable, biomass", "exergy content"], "exchanges": [{"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 1.05}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: non-renewable, fossil", "exergy content"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 10.3}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 19.7}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 10.3}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 37.6}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 37.6}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 46.7}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: non-renewable, nuclear", "exergy content"], "exchanges": [{"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: renewable", "exergy content"], "exchanges": [{"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 0.93}, {"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 1.05}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: renewable, biomass", "exergy content"], "exchanges": [{"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 1.05}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: renewable, solar", "exergy content"], "exchanges": [{"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 0.93}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: renewable, water", "exergy content"], "exchanges": [{"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "energy resources: renewable, wind", "exergy content"], "exchanges": [{"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 1}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "material resources", "exergy content"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.73}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 0.06}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.2}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.28}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 8.58}, {"name": "Calcite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26.25}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.43}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.059}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.57}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 196.14}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 232.3}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 101.24}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 153.21}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26.84}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 142.79}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 73.15}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 33.49}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 5.77}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 21.73}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 0.082}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10500}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Fluorspar, 92%", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4200}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 4500}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 346070}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 481690}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 450000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 294940}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 146510}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1285700}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 94030}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 88732}, {"name": "Granite", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Gravel", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.045}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 2769.1}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Kaolinite, 24% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.63}, {"name": "Kieserite, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 87.5}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 4.29}, {"name": "Magnesite, 60% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.05}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 1.09}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 209.05}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 456.47}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1222.4}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1447.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 955.25}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 890.39}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 638.61}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 12.05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 45.4}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 56.06}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 60.58}, {"name": "Olivine", "categories": ["natural resource", "in ground"], "amount": 0.78}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 48902}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 12974}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.6}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.25}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 15.75}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 25144}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 94774}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.6}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 11.91}, {"name": "Pyrolusite", "categories": ["natural resource", "in ground"], "amount": 0.31}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 54365}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 204920}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 16205}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Sand, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Shale", "categories": ["natural resource", "in ground"], "amount": 0.57}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 961.16}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6300}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 10256}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5059.2}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5936.2}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 8262.7}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 0.25}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 0.35}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 19.01}, {"name": "Sylvite, 25 % in sylvinite", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.039}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 393750}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 278.32}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 630}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 24.23}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Vermiculite", "categories": ["natural resource", "in ground"], "amount": 0.039}, {"name": "Water, cooling, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, lake", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, river", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, well, in ground", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 6.79}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 161.54}, {"name": "Water, in air", "categories": ["natural resource", "in air"], "amount": 50}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 24.23}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 7.04}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 58070}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 16.66}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 996.09}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 16.66}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 996.09}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 4.2}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 8.58}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 15.75}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 26.25}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 10500}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 21}, {"name": "Fluorspar", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 4200}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 638.61}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 2769.1}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.63}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 87.5}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 1.05}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 16205}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 393750}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 278.32}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 192.5}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 4500}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 5.73}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 5.43}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 161.54}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 94774}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 12974}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 204920}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 60.58}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 58070}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 21.73}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 630}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 21}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 63}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "material resources: metals", "exergy content"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.73}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 8.58}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26.25}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.43}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 196.14}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 232.3}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 101.24}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 153.21}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26.84}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 142.79}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 73.15}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 33.49}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 5.77}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 21.73}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10500}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4200}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 4500}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 346070}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 481690}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 450000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 294940}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 146510}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1285700}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 94030}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 88732}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 2769.1}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 87.5}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 4.29}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 209.05}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 456.47}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1222.4}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1447.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 955.25}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 890.39}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 638.61}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 12.05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 45.4}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 56.06}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 60.58}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 48902}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 12974}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 25144}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 94774}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 54365}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 204920}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 16205}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 961.16}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6300}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 10256}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5059.2}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5936.2}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 8262.7}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 393750}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 278.32}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 630}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 24.23}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 6.79}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 161.54}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 24.23}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 7.04}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 58070}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 16.66}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 996.09}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 16.66}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 996.09}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 8.58}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 26.25}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 10500}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 4200}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 638.61}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 2769.1}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 87.5}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 16205}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 393750}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 278.32}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 192.5}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 4500}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 5.73}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 5.43}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 161.54}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 94774}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 12974}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 204920}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 60.58}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 58070}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 21.73}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 630}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "material resources: minerals", "exergy content"], "exchanges": [{"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 0.06}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.2}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.28}, {"name": "Calcite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.059}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.57}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 0.082}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Fluorspar, 92%", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Granite", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Gravel", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.045}, {"name": "Kaolinite, 24% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.63}, {"name": "Kieserite, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Magnesite, 60% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.05}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 1.09}, {"name": "Olivine", "categories": ["natural resource", "in ground"], "amount": 0.78}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.6}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.25}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 15.75}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.6}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 11.91}, {"name": "Pyrolusite", "categories": ["natural resource", "in ground"], "amount": 0.31}, {"name": "Sand, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Shale", "categories": ["natural resource", "in ground"], "amount": 0.57}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 0.25}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 0.35}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 19.01}, {"name": "Sylvite, 25 % in sylvinite", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.039}, {"name": "Vermiculite", "categories": ["natural resource", "in ground"], "amount": 0.039}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 4.2}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 15.75}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 21}, {"name": "Fluorspar", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.63}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 1.05}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 21}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 63}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "material resources: water", "exergy content"], "exchanges": [{"name": "Water, cooling, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, lake", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, river", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, well, in ground", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, in air", "categories": ["natural resource", "in air"], "amount": 50}]}, {"unit": "MJ-Eq", "name": ["Cumulative Exergy Demand (CExD)", "total", "exergy content"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.73}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 0.06}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.2}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.28}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 8.58}, {"name": "Calcite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26.25}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.43}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.059}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.57}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 10.3}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 19.7}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 196.14}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 232.3}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 101.24}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 153.21}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26.84}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 142.79}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 73.15}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 33.49}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 5.77}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 21.73}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 0.082}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 10500}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Fluorspar, 92%", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4200}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 4500}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 346070}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 481690}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 450000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 294940}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 146510}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1285700}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 94030}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 88732}, {"name": "Granite", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Gravel", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.045}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 2769.1}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Kaolinite, 24% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.63}, {"name": "Kieserite, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 87.5}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 4.29}, {"name": "Magnesite, 60% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.05}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 1.09}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 209.05}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 456.47}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1222.4}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1447.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 955.25}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 890.39}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 638.61}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 12.05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 45.4}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 56.06}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 60.58}, {"name": "Olivine", "categories": ["natural resource", "in ground"], "amount": 0.78}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 48902}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 12974}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 10.3}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.6}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.25}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 15.75}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 25144}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 94774}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.6}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 11.91}, {"name": "Pyrolusite", "categories": ["natural resource", "in ground"], "amount": 0.31}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 54365}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 204920}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 16205}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Sand, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.068}, {"name": "Shale", "categories": ["natural resource", "in ground"], "amount": 0.57}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 961.16}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6300}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 10256}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5059.2}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5936.2}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 8262.7}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 0.25}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 0.35}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 19.01}, {"name": "Sylvite, 25 % in sylvinite", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.039}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 393750}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 278.32}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 630}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 24.23}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Vermiculite", "categories": ["natural resource", "in ground"], "amount": 0.039}, {"name": "Water, cooling, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, lake", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, river", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Water, well, in ground", "categories": ["natural resource", "in water"], "amount": 50}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 6.79}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 161.54}, {"name": "Water, in air", "categories": ["natural resource", "in air"], "amount": 50}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 24.23}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 7.04}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 58070}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 16.66}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 996.09}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 0.93}, {"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 1.05}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 1.05}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 16.66}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 996.09}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 4.2}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 8.58}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 4.44}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 15.75}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 26.25}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 10500}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 21}, {"name": "Fluorspar", "categories": ["natural resource", "in ground"], "amount": 0.15}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 4200}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 638.61}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 2769.1}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.63}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 87.5}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 1.05}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 16205}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 2100}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 393750}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 278.32}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 192.5}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 4500}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 5.73}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 2.52}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 5.43}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 157.5}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 161.54}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 94774}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 12974}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 204920}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 60.58}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 58070}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 21.73}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 630}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 37.6}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 21}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 63}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 37.6}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 46.7}]}, {"unit": "square meter-year", "name": ["Ecological Footprint", "CO2", "global hectares"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.6722}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6722}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2.6722}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6722}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 2.6722}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.6722}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -2.6722}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -2.6722}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -2.6722}]}, {"unit": "square meter-year", "name": ["Ecological Footprint", "land occupation", "global hectares"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, lake, artificial", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, river, artificial", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, river, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": 0.36}, {"name": "Occupation, seabed, infrastructure", "categories": ["natural resource", "land"], "amount": 0.36}, {"name": "Occupation, seabed, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.36}, {"name": "Occupation, seabed, unspecified", "categories": ["natural resource", "land"], "amount": 0.36}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 2.19}]}, {"unit": "square meter-year", "name": ["Ecological Footprint", "nuclear", "global hectares"], "exchanges": [{"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 109740}]}, {"unit": "square meter-year", "name": ["Ecological Footprint", "total", "global hectares"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.6722}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, lake, artificial", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.48}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, river, artificial", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, river, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": 0.36}, {"name": "Occupation, seabed, infrastructure", "categories": ["natural resource", "land"], "amount": 0.36}, {"name": "Occupation, seabed, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.36}, {"name": "Occupation, seabed, unspecified", "categories": ["natural resource", "land"], "amount": 0.36}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 1.38}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6722}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2.6722}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6722}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.6722}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 2.19}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 2.6722}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6722}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.6722}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -2.6722}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -2.6722}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -2.6722}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 109740}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "climate change no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3100}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1000}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1000}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1000}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1000}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1000}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000}, {"name": "Chloroform", "categories": ["air"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 16000}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 270000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4800000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 140000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11000000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3200000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1800000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 680000}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 30000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 28000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6600000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12000000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 16000000}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8600000}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 24000000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to air no LT", "air pollutants and PM no LT"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetone", "categories": ["air"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acrolein", "categories": ["air"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 44000}, {"name": "Ammonia", "categories": ["air"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 44000}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butane", "categories": ["air"], "amount": 12000}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butanol", "categories": ["air"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butene", "categories": ["air"], "amount": 12000}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Cumene", "categories": ["air"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane", "categories": ["air"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethanol", "categories": ["air"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene", "categories": ["air"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethyne", "categories": ["air"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Formic acid", "categories": ["air"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Furan", "categories": ["air"], "amount": 12000}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Heptane", "categories": ["air"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hexane", "categories": ["air"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 7300}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13000}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 16000}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Isoprene", "categories": ["air"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methanol", "categories": ["air"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Nitric acid", "categories": ["air"], "amount": 4200}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 4200}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 33000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Paraffins", "categories": ["air"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 160000}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Pentane", "categories": ["air"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Phenol", "categories": ["air"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 8100}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propanal", "categories": ["air"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propane", "categories": ["air"], "amount": 12000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propanol", "categories": ["air"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propene", "categories": ["air"], "amount": 12000}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Styrene", "categories": ["air"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 5400}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Terpenes", "categories": ["air"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Toluene", "categories": ["air"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Xylene", "categories": ["air"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to air no LT", "carcinogenic substances into air no LT"], "exchanges": [{"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 910000}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 110000000}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 69000}, {"name": "Benzene", "categories": ["air"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 69000}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1100000000}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 110000000}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 11000000}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 300000}, {"name": "Butadiene", "categories": ["air"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 300000}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Chrysene", "categories": ["air"], "amount": 1100000}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1100000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 9200000000000}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 120000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 140000}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 270000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 110000000}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 96000}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 2200000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to air no LT", "heavy metals into air no LT"], "exchanges": [{"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 59000000}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 230000}, {"name": "Chromium III", "categories": ["air"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 230000}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7500000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1700000}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8700000}, {"name": "Lead II", "categories": ["air"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 8700000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 720000000}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5200000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4700000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to air no LT", "radioactive substances into air no LT"], "exchanges": [{"name": "Aerosols, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0032}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.0063}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.0068}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.11}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.00022}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.0084}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 7.4e-06}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 8.4e-05}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 5e-06}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 7.4e-08}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.00078}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.7e-08}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.00078}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "urban air close to ground"], "amount": 0.003}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.00047}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 0.023}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 0.051}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.0043}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 7.4e-08}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to soil no LT", "heavy metals into soil no LT"], "exchanges": [{"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 37000000}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 100000}, {"name": "Chromium III", "categories": ["soil"], "amount": 100000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["soil"], "amount": 330000000}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 770000}, {"name": "Copper ion", "categories": ["soil"], "amount": 770000}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 460000}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 460000}, {"name": "Lead II", "categories": ["soil"], "amount": 460000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 200000000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 200000000}, {"name": "Mercury II", "categories": ["soil"], "amount": 200000000}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 4100000}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 4100000}, {"name": "Nickel II", "categories": ["soil"], "amount": 4100000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2200000}, {"name": "Zinc II", "categories": ["soil"], "amount": 2200000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to soil no LT", "pesticides into soil no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1200}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 8800000}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7100000}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2700000}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 4900}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 250000}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 330000}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 18000}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 760000}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 4800}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 160000}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 13000000}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 900000}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 590000}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6800000}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 62000}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 22000000}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 13000000}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 870000}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 43000}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Chlorthal", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 280000}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 3600}, {"name": "Cinidon-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 67000}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cloransulam-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Cupric hydroxide", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 96000}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 350000}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 18000}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 92000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 180000}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 370000}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 44000}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Diclofop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 68000}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 28000}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 37000}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimefuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 190000}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 8500000}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3100000}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 49000}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 20000000}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 9300000}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 54000}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 9300}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3200000}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 570000}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 230000}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 380000}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 160000}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Fenoxaprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 8500}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 770}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 3600000}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpropimorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flonicamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 17000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 290000}, {"name": "Flucarbazone sodium salt", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Fluoroglycofen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 490000}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 720000}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5000000}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 3100}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 50000}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 280000}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 380000}, {"name": "Hexaconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 610000}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 49000}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 50000}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 1200}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 370000}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 4900000}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iodosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 210000}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 5600000}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 21000000}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 35000}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1600000}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 36000}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 45}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 930000}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 510000}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 14000}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 63000}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 6800000}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 2700000}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 790000}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 450000}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 500000}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 78000}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Oils, non-fossil", "categories": ["soil", "agricultural"], "amount": 11000}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 11000}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 400000}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 88000}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 3000000}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 580000}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5700000}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7900000}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 5200000}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 10000}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3300000}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 410000}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 89000}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1700000}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 690000}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 470000}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 440000}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 15000000}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 740000}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 40000}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 540000}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 370}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2700}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 420000}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 650000}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 5100000}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1700000}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 17000}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 9800000}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 220}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1000000}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 68000}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 740000}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1900}, {"name": "Quinoxyfen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 75000}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spinosad", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 15000}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfosate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 9300}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 82000}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1600000}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebutam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4600000}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 7900000}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 300000}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 9700}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 5000000}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 87000}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tribenuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 650000}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 3100000}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 12000000}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 78000}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 460000}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 500000}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2800000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to water no LT", "heavy metals into water no LT"], "exchanges": [{"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 6200000}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 6200000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 6200000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1100000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1100000}, {"name": "Cadmium II", "categories": ["water"], "amount": 1100000}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 610}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 610}, {"name": "Chromium III", "categories": ["water"], "amount": 610}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 9700000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9700000}, {"name": "Chromium VI", "categories": ["water"], "amount": 9700000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4200}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 4200}, {"name": "Copper ion", "categories": ["water"], "amount": 4200}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 9700000}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 9700000}, {"name": "Dichromate", "categories": ["water"], "amount": 9700000}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 18000}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 18000}, {"name": "Iron ion", "categories": ["water"], "amount": 18000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 12000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 12000}, {"name": "Lead II", "categories": ["water"], "amount": 12000}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1200}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 1200}, {"name": "Manganese II", "categories": ["water"], "amount": 1200}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 4300000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 4300000}, {"name": "Mercury II", "categories": ["water"], "amount": 4300000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 120000}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 120000}, {"name": "Nickel II", "categories": ["water"], "amount": 120000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 61000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 61000}, {"name": "Zinc II", "categories": ["water"], "amount": 61000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to water no LT", "POP into water no LT"], "exchanges": [{"name": "Anthracene", "categories": ["water", "surface water"], "amount": 660000000}, {"name": "Anthracene", "categories": ["water"], "amount": 660000000}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 13000000}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 13000000}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 1200000000}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 1200000000}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 2400000000}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 2400000000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 17000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 3300000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 3300000000}, {"name": "Diuron", "categories": ["water"], "amount": 5500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 480000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 480000}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 760000}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 760000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 7700000000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 7700000000}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 150000000}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 150000000}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 100000000}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 100000000}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 410000000}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 410000000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 20000000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 20000000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 6100000}, {"name": "Toluene", "categories": ["water"], "amount": 6100000}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 3500000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 14000000}, {"name": "Xylene", "categories": ["water"], "amount": 14000000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to water no LT", "radioactive substances into water no LT"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 1800}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 3900}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.01}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.01}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1.9}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 10}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.8}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.8}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 2.1}, {"name": "Caesium-137", "categories": ["water"], "amount": 2.1}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 150}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00053}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00053}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 50}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 0.55}, {"name": "Cobalt-60", "categories": ["water"], "amount": 0.55}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 7200}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 0.0088}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 5.5e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 5.5e-06}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 13000}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0063}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0063}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0039}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0039}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 940}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water", "ocean"], "amount": 820}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water", "surface water"], "amount": 0.37}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water"], "amount": 0.37}, {"name": "Radioactive species, alpha emitters", "categories": ["water", "surface water"], "amount": 0.00039}, {"name": "Radioactive species, alpha emitters", "categories": ["water"], "amount": 0.00039}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.0016}, {"name": "Radium-226", "categories": ["water"], "amount": 0.0016}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 18}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0063}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0063}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.51}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.03}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 3.2}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.029}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.029}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.029}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.029}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "emissions to water no LT", "water pollutants no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 46000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 46000}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 46000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 54000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 54000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 54000}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Acenaphthene", "categories": ["water"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 19000000}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 28000}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 28000}, {"name": "Ammonium", "categories": ["water"], "amount": 28000}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 39000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 39000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 39000}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 4000}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 19000000}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 6800}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 6800}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 6800}, {"name": "Chlorinated solvents, unspecified", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water"], "amount": 54000}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1700}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1700}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1700}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 150000}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 150000}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 150000}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water"], "amount": 54000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 5100}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5100}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5100}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 27000}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 8100}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 8100}, {"name": "Nitrate", "categories": ["water"], "amount": 8100}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 11000}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 11000}, {"name": "Nitrite", "categories": ["water"], "amount": 11000}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 36000}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 36000}, {"name": "Nitrogen", "categories": ["water"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 36000}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 290000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 19000000}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 320000}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 320000}, {"name": "Phosphate", "categories": ["water"], "amount": 320000}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 970000}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 970000}, {"name": "Phosphorus", "categories": ["water"], "amount": 970000}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 220}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 6.5}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 6.5}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 12}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 7.2}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.2}, {"name": "Styrene", "categories": ["water"], "amount": 7.2}, {"name": "Tributyltin compounds", "categories": ["water", "ocean"], "amount": 7.600000000000001}, {"name": "Tributyltin compounds", "categories": ["water", "surface water"], "amount": 7.600000000000001}, {"name": "Tributyltin compounds", "categories": ["water"], "amount": 7.600000000000001}, {"name": "Trifluralin", "categories": ["water"], "amount": 4200}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.26}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.26}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.26}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "energy resources no LT", "energy resources no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 80}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 160}, {"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 2.8}, {"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 2.8}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 8.3}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 2.6}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 2.6}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 2.5}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 330}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 330}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 380}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 4600000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "land use no LT", "land use no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 860}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 1340}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 100}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 1340}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 1380}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 1380}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 1470}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 1460}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 1460}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1530}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "mineral resources no LT", "mineral resources no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0038}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0038}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 150000}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 350}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.3}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 2.2}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 12}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 44000}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 42}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 750}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 540000}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 540000}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 290}, {"name": "Calcium", "categories": ["natural resource", "in ground"], "amount": 0.054}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 37}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 37}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 39}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 7.3}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 9.5}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 9.5}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 0.063}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 0.063}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 4.8}, {"name": "Gravel", "categories": ["natural resource", "in ground"], "amount": 28}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 0.58}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 20}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 16000}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 16000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 29000000}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 100}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.026}, {"name": "Magnesite, 60% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.026}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 3.7}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.7}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 410000}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 11000000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 0.02}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 14}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 14}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 160000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 160000000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 55000000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Sand, unspecified", "categories": ["natural resource", "in ground"], "amount": 28}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 0.011}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 47000}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.00012}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 0.025}, {"name": "Stibnite", "categories": ["natural resource", "in ground"], "amount": 8400}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.25}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 23}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Sylvite, 25 % in sylvinite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 190}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 190}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 25000000}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 25000000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 75}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 12000}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12000}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.057}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 39}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 15}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 3.9}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.9}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "natural resources no LT", "biotic resources no LT"], "exchanges": [{"name": "Fish, demersal, in ocean", "categories": ["natural resource", "biotic"], "amount": 9290}, {"name": "Fish, pelagic, in ocean", "categories": ["natural resource", "biotic"], "amount": 9290}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "ozone depletion no LT", "ozone depletion no LT"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2500000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 20000000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2800000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 500000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 550000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 15000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 75000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 250000000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 500000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 28000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 25000000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "total no LT", "UBP no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 46000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 46000}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 46000}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1200}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 54000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 54000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 54000}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Acenaphthene", "categories": ["water"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 19000000}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetone", "categories": ["air"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 8800000}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acrolein", "categories": ["air"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 910000}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 1800}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0032}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7100000}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0038}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0038}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 3900}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2700000}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 44000}, {"name": "Ammonia", "categories": ["air"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 44000}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 28000}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 28000}, {"name": "Ammonium", "categories": ["water"], "amount": 28000}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 660000000}, {"name": "Anthracene", "categories": ["water"], "amount": 660000000}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 4900}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 150000}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.01}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.01}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1.9}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 350}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 6200000}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 6200000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 6200000}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 250000}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 330000}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.3}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 2.2}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 18000}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 760000}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 4800}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 110000000}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 69000}, {"name": "Benzene", "categories": ["air"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 69000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 39000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 39000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 39000}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 13000000}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 13000000}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 4000}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 19000000}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 110000000}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 1200000000}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 1200000000}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 11000000}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 2400000000}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 2400000000}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 12}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 160000}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 44000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 17000000}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 42}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 750}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 13000000}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 300000}, {"name": "Butadiene", "categories": ["air"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 300000}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butane", "categories": ["air"], "amount": 12000}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butanol", "categories": ["air"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butene", "categories": ["air"], "amount": 12000}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 900000}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 6800}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 6800}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 6800}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 540000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1100000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1100000}, {"name": "Cadmium II", "categories": ["water"], "amount": 1100000}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 540000}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 290}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 10}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.8}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.8}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 2.1}, {"name": "Caesium-137", "categories": ["water"], "amount": 2.1}, {"name": "Calcium", "categories": ["natural resource", "in ground"], "amount": 0.054}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 590000}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6800000}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 62000}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 22000000}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3100}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1000}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 150}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 13000000}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 870000}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water"], "amount": 54000}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 43000}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water"], "amount": 54000}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000}, {"name": "Chloroform", "categories": ["air"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 16000}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Chlorthal", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 280000}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 3600}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 230000}, {"name": "Chromium III", "categories": ["air"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 230000}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 100000}, {"name": "Chromium III", "categories": ["soil"], "amount": 100000}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 610}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 610}, {"name": "Chromium III", "categories": ["water"], "amount": 610}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["soil"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 9700000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9700000}, {"name": "Chromium VI", "categories": ["water"], "amount": 9700000}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Chrysene", "categories": ["air"], "amount": 1100000}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Cinidon-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 67000}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cloransulam-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 80}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 160}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 37}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 37}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00053}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00053}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 50}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 0.55}, {"name": "Cobalt-60", "categories": ["water"], "amount": 0.55}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 39}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1700000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 770000}, {"name": "Copper ion", "categories": ["soil"], "amount": 770000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4200}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 4200}, {"name": "Copper ion", "categories": ["water"], "amount": 4200}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Cumene", "categories": ["air"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cupric hydroxide", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 7200}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 96000}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 350000}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 18000}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 92000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 180000}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1100000000}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 370000}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 44000}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 9700000}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 9700000}, {"name": "Dichromate", "categories": ["water"], "amount": 9700000}, {"name": "Diclofop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 68000}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 28000}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 37000}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimefuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 190000}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 8500000}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3100000}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 270000}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 49000}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 20000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 3300000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 3300000000}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 9300000}, {"name": "Diuron", "categories": ["water"], "amount": 5500000}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 54000}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 9300}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 7.3}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3200000}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 570000}, {"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 2.8}, {"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 2.8}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 8.3}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 2.6}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 2.6}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 2.5}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 120000}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane", "categories": ["air"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1700}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1700}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1700}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4800000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 20000000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2800000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 480000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 480000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2000000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 500000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 550000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 15000000}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 150000}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 150000}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 150000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11000000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3200000}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethanol", "categories": ["air"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 230000}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene", "categories": ["air"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 760000}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 760000}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethyne", "categories": ["air"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 380000}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 160000}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Fenoxaprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 8500}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 770}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 3600000}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpropimorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fish, demersal, in ocean", "categories": ["natural resource", "biotic"], "amount": 9290}, {"name": "Fish, pelagic, in ocean", "categories": ["natural resource", "biotic"], "amount": 9290}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flonicamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 17000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 290000}, {"name": "Flucarbazone sodium salt", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluoroglycofen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 490000}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 720000}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5000000}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Formic acid", "categories": ["air"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 3100}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 50000}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Furan", "categories": ["air"], "amount": 12000}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 9.5}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 9.5}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 0.063}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 0.063}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 330}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 330}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 280000}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 4.8}, {"name": "Gravel", "categories": ["natural resource", "in ground"], "amount": 28}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 0.58}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Heptane", "categories": ["air"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 380000}, {"name": "Hexaconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hexane", "categories": ["air"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 610000}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 20}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1800000}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 7300}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13000}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 16000}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 0.0088}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 5.5e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 5.5e-06}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 49000}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 50000}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 1200}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 370000}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 4900000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 110000000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 7700000000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 7700000000}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 16000}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 16000}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 13000}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0063}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0063}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 5e-06}, {"name": "Iodosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 210000}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 29000000}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 18000}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 18000}, {"name": "Iron ion", "categories": ["water"], "amount": 18000}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Isoprene", "categories": ["air"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 7.4e-08}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8700000}, {"name": "Lead II", "categories": ["air"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 8700000}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 460000}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 460000}, {"name": "Lead II", "categories": ["soil"], "amount": 460000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 12000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 12000}, {"name": "Lead II", "categories": ["water"], "amount": 12000}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.00078}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 5600000}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 21000000}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 100}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.026}, {"name": "Magnesite, 60% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.026}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 35000}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1600000}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 3.7}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1200}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 1200}, {"name": "Manganese II", "categories": ["water"], "amount": 1200}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.7}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0039}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0039}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 36000}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 45}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 410000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 720000000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 200000000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 200000000}, {"name": "Mercury II", "categories": ["soil"], "amount": 200000000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 4300000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 4300000}, {"name": "Mercury II", "categories": ["water"], "amount": 4300000}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 930000}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 510000}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 14000}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 63000}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 15000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 75000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 250000000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 500000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1800000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water"], "amount": 54000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 680000}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 30000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 28000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 5100}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5100}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5100}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6600000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12000000}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methanol", "categories": ["air"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 6800000}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 2700000}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 790000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 450000}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 500000}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5200000}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 4100000}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 4100000}, {"name": "Nickel II", "categories": ["soil"], "amount": 4100000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 120000}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 120000}, {"name": "Nickel II", "categories": ["water"], "amount": 120000}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 27000}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 8100}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 8100}, {"name": "Nitrate", "categories": ["water"], "amount": 8100}, {"name": "Nitric acid", "categories": ["air"], "amount": 4200}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 4200}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 11000}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 11000}, {"name": "Nitrite", "categories": ["water"], "amount": 11000}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 36000}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 36000}, {"name": "Nitrogen", "categories": ["water"], "amount": 36000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 16000000}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 33000}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 36000}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 78000}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.7e-08}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 860}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 1340}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 100}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 1340}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 1380}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 1380}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 1470}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 1460}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 1460}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 380}, {"name": "Oils, non-fossil", "categories": ["soil", "agricultural"], "amount": 11000}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 11000}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 290000}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 400000}, {"name": "Organic carbon, placed in landfill", "categories": ["inventory indicator", "waste"], "amount": 6200}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 11000000}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 88000}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 3000000}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 580000}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5700000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 19000000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Paraffins", "categories": ["air"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7900000}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 160000}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 5200000}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 10000}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3300000}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Pentane", "categories": ["air"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8600000}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 410000}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 89000}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Phenol", "categories": ["air"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1700000}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 320000}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 320000}, {"name": "Phosphate", "categories": ["water"], "amount": 320000}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 8100}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 970000}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 970000}, {"name": "Phosphorus", "categories": ["water"], "amount": 970000}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 220}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 150000000}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 150000000}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 100000000}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 100000000}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 6.5}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 6.5}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 410000000}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 410000000}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 690000}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 470000}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 440000}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 940}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.00078}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 0.02}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 14}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 14}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 15000000}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 740000}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 40000}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 540000}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 370}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2700}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propanal", "categories": ["air"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propane", "categories": ["air"], "amount": 12000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 420000}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propanol", "categories": ["air"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 650000}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propene", "categories": ["air"], "amount": 12000}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 5100000}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1700000}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 96000}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 17000}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 9800000}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 220}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1000000}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 68000}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 740000}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1900}, {"name": "Quinoxyfen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water", "ocean"], "amount": 820}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water", "surface water"], "amount": 0.37}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water"], "amount": 0.37}, {"name": "Radioactive species, alpha emitters", "categories": ["water", "surface water"], "amount": 0.00039}, {"name": "Radioactive species, alpha emitters", "categories": ["water"], "amount": 0.00039}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "urban air close to ground"], "amount": 0.003}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.0016}, {"name": "Radium-226", "categories": ["water"], "amount": 0.0016}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 160000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 160000000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 55000000}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 18}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Sand, unspecified", "categories": ["natural resource", "in ground"], "amount": 28}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 0.011}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 47000}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 75000}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.00012}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0063}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0063}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 0.025}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spinosad", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 15000}, {"name": "Stibnite", "categories": ["natural resource", "in ground"], "amount": 8400}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.25}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.51}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Styrene", "categories": ["air"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 7.2}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.2}, {"name": "Styrene", "categories": ["water"], "amount": 7.2}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfosate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 23}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 9300}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 24000000}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 82000}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Sylvite, 25 % in sylvinite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 190}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 190}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1600000}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebutam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 25000000}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 25000000}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Terpenes", "categories": ["air"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 20000000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 20000000}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4600000}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 7900000}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 300000}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 9700}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 5000000}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 0.023}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 75}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 12000}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12000}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.057}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Toluene", "categories": ["air"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 6100000}, {"name": "Toluene", "categories": ["water"], "amount": 6100000}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 87000}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tribenuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Tributyltin compounds", "categories": ["water", "ocean"], "amount": 7.600000000000001}, {"name": "Tributyltin compounds", "categories": ["water", "surface water"], "amount": 7.600000000000001}, {"name": "Tributyltin compounds", "categories": ["water"], "amount": 7.600000000000001}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 3500000}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 650000}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 3100000}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 12000000}, {"name": "Trifluralin", "categories": ["water"], "amount": 4200}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 78000}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 39}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 4600000}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.03}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 3.2}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.029}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.029}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.029}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.029}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 460000}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "Volume occupied, final repository for low-active radioactive waste", "categories": ["natural resource", "in ground"], "amount": 680000}, {"name": "Volume occupied, final repository for radioactive waste", "categories": ["natural resource", "in ground"], "amount": 47000000000}, {"name": "Volume occupied, underground deposit", "categories": ["natural resource", "in ground"], "amount": 230000000}, {"name": "Waste mass, total, placed in landfill", "categories": ["inventory indicator", "waste"], "amount": 24}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 990}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 990}, {"name": "Water", "categories": ["air"], "amount": 990}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 990}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 7.4e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Xylene", "categories": ["air"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 14000000}, {"name": "Xylene", "categories": ["water"], "amount": 14000000}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 15}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4700000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2200000}, {"name": "Zinc II", "categories": ["soil"], "amount": 2200000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 61000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 61000}, {"name": "Zinc II", "categories": ["water"], "amount": 61000}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 500000}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 3.9}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.9}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 2200000}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.26}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.26}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.26}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2800000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "waste disposal no LT", "radioactive waste to deposit no LT"], "exchanges": [{"name": "Volume occupied, final repository for low-active radioactive waste", "categories": ["natural resource", "in ground"], "amount": 680000}, {"name": "Volume occupied, final repository for radioactive waste", "categories": ["natural resource", "in ground"], "amount": 47000000000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "waste disposal no LT", "waste, non radioactive no LT"], "exchanges": [{"name": "Organic carbon, placed in landfill", "categories": ["inventory indicator", "waste"], "amount": 6200}, {"name": "Volume occupied, underground deposit", "categories": ["natural resource", "in ground"], "amount": 230000000}, {"name": "Waste mass, total, placed in landfill", "categories": ["inventory indicator", "waste"], "amount": 24}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021 no LT", "water use no LT", "water resources, evaporated no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 990}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 990}, {"name": "Water", "categories": ["air"], "amount": 990}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 990}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3100}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1000}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1000}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1000}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1000}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1000}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000}, {"name": "Chloroform", "categories": ["air"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 16000}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 270000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4800000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 140000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11000000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3200000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1800000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 680000}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 30000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 28000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6600000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12000000}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 16000000}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8600000}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 24000000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to air", "air pollutants and PM"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetone", "categories": ["air"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acrolein", "categories": ["air"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 44000}, {"name": "Ammonia", "categories": ["air"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 44000}, {"name": "Benzal chloride", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butane", "categories": ["air"], "amount": 12000}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butanol", "categories": ["air"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butene", "categories": ["air"], "amount": 12000}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Cumene", "categories": ["air"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane", "categories": ["air"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethanol", "categories": ["air"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene", "categories": ["air"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethyne", "categories": ["air"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Formic acid", "categories": ["air"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Furan", "categories": ["air"], "amount": 12000}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Heptane", "categories": ["air"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hexane", "categories": ["air"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrochloric acid", "categories": ["air", "low population density, long-term"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 7300}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13000}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 16000}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Isoprene", "categories": ["air"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methanol", "categories": ["air"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Nitric acid", "categories": ["air"], "amount": 4200}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 4200}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 33000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Paraffins", "categories": ["air"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 160000}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Pentane", "categories": ["air"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Phenol", "categories": ["air"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 8100}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propanal", "categories": ["air"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propane", "categories": ["air"], "amount": 12000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propanol", "categories": ["air"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propene", "categories": ["air"], "amount": 12000}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Styrene", "categories": ["air"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 5400}, {"name": "Terpenes", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Terpenes", "categories": ["air"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Toluene", "categories": ["air"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Xylene", "categories": ["air"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to air", "carcinogenic substances into air"], "exchanges": [{"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 910000}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 110000000}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 69000}, {"name": "Benzene", "categories": ["air"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 69000}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1100000000}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 110000000}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 11000000}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 300000}, {"name": "Butadiene", "categories": ["air"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 300000}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Chrysene", "categories": ["air"], "amount": 1100000}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1100000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 9200000000000}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 120000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 140000}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 270000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 110000000}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 96000}, {"name": "o-Nitrotoluene", "categories": ["air", "low population density, long-term"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 2200000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to air", "heavy metals into air"], "exchanges": [{"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 59000000}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 230000}, {"name": "Chromium III", "categories": ["air"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 230000}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7500000}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1700000}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8700000}, {"name": "Lead II", "categories": ["air"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 8700000}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 720000000}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5200000}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4700000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to air", "radioactive substances into air"], "exchanges": [{"name": "Aerosols, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0032}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.0063}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.0068}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.11}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.00022}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.0084}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 7.4e-06}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 8.4e-05}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 5e-06}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 7.4e-08}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.00078}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.7e-08}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Plutonium-alpha", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.00078}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "low population density, long-term"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "urban air close to ground"], "amount": 0.003}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.00047}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 0.023}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 0.051}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.0043}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 7.4e-08}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to soil", "heavy metals into soil"], "exchanges": [{"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 37000000}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 100000}, {"name": "Chromium III", "categories": ["soil"], "amount": 100000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["soil"], "amount": 330000000}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 770000}, {"name": "Copper ion", "categories": ["soil"], "amount": 770000}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 460000}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 460000}, {"name": "Lead II", "categories": ["soil"], "amount": 460000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 200000000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 200000000}, {"name": "Mercury II", "categories": ["soil"], "amount": 200000000}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 4100000}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 4100000}, {"name": "Nickel II", "categories": ["soil"], "amount": 4100000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2200000}, {"name": "Zinc II", "categories": ["soil"], "amount": 2200000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to soil", "pesticides into soil"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1200}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 8800000}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7100000}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2700000}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 4900}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 250000}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 330000}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 18000}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 760000}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 4800}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 160000}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 13000000}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 900000}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 590000}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6800000}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 62000}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 22000000}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 13000000}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 870000}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 43000}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Chlorthal", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 280000}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 3600}, {"name": "Cinidon-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 67000}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cloransulam-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Cupric hydroxide", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 96000}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 350000}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 18000}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 92000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 180000}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 370000}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 44000}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Diclofop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 68000}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 28000}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 37000}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimefuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 190000}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 8500000}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3100000}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 49000}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 20000000}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 9300000}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 54000}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 9300}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3200000}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 570000}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 230000}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 380000}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 160000}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Fenoxaprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 8500}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 770}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 3600000}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpropimorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flonicamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 17000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 290000}, {"name": "Flucarbazone sodium salt", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Fluoroglycofen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 490000}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 720000}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5000000}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 3100}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 50000}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 280000}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 380000}, {"name": "Hexaconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 610000}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 49000}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 50000}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 1200}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 370000}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 4900000}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iodosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 210000}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 5600000}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 21000000}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 35000}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1600000}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 36000}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 45}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 930000}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 510000}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 14000}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 63000}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 6800000}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 2700000}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 790000}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 450000}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 500000}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 78000}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Oils, non-fossil", "categories": ["soil", "agricultural"], "amount": 11000}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 11000}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 400000}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 88000}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 3000000}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 580000}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5700000}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7900000}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 5200000}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 10000}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3300000}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 410000}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 89000}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1700000}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 690000}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 470000}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 440000}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 15000000}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 740000}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 40000}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 540000}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 370}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2700}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 420000}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 650000}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 5100000}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1700000}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 17000}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 9800000}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 220}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1000000}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 68000}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 740000}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1900}, {"name": "Quinoxyfen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 75000}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spinosad", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 15000}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfosate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 9300}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 82000}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1600000}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebutam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4600000}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 7900000}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 300000}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 9700}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 5000000}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 87000}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tribenuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 650000}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 3100000}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 12000000}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 78000}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 460000}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 500000}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2800000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to water", "heavy metals into water"], "exchanges": [{"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 6200000}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 6200000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 6200000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1100000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1100000}, {"name": "Cadmium II", "categories": ["water"], "amount": 1100000}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 610}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 610}, {"name": "Chromium III", "categories": ["water"], "amount": 610}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 9700000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9700000}, {"name": "Chromium VI", "categories": ["water"], "amount": 9700000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4200}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 4200}, {"name": "Copper ion", "categories": ["water"], "amount": 4200}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 9700000}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 9700000}, {"name": "Dichromate", "categories": ["water"], "amount": 9700000}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 18000}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 18000}, {"name": "Iron ion", "categories": ["water"], "amount": 18000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 12000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 12000}, {"name": "Lead II", "categories": ["water"], "amount": 12000}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1200}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 1200}, {"name": "Manganese II", "categories": ["water"], "amount": 1200}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 4300000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 4300000}, {"name": "Mercury II", "categories": ["water"], "amount": 4300000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 120000}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 120000}, {"name": "Nickel II", "categories": ["water"], "amount": 120000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 61000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 61000}, {"name": "Zinc II", "categories": ["water"], "amount": 61000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to water", "POP into water"], "exchanges": [{"name": "Anthracene", "categories": ["water", "surface water"], "amount": 660000000}, {"name": "Anthracene", "categories": ["water"], "amount": 660000000}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 13000000}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 13000000}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 1200000000}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 1200000000}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 2400000000}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 2400000000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 17000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 3300000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 3300000000}, {"name": "Diuron", "categories": ["water"], "amount": 5500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 480000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 480000}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 760000}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 760000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 7700000000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 7700000000}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 150000000}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 150000000}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 100000000}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 100000000}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 410000000}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 410000000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 20000000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 20000000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 6100000}, {"name": "Toluene", "categories": ["water"], "amount": 6100000}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 3500000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 14000000}, {"name": "Xylene", "categories": ["water"], "amount": 14000000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to water", "radioactive substances into water"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 1800}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 3900}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.01}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.01}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1.9}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 10}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.8}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.8}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 2.1}, {"name": "Caesium-137", "categories": ["water"], "amount": 2.1}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 150}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00053}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00053}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 50}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 0.55}, {"name": "Cobalt-60", "categories": ["water"], "amount": 0.55}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 7200}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 0.0088}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 5.5e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 5.5e-06}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 13000}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0063}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0063}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0039}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0039}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 940}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water", "ocean"], "amount": 820}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water", "surface water"], "amount": 0.37}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water"], "amount": 0.37}, {"name": "Radioactive species, alpha emitters", "categories": ["water", "surface water"], "amount": 0.00039}, {"name": "Radioactive species, alpha emitters", "categories": ["water"], "amount": 0.00039}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.0016}, {"name": "Radium-226", "categories": ["water"], "amount": 0.0016}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 18}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0063}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0063}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.51}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.03}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 3.2}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.029}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.029}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.029}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.029}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "emissions to water", "water pollutants"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 46000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 46000}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 46000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 54000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 54000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 54000}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Acenaphthene", "categories": ["water"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 19000000}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 28000}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 28000}, {"name": "Ammonium", "categories": ["water"], "amount": 28000}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 39000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 39000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 39000}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 4000}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 19000000}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 6800}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 6800}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 6800}, {"name": "Chlorinated solvents, unspecified", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water"], "amount": 54000}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1700}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1700}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1700}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 150000}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 150000}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 150000}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water"], "amount": 54000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 5100}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5100}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5100}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 27000}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 8100}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 8100}, {"name": "Nitrate", "categories": ["water"], "amount": 8100}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 11000}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 11000}, {"name": "Nitrite", "categories": ["water"], "amount": 11000}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 36000}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 36000}, {"name": "Nitrogen", "categories": ["water"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 36000}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 290000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 19000000}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 320000}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 320000}, {"name": "Phosphate", "categories": ["water"], "amount": 320000}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 970000}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 970000}, {"name": "Phosphorus", "categories": ["water"], "amount": 970000}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 220}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 6.5}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 6.5}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 12}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 7.2}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.2}, {"name": "Styrene", "categories": ["water"], "amount": 7.2}, {"name": "Tributyltin compounds", "categories": ["water", "ocean"], "amount": 7.600000000000001}, {"name": "Tributyltin compounds", "categories": ["water", "surface water"], "amount": 7.600000000000001}, {"name": "Tributyltin compounds", "categories": ["water"], "amount": 7.600000000000001}, {"name": "Trifluralin", "categories": ["water"], "amount": 4200}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.26}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.26}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.26}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "energy resources", "energy resources"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 80}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 160}, {"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 2.8}, {"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 2.8}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 8.3}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 2.6}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 2.6}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 2.5}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 330}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 330}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 380}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 4600000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "land use", "land use"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 860}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 1340}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 100}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 1340}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 1380}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 1380}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 1470}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 1460}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 1460}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1530}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "mineral resources", "mineral resources"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0038}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0038}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 150000}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 350}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.3}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 2.2}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 12}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 44000}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 42}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 750}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 540000}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 540000}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 290}, {"name": "Calcium", "categories": ["natural resource", "in ground"], "amount": 0.054}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 37}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 37}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 39}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 7.3}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 9.5}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 9.5}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 0.063}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 0.063}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 4.8}, {"name": "Gravel", "categories": ["natural resource", "in ground"], "amount": 28}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 0.58}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 20}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 16000}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 16000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 29000000}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 100}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.026}, {"name": "Magnesite, 60% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.026}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 3.7}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.7}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 410000}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 11000000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 0.02}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 14}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 14}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 160000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 160000000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 55000000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Sand, unspecified", "categories": ["natural resource", "in ground"], "amount": 28}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 0.011}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 47000}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.00012}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 0.025}, {"name": "Stibnite", "categories": ["natural resource", "in ground"], "amount": 8400}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.25}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 23}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Sylvite, 25 % in sylvinite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 190}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 190}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 25000000}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 25000000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 75}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 12000}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12000}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.057}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 39}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 15}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 3.9}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.9}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "natural resources", "biotic resources"], "exchanges": [{"name": "Fish, demersal, in ocean", "categories": ["natural resource", "biotic"], "amount": 9290}, {"name": "Fish, pelagic, in ocean", "categories": ["natural resource", "biotic"], "amount": 9290}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "ozone depletion", "ozone depletion"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2500000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 20000000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2800000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 500000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 550000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 15000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 75000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 250000000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 500000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 28000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 25000000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "total", "UBP"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 46000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 46000}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 46000}, {"name": "1,4-Butanediol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 12000}, {"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air"], "amount": 12000}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 12000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 12000}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 12000}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air"], "amount": 12000}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 12000}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 12000}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1200}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 54000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 54000}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 54000}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Acenaphthene", "categories": ["water"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 19000000}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air"], "amount": 12000}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 12000}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetone", "categories": ["air"], "amount": 12000}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air"], "amount": 12000}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 8800000}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Acrolein", "categories": ["air"], "amount": 12000}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 910000}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 910000}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 1800}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air"], "amount": 0.0032}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0032}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 12000}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7100000}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0038}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0038}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 3900}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2700000}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 44000}, {"name": "Ammonia", "categories": ["air"], "amount": 44000}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 44000}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 28000}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 28000}, {"name": "Ammonium", "categories": ["water"], "amount": 28000}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 660000000}, {"name": "Anthracene", "categories": ["water"], "amount": 660000000}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 4900}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 150000}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.01}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.01}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1.9}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 350}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 6200000}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 6200000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 6200000}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 250000}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 330000}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.3}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 2.2}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 18000}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 760000}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 4800}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 110000000}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzal chloride", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air"], "amount": 12000}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 69000}, {"name": "Benzene", "categories": ["air"], "amount": 69000}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 69000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 39000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 39000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 39000}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 13000000}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 13000000}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 4000}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 12000}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1100000000}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 19000000}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 110000000}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 1200000000}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 1200000000}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 11000000}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 2400000000}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 2400000000}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 12}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 160000}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 44000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 17000000}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 42}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 750}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 13000000}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 300000}, {"name": "Butadiene", "categories": ["air"], "amount": 300000}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 300000}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butane", "categories": ["air"], "amount": 12000}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butanol", "categories": ["air"], "amount": 12000}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butene", "categories": ["air"], "amount": 12000}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 900000}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 6800}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 6800}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 6800}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 540000}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 59000000}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 37000000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1100000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1100000}, {"name": "Cadmium II", "categories": ["water"], "amount": 1100000}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 540000}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 290}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.0063}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 10}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.8}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.8}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.0068}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 2.1}, {"name": "Caesium-137", "categories": ["water"], "amount": 2.1}, {"name": "Calcium", "categories": ["natural resource", "in ground"], "amount": 0.054}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 590000}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6800000}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 62000}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 22000000}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3100}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1000}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1000}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1000}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1600}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1600}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 150}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 13000000}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 870000}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Chlorinated solvents, unspecified", "categories": ["water"], "amount": 54000}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 43000}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Chloroethylene", "categories": ["water"], "amount": 54000}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000}, {"name": "Chloroform", "categories": ["air"], "amount": 16000}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 16000}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Chlorthal", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 280000}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 3600}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 230000}, {"name": "Chromium III", "categories": ["air"], "amount": 230000}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 230000}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 100000}, {"name": "Chromium III", "categories": ["soil"], "amount": 100000}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 610}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 610}, {"name": "Chromium III", "categories": ["water"], "amount": 610}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7500000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["soil"], "amount": 330000000}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 9700000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9700000}, {"name": "Chromium VI", "categories": ["water"], "amount": 9700000}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Chrysene", "categories": ["air"], "amount": 1100000}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Cinidon-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 350000}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 67000}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cloransulam-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 80}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 160}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 37}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 37}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.00022}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00053}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00053}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.0084}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 50}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 0.55}, {"name": "Cobalt-60", "categories": ["water"], "amount": 0.55}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 39}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air"], "amount": 1700000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1700000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 770000}, {"name": "Copper ion", "categories": ["soil"], "amount": 770000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4200}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 4200}, {"name": "Copper ion", "categories": ["water"], "amount": 4200}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Cumene", "categories": ["air"], "amount": 12000}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cupric hydroxide", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 7200}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 96000}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air"], "amount": 12000}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 110000}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 350000}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 18000}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 92000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 180000}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1100000000}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 370000}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 44000}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 9700000}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 9700000}, {"name": "Dichromate", "categories": ["water"], "amount": 9700000}, {"name": "Diclofop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 68000}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 28000}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 12000}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 37000}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimefuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 190000}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 8500000}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3100000}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air"], "amount": 12000}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 270000}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 270000}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 49000}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 20000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 9200000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 3300000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 3300000000}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 9300000}, {"name": "Diuron", "categories": ["water"], "amount": 5500000}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 54000}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 9300}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 7.3}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3200000}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 570000}, {"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 2.8}, {"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 2.8}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 8.3}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 2.6}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 2.6}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 2.5}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 120000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 120000}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane", "categories": ["air"], "amount": 12000}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air"], "amount": 12000}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1300000}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2500000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1700}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1700}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1700}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4800000}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4800000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 20000000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 20000000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2800000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2800000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 140000}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 140000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 480000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 480000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 25000000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2000000}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2000000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 500000}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 500000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 550000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 550000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 15000000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 15000000}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 150000}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 150000}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 150000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11000000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11000000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3200000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3200000}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethanol", "categories": ["air"], "amount": 12000}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2300000}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 230000}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene", "categories": ["air"], "amount": 12000}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 12000}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 12000}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 270000}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 760000}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 760000}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Ethyne", "categories": ["air"], "amount": 12000}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 380000}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 160000}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Fenoxaprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 8500}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 770}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 3600000}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpropimorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Fish, demersal, in ocean", "categories": ["natural resource", "biotic"], "amount": 9290}, {"name": "Fish, pelagic, in ocean", "categories": ["natural resource", "biotic"], "amount": 9290}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flonicamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 17000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 290000}, {"name": "Flucarbazone sodium salt", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.9}, {"name": "Fluoroglycofen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 490000}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 720000}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5000000}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air"], "amount": 12000}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Formic acid", "categories": ["air"], "amount": 12000}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 3100}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 50000}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Furan", "categories": ["air"], "amount": 12000}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 9.5}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 9.5}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 0.063}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 0.063}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 330}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 330}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 280000}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 200000000}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 4.8}, {"name": "Gravel", "categories": ["natural resource", "in ground"], "amount": 28}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 0.58}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Heptane", "categories": ["air"], "amount": 12000}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 380000}, {"name": "Hexaconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hexane", "categories": ["air"], "amount": 12000}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 610000}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 20}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 12000}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1800000}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1800000}, {"name": "Hydrochloric acid", "categories": ["air", "low population density, long-term"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 7300}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 7300}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 13000}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13000}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 16000}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 16000}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 7.4e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 0.0088}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 5.5e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 5.5e-06}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 49000}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 50000}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 1200}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 370000}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 4900000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 110000000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 7700000000}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 7700000000}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 16000}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 16000}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 13000}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 8.4e-05}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0063}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0063}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air"], "amount": 5e-06}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 5e-06}, {"name": "Iodosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 210000}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 29000000}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 18000}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 18000}, {"name": "Iron ion", "categories": ["water"], "amount": 18000}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.1}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Isoprene", "categories": ["air"], "amount": 12000}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air"], "amount": 7.4e-08}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 7.4e-08}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8700000}, {"name": "Lead II", "categories": ["air"], "amount": 8700000}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 8700000}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 460000}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 460000}, {"name": "Lead II", "categories": ["soil"], "amount": 460000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 12000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 12000}, {"name": "Lead II", "categories": ["water"], "amount": 12000}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2800}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air"], "amount": 0.00078}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.00078}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 5600000}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 21000000}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 3.8}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 100}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 430000}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.026}, {"name": "Magnesite, 60% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.026}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 35000}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1600000}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 3.7}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1200}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 1200}, {"name": "Manganese II", "categories": ["water"], "amount": 1200}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.7}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0039}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0039}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 36000}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 45}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 410000}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air"], "amount": 720000000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 720000000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 200000000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 200000000}, {"name": "Mercury II", "categories": ["soil"], "amount": 200000000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 4300000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 4300000}, {"name": "Mercury II", "categories": ["water"], "amount": 4300000}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 930000}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 510000}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 14000}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 63000}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 15000000}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 15000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 75000000}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 75000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 250000000}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 250000000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 500000}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 500000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1800000}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1800000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 25000000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 25000000}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1000000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "ocean"], "amount": 54000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "surface water"], "amount": 54000}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water"], "amount": 54000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 680000}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 680000}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air"], "amount": 30000}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 30000}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 30000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 12000}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 28000}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 28000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 28000000}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 5100}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5100}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5100}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6600000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6600000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 25000000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 25000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12000000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12000000}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methanol", "categories": ["air"], "amount": 12000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 6800000}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air"], "amount": 12000}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 12000}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air"], "amount": 12000}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 120000}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1300000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 26000}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 12000}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 2700000}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 790000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 12000}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 450000}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 500000}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air"], "amount": 5200000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5200000}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 4100000}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 4100000}, {"name": "Nickel II", "categories": ["soil"], "amount": 4100000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 120000}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 120000}, {"name": "Nickel II", "categories": ["water"], "amount": 120000}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 120}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 43}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 27000}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 8100}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 8100}, {"name": "Nitrate", "categories": ["water"], "amount": 8100}, {"name": "Nitric acid", "categories": ["air"], "amount": 4200}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 4200}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 11000}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 11000}, {"name": "Nitrite", "categories": ["water"], "amount": 11000}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 12000}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 36000}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 36000}, {"name": "Nitrogen", "categories": ["water"], "amount": 36000}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 16000000}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 16000000}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 33000}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 33000}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 36000}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 36000}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 78000}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1.7e-08}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.7e-08}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 860}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 1340}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 100}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 1340}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 1380}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 1380}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 1470}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1430}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1350}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1420}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 1460}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 1460}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1530}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 380}, {"name": "Oils, non-fossil", "categories": ["soil", "agricultural"], "amount": 11000}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 11000}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 290000}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 400000}, {"name": "Organic carbon, placed in landfill", "categories": ["inventory indicator", "waste"], "amount": 6200}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 11000000}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 88000}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 3000000}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 580000}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5700000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 19000000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 19000000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Paraffins", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Paraffins", "categories": ["air"], "amount": 12000}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7900000}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 160000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 160000}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 160000}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 5200000}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 10000}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3300000}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Pentane", "categories": ["air"], "amount": 12000}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8600000}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 410000}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 89000}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Phenol", "categories": ["air"], "amount": 12000}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 12000}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1700000}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 320000}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 320000}, {"name": "Phosphate", "categories": ["water"], "amount": 320000}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 8100}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 8100}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 970000}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 970000}, {"name": "Phosphorus", "categories": ["water"], "amount": 970000}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 220}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 150000000}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 150000000}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 100000000}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 100000000}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 6.5}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 6.5}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 410000000}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 410000000}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 690000}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 470000}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 440000}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air"], "amount": 0.035}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Plutonium-alpha", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 940}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.00078}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.00078}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 12000}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 0.02}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 14}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 14}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 15000000}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 740000}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 40000}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 18000000}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 540000}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 370}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2700}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propanal", "categories": ["air"], "amount": 12000}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propane", "categories": ["air"], "amount": 12000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 420000}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propanol", "categories": ["air"], "amount": 12000}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 650000}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propene", "categories": ["air"], "amount": 12000}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 5100000}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1700000}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air"], "amount": 12000}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air"], "amount": 96000}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 96000}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 17000}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 9800000}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 140000000}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 19000000}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 220}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1000000}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 68000}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1200000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 740000}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1900}, {"name": "Quinoxyfen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water", "ocean"], "amount": 820}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water", "surface water"], "amount": 0.37}, {"name": "Radioactive species, Nuclides, unspecified", "categories": ["water"], "amount": 0.37}, {"name": "Radioactive species, alpha emitters", "categories": ["water", "surface water"], "amount": 0.00039}, {"name": "Radioactive species, alpha emitters", "categories": ["water"], "amount": 0.00039}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "low population density, long-term"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air"], "amount": 0.003}, {"name": "Radioactive species, other beta emitters", "categories": ["air", "urban air close to ground"], "amount": 0.003}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.00047}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.0016}, {"name": "Radium-226", "categories": ["water"], "amount": 0.0016}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air"], "amount": 1.3e-05}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 160000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 160000000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 420}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 55000000}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 18}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11}, {"name": "Sand, unspecified", "categories": ["natural resource", "in ground"], "amount": 28}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 0.011}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 47000}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 75000}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.00012}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1300000}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0063}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0063}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 0.025}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spinosad", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 15000}, {"name": "Stibnite", "categories": ["natural resource", "in ground"], "amount": 8400}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.25}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.51}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Styrene", "categories": ["air"], "amount": 12000}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 7.2}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.2}, {"name": "Styrene", "categories": ["water"], "amount": 7.2}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfosate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 23}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 9300}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 12000}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 24000000}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 24000000}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 5400}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 82000}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "Sylvite, 25 % in sylvinite", "categories": ["natural resource", "in ground"], "amount": 0.01}, {"name": "TOC, Total Organic Carbon", "categories": ["water", "ground-, long-term"], "amount": 9500}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 190}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 190}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1600000}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tebutam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 1100000}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 25000000}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 25000000}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10000000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 40}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Terpenes", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Terpenes", "categories": ["air"], "amount": 12000}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 20000000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 20000000}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.9}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4600000}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1400000}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 7900000}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 300000}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 9700}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 5000000}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air"], "amount": 0.023}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 0.023}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 75}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.056}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 12000}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12000}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.057}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Toluene", "categories": ["air"], "amount": 12000}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 6100000}, {"name": "Toluene", "categories": ["water"], "amount": 6100000}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 87000}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1800000}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 19000000}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tribenuron", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 2900000}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 28000000}, {"name": "Tributyltin compounds", "categories": ["water", "ocean"], "amount": 7.600000000000001}, {"name": "Tributyltin compounds", "categories": ["water", "surface water"], "amount": 7.600000000000001}, {"name": "Tributyltin compounds", "categories": ["water"], "amount": 7.600000000000001}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 3500000}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 650000}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 3100000}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 12000000}, {"name": "Trifluralin", "categories": ["water"], "amount": 4200}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 78000}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 3200}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 39}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 4600000}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 0.051}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.03}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 3.2}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.029}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.029}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.0043}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.029}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.029}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 460000}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.99}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2500000}, {"name": "Volume occupied, final repository for low-active radioactive waste", "categories": ["natural resource", "in ground"], "amount": 680000}, {"name": "Volume occupied, final repository for radioactive waste", "categories": ["natural resource", "in ground"], "amount": 47000000000}, {"name": "Volume occupied, underground deposit", "categories": ["natural resource", "in ground"], "amount": 230000000}, {"name": "Waste mass, total, placed in landfill", "categories": ["inventory indicator", "waste"], "amount": 24}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 990}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 990}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 990}, {"name": "Water", "categories": ["air"], "amount": 990}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 990}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air"], "amount": 7.4e-08}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 7.4e-08}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Xylene", "categories": ["air"], "amount": 12000}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 14000000}, {"name": "Xylene", "categories": ["water"], "amount": 14000000}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 15}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 11000000}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air"], "amount": 4700000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4700000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2200000}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2200000}, {"name": "Zinc II", "categories": ["soil"], "amount": 2200000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 61000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 61000}, {"name": "Zinc II", "categories": ["water"], "amount": 61000}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 410}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 500000}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2000000}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 3.9}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.9}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2800000}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air"], "amount": 12000}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "o-Nitrotoluene", "categories": ["air", "low population density, long-term"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 2200000}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 2200000}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air"], "amount": 12000}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.26}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.26}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.26}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2800000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "waste disposal", "radioactive waste to deposit"], "exchanges": [{"name": "Volume occupied, final repository for low-active radioactive waste", "categories": ["natural resource", "in ground"], "amount": 680000}, {"name": "Volume occupied, final repository for radioactive waste", "categories": ["natural resource", "in ground"], "amount": 47000000000}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "waste disposal", "waste, non radioactive"], "exchanges": [{"name": "Organic carbon, placed in landfill", "categories": ["inventory indicator", "waste"], "amount": 6200}, {"name": "TOC, Total Organic Carbon", "categories": ["water", "ground-, long-term"], "amount": 9500}, {"name": "Volume occupied, underground deposit", "categories": ["natural resource", "in ground"], "amount": 230000000}, {"name": "Waste mass, total, placed in landfill", "categories": ["inventory indicator", "waste"], "amount": 24}]}, {"unit": "UBP", "name": ["Ecological Scarcity 2021", "water use", "water resources, evaporated"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 990}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 990}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 990}, {"name": "Water", "categories": ["air"], "amount": 990}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 990}]}, {"unit": "points", "name": ["Ecosystem Damage Potential", "land occupation", "ecosystem damage potential"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.74}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.74}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 0.19}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -0.11}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -0.32}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.29}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.63}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 0.49}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 0.49}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 0.8}, {"name": "Occupation, inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, lake, artificial", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.42}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.42}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, river, artificial", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, river, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.41}, {"name": "Occupation, seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, seabed, infrastructure", "categories": ["natural resource", "land"], "amount": 0.8}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -0.26}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.59}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.1}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.59}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 0.63}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.63}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 0.22}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -0.33}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -0.33}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 0.61}]}, {"unit": "points", "name": ["Ecosystem Damage Potential", "land transformation", "ecosystem damage potential"], "exchanges": [{"name": "Transformation, from annual crop", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.03}, {"name": "Transformation, from annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.03}, {"name": "Transformation, from cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.455}, {"name": "Transformation, from dump site", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from forest, extensive", "categories": ["natural resource", "land"], "amount": 12.75}, {"name": "Transformation, from forest, intensive", "categories": ["natural resource", "land"], "amount": 4.25}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 7.75}, {"name": "Transformation, from forest, unspecified", "categories": ["natural resource", "land"], "amount": 7.75}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from industrial area", "categories": ["natural resource", "land"], "amount": 0.1025}, {"name": "Transformation, from inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from lake, artificial", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from pasture, man made", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from permanent crop", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1.9}, {"name": "Transformation, from permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1.9}, {"name": "Transformation, from permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from river, artificial", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from river, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from seabed, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.2}, {"name": "Transformation, from seabed, unspecified", "categories": ["natural resource", "land"], "amount": 0.2}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 5.3}, {"name": "Transformation, from traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.0525}, {"name": "Transformation, from traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.175}, {"name": "Transformation, from traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.0525}, {"name": "Transformation, from unspecified", "categories": ["natural resource", "land"], "amount": 0.0425}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.0425}, {"name": "Transformation, from urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.125}, {"name": "Transformation, from urban, green area", "categories": ["natural resource", "land"], "amount": 0.125}, {"name": "Transformation, from urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, to annual crop", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, irrigated", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -0.03}, {"name": "Transformation, to annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -0.03}, {"name": "Transformation, to cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -0.455}, {"name": "Transformation, to dump site", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to forest, extensive", "categories": ["natural resource", "land"], "amount": -12.75}, {"name": "Transformation, to forest, intensive", "categories": ["natural resource", "land"], "amount": -4.25}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -7.75}, {"name": "Transformation, to forest, unspecified", "categories": ["natural resource", "land"], "amount": -7.75}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to industrial area", "categories": ["natural resource", "land"], "amount": -0.1025}, {"name": "Transformation, to inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to lake, artificial", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to mineral extraction site", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to pasture, man made", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to permanent crop", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -1.9}, {"name": "Transformation, to permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -1.9}, {"name": "Transformation, to permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to river, artificial", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to river, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to seabed, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.2}, {"name": "Transformation, to seabed, unspecified", "categories": ["natural resource", "land"], "amount": -0.2}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -5.3}, {"name": "Transformation, to traffic area, rail network", "categories": ["natural resource", "land"], "amount": -0.0525}, {"name": "Transformation, to traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": -0.175}, {"name": "Transformation, to traffic area, road network", "categories": ["natural resource", "land"], "amount": -0.0525}, {"name": "Transformation, to unspecified", "categories": ["natural resource", "land"], "amount": -0.0425}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.0425}, {"name": "Transformation, to urban, continuously built", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to urban, discontinuously built", "categories": ["natural resource", "land"], "amount": -0.125}, {"name": "Transformation, to urban, green area", "categories": ["natural resource", "land"], "amount": -0.125}, {"name": "Transformation, to urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -0.14}]}, {"unit": "points", "name": ["Ecosystem Damage Potential", "total", "ecosystem damage potential"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.74}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.74}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 0.19}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -0.11}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -0.32}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.29}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.63}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 0.49}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 0.49}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 0.8}, {"name": "Occupation, inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, lake, artificial", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.52}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.42}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.42}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.57}, {"name": "Occupation, river, artificial", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, river, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.41}, {"name": "Occupation, seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, seabed, infrastructure", "categories": ["natural resource", "land"], "amount": 0.8}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -0.26}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.59}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.1}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.59}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 0.63}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.63}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 0.22}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -0.33}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -0.33}, {"name": "Transformation, from annual crop", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.03}, {"name": "Transformation, from annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.03}, {"name": "Transformation, from cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.455}, {"name": "Transformation, from dump site", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from forest, extensive", "categories": ["natural resource", "land"], "amount": 12.75}, {"name": "Transformation, from forest, intensive", "categories": ["natural resource", "land"], "amount": 4.25}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 7.75}, {"name": "Transformation, from forest, unspecified", "categories": ["natural resource", "land"], "amount": 7.75}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 0.095}, {"name": "Transformation, from industrial area", "categories": ["natural resource", "land"], "amount": 0.1025}, {"name": "Transformation, from inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from lake, artificial", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from pasture, man made", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from permanent crop", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1.9}, {"name": "Transformation, from permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1.9}, {"name": "Transformation, from permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1.15}, {"name": "Transformation, from river, artificial", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from river, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.0475}, {"name": "Transformation, from seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from seabed, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.2}, {"name": "Transformation, from seabed, unspecified", "categories": ["natural resource", "land"], "amount": 0.2}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 5.3}, {"name": "Transformation, from traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.0525}, {"name": "Transformation, from traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.175}, {"name": "Transformation, from traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.0525}, {"name": "Transformation, from unspecified", "categories": ["natural resource", "land"], "amount": 0.0425}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.0425}, {"name": "Transformation, from urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.125}, {"name": "Transformation, from urban, green area", "categories": ["natural resource", "land"], "amount": 0.125}, {"name": "Transformation, from urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.025}, {"name": "Transformation, from wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 0.14}, {"name": "Transformation, to annual crop", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, irrigated", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -0.03}, {"name": "Transformation, to annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -0.03}, {"name": "Transformation, to cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -0.455}, {"name": "Transformation, to dump site", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to forest, extensive", "categories": ["natural resource", "land"], "amount": -12.75}, {"name": "Transformation, to forest, intensive", "categories": ["natural resource", "land"], "amount": -4.25}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -7.75}, {"name": "Transformation, to forest, unspecified", "categories": ["natural resource", "land"], "amount": -7.75}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": -0.095}, {"name": "Transformation, to industrial area", "categories": ["natural resource", "land"], "amount": -0.1025}, {"name": "Transformation, to inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to lake, artificial", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to mineral extraction site", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to pasture, man made", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to permanent crop", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -1.9}, {"name": "Transformation, to permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -1.9}, {"name": "Transformation, to permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -1.15}, {"name": "Transformation, to river, artificial", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to river, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.0475}, {"name": "Transformation, to seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to seabed, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.2}, {"name": "Transformation, to seabed, unspecified", "categories": ["natural resource", "land"], "amount": -0.2}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -5.3}, {"name": "Transformation, to traffic area, rail network", "categories": ["natural resource", "land"], "amount": -0.0525}, {"name": "Transformation, to traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": -0.175}, {"name": "Transformation, to traffic area, road network", "categories": ["natural resource", "land"], "amount": -0.0525}, {"name": "Transformation, to unspecified", "categories": ["natural resource", "land"], "amount": -0.0425}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -0.0425}, {"name": "Transformation, to urban, continuously built", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to urban, discontinuously built", "categories": ["natural resource", "land"], "amount": -0.125}, {"name": "Transformation, to urban, green area", "categories": ["natural resource", "land"], "amount": -0.125}, {"name": "Transformation, to urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": -0.025}, {"name": "Transformation, to wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -0.14}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 0.61}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 0.61}]}, {"unit": "square meter", "name": ["EDIP 2003 no LT", "acidification no LT", "acidification no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 23.1}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 62}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 113}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 33.2}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 17.7}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 11.5}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.1}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.1}, {"name": "Ammonia", "categories": ["air"], "amount": 23.1}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 62}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 62}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 113}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 113}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 113}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.2}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33.2}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 33.2}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.7}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.7}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 17.7}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.5}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.5}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 11.5}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 8.6}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 8.6}]}, {"unit": "m3 water", "name": ["EDIP 2003 no LT", "ecotoxicity no LT", "acute, in water no LT"], "exchanges": [{"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 11765000}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1250000}, {"name": "Dichromate", "categories": ["water", "ground-"], "amount": 32099}, {"name": "Hypochlorite", "categories": ["water", "ground-"], "amount": 26667}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 5000000}, {"name": "Titanium ion", "categories": ["water", "ground-"], "amount": 13680}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 20000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 100000}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 34.483}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 34.483}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 34.483}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 34.483}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 126.58}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 126.58}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 126.58}, {"name": "2-Propanol", "categories": ["water"], "amount": 126.58}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 366.3}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 366.3}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 366.3}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 366.3}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 200}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 200}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 200}, {"name": "Acetic acid", "categories": ["water"], "amount": 200}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Acetone", "categories": ["water"], "amount": 10000}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 66667}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 66667}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 66667}, {"name": "Aluminium III", "categories": ["water"], "amount": 66667}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 188680}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 188680}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 188680}, {"name": "Antimony ion", "categories": ["water"], "amount": 188680}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Benzene", "categories": ["water"], "amount": 10000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 100000}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4000}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 4000}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4000}, {"name": "Beryllium II", "categories": ["water"], "amount": 4000}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 36.364}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 36.364}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 36.364}, {"name": "Butanol", "categories": ["water"], "amount": 36.364}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 11765000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 11765000}, {"name": "Cadmium II", "categories": ["water"], "amount": 11765000}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Chloroform", "categories": ["water"], "amount": 10000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 66667}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 66667}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 66667}, {"name": "Chromium VI", "categories": ["water"], "amount": 66667}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Cobalt II", "categories": ["water"], "amount": 200000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1250000}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1250000}, {"name": "Copper ion", "categories": ["water"], "amount": 1250000}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 7142.9}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 7142.9}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 7142.9}, {"name": "Cumene", "categories": ["water"], "amount": 7142.9}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Cyanide", "categories": ["water"], "amount": 2000000}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 32099}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 32099}, {"name": "Dichromate", "categories": ["water"], "amount": 32099}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 20}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 20}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 20}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 20}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 10000}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.6918}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.6918}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.6918}, {"name": "Ethanol", "categories": ["water"], "amount": 2.6918}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 4545.5}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 4545.5}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 4545.5}, {"name": "Ethylene", "categories": ["water"], "amount": 4545.5}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 10000}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 207.25}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 207.25}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 207.25}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 207.25}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 59880}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 59880}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 59880}, {"name": "Formaldehyde", "categories": ["water"], "amount": 59880}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 73529}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 73529}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 73529}, {"name": "Hexane", "categories": ["water"], "amount": 73529}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 3333300}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 3333300}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 3333300}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 3333300}, {"name": "Hypochlorite", "categories": ["water", "ocean"], "amount": 26667}, {"name": "Hypochlorite", "categories": ["water", "surface water"], "amount": 26667}, {"name": "Hypochlorite", "categories": ["water"], "amount": 26667}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Iron ion", "categories": ["water"], "amount": 10000}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Lead II", "categories": ["water"], "amount": 200000}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 35714}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 35714}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 35714}, {"name": "Manganese II", "categories": ["water"], "amount": 35714}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Mercury II", "categories": ["water"], "amount": 2000000}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 25}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 25}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 25}, {"name": "Methanol", "categories": ["water"], "amount": 25}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 200000}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "m-Xylene", "categories": ["water"], "amount": 10000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 66667}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 66667}, {"name": "Nickel II", "categories": ["water"], "amount": 66667}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 200000}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "o-Xylene", "categories": ["water"], "amount": 10000}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 22222}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 22222}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 22222}, {"name": "Phenol", "categories": ["water"], "amount": 22222}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1000}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1000}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1000}, {"name": "Propanal", "categories": ["water"], "amount": 1000}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 588.24}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 588.24}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 588.24}, {"name": "Propylene oxide", "categories": ["water"], "amount": 588.24}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1428600}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1428600}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1428600}, {"name": "Selenium IV", "categories": ["water"], "amount": 1428600}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 5000000}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 5000000}, {"name": "Silver I", "categories": ["water"], "amount": 5000000}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 62500}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 62500}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 62500}, {"name": "Strontium", "categories": ["water"], "amount": 62500}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 40000}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 40000}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 40000}, {"name": "Styrene", "categories": ["water"], "amount": 40000}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 333330}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 333330}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 333330}, {"name": "Thallium I", "categories": ["water"], "amount": 333330}, {"name": "Titanium ion", "categories": ["water", "ocean"], "amount": 13680}, {"name": "Titanium ion", "categories": ["water", "surface water"], "amount": 13680}, {"name": "Titanium ion", "categories": ["water"], "amount": 13680}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Toluene", "categories": ["water"], "amount": 10000}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 20000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 20000}, {"name": "Vanadium V", "categories": ["water"], "amount": 20000}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Xylene", "categories": ["water"], "amount": 10000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Zinc II", "categories": ["water"], "amount": 100000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 192310}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 192310}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 192310}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 192310}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 10000}]}, {"unit": "m3 soil", "name": ["EDIP 2003 no LT", "ecotoxicity no LT", "chronic, in soil no LT"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 95.515}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 461.7}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 789.88}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 11482}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 15232}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 782.2}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 6933.8}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 10036}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 19764}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 527990}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 218820}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 101260}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 27121}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3594}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 37807}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 212.76}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1244700}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 91.976}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1777.8}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3344.7}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2082}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 24963}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 10.667}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1508.3}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 36186}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 9095.8}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 17.778}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 83.098}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 7587200}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 6666.7}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 180590}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 68978}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4093200}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 60.654}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 35162000}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 75.244}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 11740000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 4481100}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 61023}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 10.262}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 8720.3}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1055.9}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 15096}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 468910}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 585.76}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 671890}, {"name": "Fenpropimorph", "categories": ["soil", "agricultural"], "amount": 22489}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 6452200}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 720920}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 249680}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 202910}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 155300}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2464.3}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 591340}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 707770}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 10.667}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 59170}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 613750}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 26698}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 1899.6}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2900600}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 20.375}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 5333.3}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 120870}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 254120}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 97.538}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 32141000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2625300}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 3875}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 3136.7}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 53.333}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 333.29}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 4857100000}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 152620}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 3121000}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 24465000}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2335500}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 39998}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 3066.8}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 164630}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 675480000}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 10765}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 91431}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 189420}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2486.3}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 106380}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 265950}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 4.2341}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 3324.4}, {"name": "Sulfosate", "categories": ["soil", "agricultural"], "amount": 553.58}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 4938.2}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 113250000}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 17730}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 17206}, {"name": "Thorium", "categories": ["air", "urban air close to ground"], "amount": 8865}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 727.63}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 968.76}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2006300}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 2999800}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 141470}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1587500}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 128430}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 344.9}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 400.47}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.3333}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 95.515}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 95.515}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 95.515}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 461.7}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 461.7}, {"name": "2-Propanol", "categories": ["air"], "amount": 461.7}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 789.88}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 789.88}, {"name": "Acetic acid", "categories": ["air"], "amount": 789.88}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 11482}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11482}, {"name": "Acetone", "categories": ["air"], "amount": 11482}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 782.2}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 782.2}, {"name": "Aluminium III", "categories": ["air"], "amount": 782.2}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 10036}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10036}, {"name": "Antimony ion", "categories": ["air"], "amount": 10036}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 27121}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27121}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 27121}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3594}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3594}, {"name": "Benzene", "categories": ["air"], "amount": 3594}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 212.76}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 212.76}, {"name": "Beryllium II", "categories": ["air"], "amount": 212.76}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.976}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.976}, {"name": "Butanol", "categories": ["air"], "amount": 91.976}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1777.8}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1777.8}, {"name": "Cadmium II", "categories": ["air"], "amount": 1777.8}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 24963}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24963}, {"name": "Chloroform", "categories": ["air"], "amount": 24963}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.667}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.667}, {"name": "Chromium VI", "categories": ["air"], "amount": 10.667}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9095.8}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9095.8}, {"name": "Cobalt II", "categories": ["air"], "amount": 9095.8}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.778}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.778}, {"name": "Copper ion", "categories": ["air"], "amount": 17.778}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 83.098}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 83.098}, {"name": "Cumene", "categories": ["air"], "amount": 83.098}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7587200}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7587200}, {"name": "Cyanide", "categories": ["air"], "amount": 7587200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11740000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11740000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 11740000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 61023}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 61023}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 61023}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.262}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.262}, {"name": "Ethanol", "categories": ["air"], "amount": 10.262}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8720.3}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1055.9}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 585.76}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 585.76}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 585.76}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 202910}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 202910}, {"name": "Formaldehyde", "categories": ["air"], "amount": 202910}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2464.3}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2464.3}, {"name": "Hexane", "categories": ["air"], "amount": 2464.3}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 531.9}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 531.9}, {"name": "Iron ion", "categories": ["air"], "amount": 531.9}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.667}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.667}, {"name": "Lead II", "categories": ["air"], "amount": 10.667}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1899.6}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1899.6}, {"name": "Manganese II", "categories": ["air"], "amount": 1899.6}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["air"], "amount": 5333.3}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.538}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 97.538}, {"name": "Methanol", "categories": ["air"], "amount": 97.538}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 3875}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3875}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 3875}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 53.333}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53.333}, {"name": "Nickel II", "categories": ["air"], "amount": 53.333}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 3066.8}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3066.8}, {"name": "Propanal", "categories": ["air"], "amount": 3066.8}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 10765}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10765}, {"name": "Propylene oxide", "categories": ["air"], "amount": 10765}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 106380}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 106380}, {"name": "Selenium IV", "categories": ["air"], "amount": 106380}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 265950}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265950}, {"name": "Silver I", "categories": ["air"], "amount": 265950}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2341}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2341}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 4.2341}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 3324.4}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3324.4}, {"name": "Strontium", "categories": ["air"], "amount": 3324.4}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 17730}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17730}, {"name": "Thallium I", "categories": ["air"], "amount": 17730}, {"name": "Thorium", "categories": ["air", "non-urban air or from high stacks"], "amount": 8865}, {"name": "Thorium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8865}, {"name": "Thorium", "categories": ["air"], "amount": 8865}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 727.63}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 727.63}, {"name": "Titanium ion", "categories": ["air"], "amount": 727.63}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 968.76}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 968.76}, {"name": "Toluene", "categories": ["air"], "amount": 968.76}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 344.9}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 344.9}, {"name": "Vanadium V", "categories": ["air"], "amount": 344.9}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 400.47}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400.47}, {"name": "Xylene", "categories": ["air"], "amount": 400.47}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3333}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3333}, {"name": "Zinc II", "categories": ["air"], "amount": 5.3333}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 977.75}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 977.75}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 977.75}, {"name": "Aluminium III", "categories": ["soil"], "amount": 977.75}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 12545}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 12545}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 12545}, {"name": "Antimony ion", "categories": ["soil"], "amount": 12545}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 265.95}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 265.95}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 265.95}, {"name": "Beryllium II", "categories": ["soil"], "amount": 265.95}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 2222.2}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2222.2}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2222.2}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2222.2}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 13.333}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 13.333}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 13.333}, {"name": "Chromium VI", "categories": ["soil"], "amount": 13.333}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 11370}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 11370}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 11370}, {"name": "Cobalt II", "categories": ["soil"], "amount": 11370}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 22.222}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 22.222}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 22.222}, {"name": "Copper ion", "categories": ["soil"], "amount": 22.222}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 155300}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 664.87}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 664.87}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 664.87}, {"name": "Iron ion", "categories": ["soil"], "amount": 664.87}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 13.333}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 13.333}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 13.333}, {"name": "Lead II", "categories": ["soil"], "amount": 13.333}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 2374.5}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 2374.5}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 2374.5}, {"name": "Manganese II", "categories": ["soil"], "amount": 2374.5}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["soil"], "amount": 5333.3}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 4843.7}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 4843.7}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4843.7}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 66.667}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 66.667}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 66.667}, {"name": "Nickel II", "categories": ["soil"], "amount": 66.667}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 333.29}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 333.29}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 333.29}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 132970}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 132970}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 132970}, {"name": "Selenium IV", "categories": ["soil"], "amount": 132970}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 332440}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 332440}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 332440}, {"name": "Silver I", "categories": ["soil"], "amount": 332440}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 4155.4}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 4155.4}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 4155.4}, {"name": "Strontium", "categories": ["soil"], "amount": 4155.4}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 22162}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 22162}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 22162}, {"name": "Thallium I", "categories": ["soil"], "amount": 22162}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 909.54}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 909.54}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 909.54}, {"name": "Titanium ion", "categories": ["soil"], "amount": 909.54}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 431.12}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 431.12}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 431.12}, {"name": "Vanadium V", "categories": ["soil"], "amount": 431.12}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 6.6667}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 6.6667}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 6.6667}, {"name": "Zinc II", "categories": ["soil"], "amount": 6.6667}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 3594}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3594}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 3594}, {"name": "Benzene", "categories": ["water"], "amount": 3594}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 37807}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 37807}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 37807}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 24963}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 24963}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 24963}, {"name": "Chloroform", "categories": ["water"], "amount": 24963}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 83.098}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 83.098}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 83.098}, {"name": "Cumene", "categories": ["water"], "amount": 83.098}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 7587200}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 7587200}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 7587200}, {"name": "Cyanide", "categories": ["water"], "amount": 7587200}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["water"], "amount": 8720.3}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1055.9}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2464.3}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2464.3}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2464.3}, {"name": "Hexane", "categories": ["water"], "amount": 2464.3}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["water"], "amount": 5333.3}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 400.47}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 400.47}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 400.47}, {"name": "m-Xylene", "categories": ["water"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water"], "amount": 400.47}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 968.76}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 968.76}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 968.76}, {"name": "Toluene", "categories": ["water"], "amount": 968.76}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 400.47}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 400.47}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 400.47}, {"name": "Xylene", "categories": ["water"], "amount": 400.47}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 17232}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 531.9}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["air"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 333.33}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 333.33}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 333.33}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 333.33}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 150510}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 875000000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 492.91}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 492.91}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 492.91}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 492.91}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 114680}]}, {"unit": "m3 water", "name": ["EDIP 2003 no LT", "ecotoxicity no LT", "chronic, in water no LT"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 13.793}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 50.633}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 80}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1212.1}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 29412}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 377360}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 8888.9}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4000}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 8000}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 14.545}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 23529000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 117650000}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 133330}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 400000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2500000}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 12500000}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2857.1}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 800000}, {"name": "Dichromate", "categories": ["water", "ground-"], "amount": 320990}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 555560000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.0767}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1818.2}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 82.902}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 23952}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 147060}, {"name": "Hypochlorite", "categories": ["water", "ground-"], "amount": 266670}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 400000}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 71429}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 4000000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 400000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 133330}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 400}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1176.5}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 4000000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 10000000}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 50000000}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 52926}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 125000}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 666670}, {"name": "Thorium", "categories": ["air", "urban air close to ground"], "amount": 333330}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 27360}, {"name": "Titanium ion", "categories": ["water", "ground-"], "amount": 136800}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 4000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 40000}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 4000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 200000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1000000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.793}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.793}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 13.793}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.633}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.633}, {"name": "2-Propanol", "categories": ["air"], "amount": 50.633}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 80}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80}, {"name": "Acetic acid", "categories": ["air"], "amount": 80}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1212.1}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1212.1}, {"name": "Acetone", "categories": ["air"], "amount": 1212.1}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 29412}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29412}, {"name": "Aluminium III", "categories": ["air"], "amount": 29412}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 377360}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 377360}, {"name": "Antimony ion", "categories": ["air"], "amount": 377360}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8888.9}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8888.9}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 8888.9}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000}, {"name": "Benzene", "categories": ["air"], "amount": 4000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8000}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8000}, {"name": "Beryllium II", "categories": ["air"], "amount": 8000}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.545}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.545}, {"name": "Butanol", "categories": ["air"], "amount": 14.545}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 23529000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23529000}, {"name": "Cadmium II", "categories": ["air"], "amount": 23529000}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Chloroform", "categories": ["air"], "amount": 20000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 133330}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 133330}, {"name": "Chromium VI", "categories": ["air"], "amount": 133330}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 400000}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400000}, {"name": "Cobalt II", "categories": ["air"], "amount": 400000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000}, {"name": "Copper ion", "categories": ["air"], "amount": 2500000}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2857.1}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2857.1}, {"name": "Cumene", "categories": ["air"], "amount": 2857.1}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 800000}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 800000}, {"name": "Cyanide", "categories": ["air"], "amount": 800000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 555560000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 555560000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 555560000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 20000}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0767}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0767}, {"name": "Ethanol", "categories": ["air"], "amount": 1.0767}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1818.2}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 20000}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.902}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.902}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 82.902}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 23952}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23952}, {"name": "Formaldehyde", "categories": ["air"], "amount": 23952}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 147060}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 147060}, {"name": "Hexane", "categories": ["air"], "amount": 147060}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Iron ion", "categories": ["air"], "amount": 20000}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 400000}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400000}, {"name": "Lead II", "categories": ["air"], "amount": 400000}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 71429}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71429}, {"name": "Manganese II", "categories": ["air"], "amount": 71429}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000000}, {"name": "Mercury II", "categories": ["air"], "amount": 4000000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Methanol", "categories": ["air"], "amount": 10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 400000}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400000}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 400000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 133330}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 133330}, {"name": "Nickel II", "categories": ["air"], "amount": 133330}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 400}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400}, {"name": "Propanal", "categories": ["air"], "amount": 400}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1176.5}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1176.5}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1176.5}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000000}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000000}, {"name": "Selenium IV", "categories": ["air"], "amount": 4000000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000000}, {"name": "Silver I", "categories": ["air"], "amount": 10000000}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 52926}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 52926}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 52926}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 125000}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 125000}, {"name": "Strontium", "categories": ["air"], "amount": 125000}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 666670}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 666670}, {"name": "Thallium I", "categories": ["air"], "amount": 666670}, {"name": "Thorium", "categories": ["air", "non-urban air or from high stacks"], "amount": 333330}, {"name": "Thorium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 333330}, {"name": "Thorium", "categories": ["air"], "amount": 333330}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 27360}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27360}, {"name": "Titanium ion", "categories": ["air"], "amount": 27360}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000}, {"name": "Toluene", "categories": ["air"], "amount": 4000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 40000}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40000}, {"name": "Vanadium V", "categories": ["air"], "amount": 40000}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000}, {"name": "Xylene", "categories": ["air"], "amount": 4000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 200000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 200000}, {"name": "Zinc II", "categories": ["air"], "amount": 200000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 4000000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 4000000}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 4000000}, {"name": "Mercury II", "categories": ["soil"], "amount": 4000000}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 68.966}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 68.966}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 68.966}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 68.966}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 253.16}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 253.16}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 253.16}, {"name": "2-Propanol", "categories": ["water"], "amount": 253.16}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 732.6}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 732.6}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 732.6}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 732.6}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 400}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 400}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 400}, {"name": "Acetic acid", "categories": ["water"], "amount": 400}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 6060.6}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 6060.6}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 6060.6}, {"name": "Acetone", "categories": ["water"], "amount": 6060.6}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 147060}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 147060}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 147060}, {"name": "Aluminium III", "categories": ["water"], "amount": 147060}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 1886800}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1886800}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1886800}, {"name": "Antimony ion", "categories": ["water"], "amount": 1886800}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "Benzene", "categories": ["water"], "amount": 4000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 200000}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 40000}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 40000}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 40000}, {"name": "Beryllium II", "categories": ["water"], "amount": 40000}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 72.727}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 72.727}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 72.727}, {"name": "Butanol", "categories": ["water"], "amount": 72.727}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 117650000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 117650000}, {"name": "Cadmium II", "categories": ["water"], "amount": 117650000}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 20000}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 20000}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 20000}, {"name": "Chloroform", "categories": ["water"], "amount": 20000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 666670}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 666670}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 666670}, {"name": "Chromium VI", "categories": ["water"], "amount": 666670}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Cobalt II", "categories": ["water"], "amount": 2000000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 12500000}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 12500000}, {"name": "Copper ion", "categories": ["water"], "amount": 12500000}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2857.1}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2857.1}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2857.1}, {"name": "Cumene", "categories": ["water"], "amount": 2857.1}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 800000}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 800000}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 800000}, {"name": "Cyanide", "categories": ["water"], "amount": 800000}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 320990}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 320990}, {"name": "Dichromate", "categories": ["water"], "amount": 320990}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 29.412}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 29.412}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 29.412}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 29.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 100000}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 5.3836}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3836}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 5.3836}, {"name": "Ethanol", "categories": ["water"], "amount": 5.3836}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["water"], "amount": 1818.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 20000}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 414.51}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 414.51}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 414.51}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 414.51}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 119760}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 119760}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 119760}, {"name": "Formaldehyde", "categories": ["water"], "amount": 119760}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 147060}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 147060}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 147060}, {"name": "Hexane", "categories": ["water"], "amount": 147060}, {"name": "Hypochlorite", "categories": ["water", "ocean"], "amount": 266670}, {"name": "Hypochlorite", "categories": ["water", "surface water"], "amount": 266670}, {"name": "Hypochlorite", "categories": ["water"], "amount": 266670}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Iron ion", "categories": ["water"], "amount": 100000}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Lead II", "categories": ["water"], "amount": 2000000}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 357140}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 357140}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 357140}, {"name": "Manganese II", "categories": ["water"], "amount": 357140}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 4000000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 4000000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 4000000}, {"name": "Mercury II", "categories": ["water"], "amount": 4000000}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 50}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 50}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 50}, {"name": "Methanol", "categories": ["water"], "amount": 50}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2000000}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "m-Xylene", "categories": ["water"], "amount": 4000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 666670}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 666670}, {"name": "Nickel II", "categories": ["water"], "amount": 666670}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 1000000}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 1000000}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 1000000}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1000000}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "o-Xylene", "categories": ["water"], "amount": 4000}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 44444}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 44444}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 44444}, {"name": "Phenol", "categories": ["water"], "amount": 44444}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 2000}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 2000}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 2000}, {"name": "Propanal", "categories": ["water"], "amount": 2000}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 5882.4}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 5882.4}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 5882.4}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5882.4}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 20000000}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 20000000}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 20000000}, {"name": "Selenium IV", "categories": ["water"], "amount": 20000000}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 50000000}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 50000000}, {"name": "Silver I", "categories": ["water"], "amount": 50000000}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 625000}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 625000}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 625000}, {"name": "Strontium", "categories": ["water"], "amount": 625000}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3333300}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 3333300}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3333300}, {"name": "Thallium I", "categories": ["water"], "amount": 3333300}, {"name": "Titanium ion", "categories": ["water", "ocean"], "amount": 136800}, {"name": "Titanium ion", "categories": ["water", "surface water"], "amount": 136800}, {"name": "Titanium ion", "categories": ["water"], "amount": 136800}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "Toluene", "categories": ["water"], "amount": 4000}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Vanadium V", "categories": ["water"], "amount": 200000}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "Xylene", "categories": ["water"], "amount": 4000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1000000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1000000}, {"name": "Zinc II", "categories": ["water"], "amount": 1000000}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["air"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1923100}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1923100}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1923100}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1923100}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 10000}]}, {"unit": "m3 waste water", "name": ["EDIP 2003 no LT", "ecotoxicity no LT", "in sewage treatment plants no LT"], "exchanges": [{"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5000000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 15000000}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 25000000}, {"name": "Dichromate", "categories": ["water", "ground-"], "amount": 482}, {"name": "Hypochlorite", "categories": ["water", "ground-"], "amount": 898000}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 6700}, {"name": "Titanium ion", "categories": ["water", "ground-"], "amount": 6800}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 290000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 44000}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 20}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 20}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 20}, {"name": "Acetic acid", "categories": ["water"], "amount": 20}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 500000000}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 500000000}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 500000000}, {"name": "Acetone", "categories": ["water"], "amount": 500000000}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Benzene", "categories": ["water"], "amount": 500000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5000000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5000000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5000000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 15000000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 15000000}, {"name": "Cadmium II", "categories": ["water"], "amount": 15000000}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Chloroform", "categories": ["water"], "amount": 500000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1000}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1000}, {"name": "Chromium VI", "categories": ["water"], "amount": 1000}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 120000}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 120000}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 120000}, {"name": "Cobalt II", "categories": ["water"], "amount": 120000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 25000000}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 25000000}, {"name": "Copper ion", "categories": ["water"], "amount": 25000000}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1900}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1900}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1900}, {"name": "Cumene", "categories": ["water"], "amount": 1900}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 100000000}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 100000000}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 100000000}, {"name": "Cyanide", "categories": ["water"], "amount": 100000000}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 482}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 482}, {"name": "Dichromate", "categories": ["water"], "amount": 482}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 500000}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3600}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 3600}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3600}, {"name": "Formaldehyde", "categories": ["water"], "amount": 3600}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 170000000}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 170000000}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 170000000}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 170000000}, {"name": "Hypochlorite", "categories": ["water", "ocean"], "amount": 898000}, {"name": "Hypochlorite", "categories": ["water", "surface water"], "amount": 898000}, {"name": "Hypochlorite", "categories": ["water"], "amount": 898000}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 6700}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 6700}, {"name": "Iron ion", "categories": ["water"], "amount": 6700}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5000000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 5000000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5000000}, {"name": "Lead II", "categories": ["water"], "amount": 5000000}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 130000}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 130000}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 130000}, {"name": "Manganese II", "categories": ["water"], "amount": 130000}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Mercury II", "categories": ["water"], "amount": 100000}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 8}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 8}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 8}, {"name": "Methanol", "categories": ["water"], "amount": 8}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 100000}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "m-Xylene", "categories": ["water"], "amount": 500000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 69000}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 69000}, {"name": "Nickel II", "categories": ["water"], "amount": 69000}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "o-Xylene", "categories": ["water"], "amount": 500000}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 780}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 780}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 780}, {"name": "Phenol", "categories": ["water"], "amount": 780}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 30}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 30}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 30}, {"name": "Propylene oxide", "categories": ["water"], "amount": 30}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 10000000}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 10000000}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 10000000}, {"name": "Selenium IV", "categories": ["water"], "amount": 10000000}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 5000000}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 5000000}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 5000000}, {"name": "Strontium", "categories": ["water"], "amount": 5000000}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 690}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 690}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 690}, {"name": "Styrene", "categories": ["water"], "amount": 690}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 1700000}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1700000}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 1700000}, {"name": "Thallium I", "categories": ["water"], "amount": 1700000}, {"name": "Titanium ion", "categories": ["water", "ocean"], "amount": 6800}, {"name": "Titanium ion", "categories": ["water", "surface water"], "amount": 6800}, {"name": "Titanium ion", "categories": ["water"], "amount": 6800}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Toluene", "categories": ["water"], "amount": 500000}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 290000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 290000}, {"name": "Vanadium V", "categories": ["water"], "amount": 290000}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Xylene", "categories": ["water"], "amount": 500000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 44000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 44000}, {"name": "Zinc II", "categories": ["water"], "amount": 44000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2500}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 2500}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2500}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 2500}]}, {"unit": "kg NO3-", "name": ["EDIP 2003 no LT", "eutrophication no LT", "combined potential no LT"], "exchanges": [{"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.69002}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 3.64}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.4838}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 2.38}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.287}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.7965}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.3479}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 2.6137}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 9.196}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 32.03}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.2}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.5}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.64}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.64}, {"name": "Ammonia", "categories": ["air"], "amount": 3.64}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38}, {"name": "Cyanide", "categories": ["air"], "amount": 2.38}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.2}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrate", "categories": ["air"], "amount": 1}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.03}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32.03}, {"name": "Phosphorus", "categories": ["air"], "amount": 32.03}, {"name": "Nitrogen", "categories": ["soil", "forestry"], "amount": 2.3479}, {"name": "Nitrogen", "categories": ["soil", "industrial"], "amount": 2.3479}, {"name": "Nitrogen", "categories": ["soil"], "amount": 2.3479}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.627}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.627}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.627}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.627}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.69002}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.69002}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.69002}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 2.548}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.4838}, {"name": "Ammonium", "categories": ["water"], "amount": 0.4838}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4042}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 1.666}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4042}, {"name": "Cyanide", "categories": ["water"], "amount": 1.4042}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 1.218}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 1.4451}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 1.218}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1.218}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 2.7134}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.287}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.287}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.59}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.7}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.59}, {"name": "Nitrate", "categories": ["water"], "amount": 0.59}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.729}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.7965}, {"name": "Nitrite", "categories": ["water"], "amount": 0.7965}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.29796}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.35351}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.29796}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.29796}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 2.6137}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 3.101}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 2.6137}, {"name": "Nitrogen", "categories": ["water"], "amount": 2.6137}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 3.101}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 2.6137}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 2.6137}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 10.45}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 9.196}, {"name": "Phosphate", "categories": ["water"], "amount": 9.196}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 28.186}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 32.03}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 28.186}, {"name": "Phosphorus", "categories": ["water"], "amount": 28.186}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.82}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.82}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.82}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.35}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.35}]}, {"unit": "kg N", "name": ["EDIP 2003 no LT", "eutrophication no LT", "separate N potential no LT"], "exchanges": [{"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.15576}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.82}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.4838}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 0.54}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 0.51625}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.23}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.177}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.53}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.59}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82}, {"name": "Ammonia", "categories": ["air"], "amount": 0.82}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.54}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.54}, {"name": "Cyanide", "categories": ["air"], "amount": 0.54}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23}, {"name": "Nitrate", "categories": ["air"], "amount": 0.23}, {"name": "Nitrogen", "categories": ["soil", "forestry"], "amount": 0.53}, {"name": "Nitrogen", "categories": ["soil", "industrial"], "amount": 0.53}, {"name": "Nitrogen", "categories": ["soil"], "amount": 0.53}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.15576}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.15576}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.15576}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.574}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.4838}, {"name": "Ammonium", "categories": ["water"], "amount": 0.4838}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 0.3186}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 0.378}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 0.3186}, {"name": "Cyanide", "categories": ["water"], "amount": 0.3186}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.27494}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.3262}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.27494}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.27494}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.6125}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 0.51625}, {"name": "Hydrazine", "categories": ["water"], "amount": 0.51625}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.1357}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.161}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.1357}, {"name": "Nitrate", "categories": ["water"], "amount": 0.1357}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.162}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.177}, {"name": "Nitrite", "categories": ["water"], "amount": 0.177}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.06726}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.0798}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.06726}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.06726}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.59}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.7}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.59}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.59}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 0.7}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.59}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.59}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.64}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.64}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.3}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.3}]}, {"unit": "kg P", "name": ["EDIP 2003 no LT", "eutrophication no LT", "separate P potential no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.2904}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phosphorus", "categories": ["air"], "amount": 1}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0198}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0198}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0198}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0198}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.2904}, {"name": "Phosphate", "categories": ["water"], "amount": 0.2904}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 0.88}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 0.88}, {"name": "Phosphorus", "categories": ["water"], "amount": 0.88}]}, {"unit": "square meter", "name": ["EDIP 2003 no LT", "eutrophication no LT", "terrestrial eutrophication no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 101}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 101}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101}, {"name": "Ammonia", "categories": ["air"], "amount": 101}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 25.4}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.4}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.4}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 25.4}]}, {"unit": "kg CO2-Eq", "name": ["EDIP 2003 no LT", "global warming no LT", "GWP 100a no LT"], "exchanges": [{"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 30}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 140}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4300}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 700}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 120}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2400}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 120}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 620}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3400}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 6900}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1700}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 14000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 210}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 550}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 23}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 16}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 23}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1800}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5700}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 22200}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentene", "categories": ["air"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetic acid", "categories": ["air"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 1}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetone", "categories": ["air"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acrolein", "categories": ["air"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene", "categories": ["air"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butadiene", "categories": ["air"], "amount": 3}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butane", "categories": ["air"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 30}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30}, {"name": "Chloroform", "categories": ["air"], "amount": 30}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Cumene", "categories": ["air"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethane", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 140}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4300}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4300}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4300}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 700}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 700}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 700}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 120}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 120}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 120}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2400}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2400}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2400}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 120}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 120}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 120}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 620}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 620}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 620}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3400}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethanol", "categories": ["air"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethyne", "categories": ["air"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Formic acid", "categories": ["air"], "amount": 2}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Furan", "categories": ["air"], "amount": 2}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Heptane", "categories": ["air"], "amount": 3}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hexane", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Lactic acid", "categories": ["air"], "amount": 2}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 23}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 23}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1300}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 6900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 6900}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1700}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 14000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 14000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 10}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10600}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10600}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10600}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 210}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 210}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 210}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 550}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 550}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 550}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 23}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23}, {"name": "Methane, fossil", "categories": ["air"], "amount": 23}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 16}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 16}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1800}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5700}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12000}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 2}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanol", "categories": ["air"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl formate", "categories": ["air"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "m-Xylene", "categories": ["air"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "o-Xylene", "categories": ["air"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Paraffins", "categories": ["air"], "amount": 3}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Pentane", "categories": ["air"], "amount": 3}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol", "categories": ["air"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propanal", "categories": ["air"], "amount": 2}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propane", "categories": ["air"], "amount": 3}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propene", "categories": ["air"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propionic acid", "categories": ["air"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Sodium formate", "categories": ["air"], "amount": 2}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Styrene", "categories": ["air"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 22200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 22200}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 2}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Toluene", "categories": ["air"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Xylene", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9800}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9800}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9800}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9800}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6000}, {"name": "Butene", "categories": ["air"], "amount": 3}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 296}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 296}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 296}]}, {"unit": "kg CO2-Eq", "name": ["EDIP 2003 no LT", "global warming no LT", "GWP 20a no LT"], "exchanges": [{"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 100}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 3300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 450}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5500}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2100}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 410}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5200}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 390}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 4900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 5900}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 16}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 3600}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7900}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 4800}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 10000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 35}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 700}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1800}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 62}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 55}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 62}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 3900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6300}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 9400}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentene", "categories": ["air"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetic acid", "categories": ["air"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 1}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetone", "categories": ["air"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acrolein", "categories": ["air"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene", "categories": ["air"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butadiene", "categories": ["air"], "amount": 3}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butane", "categories": ["air"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 100}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100}, {"name": "Chloroform", "categories": ["air"], "amount": 100}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Cumene", "categories": ["air"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethane", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 3300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 450}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 450}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 450}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5500}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5500}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5500}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2100}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2100}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2100}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 410}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 410}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 410}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5200}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5200}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5200}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 390}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 390}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 4900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 4900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 5900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 5900}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethanol", "categories": ["air"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethyne", "categories": ["air"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Formic acid", "categories": ["air"], "amount": 2}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Furan", "categories": ["air"], "amount": 2}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Heptane", "categories": ["air"], "amount": 3}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hexane", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Lactic acid", "categories": ["air"], "amount": 2}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 62}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 62}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 62}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 16}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 16}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 3600}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3600}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 3600}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7900}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 4800}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4800}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 4800}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 10000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 35}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 700}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1800}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 62}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 62}, {"name": "Methane, fossil", "categories": ["air"], "amount": 62}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 55}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 55}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2700}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2700}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 3900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 3900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6300}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 9400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 9400}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 2}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanol", "categories": ["air"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl formate", "categories": ["air"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "m-Xylene", "categories": ["air"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "o-Xylene", "categories": ["air"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Paraffins", "categories": ["air"], "amount": 3}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Pentane", "categories": ["air"], "amount": 3}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol", "categories": ["air"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propanal", "categories": ["air"], "amount": 2}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propane", "categories": ["air"], "amount": 3}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propene", "categories": ["air"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propionic acid", "categories": ["air"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Sodium formate", "categories": ["air"], "amount": 2}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Styrene", "categories": ["air"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 15100}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 2}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Toluene", "categories": ["air"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Xylene", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 7500}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7500}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 7500}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6100}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6100}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6100}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 7500}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6100}, {"name": "Butene", "categories": ["air"], "amount": 3}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 275}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 275}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 275}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 275}]}, {"unit": "kg CO2-Eq", "name": ["EDIP 2003 no LT", "global warming no LT", "GWP 500a no LT"], "exchanges": [{"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 9}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 400}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 42}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 220}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 37}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 740}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 36}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 190}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 18000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1100}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 390}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 540}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16300}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 65}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 170}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 580}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 8900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10000}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 32400}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentene", "categories": ["air"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetic acid", "categories": ["air"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 1}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetone", "categories": ["air"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acrolein", "categories": ["air"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene", "categories": ["air"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butadiene", "categories": ["air"], "amount": 3}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butane", "categories": ["air"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9}, {"name": "Chloroform", "categories": ["air"], "amount": 9}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Cumene", "categories": ["air"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethane", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 400}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 400}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 42}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 42}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1600}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 220}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 220}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 220}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 37}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 37}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 740}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 740}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 740}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 36}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 36}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 190}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 190}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 190}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 18000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 18000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1100}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethanol", "categories": ["air"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethyne", "categories": ["air"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Formic acid", "categories": ["air"], "amount": 2}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Furan", "categories": ["air"], "amount": 2}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Heptane", "categories": ["air"], "amount": 3}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hexane", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Lactic acid", "categories": ["air"], "amount": 2}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 390}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 390}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2700}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2700}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 540}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 540}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 540}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16300}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16300}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16300}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 5200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 65}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 65}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 65}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 170}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 170}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 170}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 580}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 580}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 580}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 8900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 8900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10000}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 2}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanol", "categories": ["air"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl formate", "categories": ["air"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "m-Xylene", "categories": ["air"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "o-Xylene", "categories": ["air"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Paraffins", "categories": ["air"], "amount": 3}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Pentane", "categories": ["air"], "amount": 3}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol", "categories": ["air"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propanal", "categories": ["air"], "amount": 2}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propane", "categories": ["air"], "amount": 3}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propene", "categories": ["air"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propionic acid", "categories": ["air"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Sodium formate", "categories": ["air"], "amount": 2}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Styrene", "categories": ["air"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 32400}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32400}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 32400}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 2}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Toluene", "categories": ["air"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Xylene", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8700}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8700}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8700}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2700}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2700}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2700}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8700}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2700}, {"name": "Butene", "categories": ["air"], "amount": 3}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 156}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 156}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 156}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 156}]}, {"unit": "m3 air", "name": ["EDIP 2003 no LT", "human toxicity no LT", "via air no LT"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 10000000000}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 116280}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3333300}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3663000}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 10000000}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 31746000}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 50000000000}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 669340000}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 2000000000}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 20000000}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 38462000}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 10000000000}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 217390000}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 50000000000}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 250000000000}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 11111000000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 113640000000}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 833330}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 833330}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 34483000}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 100000000}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 1000000000}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 9523800}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 571430}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 10277000}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 141440000}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 250000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 28571000000000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1000000000}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 25253000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 916590}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 50000000}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 114290}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 28571}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 390620000}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 28571000}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 18622000}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 500000000}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12500000000}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1632700}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 1111100000}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 100000000000}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 2500000000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6666700000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 2544500}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 100000000}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 27211000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 66667000}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 8620700}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 100000000}, {"name": "Ozone", "categories": ["air", "urban air close to ground"], "amount": 50000000}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1351400000}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2000000000}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 33333000}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1515200000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 204080000}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 396950000}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1984100}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1000000}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1282100}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 500030000}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 18083000}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 2500000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 80600000}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 6666700}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 80645000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000000000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000000000}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 10000000000}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 116280}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116280}, {"name": "2-Propanol", "categories": ["air"], "amount": 116280}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3333300}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3333300}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3333300}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3663000}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3663000}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3663000}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000000}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000000}, {"name": "Acetic acid", "categories": ["air"], "amount": 10000000}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 31746000}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31746000}, {"name": "Acetone", "categories": ["air"], "amount": 31746000}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000000}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000000}, {"name": "Acrolein", "categories": ["air"], "amount": 50000000000}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 669340000}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 669340000}, {"name": "Acrylic acid", "categories": ["air"], "amount": 669340000}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000000}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000000}, {"name": "Aluminium III", "categories": ["air"], "amount": 2000000000}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000000}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000000}, {"name": "Antimony ion", "categories": ["air"], "amount": 20000000}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 38462000}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 38462000}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 38462000}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000000000}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000000000}, {"name": "Benzene", "categories": ["air"], "amount": 10000000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000000}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air"], "amount": 50000000000}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 250000000000}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 250000000000}, {"name": "Butadiene", "categories": ["air"], "amount": 250000000000}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 11111000000}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11111000000}, {"name": "Butanol", "categories": ["air"], "amount": 11111000000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 113640000000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 113640000000}, {"name": "Cadmium II", "categories": ["air"], "amount": 113640000000}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 833330}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 833330}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 833330}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 833330}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 833330}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 833330}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 34483000}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34483000}, {"name": "Chlorine", "categories": ["air"], "amount": 34483000}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 100000000}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100000000}, {"name": "Chloroform", "categories": ["air"], "amount": 100000000}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000000}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000000}, {"name": "Chromium III", "categories": ["air"], "amount": 1000000000}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9523800}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9523800}, {"name": "Cobalt II", "categories": ["air"], "amount": 9523800}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 571430}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 571430}, {"name": "Copper ion", "categories": ["air"], "amount": 571430}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10277000}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10277000}, {"name": "Cumene", "categories": ["air"], "amount": 10277000}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 141440000}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 141440000}, {"name": "Cyanide", "categories": ["air"], "amount": 141440000}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 250000000}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 250000000}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 250000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 28571000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28571000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 28571000000000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000000}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000000}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1000000000}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 25253000}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25253000}, {"name": "Ethane thiol", "categories": ["air"], "amount": 25253000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 916590}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 50000000}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 114290}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 114290}, {"name": "Ethanol", "categories": ["air"], "amount": 114290}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 28571}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28571}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["air"], "amount": 390620000}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 28571000}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18622000}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000000}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000000}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 500000000}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500000000}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500000000}, {"name": "Formaldehyde", "categories": ["air"], "amount": 12500000000}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1632700}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1632700}, {"name": "Hexane", "categories": ["air"], "amount": 1632700}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 1111100000}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 37106000}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37106000}, {"name": "Iron ion", "categories": ["air"], "amount": 37106000}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 100000000000}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100000000000}, {"name": "Lead II", "categories": ["air"], "amount": 100000000000}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000000}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000000}, {"name": "Manganese II", "categories": ["air"], "amount": 2500000000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["air"], "amount": 6666700000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2544500}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2544500}, {"name": "Methanol", "categories": ["air"], "amount": 2544500}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 100000000}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100000000}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 100000000}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27211000}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27211000}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 27211000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 66667000}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 66667000}, {"name": "Nickel II", "categories": ["air"], "amount": 66667000}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 100000000}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100000000}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 100000000}, {"name": "Ozone", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000}, {"name": "Ozone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000}, {"name": "Ozone", "categories": ["air"], "amount": 50000000}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1351400000}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1351400000}, {"name": "Phenol", "categories": ["air"], "amount": 1351400000}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000000}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000000}, {"name": "Propanal", "categories": ["air"], "amount": 2000000000}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 33333000}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33333000}, {"name": "Propylene oxide", "categories": ["air"], "amount": 33333000}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1515200000}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1515200000}, {"name": "Selenium IV", "categories": ["air"], "amount": 1515200000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 204080000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 204080000}, {"name": "Silver I", "categories": ["air"], "amount": 204080000}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 396950000}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 396950000}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 396950000}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 1984100}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1984100}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 1984100}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000}, {"name": "Styrene", "categories": ["air"], "amount": 1000000}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1282100}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1282100}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1282100}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 500030000}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500030000}, {"name": "Thallium I", "categories": ["air"], "amount": 500030000}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 18083000}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18083000}, {"name": "Titanium ion", "categories": ["air"], "amount": 18083000}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000}, {"name": "Toluene", "categories": ["air"], "amount": 2500000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 80600000}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80600000}, {"name": "Vanadium V", "categories": ["air"], "amount": 80600000}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6666700}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6666700}, {"name": "Xylene", "categories": ["air"], "amount": 6666700}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 80645000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80645000}, {"name": "Zinc II", "categories": ["air"], "amount": 80645000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["soil"], "amount": 6666700000}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 10000000000}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 10000000000}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 10000000000}, {"name": "Benzene", "categories": ["water"], "amount": 10000000000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 217390000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 217390000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 217390000}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 34483000}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 34483000}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 34483000}, {"name": "Chlorine", "categories": ["water"], "amount": 34483000}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 100000000}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 100000000}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 100000000}, {"name": "Chloroform", "categories": ["water"], "amount": 100000000}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 10277000}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 10277000}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 10277000}, {"name": "Cumene", "categories": ["water"], "amount": 10277000}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 141440000}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 141440000}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 141440000}, {"name": "Cyanide", "categories": ["water"], "amount": 141440000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 916590}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 28571}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 28571}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 28571}, {"name": "Ethylene", "categories": ["water"], "amount": 28571}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["water"], "amount": 390620000}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 28571000}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 18622000}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1632700}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1632700}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1632700}, {"name": "Hexane", "categories": ["water"], "amount": 1632700}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 1111100000}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["water"], "amount": 6666700000}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 6666700}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 6666700}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 6666700}, {"name": "m-Xylene", "categories": ["water"], "amount": 6666700}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 8620700}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 8620700}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 8620700}, {"name": "Nitrate", "categories": ["water"], "amount": 8620700}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 8620700}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 8620700}, {"name": "Nitrite", "categories": ["water"], "amount": 8620700}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 6666700}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 6666700}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 6666700}, {"name": "o-Xylene", "categories": ["water"], "amount": 6666700}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1000000}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1000000}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1000000}, {"name": "Styrene", "categories": ["water"], "amount": 1000000}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2500000}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2500000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2500000}, {"name": "Toluene", "categories": ["water"], "amount": 2500000}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6666700}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 6666700}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6666700}, {"name": "Xylene", "categories": ["water"], "amount": 6666700}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 37106000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5000000000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5000000000}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5000000000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 5000000000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 8333300}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 8333300}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 8333300}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 8333300}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2000000}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2000000}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 8620700}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 8620700}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8620700}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 8620700}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 66667000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 66667000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 66667000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 66667000}]}, {"unit": "m3 soil", "name": ["EDIP 2003 no LT", "human toxicity no LT", "via soil no LT"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 3.6673}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 2.8015}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 117.85}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.5807}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.1345}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 16.317}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 31.243}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 16960}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 41.659}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.8666}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 14453}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 46.007}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 2968.1}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 11.212}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 4480.4}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.0629}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 51.823}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 197}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 1124.5}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 169.19}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 4.0045}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 20.951}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 714.17}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 3.2849}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 7518.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 14390000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 8.898}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 0.039502}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.0173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 75.173}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.14776}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.10451}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3973.5}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 39.981}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.68699}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.212}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 5.7653}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.019067}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.9715}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 82.655}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 96.154}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 424.01}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 81295}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.31426}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1544.5}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.7664}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 117.54}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 2.928}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4912.8}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.20766}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 335.16}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 23.851}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 6851}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.1219}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 44.3}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 4240.1}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 446.38}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 10389}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 375.71}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.0048}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.77714}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 962.28}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.067288}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 12.536}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6673}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6673}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 3.6673}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8015}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8015}, {"name": "2-Propanol", "categories": ["air"], "amount": 2.8015}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 117.85}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117.85}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 117.85}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5807}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5807}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.5807}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1345}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1345}, {"name": "Acetone", "categories": ["air"], "amount": 4.1345}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.317}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.317}, {"name": "Acrylic acid", "categories": ["air"], "amount": 16.317}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.243}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31.243}, {"name": "Aluminium III", "categories": ["air"], "amount": 31.243}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 16960}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16960}, {"name": "Antimony ion", "categories": ["air"], "amount": 16960}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8666}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8666}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.8666}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 14453}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14453}, {"name": "Benzene", "categories": ["air"], "amount": 14453}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.1}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2968.1}, {"name": "Beryllium II", "categories": ["air"], "amount": 2968.1}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.212}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.212}, {"name": "Butanol", "categories": ["air"], "amount": 11.212}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4480.4}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4480.4}, {"name": "Cadmium II", "categories": ["air"], "amount": 4480.4}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.823}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.823}, {"name": "Chlorine", "categories": ["air"], "amount": 51.823}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 197}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 197}, {"name": "Chloroform", "categories": ["air"], "amount": 197}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1124.5}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1124.5}, {"name": "Chromium III", "categories": ["air"], "amount": 1124.5}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 169.19}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 169.19}, {"name": "Cobalt II", "categories": ["air"], "amount": 169.19}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0045}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0045}, {"name": "Copper ion", "categories": ["air"], "amount": 4.0045}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.951}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.951}, {"name": "Cumene", "categories": ["air"], "amount": 20.951}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 714.17}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 714.17}, {"name": "Cyanide", "categories": ["air"], "amount": 714.17}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 14390000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14390000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 14390000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.898}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.898}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 8.898}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.0173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 75.173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 75.173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 75.173}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14776}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14776}, {"name": "Ethanol", "categories": ["air"], "amount": 0.14776}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.10451}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3973.5}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 39.981}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68699}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.212}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.212}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.212}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7653}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7653}, {"name": "Formaldehyde", "categories": ["air"], "amount": 5.7653}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9715}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9715}, {"name": "Hexane", "categories": ["air"], "amount": 0.9715}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 770.93}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 770.93}, {"name": "Iron ion", "categories": ["air"], "amount": 770.93}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.655}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.655}, {"name": "Lead II", "categories": ["air"], "amount": 82.655}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 424.01}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 424.01}, {"name": "Manganese II", "categories": ["air"], "amount": 424.01}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 81295}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 81295}, {"name": "Mercury II", "categories": ["air"], "amount": 81295}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31426}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31426}, {"name": "Methanol", "categories": ["air"], "amount": 0.31426}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1544.5}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1544.5}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1544.5}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 117.54}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117.54}, {"name": "Nickel II", "categories": ["air"], "amount": 117.54}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4912.8}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4912.8}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 4912.8}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 6851}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6851}, {"name": "Propanal", "categories": ["air"], "amount": 6851}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1219}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1219}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.1219}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.3}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.3}, {"name": "Selenium IV", "categories": ["air"], "amount": 44.3}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4240.1}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4240.1}, {"name": "Silver I", "categories": ["air"], "amount": 4240.1}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 446.38}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 446.38}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 446.38}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 10389}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10389}, {"name": "Thallium I", "categories": ["air"], "amount": 10389}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 375.71}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 375.71}, {"name": "Titanium ion", "categories": ["air"], "amount": 375.71}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0048}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0048}, {"name": "Toluene", "categories": ["air"], "amount": 1.0048}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 962.28}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 962.28}, {"name": "Vanadium V", "categories": ["air"], "amount": 962.28}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067288}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067288}, {"name": "Xylene", "categories": ["air"], "amount": 0.067288}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.536}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.536}, {"name": "Zinc II", "categories": ["air"], "amount": 12.536}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 39.054}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 39.054}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 39.054}, {"name": "Aluminium III", "categories": ["soil"], "amount": 39.054}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 21201}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 21201}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 21201}, {"name": "Antimony ion", "categories": ["soil"], "amount": 21201}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3710.1}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3710.1}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3710.1}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3710.1}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 5600.5}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 5600.5}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 5600.5}, {"name": "Cadmium II", "categories": ["soil"], "amount": 5600.5}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1405.7}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1405.7}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1405.7}, {"name": "Chromium III", "categories": ["soil"], "amount": 1405.7}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 211.48}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 211.48}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 211.48}, {"name": "Cobalt II", "categories": ["soil"], "amount": 211.48}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.0056}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.0056}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.0056}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.0056}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1220}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1220}, {"name": "Fluoride", "categories": ["soil"], "amount": 1220}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.019067}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 963.66}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 963.66}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 963.66}, {"name": "Iron ion", "categories": ["soil"], "amount": 963.66}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 103.32}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 103.32}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 103.32}, {"name": "Lead II", "categories": ["soil"], "amount": 103.32}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 530.02}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 530.02}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 530.02}, {"name": "Manganese II", "categories": ["soil"], "amount": 530.02}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 81295}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 81295}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 81295}, {"name": "Mercury II", "categories": ["soil"], "amount": 81295}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1930.6}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1930.6}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1930.6}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1930.6}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 146.92}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 146.92}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 146.92}, {"name": "Nickel II", "categories": ["soil"], "amount": 146.92}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.20766}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.20766}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.20766}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 55.375}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 55.375}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 55.375}, {"name": "Selenium IV", "categories": ["soil"], "amount": 55.375}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 5300.2}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 5300.2}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 5300.2}, {"name": "Silver I", "categories": ["soil"], "amount": 5300.2}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 12986}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 12986}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 12986}, {"name": "Thallium I", "categories": ["soil"], "amount": 12986}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 469.63}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 469.63}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 469.63}, {"name": "Titanium ion", "categories": ["soil"], "amount": 469.63}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1202.8}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1202.8}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1202.8}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1202.8}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 15.67}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 15.67}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 15.67}, {"name": "Zinc II", "categories": ["soil"], "amount": 15.67}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 14453}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 14453}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 14453}, {"name": "Benzene", "categories": ["water"], "amount": 14453}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 46.007}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 46.007}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 46.007}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 51.823}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 51.823}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 51.823}, {"name": "Chlorine", "categories": ["water"], "amount": 51.823}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 197}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 197}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 197}, {"name": "Chloroform", "categories": ["water"], "amount": 197}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 20.951}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 20.951}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 20.951}, {"name": "Cumene", "categories": ["water"], "amount": 20.951}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 714.17}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 714.17}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 714.17}, {"name": "Cyanide", "categories": ["water"], "amount": 714.17}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 2.0173}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["water"], "amount": 0.10451}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["water"], "amount": 3973.5}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 39.981}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.68699}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.9715}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.9715}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.9715}, {"name": "Hexane", "categories": ["water"], "amount": 0.9715}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 81295}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 81295}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 81295}, {"name": "Mercury II", "categories": ["water"], "amount": 81295}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.067288}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.067288}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.067288}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.067288}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 2.928}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 2.928}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 2.928}, {"name": "Nitrate", "categories": ["water"], "amount": 2.928}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 2.928}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 2.928}, {"name": "Nitrite", "categories": ["water"], "amount": 2.928}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.067288}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.067288}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.067288}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.067288}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.0048}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.0048}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.0048}, {"name": "Toluene", "categories": ["water"], "amount": 1.0048}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.067288}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.067288}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.067288}, {"name": "Xylene", "categories": ["water"], "amount": 0.067288}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 770.93}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["air"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 12966}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 12966}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 12966}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 12966}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2676}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 6.9893}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 6.9893}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 6.9893}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 6.9893}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 2.928}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.928}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.928}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 2.928}]}, {"unit": "m3 water", "name": ["EDIP 2003 no LT", "human toxicity no LT", "via surface water no LT"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.028465}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0074667}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.6418}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0032788}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0085395}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.062684}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 0.39053}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 63600}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.38584}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2251.6}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 270.18}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 37.1}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.11257}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 559470}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2797300}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 0.13133}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 53.68}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3648.2}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 18241}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2.4733}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3353.8}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 16769}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 210.73}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 1.4641}, {"name": "Dichromate", "categories": ["water", "ground-"], "amount": 8782.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 216660000000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.1872}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.98564}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3.9175}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.00029073}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0020019}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 399.54}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 363.58}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.91071}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0088551}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.022148}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 336.8}, {"name": "Hypochlorite", "categories": ["water", "ground-"], "amount": 0.25764}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 48.182}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 52971}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 5.3}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 108710000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.2968}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.71}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.00742}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1290.4}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 19.787}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0029295}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 27687}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 265}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 1448.1}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 12986000}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 4.6962}, {"name": "Titanium ion", "categories": ["water", "ground-"], "amount": 23.481}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.9848}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 37.1}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 185.5}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.0929}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4130.5}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 20652}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028465}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028465}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.028465}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074667}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074667}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0074667}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6418}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6418}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.6418}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0032788}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0032788}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0032788}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0085395}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0085395}, {"name": "Acetone", "categories": ["air"], "amount": 0.0085395}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.062684}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.062684}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.062684}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39053}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39053}, {"name": "Aluminium III", "categories": ["air"], "amount": 0.39053}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 63600}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63600}, {"name": "Antimony ion", "categories": ["air"], "amount": 63600}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.38584}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.38584}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.38584}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2251.6}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2251.6}, {"name": "Benzene", "categories": ["air"], "amount": 2251.6}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.1}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37.1}, {"name": "Beryllium II", "categories": ["air"], "amount": 37.1}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11257}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11257}, {"name": "Butanol", "categories": ["air"], "amount": 0.11257}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 559470}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 559470}, {"name": "Cadmium II", "categories": ["air"], "amount": 559470}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["air"], "amount": 0.13133}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 53.68}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53.68}, {"name": "Chloroform", "categories": ["air"], "amount": 53.68}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3648.2}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3648.2}, {"name": "Chromium III", "categories": ["air"], "amount": 3648.2}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4733}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4733}, {"name": "Cobalt II", "categories": ["air"], "amount": 2.4733}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3353.8}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3353.8}, {"name": "Copper ion", "categories": ["air"], "amount": 3353.8}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 210.73}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 210.73}, {"name": "Cumene", "categories": ["air"], "amount": 210.73}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["air"], "amount": 1.4641}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 216660000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 216660000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 216660000000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1872}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1872}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.1872}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.98564}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.9175}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00029073}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00029073}, {"name": "Ethanol", "categories": ["air"], "amount": 0.00029073}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0020019}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["air"], "amount": 399.54}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 363.58}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.91071}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0088551}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0088551}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0088551}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022148}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022148}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.022148}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 336.8}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 336.8}, {"name": "Hexane", "categories": ["air"], "amount": 336.8}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6364}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6364}, {"name": "Iron ion", "categories": ["air"], "amount": 9.6364}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 52971}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 52971}, {"name": "Lead II", "categories": ["air"], "amount": 52971}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3}, {"name": "Manganese II", "categories": ["air"], "amount": 5.3}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 108710000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 108710000}, {"name": "Mercury II", "categories": ["air"], "amount": 108710000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2968}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2968}, {"name": "Methanol", "categories": ["air"], "amount": 0.2968}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 53}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 53}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.71}, {"name": "Nickel II", "categories": ["air"], "amount": 3.71}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1290.4}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1290.4}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1290.4}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.787}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.787}, {"name": "Propanal", "categories": ["air"], "amount": 19.787}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029295}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029295}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.0029295}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 27687}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27687}, {"name": "Selenium IV", "categories": ["air"], "amount": 27687}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 53}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53}, {"name": "Silver I", "categories": ["air"], "amount": 53}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1448.1}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1448.1}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 1448.1}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 12986000}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12986000}, {"name": "Thallium I", "categories": ["air"], "amount": 12986000}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6962}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6962}, {"name": "Titanium ion", "categories": ["air"], "amount": 4.6962}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9848}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9848}, {"name": "Toluene", "categories": ["air"], "amount": 3.9848}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.1}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37.1}, {"name": "Vanadium V", "categories": ["air"], "amount": 37.1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0929}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0929}, {"name": "Xylene", "categories": ["air"], "amount": 1.0929}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4130.5}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4130.5}, {"name": "Zinc II", "categories": ["air"], "amount": 4130.5}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 108710000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 108710000}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 108710000}, {"name": "Mercury II", "categories": ["soil"], "amount": 108710000}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.14233}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.14233}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.14233}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.14233}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.037334}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.037334}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.037334}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.037334}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 18.209}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 18.209}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 18.209}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 18.209}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.0070658}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0070658}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.0070658}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.0070658}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.016394}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.016394}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.016394}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.016394}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.042698}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.042698}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.042698}, {"name": "Acetone", "categories": ["water"], "amount": 0.042698}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.9526}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.9526}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.9526}, {"name": "Aluminium III", "categories": ["water"], "amount": 1.9526}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 318000}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 318000}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 318000}, {"name": "Antimony ion", "categories": ["water"], "amount": 318000}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2251.6}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 2251.6}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2251.6}, {"name": "Benzene", "categories": ["water"], "amount": 2251.6}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 270.18}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 270.18}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 270.18}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 185.5}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 185.5}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 185.5}, {"name": "Beryllium II", "categories": ["water"], "amount": 185.5}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.56286}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.56286}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.56286}, {"name": "Butanol", "categories": ["water"], "amount": 0.56286}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2797300}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2797300}, {"name": "Cadmium II", "categories": ["water"], "amount": 2797300}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["water"], "amount": 0.13133}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 53.68}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 53.68}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 53.68}, {"name": "Chloroform", "categories": ["water"], "amount": 53.68}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 18241}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 18241}, {"name": "Chromium III", "categories": ["water"], "amount": 18241}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 12.367}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 12.367}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 12.367}, {"name": "Cobalt II", "categories": ["water"], "amount": 12.367}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 16769}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 16769}, {"name": "Copper ion", "categories": ["water"], "amount": 16769}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 210.73}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 210.73}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 210.73}, {"name": "Cumene", "categories": ["water"], "amount": 210.73}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["water"], "amount": 1.4641}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 8782.6}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 8782.6}, {"name": "Dichromate", "categories": ["water"], "amount": 8782.6}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.0031428}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 0.0031428}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.0031428}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.0031428}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.98564}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 19.587}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 19.587}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 19.587}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 19.587}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0014537}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.0014537}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0014537}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0014537}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["water"], "amount": 0.0020019}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["water"], "amount": 399.54}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 363.58}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.91071}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.044275}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.044275}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.044275}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.044275}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 12.367}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 12.367}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 12.367}, {"name": "Fluoride", "categories": ["water"], "amount": 12.367}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.11074}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.11074}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.11074}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.11074}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 336.8}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 336.8}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 336.8}, {"name": "Hexane", "categories": ["water"], "amount": 336.8}, {"name": "Hypochlorite", "categories": ["water", "ocean"], "amount": 0.25764}, {"name": "Hypochlorite", "categories": ["water", "surface water"], "amount": 0.25764}, {"name": "Hypochlorite", "categories": ["water"], "amount": 0.25764}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 48.182}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 48.182}, {"name": "Iron ion", "categories": ["water"], "amount": 48.182}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 264850}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 264850}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 264850}, {"name": "Lead II", "categories": ["water"], "amount": 264850}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 26.5}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 26.5}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 26.5}, {"name": "Manganese II", "categories": ["water"], "amount": 26.5}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 108710000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 108710000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 108710000}, {"name": "Mercury II", "categories": ["water"], "amount": 108710000}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.484}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.484}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.484}, {"name": "Methanol", "categories": ["water"], "amount": 1.484}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 265}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 265}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 265}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 265}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.0929}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.0929}, {"name": "m-Xylene", "categories": ["water"], "amount": 1.0929}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 18.55}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 18.55}, {"name": "Nickel II", "categories": ["water"], "amount": 18.55}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.00742}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.00742}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.00742}, {"name": "Nitrate", "categories": ["water"], "amount": 0.00742}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.00742}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.00742}, {"name": "Nitrite", "categories": ["water"], "amount": 0.00742}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6452.2}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 6452.2}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6452.2}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6452.2}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 46375}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 46375}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 46375}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 46375}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.0929}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.0929}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.0929}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 34.256}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 34.256}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 34.256}, {"name": "Phenol", "categories": ["water"], "amount": 34.256}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 98.933}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 98.933}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 98.933}, {"name": "Propanal", "categories": ["water"], "amount": 98.933}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.014648}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.014648}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.014648}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.014648}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 138430}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 138430}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 138430}, {"name": "Selenium IV", "categories": ["water"], "amount": 138430}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 265}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 265}, {"name": "Silver I", "categories": ["water"], "amount": 265}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 64928000}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 64928000}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 64928000}, {"name": "Thallium I", "categories": ["water"], "amount": 64928000}, {"name": "Titanium ion", "categories": ["water", "ocean"], "amount": 23.481}, {"name": "Titanium ion", "categories": ["water", "surface water"], "amount": 23.481}, {"name": "Titanium ion", "categories": ["water"], "amount": 23.481}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.9848}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 3.9848}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.9848}, {"name": "Toluene", "categories": ["water"], "amount": 3.9848}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 185.5}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 185.5}, {"name": "Vanadium V", "categories": ["water"], "amount": 185.5}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.0929}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.0929}, {"name": "Xylene", "categories": ["water"], "amount": 1.0929}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 20652}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 20652}, {"name": "Zinc II", "categories": ["water"], "amount": 20652}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 9.6364}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 742}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 742}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 742}, {"name": "Arsenic ion", "categories": ["air"], "amount": 742}, {"name": "Arsenic ion", "categories": ["water"], "amount": 3710}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3710}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3710}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3710}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 365.77}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 365.77}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 365.77}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 365.77}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.00742}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00742}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00742}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.00742}]}, {"unit": "kg waste", "name": ["EDIP 2003 no LT", "land filling no LT", "bulk waste no LT"], "exchanges": [{"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 22500}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 16000}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 20000}]}, {"unit": "kg waste", "name": ["EDIP 2003 no LT", "land filling no LT", "hazardous waste no LT"], "exchanges": [{"name": "Volume occupied, underground deposit", "categories": ["natural resource", "in ground"], "amount": 1600}]}, {"unit": "kg waste", "name": ["EDIP 2003 no LT", "land filling no LT", "radioactive waste no LT"], "exchanges": [{"name": "Volume occupied, final repository for low-active radioactive waste", "categories": ["natural resource", "in ground"], "amount": 2500}, {"name": "Volume occupied, final repository for radioactive waste", "categories": ["natural resource", "in ground"], "amount": 5400}]}, {"unit": "kg waste", "name": ["EDIP 2003 no LT", "land filling no LT", "slag and ashes no LT"], "exchanges": [{"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 22500}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "aluminium no LT"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "antimony no LT"], "exchanges": [{"name": "Stibnite", "categories": ["natural resource", "in ground"], "amount": 0.717}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.717}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "brown coal no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "cadmium no LT"], "exchanges": [{"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "cerium no LT"], "exchanges": [{"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "coal no LT"], "exchanges": [{"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "cobalt no LT"], "exchanges": [{"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "copper no LT"], "exchanges": [{"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "gold no LT"], "exchanges": [{"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "iron no LT"], "exchanges": [{"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "lanthanum no LT"], "exchanges": [{"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "lead no LT"], "exchanges": [{"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "manganese no LT"], "exchanges": [{"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Pyrolusite", "categories": ["natural resource", "in ground"], "amount": 0.632}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "mercury no LT"], "exchanges": [{"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 0.862}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.862}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "molybdenum no LT"], "exchanges": [{"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "natural gas no LT"], "exchanges": [{"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.8}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.8}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "nickel no LT"], "exchanges": [{"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "oil no LT"], "exchanges": [{"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "palladium no LT"], "exchanges": [{"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "platinum no LT"], "exchanges": [{"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "silver no LT"], "exchanges": [{"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "tantalum no LT"], "exchanges": [{"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "tin no LT"], "exchanges": [{"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003 no LT", "non-renewable resources no LT", "zinc no LT"], "exchanges": [{"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "person.ppm.h", "name": ["EDIP 2003 no LT", "photochemical ozone formation no LT", "impacts on human health no LT"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 0.03894}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.0767}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.04425}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0295}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.03894}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0767}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.02655}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.118}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.02773}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0885}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.1298}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.004425}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.004425}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0004425}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.03894}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.01239}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.03953}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.1475}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.03776}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00059}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.01003}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.03245}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.02478}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0767}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0649}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.118}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.001357}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.01829}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.0649}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.1475}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.1003}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.0885}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0649}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.03894}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.1534}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 0.1298}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.124}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03894}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03894}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 0.03894}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.0767}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04425}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04425}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.04425}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.1121}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0295}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0295}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0295}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03894}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03894}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.03894}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.059}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.0767}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.059}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 0.000649}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02655}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02655}, {"name": "Acetone", "categories": ["air"], "amount": 0.02655}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.118}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.118}, {"name": "Acrolein", "categories": ["air"], "amount": 0.118}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.5}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02773}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02773}, {"name": "Benzene", "categories": ["air"], "amount": 0.02773}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0885}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0885}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0885}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.1121}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1298}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1298}, {"name": "Butadiene", "categories": ["air"], "amount": 0.1298}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Butane", "categories": ["air"], "amount": 0.059}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Butanol", "categories": ["air"], "amount": 0.059}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004425}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004425}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.004425}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004425}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004425}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.004425}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0004425}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0004425}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0004425}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0826}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0826}, {"name": "Cumene", "categories": ["air"], "amount": 0.0826}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.059}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03894}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03894}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.03894}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01239}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01239}, {"name": "Ethane", "categories": ["air"], "amount": 0.01239}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.059}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.000649}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03953}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03953}, {"name": "Ethanol", "categories": ["air"], "amount": 0.03953}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1475}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1475}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03776}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03776}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.03776}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00059}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00059}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00059}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01003}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01003}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03245}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03245}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.03245}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.059}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02478}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02478}, {"name": "Ethyne", "categories": ["air"], "amount": 0.02478}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.000649}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "Heptane", "categories": ["air"], "amount": 0.0767}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0649}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0649}, {"name": "Hexane", "categories": ["air"], "amount": 0.0649}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 0.059}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.1121}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.000649}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.118}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.118}, {"name": "Isoprene", "categories": ["air"], "amount": 0.118}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.029}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001357}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001357}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.001357}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.029}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.000649}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01829}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01829}, {"name": "Methanol", "categories": ["air"], "amount": 0.01829}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0649}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0649}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0649}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1475}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1475}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.1475}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.059}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1003}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1003}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.1003}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.1121}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Paraffins", "categories": ["air"], "amount": 0.059}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Pentane", "categories": ["air"], "amount": 0.059}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Phenol", "categories": ["air"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 0.1121}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0885}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0885}, {"name": "Propanal", "categories": ["air"], "amount": 0.0885}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0649}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0649}, {"name": "Propane", "categories": ["air"], "amount": 0.0649}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03894}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03894}, {"name": "Propanol", "categories": ["air"], "amount": 0.03894}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1534}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1534}, {"name": "Propene", "categories": ["air"], "amount": 0.1534}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.059}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Styrene", "categories": ["air"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.059}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1298}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1298}, {"name": "Terpenes", "categories": ["air"], "amount": 0.1298}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0826}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0826}, {"name": "Toluene", "categories": ["air"], "amount": 0.0826}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.124}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.124}, {"name": "Xylene", "categories": ["air"], "amount": 0.124}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Butene", "categories": ["air"], "amount": 0.1416}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1416}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1416}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.1416}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000649}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.12}]}, {"unit": "m2.ppm.h", "name": ["EDIP 2003 no LT", "photochemical ozone formation no LT", "impacts on vegetation no LT"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 481.8}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.3}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.9}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 949}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 547.5}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 365}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 481.8}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 949}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 328.5}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1460}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.3}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 343.1}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1095}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1606}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 54.75}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 54.75}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.475}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1022}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 481.8}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 153.3}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 489.1}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1825}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 467.2}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.3}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 124.1}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 401.5}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 306.6}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 949}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 803}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1460}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 16.79}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 360}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 360}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 226.3}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 803}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1825}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1241}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1095}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 803}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 481.8}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1898}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 1606}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1022}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1533}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 481.8}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 481.8}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 481.8}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.3}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.9}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 949}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 949}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 949}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 547.5}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 547.5}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 547.5}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1387}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "2-Propanol", "categories": ["air"], "amount": 365}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 481.8}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 481.8}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 481.8}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air"], "amount": 730}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 949}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 949}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 949}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Acetic acid", "categories": ["air"], "amount": 730}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 8.03}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 328.5}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 328.5}, {"name": "Acetone", "categories": ["air"], "amount": 328.5}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1460}, {"name": "Acrolein", "categories": ["air"], "amount": 1460}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.3}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 343.1}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 343.1}, {"name": "Benzene", "categories": ["air"], "amount": 343.1}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1095}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1095}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1387}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1606}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1606}, {"name": "Butadiene", "categories": ["air"], "amount": 1606}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Butane", "categories": ["air"], "amount": 730}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Butanol", "categories": ["air"], "amount": 730}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 54.75}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 54.75}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 54.75}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 54.75}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 54.75}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 54.75}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.475}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.475}, {"name": "Chloroform", "categories": ["air"], "amount": 5.475}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1022}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1022}, {"name": "Cumene", "categories": ["air"], "amount": 1022}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Cyclohexane", "categories": ["air"], "amount": 730}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 481.8}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 481.8}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 481.8}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 0.2}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 8.03}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 153.3}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 153.3}, {"name": "Ethane", "categories": ["air"], "amount": 153.3}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Ethane thiol", "categories": ["air"], "amount": 730}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 8.03}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 489.1}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 489.1}, {"name": "Ethanol", "categories": ["air"], "amount": 489.1}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1825}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1825}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 467.2}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 467.2}, {"name": "Chloroethylene", "categories": ["air"], "amount": 467.2}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.3}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 124.1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124.1}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 401.5}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 401.5}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 401.5}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 730}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 306.6}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306.6}, {"name": "Ethyne", "categories": ["air"], "amount": 306.6}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Formaldehyde", "categories": ["air"], "amount": 8.03}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 949}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 949}, {"name": "Heptane", "categories": ["air"], "amount": 949}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 803}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 803}, {"name": "Hexane", "categories": ["air"], "amount": 803}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 730}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1387}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 8.03}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1460}, {"name": "Isoprene", "categories": ["air"], "amount": 1460}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 360}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 360}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 360}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 8.03}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.79}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.79}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 16.79}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.03}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 360}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 360}, {"name": "Methane, fossil", "categories": ["air"], "amount": 360}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 8.03}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 8.03}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 226.3}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 226.3}, {"name": "Methanol", "categories": ["air"], "amount": 226.3}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.2}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 803}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 803}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 803}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.2}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1825}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1825}, {"name": "m-Xylene", "categories": ["air"], "amount": 1825}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 730}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1241}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1241}, {"name": "o-Xylene", "categories": ["air"], "amount": 1241}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1387}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Paraffins", "categories": ["air"], "amount": 730}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Pentane", "categories": ["air"], "amount": 730}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Phenol", "categories": ["air"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1387}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1095}, {"name": "Propanal", "categories": ["air"], "amount": 1095}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 803}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 803}, {"name": "Propane", "categories": ["air"], "amount": 803}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 481.8}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 481.8}, {"name": "Propanol", "categories": ["air"], "amount": 481.8}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1898}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1898}, {"name": "Propene", "categories": ["air"], "amount": 1898}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Propionic acid", "categories": ["air"], "amount": 730}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Styrene", "categories": ["air"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 730}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 1606}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1606}, {"name": "Terpenes", "categories": ["air"], "amount": 1606}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1022}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1022}, {"name": "Toluene", "categories": ["air"], "amount": 1022}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1533}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1533}, {"name": "Xylene", "categories": ["air"], "amount": 1533}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Butene", "categories": ["air"], "amount": 1752}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1752}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1752}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 1752}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 8.03}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1800}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1800}]}, {"unit": "cubic meter", "name": ["EDIP 2003 no LT", "renewable resources no LT", "wood no LT"], "exchanges": [{"name": "Wood, hard, standing", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Wood, primary forest, standing", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Wood, soft, standing", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Wood, unspecified, standing", "categories": ["natural resource", "biotic"], "amount": 1}]}, {"unit": "kg CFC-11-Eq", "name": ["EDIP 2003 no LT", "stratospheric ozone depletion no LT", "ODP total no LT"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.38}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.38}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 12}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.94}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.94}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "square meter", "name": ["EDIP 2003", "acidification", "acidification"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 23.1}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 62}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 113}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 33.2}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 17.7}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 11.5}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.1}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 23.1}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.1}, {"name": "Ammonia", "categories": ["air"], "amount": 23.1}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 62}, {"name": "Hydrochloric acid", "categories": ["air", "low population density, long-term"], "amount": 62}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 62}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 113}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 113}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 113}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 113}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.2}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 33.2}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33.2}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 33.2}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.7}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 17.7}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.7}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 17.7}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.5}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 11.5}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.5}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 11.5}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 8.6}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 8.6}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 8.6}]}, {"unit": "m3 water", "name": ["EDIP 2003", "ecotoxicity", "acute, in water"], "exchanges": [{"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 11765000}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1250000}, {"name": "Dichromate", "categories": ["water", "ground-"], "amount": 32099}, {"name": "Hypochlorite", "categories": ["water", "ground-"], "amount": 26667}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 5000000}, {"name": "Titanium ion", "categories": ["water", "ground-"], "amount": 13680}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 20000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 100000}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 34.483}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 34.483}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 34.483}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 34.483}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 34.483}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 126.58}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 126.58}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 126.58}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 126.58}, {"name": "2-Propanol", "categories": ["water"], "amount": 126.58}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 366.3}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 366.3}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 366.3}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 366.3}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 366.3}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 200}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 200}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 200}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 200}, {"name": "Acetic acid", "categories": ["water"], "amount": 200}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 10000}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Acetone", "categories": ["water"], "amount": 10000}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 66667}, {"name": "Aluminium III", "categories": ["water", "ground-, long-term"], "amount": 66667}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 66667}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 66667}, {"name": "Aluminium III", "categories": ["water"], "amount": 66667}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 188680}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 188680}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 188680}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 188680}, {"name": "Antimony ion", "categories": ["water"], "amount": 188680}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 10000}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Benzene", "categories": ["water"], "amount": 10000}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 100000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 100000}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4000}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 4000}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 4000}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4000}, {"name": "Beryllium II", "categories": ["water"], "amount": 4000}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 36.364}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 36.364}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 36.364}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 36.364}, {"name": "Butanol", "categories": ["water"], "amount": 36.364}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 11765000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 11765000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 11765000}, {"name": "Cadmium II", "categories": ["water"], "amount": 11765000}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 10000}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Chloroform", "categories": ["water"], "amount": 10000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 66667}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 66667}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 66667}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 66667}, {"name": "Chromium VI", "categories": ["water"], "amount": 66667}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 200000}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Cobalt II", "categories": ["water"], "amount": 200000}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1250000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1250000}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1250000}, {"name": "Copper ion", "categories": ["water"], "amount": 1250000}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 7142.9}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 7142.9}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 7142.9}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 7142.9}, {"name": "Cumene", "categories": ["water"], "amount": 7142.9}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 2000000}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Cyanide", "categories": ["water"], "amount": 2000000}, {"name": "Dichromate", "categories": ["water", "ground-, long-term"], "amount": 32099}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 32099}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 32099}, {"name": "Dichromate", "categories": ["water"], "amount": 32099}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 20}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 20}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 20}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 20}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 20}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 10000}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.6918}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.6918}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.6918}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.6918}, {"name": "Ethanol", "categories": ["water"], "amount": 2.6918}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 4545.5}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 4545.5}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 4545.5}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 4545.5}, {"name": "Ethylene", "categories": ["water"], "amount": 4545.5}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 10000}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 10000}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 207.25}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 207.25}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 207.25}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 207.25}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 207.25}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 59880}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 59880}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 59880}, {"name": "Formaldehyde", "categories": ["water"], "amount": 59880}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 73529}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 73529}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 73529}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 73529}, {"name": "Hexane", "categories": ["water"], "amount": 73529}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 3333300}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 3333300}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 3333300}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 3333300}, {"name": "Hypochlorite", "categories": ["water", "ocean"], "amount": 26667}, {"name": "Hypochlorite", "categories": ["water", "surface water"], "amount": 26667}, {"name": "Hypochlorite", "categories": ["water"], "amount": 26667}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Iron ion", "categories": ["water"], "amount": 10000}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Lead II", "categories": ["water"], "amount": 200000}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 35714}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 35714}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 35714}, {"name": "Manganese II", "categories": ["water"], "amount": 35714}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Mercury II", "categories": ["water"], "amount": 2000000}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 25}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 25}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 25}, {"name": "Methanol", "categories": ["water"], "amount": 25}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 200000}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "m-Xylene", "categories": ["water"], "amount": 10000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 66667}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 66667}, {"name": "Nickel II", "categories": ["water"], "amount": 66667}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Oils, unspecified", "categories": ["water", "ground-, long-term"], "amount": 200000}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 200000}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "o-Xylene", "categories": ["water"], "amount": 10000}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 22222}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 22222}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 22222}, {"name": "Phenol", "categories": ["water"], "amount": 22222}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1000}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 1000}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1000}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1000}, {"name": "Propanal", "categories": ["water"], "amount": 1000}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 588.24}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 588.24}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 588.24}, {"name": "Propylene oxide", "categories": ["water"], "amount": 588.24}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1428600}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1428600}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1428600}, {"name": "Selenium IV", "categories": ["water"], "amount": 1428600}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 5000000}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 5000000}, {"name": "Silver I", "categories": ["water"], "amount": 5000000}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 62500}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 62500}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 62500}, {"name": "Strontium", "categories": ["water"], "amount": 62500}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 40000}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 40000}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 40000}, {"name": "Styrene", "categories": ["water"], "amount": 40000}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 333330}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 333330}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 333330}, {"name": "Thallium I", "categories": ["water"], "amount": 333330}, {"name": "Titanium ion", "categories": ["water", "ocean"], "amount": 13680}, {"name": "Titanium ion", "categories": ["water", "surface water"], "amount": 13680}, {"name": "Titanium ion", "categories": ["water"], "amount": 13680}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Toluene", "categories": ["water"], "amount": 10000}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 20000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 20000}, {"name": "Vanadium V", "categories": ["water"], "amount": 20000}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "Xylene", "categories": ["water"], "amount": 10000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Zinc II", "categories": ["water"], "amount": 100000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 192310}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 192310}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 192310}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 192310}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 192310}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 10000}]}, {"unit": "m3 soil", "name": ["EDIP 2003", "ecotoxicity", "chronic, in soil"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 95.515}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 461.7}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 789.88}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 11482}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 15232}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 782.2}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 6933.8}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 10036}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 19764}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 527990}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 218820}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 101260}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 27121}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3594}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 37807}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 212.76}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1244700}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 91.976}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1777.8}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3344.7}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2082}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 24963}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 10.667}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1508.3}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 36186}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 9095.8}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 17.778}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 83.098}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 7587200}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 6666.7}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 180590}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 68978}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4093200}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 60.654}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 35162000}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 75.244}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 11740000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 4481100}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 61023}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 10.262}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 8720.3}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1055.9}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 15096}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 468910}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 585.76}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 671890}, {"name": "Fenpropimorph", "categories": ["soil", "agricultural"], "amount": 22489}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 6452200}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 720920}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 249680}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 202910}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 155300}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2464.3}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 591340}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 707770}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 10.667}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 59170}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 613750}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 26698}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 1899.6}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2900600}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 20.375}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 5333.3}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 120870}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 254120}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 97.538}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 32141000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2625300}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 3875}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 3136.7}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 53.333}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 333.29}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 4857100000}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 152620}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 3121000}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 24465000}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2335500}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 39998}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 3066.8}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 164630}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 675480000}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 10765}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 91431}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 189420}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2486.3}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 106380}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 265950}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 4.2341}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 3324.4}, {"name": "Sulfosate", "categories": ["soil", "agricultural"], "amount": 553.58}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 4938.2}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 113250000}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 17730}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 17206}, {"name": "Thorium", "categories": ["air", "urban air close to ground"], "amount": 8865}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 727.63}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 968.76}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2006300}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 2999800}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 141470}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1587500}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 128430}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 344.9}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 400.47}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.3333}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 95.515}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 95.515}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 95.515}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 95.515}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 461.7}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 461.7}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 461.7}, {"name": "2-Propanol", "categories": ["air"], "amount": 461.7}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 789.88}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 789.88}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 789.88}, {"name": "Acetic acid", "categories": ["air"], "amount": 789.88}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 11482}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 11482}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11482}, {"name": "Acetone", "categories": ["air"], "amount": 11482}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 782.2}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 782.2}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 782.2}, {"name": "Aluminium III", "categories": ["air"], "amount": 782.2}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 10036}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 10036}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10036}, {"name": "Antimony ion", "categories": ["air"], "amount": 10036}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 27121}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 27121}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27121}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 27121}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3594}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 3594}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3594}, {"name": "Benzene", "categories": ["air"], "amount": 3594}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 212.76}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 212.76}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 212.76}, {"name": "Beryllium II", "categories": ["air"], "amount": 212.76}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.976}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 91.976}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.976}, {"name": "Butanol", "categories": ["air"], "amount": 91.976}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1777.8}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 1777.8}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1777.8}, {"name": "Cadmium II", "categories": ["air"], "amount": 1777.8}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 24963}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 24963}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24963}, {"name": "Chloroform", "categories": ["air"], "amount": 24963}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.667}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 10.667}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.667}, {"name": "Chromium VI", "categories": ["air"], "amount": 10.667}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9095.8}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 9095.8}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9095.8}, {"name": "Cobalt II", "categories": ["air"], "amount": 9095.8}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.778}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 17.778}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.778}, {"name": "Copper ion", "categories": ["air"], "amount": 17.778}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 83.098}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 83.098}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 83.098}, {"name": "Cumene", "categories": ["air"], "amount": 83.098}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7587200}, {"name": "Cyanide", "categories": ["air", "low population density, long-term"], "amount": 7587200}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7587200}, {"name": "Cyanide", "categories": ["air"], "amount": 7587200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11740000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 11740000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11740000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 11740000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 61023}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 61023}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 61023}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 61023}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.262}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 10.262}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.262}, {"name": "Ethanol", "categories": ["air"], "amount": 10.262}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8720.3}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1055.9}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 585.76}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 585.76}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 585.76}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 585.76}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 202910}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 202910}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 202910}, {"name": "Formaldehyde", "categories": ["air"], "amount": 202910}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2464.3}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2464.3}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2464.3}, {"name": "Hexane", "categories": ["air"], "amount": 2464.3}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 531.9}, {"name": "Iron ion", "categories": ["air", "low population density, long-term"], "amount": 531.9}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 531.9}, {"name": "Iron ion", "categories": ["air"], "amount": 531.9}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.667}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 10.667}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.667}, {"name": "Lead II", "categories": ["air"], "amount": 10.667}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1899.6}, {"name": "Manganese II", "categories": ["air", "low population density, long-term"], "amount": 1899.6}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1899.6}, {"name": "Manganese II", "categories": ["air"], "amount": 1899.6}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["air"], "amount": 5333.3}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.538}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 97.538}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 97.538}, {"name": "Methanol", "categories": ["air"], "amount": 97.538}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 3875}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 3875}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3875}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 3875}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 53.333}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 53.333}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53.333}, {"name": "Nickel II", "categories": ["air"], "amount": 53.333}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 3066.8}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 3066.8}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3066.8}, {"name": "Propanal", "categories": ["air"], "amount": 3066.8}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 10765}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 10765}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10765}, {"name": "Propylene oxide", "categories": ["air"], "amount": 10765}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 106380}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 106380}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 106380}, {"name": "Selenium IV", "categories": ["air"], "amount": 106380}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 265950}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 265950}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265950}, {"name": "Silver I", "categories": ["air"], "amount": 265950}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2341}, {"name": "Sodium dichromate", "categories": ["air", "low population density, long-term"], "amount": 4.2341}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2341}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 4.2341}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 3324.4}, {"name": "Strontium", "categories": ["air", "low population density, long-term"], "amount": 3324.4}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3324.4}, {"name": "Strontium", "categories": ["air"], "amount": 3324.4}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 17730}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 17730}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17730}, {"name": "Thallium I", "categories": ["air"], "amount": 17730}, {"name": "Thorium", "categories": ["air", "non-urban air or from high stacks"], "amount": 8865}, {"name": "Thorium", "categories": ["air", "low population density, long-term"], "amount": 8865}, {"name": "Thorium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8865}, {"name": "Thorium", "categories": ["air"], "amount": 8865}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 727.63}, {"name": "Titanium ion", "categories": ["air", "low population density, long-term"], "amount": 727.63}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 727.63}, {"name": "Titanium ion", "categories": ["air"], "amount": 727.63}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 968.76}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 968.76}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 968.76}, {"name": "Toluene", "categories": ["air"], "amount": 968.76}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 344.9}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 344.9}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 344.9}, {"name": "Vanadium V", "categories": ["air"], "amount": 344.9}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 400.47}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 400.47}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400.47}, {"name": "Xylene", "categories": ["air"], "amount": 400.47}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3333}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 5.3333}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3333}, {"name": "Zinc II", "categories": ["air"], "amount": 5.3333}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 977.75}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 977.75}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 977.75}, {"name": "Aluminium III", "categories": ["soil"], "amount": 977.75}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 12545}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 12545}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 12545}, {"name": "Antimony ion", "categories": ["soil"], "amount": 12545}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 265.95}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 265.95}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 265.95}, {"name": "Beryllium II", "categories": ["soil"], "amount": 265.95}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 2222.2}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2222.2}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2222.2}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2222.2}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 13.333}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 13.333}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 13.333}, {"name": "Chromium VI", "categories": ["soil"], "amount": 13.333}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 11370}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 11370}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 11370}, {"name": "Cobalt II", "categories": ["soil"], "amount": 11370}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 22.222}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 22.222}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 22.222}, {"name": "Copper ion", "categories": ["soil"], "amount": 22.222}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 155300}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 664.87}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 664.87}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 664.87}, {"name": "Iron ion", "categories": ["soil"], "amount": 664.87}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 13.333}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 13.333}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 13.333}, {"name": "Lead II", "categories": ["soil"], "amount": 13.333}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 2374.5}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 2374.5}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 2374.5}, {"name": "Manganese II", "categories": ["soil"], "amount": 2374.5}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["soil"], "amount": 5333.3}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 4843.7}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 4843.7}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4843.7}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 66.667}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 66.667}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 66.667}, {"name": "Nickel II", "categories": ["soil"], "amount": 66.667}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 333.29}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 333.29}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 333.29}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 132970}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 132970}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 132970}, {"name": "Selenium IV", "categories": ["soil"], "amount": 132970}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 332440}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 332440}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 332440}, {"name": "Silver I", "categories": ["soil"], "amount": 332440}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 4155.4}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 4155.4}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 4155.4}, {"name": "Strontium", "categories": ["soil"], "amount": 4155.4}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 22162}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 22162}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 22162}, {"name": "Thallium I", "categories": ["soil"], "amount": 22162}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 909.54}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 909.54}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 909.54}, {"name": "Titanium ion", "categories": ["soil"], "amount": 909.54}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 431.12}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 431.12}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 431.12}, {"name": "Vanadium V", "categories": ["soil"], "amount": 431.12}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 6.6667}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 6.6667}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 6.6667}, {"name": "Zinc II", "categories": ["soil"], "amount": 6.6667}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 3594}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 3594}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3594}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 3594}, {"name": "Benzene", "categories": ["water"], "amount": 3594}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 37807}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 37807}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 37807}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 37807}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 24963}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 24963}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 24963}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 24963}, {"name": "Chloroform", "categories": ["water"], "amount": 24963}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 83.098}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 83.098}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 83.098}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 83.098}, {"name": "Cumene", "categories": ["water"], "amount": 83.098}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 7587200}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 7587200}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 7587200}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 7587200}, {"name": "Cyanide", "categories": ["water"], "amount": 7587200}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 8720.3}, {"name": "Ethylene", "categories": ["water"], "amount": 8720.3}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1055.9}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1055.9}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2464.3}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2464.3}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2464.3}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2464.3}, {"name": "Hexane", "categories": ["water"], "amount": 2464.3}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 5333.3}, {"name": "Mercury II", "categories": ["water"], "amount": 5333.3}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 400.47}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 400.47}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 400.47}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 400.47}, {"name": "m-Xylene", "categories": ["water"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 400.47}, {"name": "o-Xylene", "categories": ["water"], "amount": 400.47}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 968.76}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 968.76}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 968.76}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 968.76}, {"name": "Toluene", "categories": ["water"], "amount": 968.76}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 400.47}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 400.47}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 400.47}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 400.47}, {"name": "Xylene", "categories": ["water"], "amount": 400.47}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 17232}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 531.9}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["air"], "amount": 266.67}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 333.33}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 333.33}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 333.33}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 333.33}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 150510}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 875000000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 492.91}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 492.91}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 492.91}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 492.91}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 492.91}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 114680}]}, {"unit": "m3 water", "name": ["EDIP 2003", "ecotoxicity", "chronic, in water"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 13.793}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 50.633}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 80}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1212.1}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 29412}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 377360}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 8888.9}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4000}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 8000}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 14.545}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 23529000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 117650000}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 133330}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 400000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2500000}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 12500000}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2857.1}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 800000}, {"name": "Dichromate", "categories": ["water", "ground-"], "amount": 320990}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 555560000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.0767}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1818.2}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 82.902}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 23952}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 147060}, {"name": "Hypochlorite", "categories": ["water", "ground-"], "amount": 266670}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 400000}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 71429}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 4000000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 400000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 133330}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 400}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1176.5}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 4000000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 10000000}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 50000000}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 52926}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 125000}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 666670}, {"name": "Thorium", "categories": ["air", "urban air close to ground"], "amount": 333330}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 27360}, {"name": "Titanium ion", "categories": ["water", "ground-"], "amount": 136800}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 4000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 40000}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 200000}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 4000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 200000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1000000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.793}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 13.793}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.793}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 13.793}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.633}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 50.633}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.633}, {"name": "2-Propanol", "categories": ["air"], "amount": 50.633}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 80}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 80}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80}, {"name": "Acetic acid", "categories": ["air"], "amount": 80}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1212.1}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 1212.1}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1212.1}, {"name": "Acetone", "categories": ["air"], "amount": 1212.1}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 29412}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 29412}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29412}, {"name": "Aluminium III", "categories": ["air"], "amount": 29412}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 377360}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 377360}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 377360}, {"name": "Antimony ion", "categories": ["air"], "amount": 377360}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8888.9}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 8888.9}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8888.9}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 8888.9}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 4000}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000}, {"name": "Benzene", "categories": ["air"], "amount": 4000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8000}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 8000}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8000}, {"name": "Beryllium II", "categories": ["air"], "amount": 8000}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.545}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 14.545}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.545}, {"name": "Butanol", "categories": ["air"], "amount": 14.545}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 23529000}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 23529000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23529000}, {"name": "Cadmium II", "categories": ["air"], "amount": 23529000}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20000}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Chloroform", "categories": ["air"], "amount": 20000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 133330}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 133330}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 133330}, {"name": "Chromium VI", "categories": ["air"], "amount": 133330}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 400000}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 400000}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400000}, {"name": "Cobalt II", "categories": ["air"], "amount": 400000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 2500000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000}, {"name": "Copper ion", "categories": ["air"], "amount": 2500000}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2857.1}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 2857.1}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2857.1}, {"name": "Cumene", "categories": ["air"], "amount": 2857.1}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 800000}, {"name": "Cyanide", "categories": ["air", "low population density, long-term"], "amount": 800000}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 800000}, {"name": "Cyanide", "categories": ["air"], "amount": 800000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 555560000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 555560000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 555560000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 555560000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 20000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 20000}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0767}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 1.0767}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0767}, {"name": "Ethanol", "categories": ["air"], "amount": 1.0767}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1818.2}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 20000}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.902}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 82.902}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.902}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 82.902}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 23952}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 23952}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23952}, {"name": "Formaldehyde", "categories": ["air"], "amount": 23952}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 147060}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 147060}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 147060}, {"name": "Hexane", "categories": ["air"], "amount": 147060}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Iron ion", "categories": ["air", "low population density, long-term"], "amount": 20000}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Iron ion", "categories": ["air"], "amount": 20000}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 400000}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 400000}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400000}, {"name": "Lead II", "categories": ["air"], "amount": 400000}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 71429}, {"name": "Manganese II", "categories": ["air", "low population density, long-term"], "amount": 71429}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71429}, {"name": "Manganese II", "categories": ["air"], "amount": 71429}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000000}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 4000000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000000}, {"name": "Mercury II", "categories": ["air"], "amount": 4000000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Methanol", "categories": ["air"], "amount": 10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 400000}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 400000}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400000}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 400000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 133330}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 133330}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 133330}, {"name": "Nickel II", "categories": ["air"], "amount": 133330}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 400}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 400}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400}, {"name": "Propanal", "categories": ["air"], "amount": 400}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1176.5}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1176.5}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1176.5}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1176.5}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000000}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 4000000}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000000}, {"name": "Selenium IV", "categories": ["air"], "amount": 4000000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000000}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 10000000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000000}, {"name": "Silver I", "categories": ["air"], "amount": 10000000}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 52926}, {"name": "Sodium dichromate", "categories": ["air", "low population density, long-term"], "amount": 52926}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 52926}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 52926}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 125000}, {"name": "Strontium", "categories": ["air", "low population density, long-term"], "amount": 125000}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 125000}, {"name": "Strontium", "categories": ["air"], "amount": 125000}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 666670}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 666670}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 666670}, {"name": "Thallium I", "categories": ["air"], "amount": 666670}, {"name": "Thorium", "categories": ["air", "non-urban air or from high stacks"], "amount": 333330}, {"name": "Thorium", "categories": ["air", "low population density, long-term"], "amount": 333330}, {"name": "Thorium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 333330}, {"name": "Thorium", "categories": ["air"], "amount": 333330}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 27360}, {"name": "Titanium ion", "categories": ["air", "low population density, long-term"], "amount": 27360}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27360}, {"name": "Titanium ion", "categories": ["air"], "amount": 27360}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4000}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000}, {"name": "Toluene", "categories": ["air"], "amount": 4000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 40000}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 40000}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40000}, {"name": "Vanadium V", "categories": ["air"], "amount": 40000}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4000}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 4000}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4000}, {"name": "Xylene", "categories": ["air"], "amount": 4000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 200000}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 200000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 200000}, {"name": "Zinc II", "categories": ["air"], "amount": 200000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 4000000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 4000000}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 4000000}, {"name": "Mercury II", "categories": ["soil"], "amount": 4000000}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 68.966}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 68.966}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 68.966}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 68.966}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 68.966}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 253.16}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 253.16}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 253.16}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 253.16}, {"name": "2-Propanol", "categories": ["water"], "amount": 253.16}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 732.6}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 732.6}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 732.6}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 732.6}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 732.6}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 400}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 400}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 400}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 400}, {"name": "Acetic acid", "categories": ["water"], "amount": 400}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 6060.6}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 6060.6}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 6060.6}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 6060.6}, {"name": "Acetone", "categories": ["water"], "amount": 6060.6}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 147060}, {"name": "Aluminium III", "categories": ["water", "ground-, long-term"], "amount": 147060}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 147060}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 147060}, {"name": "Aluminium III", "categories": ["water"], "amount": 147060}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 1886800}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 1886800}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1886800}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1886800}, {"name": "Antimony ion", "categories": ["water"], "amount": 1886800}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 4000}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "Benzene", "categories": ["water"], "amount": 4000}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 200000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 200000}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 40000}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 40000}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 40000}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 40000}, {"name": "Beryllium II", "categories": ["water"], "amount": 40000}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 72.727}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 72.727}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 72.727}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 72.727}, {"name": "Butanol", "categories": ["water"], "amount": 72.727}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 117650000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 117650000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 117650000}, {"name": "Cadmium II", "categories": ["water"], "amount": 117650000}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 20000}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 20000}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 20000}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 20000}, {"name": "Chloroform", "categories": ["water"], "amount": 20000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 666670}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 666670}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 666670}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 666670}, {"name": "Chromium VI", "categories": ["water"], "amount": 666670}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 2000000}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Cobalt II", "categories": ["water"], "amount": 2000000}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 12500000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 12500000}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 12500000}, {"name": "Copper ion", "categories": ["water"], "amount": 12500000}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2857.1}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 2857.1}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2857.1}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2857.1}, {"name": "Cumene", "categories": ["water"], "amount": 2857.1}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 800000}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 800000}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 800000}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 800000}, {"name": "Cyanide", "categories": ["water"], "amount": 800000}, {"name": "Dichromate", "categories": ["water", "ground-, long-term"], "amount": 320990}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 320990}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 320990}, {"name": "Dichromate", "categories": ["water"], "amount": 320990}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 29.412}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 29.412}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 29.412}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 29.412}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 29.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 100000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 100000}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 5.3836}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 5.3836}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3836}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 5.3836}, {"name": "Ethanol", "categories": ["water"], "amount": 5.3836}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 1818.2}, {"name": "Ethylene", "categories": ["water"], "amount": 1818.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 20000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 20000}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 414.51}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 414.51}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 414.51}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 414.51}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 414.51}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 119760}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 119760}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 119760}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 119760}, {"name": "Formaldehyde", "categories": ["water"], "amount": 119760}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 147060}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 147060}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 147060}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 147060}, {"name": "Hexane", "categories": ["water"], "amount": 147060}, {"name": "Hypochlorite", "categories": ["water", "ground-, long-term"], "amount": 266670}, {"name": "Hypochlorite", "categories": ["water", "ocean"], "amount": 266670}, {"name": "Hypochlorite", "categories": ["water", "surface water"], "amount": 266670}, {"name": "Hypochlorite", "categories": ["water"], "amount": 266670}, {"name": "Iron ion", "categories": ["water", "ground-, long-term"], "amount": 100000}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Iron ion", "categories": ["water"], "amount": 100000}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 2000000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Lead II", "categories": ["water"], "amount": 2000000}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 357140}, {"name": "Manganese II", "categories": ["water", "ground-, long-term"], "amount": 357140}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 357140}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 357140}, {"name": "Manganese II", "categories": ["water"], "amount": 357140}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 4000000}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 4000000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 4000000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 4000000}, {"name": "Mercury II", "categories": ["water"], "amount": 4000000}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 50}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 50}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 50}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 50}, {"name": "Methanol", "categories": ["water"], "amount": 50}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2000000}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2000000}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2000000}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2000000}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2000000}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 4000}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "m-Xylene", "categories": ["water"], "amount": 4000}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 666670}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 666670}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 666670}, {"name": "Nickel II", "categories": ["water"], "amount": 666670}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 1000000}, {"name": "Oils, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1000000}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 1000000}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 1000000}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1000000}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 4000}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "o-Xylene", "categories": ["water"], "amount": 4000}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 44444}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 44444}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 44444}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 44444}, {"name": "Phenol", "categories": ["water"], "amount": 44444}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 2000}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 2000}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 2000}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 2000}, {"name": "Propanal", "categories": ["water"], "amount": 2000}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 5882.4}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 5882.4}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 5882.4}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 5882.4}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5882.4}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 20000000}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 20000000}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 20000000}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 20000000}, {"name": "Selenium IV", "categories": ["water"], "amount": 20000000}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 50000000}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 50000000}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 50000000}, {"name": "Silver I", "categories": ["water"], "amount": 50000000}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 625000}, {"name": "Strontium", "categories": ["water", "ground-, long-term"], "amount": 625000}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 625000}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 625000}, {"name": "Strontium", "categories": ["water"], "amount": 625000}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3333300}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 3333300}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 3333300}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3333300}, {"name": "Thallium I", "categories": ["water"], "amount": 3333300}, {"name": "Titanium ion", "categories": ["water", "ground-, long-term"], "amount": 136800}, {"name": "Titanium ion", "categories": ["water", "ocean"], "amount": 136800}, {"name": "Titanium ion", "categories": ["water", "surface water"], "amount": 136800}, {"name": "Titanium ion", "categories": ["water"], "amount": 136800}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 4000}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "Toluene", "categories": ["water"], "amount": 4000}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 200000}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 200000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 200000}, {"name": "Vanadium V", "categories": ["water"], "amount": 200000}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 4000}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 4000}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 4000}, {"name": "Xylene", "categories": ["water"], "amount": 4000}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 1000000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1000000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1000000}, {"name": "Zinc II", "categories": ["water"], "amount": 1000000}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["air"], "amount": 384620}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1923100}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1923100}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1923100}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1923100}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1923100}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 10000}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 10000}]}, {"unit": "m3 waste water", "name": ["EDIP 2003", "ecotoxicity", "in sewage treatment plants"], "exchanges": [{"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5000000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 15000000}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 25000000}, {"name": "Dichromate", "categories": ["water", "ground-"], "amount": 482}, {"name": "Hypochlorite", "categories": ["water", "ground-"], "amount": 898000}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 6700}, {"name": "Titanium ion", "categories": ["water", "ground-"], "amount": 6800}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 290000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 44000}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 20}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 20}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 20}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 20}, {"name": "Acetic acid", "categories": ["water"], "amount": 20}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 500000000}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 500000000}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 500000000}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 500000000}, {"name": "Acetone", "categories": ["water"], "amount": 500000000}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 500000}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Benzene", "categories": ["water"], "amount": 500000}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5000000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5000000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5000000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5000000}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 15000000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 15000000}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 15000000}, {"name": "Cadmium II", "categories": ["water"], "amount": 15000000}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 500000}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Chloroform", "categories": ["water"], "amount": 500000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1000}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 1000}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1000}, {"name": "Chromium VI", "categories": ["water"], "amount": 1000}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 120000}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 120000}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 120000}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 120000}, {"name": "Cobalt II", "categories": ["water"], "amount": 120000}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 25000000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 25000000}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 25000000}, {"name": "Copper ion", "categories": ["water"], "amount": 25000000}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1900}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1900}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1900}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1900}, {"name": "Cumene", "categories": ["water"], "amount": 1900}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 100000000}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 100000000}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 100000000}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 100000000}, {"name": "Cyanide", "categories": ["water"], "amount": 100000000}, {"name": "Dichromate", "categories": ["water", "ground-, long-term"], "amount": 482}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 482}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 482}, {"name": "Dichromate", "categories": ["water"], "amount": 482}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 500000}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3600}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 3600}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3600}, {"name": "Formaldehyde", "categories": ["water"], "amount": 3600}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 170000000}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 170000000}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 170000000}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 170000000}, {"name": "Hypochlorite", "categories": ["water", "ocean"], "amount": 898000}, {"name": "Hypochlorite", "categories": ["water", "surface water"], "amount": 898000}, {"name": "Hypochlorite", "categories": ["water"], "amount": 898000}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 6700}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 6700}, {"name": "Iron ion", "categories": ["water"], "amount": 6700}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5000000}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 5000000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5000000}, {"name": "Lead II", "categories": ["water"], "amount": 5000000}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 130000}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 130000}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 130000}, {"name": "Manganese II", "categories": ["water"], "amount": 130000}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Mercury II", "categories": ["water"], "amount": 100000}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 8}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 8}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 8}, {"name": "Methanol", "categories": ["water"], "amount": 8}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 100000}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 100000}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 100000}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 100000}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "m-Xylene", "categories": ["water"], "amount": 500000}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 69000}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 69000}, {"name": "Nickel II", "categories": ["water"], "amount": 69000}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "o-Xylene", "categories": ["water"], "amount": 500000}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 780}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 780}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 780}, {"name": "Phenol", "categories": ["water"], "amount": 780}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 30}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 30}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 30}, {"name": "Propylene oxide", "categories": ["water"], "amount": 30}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 10000000}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 10000000}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 10000000}, {"name": "Selenium IV", "categories": ["water"], "amount": 10000000}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 5000000}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 5000000}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 5000000}, {"name": "Strontium", "categories": ["water"], "amount": 5000000}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 690}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 690}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 690}, {"name": "Styrene", "categories": ["water"], "amount": 690}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 1700000}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1700000}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 1700000}, {"name": "Thallium I", "categories": ["water"], "amount": 1700000}, {"name": "Titanium ion", "categories": ["water", "ocean"], "amount": 6800}, {"name": "Titanium ion", "categories": ["water", "surface water"], "amount": 6800}, {"name": "Titanium ion", "categories": ["water"], "amount": 6800}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Toluene", "categories": ["water"], "amount": 500000}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 290000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 290000}, {"name": "Vanadium V", "categories": ["water"], "amount": 290000}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 500000}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 500000}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 500000}, {"name": "Xylene", "categories": ["water"], "amount": 500000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 44000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 44000}, {"name": "Zinc II", "categories": ["water"], "amount": 44000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2500}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 2500}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2500}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 2500}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 2500}]}, {"unit": "kg NO3-", "name": ["EDIP 2003", "eutrophication", "combined potential"], "exchanges": [{"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.69002}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 3.64}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.4838}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 2.38}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.287}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.7965}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.3479}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 2.6137}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 9.196}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 32.03}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.2}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.2}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.5}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.64}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 3.64}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.64}, {"name": "Ammonia", "categories": ["air"], "amount": 3.64}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38}, {"name": "Cyanide", "categories": ["air", "low population density, long-term"], "amount": 2.38}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38}, {"name": "Cyanide", "categories": ["air"], "amount": 2.38}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air", "low population density, long-term"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.2}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrate", "categories": ["air"], "amount": 1}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.03}, {"name": "Phosphorus", "categories": ["air", "low population density, long-term"], "amount": 32.03}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32.03}, {"name": "Phosphorus", "categories": ["air"], "amount": 32.03}, {"name": "Nitrogen", "categories": ["soil", "forestry"], "amount": 2.3479}, {"name": "Nitrogen", "categories": ["soil", "industrial"], "amount": 2.3479}, {"name": "Nitrogen", "categories": ["soil"], "amount": 2.3479}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.627}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.627}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.627}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.627}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.69002}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.69002}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.69002}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.69002}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.4838}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 2.548}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.4838}, {"name": "Ammonium", "categories": ["water"], "amount": 0.4838}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4042}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 1.4042}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 1.666}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4042}, {"name": "Cyanide", "categories": ["water"], "amount": 1.4042}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 1.218}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 1.218}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 1.4451}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 1.218}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1.218}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.287}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 2.7134}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.287}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.287}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.59}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.59}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.7}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.59}, {"name": "Nitrate", "categories": ["water"], "amount": 0.59}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 0.7965}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.729}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.7965}, {"name": "Nitrite", "categories": ["water"], "amount": 0.7965}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.29796}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.29796}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.35351}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.29796}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.29796}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 2.6137}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 2.6137}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 3.101}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 2.6137}, {"name": "Nitrogen", "categories": ["water"], "amount": 2.6137}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 2.6137}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 3.101}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 2.6137}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 2.6137}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 9.196}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 10.45}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 9.196}, {"name": "Phosphate", "categories": ["water"], "amount": 9.196}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 28.186}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 28.186}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 32.03}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 28.186}, {"name": "Phosphorus", "categories": ["water"], "amount": 28.186}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.82}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 2.82}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.82}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.82}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.35}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.35}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.35}]}, {"unit": "kg N", "name": ["EDIP 2003", "eutrophication", "separate N potential"], "exchanges": [{"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.15576}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.82}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.4838}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 0.54}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 0.51625}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.23}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.177}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.53}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.59}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.82}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82}, {"name": "Ammonia", "categories": ["air"], "amount": 0.82}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.54}, {"name": "Cyanide", "categories": ["air", "low population density, long-term"], "amount": 0.54}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.54}, {"name": "Cyanide", "categories": ["air"], "amount": 0.54}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.23}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23}, {"name": "Nitrate", "categories": ["air"], "amount": 0.23}, {"name": "Nitrogen", "categories": ["soil", "forestry"], "amount": 0.53}, {"name": "Nitrogen", "categories": ["soil", "industrial"], "amount": 0.53}, {"name": "Nitrogen", "categories": ["soil"], "amount": 0.53}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.15576}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.15576}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.15576}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.15576}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.4838}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.574}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.4838}, {"name": "Ammonium", "categories": ["water"], "amount": 0.4838}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 0.3186}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 0.3186}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 0.378}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 0.3186}, {"name": "Cyanide", "categories": ["water"], "amount": 0.3186}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.27494}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.27494}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.3262}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.27494}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.27494}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 0.51625}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.6125}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 0.51625}, {"name": "Hydrazine", "categories": ["water"], "amount": 0.51625}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.1357}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.1357}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.161}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.1357}, {"name": "Nitrate", "categories": ["water"], "amount": 0.1357}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 0.177}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.162}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.177}, {"name": "Nitrite", "categories": ["water"], "amount": 0.177}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.06726}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.06726}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.0798}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.06726}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.06726}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.59}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 0.59}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.7}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.59}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.59}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 0.59}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 0.7}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.59}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.59}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.64}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.64}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.64}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.3}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.3}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.3}]}, {"unit": "kg P", "name": ["EDIP 2003", "eutrophication", "separate P potential"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.2904}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phosphorus", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phosphorus", "categories": ["air"], "amount": 1}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0198}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0198}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0198}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0198}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 0.2904}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.2904}, {"name": "Phosphate", "categories": ["water"], "amount": 0.2904}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 0.88}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 0.88}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 0.88}, {"name": "Phosphorus", "categories": ["water"], "amount": 0.88}]}, {"unit": "square meter", "name": ["EDIP 2003", "eutrophication", "terrestrial eutrophication"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 101}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 101}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 101}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101}, {"name": "Ammonia", "categories": ["air"], "amount": 101}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 25.4}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.4}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 25.4}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.4}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 25.4}]}, {"unit": "kg CO2-Eq", "name": ["EDIP 2003", "global warming", "GWP 100a"], "exchanges": [{"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 30}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 140}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4300}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 700}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 120}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2400}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 120}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 620}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3400}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 6900}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1700}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 14000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 210}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 550}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 23}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 16}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 23}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1800}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5700}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12000}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 22200}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentene", "categories": ["air"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetic acid", "categories": ["air"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 1}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetone", "categories": ["air"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acrolein", "categories": ["air"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene", "categories": ["air"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butadiene", "categories": ["air"], "amount": 3}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butane", "categories": ["air"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 30}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 30}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30}, {"name": "Chloroform", "categories": ["air"], "amount": 30}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Cumene", "categories": ["air"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethane", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 140}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4300}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 4300}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4300}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4300}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6000}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 700}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 700}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 700}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 700}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 120}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 120}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 120}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 120}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2400}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2400}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2400}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2400}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 120}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 120}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 120}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 120}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 620}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 620}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 620}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 620}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 11900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3400}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethanol", "categories": ["air"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethyne", "categories": ["air"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Formic acid", "categories": ["air"], "amount": 2}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Furan", "categories": ["air"], "amount": 2}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Heptane", "categories": ["air"], "amount": 3}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hexane", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Lactic acid", "categories": ["air"], "amount": 2}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 23}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 23}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 23}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1300}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1300}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 6900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 6900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 6900}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1700}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 14000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 14000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 14000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 10}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10600}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10600}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10600}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10600}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 210}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 210}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 210}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 210}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 550}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 550}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 550}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 550}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 23}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 23}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23}, {"name": "Methane, fossil", "categories": ["air"], "amount": 23}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 16}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 16}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 16}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1800}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1800}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5700}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 4600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12000}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 2}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanol", "categories": ["air"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl formate", "categories": ["air"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "m-Xylene", "categories": ["air"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "o-Xylene", "categories": ["air"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Paraffins", "categories": ["air"], "amount": 3}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Pentane", "categories": ["air"], "amount": 3}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol", "categories": ["air"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propanal", "categories": ["air"], "amount": 2}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propane", "categories": ["air"], "amount": 3}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propene", "categories": ["air"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propionic acid", "categories": ["air"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Sodium formate", "categories": ["air"], "amount": 2}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Styrene", "categories": ["air"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 22200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 22200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 22200}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 2}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Toluene", "categories": ["air"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Xylene", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9800}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9800}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9800}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9800}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9800}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6000}, {"name": "Butene", "categories": ["air"], "amount": 3}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 296}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 296}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 296}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 296}]}, {"unit": "kg CO2-Eq", "name": ["EDIP 2003", "global warming", "GWP 20a"], "exchanges": [{"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 100}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 3300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 450}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5500}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2100}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 410}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5200}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 390}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 4900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 5900}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 16}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 3600}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7900}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 4800}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 10000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 35}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 700}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1800}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 62}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 55}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 62}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 3900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6300}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 9400}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentene", "categories": ["air"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetic acid", "categories": ["air"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 1}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetone", "categories": ["air"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acrolein", "categories": ["air"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene", "categories": ["air"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butadiene", "categories": ["air"], "amount": 3}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butane", "categories": ["air"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 100}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 100}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100}, {"name": "Chloroform", "categories": ["air"], "amount": 100}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Cumene", "categories": ["air"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethane", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 3300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3300}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 3300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 450}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 450}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 450}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 450}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5500}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5500}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5500}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5500}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6100}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2100}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2100}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2100}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2100}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 410}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 410}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 410}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 410}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5200}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5200}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5200}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5200}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 390}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 390}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 390}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 4900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 4900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 4900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 5900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 5900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 5900}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethanol", "categories": ["air"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethyne", "categories": ["air"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Formic acid", "categories": ["air"], "amount": 2}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Furan", "categories": ["air"], "amount": 2}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Heptane", "categories": ["air"], "amount": 3}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hexane", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Lactic acid", "categories": ["air"], "amount": 2}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 62}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 62}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 62}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 62}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 16}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 16}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 16}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 3600}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 3600}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3600}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 3600}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7900}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7900}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 4800}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 4800}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4800}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 4800}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 10000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 10000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 35}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 700}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 1800}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1800}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 62}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 62}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 62}, {"name": "Methane, fossil", "categories": ["air"], "amount": 62}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 55}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 55}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 55}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2700}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2700}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2700}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2700}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 3900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 3900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 3900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6300}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 9400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 9400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 9400}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 2}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanol", "categories": ["air"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl formate", "categories": ["air"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "m-Xylene", "categories": ["air"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "o-Xylene", "categories": ["air"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Paraffins", "categories": ["air"], "amount": 3}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Pentane", "categories": ["air"], "amount": 3}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol", "categories": ["air"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propanal", "categories": ["air"], "amount": 2}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propane", "categories": ["air"], "amount": 3}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propene", "categories": ["air"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propionic acid", "categories": ["air"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Sodium formate", "categories": ["air"], "amount": 2}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Styrene", "categories": ["air"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 15100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 15100}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 2}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Toluene", "categories": ["air"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Xylene", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 7500}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7500}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 7500}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 7500}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6100}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6100}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6100}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 7500}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6100}, {"name": "Butene", "categories": ["air"], "amount": 3}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 275}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 275}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 275}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 275}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 275}]}, {"unit": "kg CO2-Eq", "name": ["EDIP 2003", "global warming", "GWP 500a"], "exchanges": [{"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 9}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 400}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 42}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 220}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 37}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 740}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 36}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 190}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 18000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1100}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 390}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 540}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16300}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 65}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 170}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 580}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 8900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10000}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 32400}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentanol", "categories": ["air"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "1-Pentene", "categories": ["air"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Aminopropanol", "categories": ["air"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "2-Nitrobenzoic acid", "categories": ["air"], "amount": 2}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetic acid", "categories": ["air"], "amount": 2}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 1}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acetone", "categories": ["air"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Acrolein", "categories": ["air"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 2}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene", "categories": ["air"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butadiene", "categories": ["air"], "amount": 3}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butane", "categories": ["air"], "amount": 3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 2}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 9}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9}, {"name": "Chloroform", "categories": ["air"], "amount": 9}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Cumene", "categories": ["air"], "amount": 3}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 2}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethane", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 400}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 400}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 400}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 400}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 42}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 42}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 42}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1600}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1600}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 2700}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 220}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 220}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 220}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 220}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 37}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 37}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 37}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 740}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 740}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 740}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 740}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 36}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 36}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 36}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 190}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 190}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 190}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 190}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9900}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 18000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 18000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 18000}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1100}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1100}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethanol", "categories": ["air"], "amount": 2}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethyl cellulose", "categories": ["air"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Ethyne", "categories": ["air"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Formic acid", "categories": ["air"], "amount": 2}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Furan", "categories": ["air"], "amount": 2}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Heptane", "categories": ["air"], "amount": 3}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hexane", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1}, {"name": "Isocyanic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Isocyanic acid", "categories": ["air"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Lactic acid", "categories": ["air"], "amount": 2}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 390}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 390}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 390}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2700}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2700}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2700}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2700}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 540}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 540}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 540}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 540}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16300}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16300}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16300}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16300}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 5200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 5200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5200}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5200}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 65}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 65}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 65}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 65}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 170}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 170}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 170}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 170}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 7}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 580}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 580}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 580}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 580}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 8900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 8900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8900}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 8900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 10000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10000}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 2}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methanol", "categories": ["air"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl formate", "categories": ["air"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 2}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "m-Xylene", "categories": ["air"], "amount": 3}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "o-Xylene", "categories": ["air"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Paraffins", "categories": ["air"], "amount": 3}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Pentane", "categories": ["air"], "amount": 3}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol", "categories": ["air"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propanal", "categories": ["air"], "amount": 2}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propane", "categories": ["air"], "amount": 3}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Propene", "categories": ["air"], "amount": 3}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propionic acid", "categories": ["air"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "Sodium formate", "categories": ["air"], "amount": 2}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Styrene", "categories": ["air"], "amount": 3}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 32400}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 32400}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32400}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 32400}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 2}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Toluene", "categories": ["air"], "amount": 3}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Xylene", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8700}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8700}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8700}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8700}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2700}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2700}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2700}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8700}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2700}, {"name": "Butene", "categories": ["air"], "amount": 3}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 156}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 156}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 156}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 156}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 156}]}, {"unit": "m3 air", "name": ["EDIP 2003", "human toxicity", "via air"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 10000000000}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 116280}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3333300}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3663000}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 10000000}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 31746000}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 50000000000}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 669340000}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 2000000000}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 20000000}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 38462000}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 10000000000}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 217390000}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 50000000000}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 250000000000}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 11111000000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 113640000000}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 833330}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 833330}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 34483000}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 100000000}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 1000000000}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 9523800}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 571430}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 10277000}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 141440000}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 250000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 28571000000000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1000000000}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 25253000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 916590}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 50000000}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 114290}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 28571}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 390620000}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 28571000}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 18622000}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 500000000}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 12500000000}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1632700}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 1111100000}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 100000000000}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 2500000000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6666700000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 2544500}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 100000000}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 27211000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 66667000}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 8620700}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 100000000}, {"name": "Ozone", "categories": ["air", "urban air close to ground"], "amount": 50000000}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1351400000}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2000000000}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 33333000}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1515200000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 204080000}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 396950000}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1984100}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1000000}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1282100}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 500030000}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 18083000}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 2500000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 80600000}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 6666700}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 80645000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000000000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 10000000000}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000000000}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 10000000000}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 116280}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 116280}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116280}, {"name": "2-Propanol", "categories": ["air"], "amount": 116280}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3333300}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3333300}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3333300}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3333300}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3663000}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3663000}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3663000}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3663000}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000000}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 10000000}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000000}, {"name": "Acetic acid", "categories": ["air"], "amount": 10000000}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 31746000}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 31746000}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31746000}, {"name": "Acetone", "categories": ["air"], "amount": 31746000}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000000}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 50000000000}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000000}, {"name": "Acrolein", "categories": ["air"], "amount": 50000000000}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 669340000}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 669340000}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 669340000}, {"name": "Acrylic acid", "categories": ["air"], "amount": 669340000}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000000}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 2000000000}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000000}, {"name": "Aluminium III", "categories": ["air"], "amount": 2000000000}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000000}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 20000000}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000000}, {"name": "Antimony ion", "categories": ["air"], "amount": 20000000}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 38462000}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 38462000}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 38462000}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 38462000}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000000000}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 10000000000}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000000000}, {"name": "Benzene", "categories": ["air"], "amount": 10000000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 50000000000}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000000}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000000}, {"name": "Beryllium II", "categories": ["air"], "amount": 50000000000}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 250000000000}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 250000000000}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 250000000000}, {"name": "Butadiene", "categories": ["air"], "amount": 250000000000}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 11111000000}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 11111000000}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11111000000}, {"name": "Butanol", "categories": ["air"], "amount": 11111000000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 113640000000}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 113640000000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 113640000000}, {"name": "Cadmium II", "categories": ["air"], "amount": 113640000000}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 833330}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 833330}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 833330}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 833330}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 833330}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 833330}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 833330}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 833330}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 34483000}, {"name": "Chlorine", "categories": ["air", "low population density, long-term"], "amount": 34483000}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34483000}, {"name": "Chlorine", "categories": ["air"], "amount": 34483000}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 100000000}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 100000000}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100000000}, {"name": "Chloroform", "categories": ["air"], "amount": 100000000}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000000}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1000000000}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000000}, {"name": "Chromium III", "categories": ["air"], "amount": 1000000000}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9523800}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 9523800}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9523800}, {"name": "Cobalt II", "categories": ["air"], "amount": 9523800}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 571430}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 571430}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 571430}, {"name": "Copper ion", "categories": ["air"], "amount": 571430}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10277000}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 10277000}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10277000}, {"name": "Cumene", "categories": ["air"], "amount": 10277000}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 141440000}, {"name": "Cyanide", "categories": ["air", "low population density, long-term"], "amount": 141440000}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 141440000}, {"name": "Cyanide", "categories": ["air"], "amount": 141440000}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 250000000}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 250000000}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 250000000}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 250000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 28571000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 28571000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28571000000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 28571000000000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000000}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1000000000}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000000}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1000000000}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 25253000}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 25253000}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25253000}, {"name": "Ethane thiol", "categories": ["air"], "amount": 25253000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 916590}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 50000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 50000000}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 114290}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 114290}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 114290}, {"name": "Ethanol", "categories": ["air"], "amount": 114290}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 28571}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 28571}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28571}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["air"], "amount": 390620000}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 28571000}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18622000}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 500000000}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 500000000}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500000000}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 500000000}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500000000}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 12500000000}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500000000}, {"name": "Formaldehyde", "categories": ["air"], "amount": 12500000000}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1632700}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1632700}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1632700}, {"name": "Hexane", "categories": ["air"], "amount": 1632700}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 1111100000}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 37106000}, {"name": "Iron ion", "categories": ["air", "low population density, long-term"], "amount": 37106000}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37106000}, {"name": "Iron ion", "categories": ["air"], "amount": 37106000}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 100000000000}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 100000000000}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100000000000}, {"name": "Lead II", "categories": ["air"], "amount": 100000000000}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000000}, {"name": "Manganese II", "categories": ["air", "low population density, long-term"], "amount": 2500000000}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000000}, {"name": "Manganese II", "categories": ["air"], "amount": 2500000000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["air"], "amount": 6666700000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2544500}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 2544500}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2544500}, {"name": "Methanol", "categories": ["air"], "amount": 2544500}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 100000000}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 100000000}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100000000}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 100000000}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27211000}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 27211000}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27211000}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 27211000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 66667000}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 66667000}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 66667000}, {"name": "Nickel II", "categories": ["air"], "amount": 66667000}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 100000000}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 100000000}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100000000}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 100000000}, {"name": "Ozone", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000000}, {"name": "Ozone", "categories": ["air", "low population density, long-term"], "amount": 50000000}, {"name": "Ozone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000000}, {"name": "Ozone", "categories": ["air"], "amount": 50000000}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1351400000}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1351400000}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1351400000}, {"name": "Phenol", "categories": ["air"], "amount": 1351400000}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000000}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 2000000000}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000000}, {"name": "Propanal", "categories": ["air"], "amount": 2000000000}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 33333000}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 33333000}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33333000}, {"name": "Propylene oxide", "categories": ["air"], "amount": 33333000}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1515200000}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 1515200000}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1515200000}, {"name": "Selenium IV", "categories": ["air"], "amount": 1515200000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 204080000}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 204080000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 204080000}, {"name": "Silver I", "categories": ["air"], "amount": 204080000}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 396950000}, {"name": "Sodium dichromate", "categories": ["air", "low population density, long-term"], "amount": 396950000}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 396950000}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 396950000}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 1984100}, {"name": "Sodium hypochlorite", "categories": ["air", "low population density, long-term"], "amount": 1984100}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1984100}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 1984100}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1000000}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1000000}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1000000}, {"name": "Styrene", "categories": ["air"], "amount": 1000000}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1282100}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1282100}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1282100}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1282100}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 500030000}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 500030000}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 500030000}, {"name": "Thallium I", "categories": ["air"], "amount": 500030000}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 18083000}, {"name": "Titanium ion", "categories": ["air", "low population density, long-term"], "amount": 18083000}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18083000}, {"name": "Titanium ion", "categories": ["air"], "amount": 18083000}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2500000}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 2500000}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2500000}, {"name": "Toluene", "categories": ["air"], "amount": 2500000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 80600000}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 80600000}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80600000}, {"name": "Vanadium V", "categories": ["air"], "amount": 80600000}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6666700}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 6666700}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6666700}, {"name": "Xylene", "categories": ["air"], "amount": 6666700}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 80645000}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 80645000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80645000}, {"name": "Zinc II", "categories": ["air"], "amount": 80645000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["soil"], "amount": 6666700000}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 10000000000}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 10000000000}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 10000000000}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 10000000000}, {"name": "Benzene", "categories": ["water"], "amount": 10000000000}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 217390000}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 217390000}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 217390000}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 217390000}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 34483000}, {"name": "Chlorine", "categories": ["water", "ground-, long-term"], "amount": 34483000}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 34483000}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 34483000}, {"name": "Chlorine", "categories": ["water"], "amount": 34483000}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 100000000}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 100000000}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 100000000}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 100000000}, {"name": "Chloroform", "categories": ["water"], "amount": 100000000}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 10277000}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 10277000}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 10277000}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 10277000}, {"name": "Cumene", "categories": ["water"], "amount": 10277000}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 141440000}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 141440000}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 141440000}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 141440000}, {"name": "Cyanide", "categories": ["water"], "amount": 141440000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 916590}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 916590}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 28571}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 28571}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 28571}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 28571}, {"name": "Ethylene", "categories": ["water"], "amount": 28571}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 390620000}, {"name": "Chloroethylene", "categories": ["water"], "amount": 390620000}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 28571000}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 28571000}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 18622000}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 18622000}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1632700}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1632700}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1632700}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1632700}, {"name": "Hexane", "categories": ["water"], "amount": 1632700}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 1111100000}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 1111100000}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 6666700000}, {"name": "Mercury II", "categories": ["water"], "amount": 6666700000}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 6666700}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 6666700}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 6666700}, {"name": "m-Xylene", "categories": ["water"], "amount": 6666700}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 8620700}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 8620700}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 8620700}, {"name": "Nitrate", "categories": ["water"], "amount": 8620700}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 8620700}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 8620700}, {"name": "Nitrite", "categories": ["water"], "amount": 8620700}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 6666700}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 6666700}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 6666700}, {"name": "o-Xylene", "categories": ["water"], "amount": 6666700}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1000000}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1000000}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1000000}, {"name": "Styrene", "categories": ["water"], "amount": 1000000}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2500000}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2500000}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2500000}, {"name": "Toluene", "categories": ["water"], "amount": 2500000}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6666700}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 6666700}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6666700}, {"name": "Xylene", "categories": ["water"], "amount": 6666700}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 37106000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5000000000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5000000000}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 5000000000}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5000000000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 5000000000}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 8333300}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 8333300}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 8333300}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 8333300}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 8333300}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2000000}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2000000}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 2000000}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2000000}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2000000}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 8620700}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 8620700}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 8620700}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8620700}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 8620700}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 66667000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 66667000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 66667000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 66667000}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 66667000}]}, {"unit": "m3 soil", "name": ["EDIP 2003", "human toxicity", "via soil"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 3.6673}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 2.8015}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 117.85}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.5807}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.1345}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 16.317}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 31.243}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 16960}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 41.659}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.8666}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 14453}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 46.007}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 2968.1}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 11.212}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 4480.4}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.0629}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 51.823}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 197}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 1124.5}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 169.19}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 4.0045}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 20.951}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 714.17}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 3.2849}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 7518.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 14390000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 8.898}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 0.039502}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.0173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 75.173}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.14776}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.10451}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3973.5}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 39.981}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.68699}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.212}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 5.7653}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.019067}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.9715}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 82.655}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 96.154}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 424.01}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 81295}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.31426}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1544.5}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.7664}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 117.54}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 2.928}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4912.8}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.20766}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 335.16}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 23.851}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 6851}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.1219}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 44.3}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 4240.1}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 446.38}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 10389}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 375.71}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.0048}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.77714}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 962.28}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.067288}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 12.536}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6673}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 3.6673}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6673}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 3.6673}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8015}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 2.8015}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8015}, {"name": "2-Propanol", "categories": ["air"], "amount": 2.8015}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 117.85}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 117.85}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117.85}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 117.85}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5807}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.5807}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5807}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.5807}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1345}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 4.1345}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1345}, {"name": "Acetone", "categories": ["air"], "amount": 4.1345}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.317}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 16.317}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.317}, {"name": "Acrylic acid", "categories": ["air"], "amount": 16.317}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.243}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 31.243}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31.243}, {"name": "Aluminium III", "categories": ["air"], "amount": 31.243}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 16960}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 16960}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16960}, {"name": "Antimony ion", "categories": ["air"], "amount": 16960}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8666}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.8666}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8666}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.8666}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 14453}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 14453}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14453}, {"name": "Benzene", "categories": ["air"], "amount": 14453}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.1}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 2968.1}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2968.1}, {"name": "Beryllium II", "categories": ["air"], "amount": 2968.1}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.212}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 11.212}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.212}, {"name": "Butanol", "categories": ["air"], "amount": 11.212}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4480.4}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 4480.4}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4480.4}, {"name": "Cadmium II", "categories": ["air"], "amount": 4480.4}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.823}, {"name": "Chlorine", "categories": ["air", "low population density, long-term"], "amount": 51.823}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.823}, {"name": "Chlorine", "categories": ["air"], "amount": 51.823}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 197}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 197}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 197}, {"name": "Chloroform", "categories": ["air"], "amount": 197}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1124.5}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1124.5}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1124.5}, {"name": "Chromium III", "categories": ["air"], "amount": 1124.5}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 169.19}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 169.19}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 169.19}, {"name": "Cobalt II", "categories": ["air"], "amount": 169.19}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0045}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 4.0045}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0045}, {"name": "Copper ion", "categories": ["air"], "amount": 4.0045}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.951}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 20.951}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.951}, {"name": "Cumene", "categories": ["air"], "amount": 20.951}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 714.17}, {"name": "Cyanide", "categories": ["air", "low population density, long-term"], "amount": 714.17}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 714.17}, {"name": "Cyanide", "categories": ["air"], "amount": 714.17}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 14390000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 14390000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14390000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 14390000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.898}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 8.898}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.898}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 8.898}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.0173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 75.173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 75.173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 75.173}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 75.173}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14776}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.14776}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14776}, {"name": "Ethanol", "categories": ["air"], "amount": 0.14776}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.10451}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3973.5}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 39.981}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68699}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.212}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.212}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.212}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.212}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7653}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.7653}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7653}, {"name": "Formaldehyde", "categories": ["air"], "amount": 5.7653}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9715}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.9715}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9715}, {"name": "Hexane", "categories": ["air"], "amount": 0.9715}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 770.93}, {"name": "Iron ion", "categories": ["air", "low population density, long-term"], "amount": 770.93}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 770.93}, {"name": "Iron ion", "categories": ["air"], "amount": 770.93}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.655}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 82.655}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.655}, {"name": "Lead II", "categories": ["air"], "amount": 82.655}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 424.01}, {"name": "Manganese II", "categories": ["air", "low population density, long-term"], "amount": 424.01}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 424.01}, {"name": "Manganese II", "categories": ["air"], "amount": 424.01}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 81295}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 81295}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 81295}, {"name": "Mercury II", "categories": ["air"], "amount": 81295}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31426}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.31426}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31426}, {"name": "Methanol", "categories": ["air"], "amount": 0.31426}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1544.5}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1544.5}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1544.5}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1544.5}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 117.54}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 117.54}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117.54}, {"name": "Nickel II", "categories": ["air"], "amount": 117.54}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4912.8}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 4912.8}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4912.8}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 4912.8}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 6851}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 6851}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6851}, {"name": "Propanal", "categories": ["air"], "amount": 6851}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1219}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.1219}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1219}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.1219}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.3}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 44.3}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.3}, {"name": "Selenium IV", "categories": ["air"], "amount": 44.3}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4240.1}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 4240.1}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4240.1}, {"name": "Silver I", "categories": ["air"], "amount": 4240.1}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 446.38}, {"name": "Sodium dichromate", "categories": ["air", "low population density, long-term"], "amount": 446.38}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 446.38}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 446.38}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 10389}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 10389}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10389}, {"name": "Thallium I", "categories": ["air"], "amount": 10389}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 375.71}, {"name": "Titanium ion", "categories": ["air", "low population density, long-term"], "amount": 375.71}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 375.71}, {"name": "Titanium ion", "categories": ["air"], "amount": 375.71}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0048}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.0048}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0048}, {"name": "Toluene", "categories": ["air"], "amount": 1.0048}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 962.28}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 962.28}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 962.28}, {"name": "Vanadium V", "categories": ["air"], "amount": 962.28}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067288}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.067288}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067288}, {"name": "Xylene", "categories": ["air"], "amount": 0.067288}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.536}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 12.536}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.536}, {"name": "Zinc II", "categories": ["air"], "amount": 12.536}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 39.054}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 39.054}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 39.054}, {"name": "Aluminium III", "categories": ["soil"], "amount": 39.054}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 21201}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 21201}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 21201}, {"name": "Antimony ion", "categories": ["soil"], "amount": 21201}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3710.1}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3710.1}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3710.1}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3710.1}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 5600.5}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 5600.5}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 5600.5}, {"name": "Cadmium II", "categories": ["soil"], "amount": 5600.5}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1405.7}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1405.7}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1405.7}, {"name": "Chromium III", "categories": ["soil"], "amount": 1405.7}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 211.48}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 211.48}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 211.48}, {"name": "Cobalt II", "categories": ["soil"], "amount": 211.48}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.0056}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.0056}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.0056}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.0056}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1220}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1220}, {"name": "Fluoride", "categories": ["soil"], "amount": 1220}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.019067}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 963.66}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 963.66}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 963.66}, {"name": "Iron ion", "categories": ["soil"], "amount": 963.66}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 103.32}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 103.32}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 103.32}, {"name": "Lead II", "categories": ["soil"], "amount": 103.32}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 530.02}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 530.02}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 530.02}, {"name": "Manganese II", "categories": ["soil"], "amount": 530.02}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 81295}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 81295}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 81295}, {"name": "Mercury II", "categories": ["soil"], "amount": 81295}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1930.6}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1930.6}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1930.6}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1930.6}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 146.92}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 146.92}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 146.92}, {"name": "Nickel II", "categories": ["soil"], "amount": 146.92}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.20766}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.20766}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.20766}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 55.375}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 55.375}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 55.375}, {"name": "Selenium IV", "categories": ["soil"], "amount": 55.375}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 5300.2}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 5300.2}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 5300.2}, {"name": "Silver I", "categories": ["soil"], "amount": 5300.2}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 12986}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 12986}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 12986}, {"name": "Thallium I", "categories": ["soil"], "amount": 12986}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 469.63}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 469.63}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 469.63}, {"name": "Titanium ion", "categories": ["soil"], "amount": 469.63}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1202.8}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1202.8}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1202.8}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1202.8}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 15.67}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 15.67}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 15.67}, {"name": "Zinc II", "categories": ["soil"], "amount": 15.67}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 14453}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 14453}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 14453}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 14453}, {"name": "Benzene", "categories": ["water"], "amount": 14453}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 46.007}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 46.007}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 46.007}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 46.007}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 51.823}, {"name": "Chlorine", "categories": ["water", "ground-, long-term"], "amount": 51.823}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 51.823}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 51.823}, {"name": "Chlorine", "categories": ["water"], "amount": 51.823}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 197}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 197}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 197}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 197}, {"name": "Chloroform", "categories": ["water"], "amount": 197}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 20.951}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 20.951}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 20.951}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 20.951}, {"name": "Cumene", "categories": ["water"], "amount": 20.951}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 714.17}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 714.17}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 714.17}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 714.17}, {"name": "Cyanide", "categories": ["water"], "amount": 714.17}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 2.0173}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 2.0173}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 0.10451}, {"name": "Ethylene", "categories": ["water"], "amount": 0.10451}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 3973.5}, {"name": "Chloroethylene", "categories": ["water"], "amount": 3973.5}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 39.981}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 39.981}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.68699}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.68699}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.9715}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.9715}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.9715}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.9715}, {"name": "Hexane", "categories": ["water"], "amount": 0.9715}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 81295}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 81295}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 81295}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 81295}, {"name": "Mercury II", "categories": ["water"], "amount": 81295}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.067288}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.067288}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.067288}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.067288}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.067288}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 2.928}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 2.928}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 2.928}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 2.928}, {"name": "Nitrate", "categories": ["water"], "amount": 2.928}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 2.928}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 2.928}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 2.928}, {"name": "Nitrite", "categories": ["water"], "amount": 2.928}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.067288}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.067288}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.067288}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.067288}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.067288}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.0048}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 1.0048}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.0048}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.0048}, {"name": "Toluene", "categories": ["water"], "amount": 1.0048}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.067288}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.067288}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.067288}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.067288}, {"name": "Xylene", "categories": ["water"], "amount": 0.067288}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 770.93}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["air"], "amount": 10373}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 12966}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 12966}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 12966}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 12966}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2676}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 6.9893}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 6.9893}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 6.9893}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 6.9893}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 6.9893}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 2.928}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.928}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 2.928}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.928}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 2.928}]}, {"unit": "m3 water", "name": ["EDIP 2003", "human toxicity", "via surface water"], "exchanges": [{"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.028465}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0074667}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.6418}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0032788}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0085395}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.062684}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 0.39053}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 63600}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.38584}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2251.6}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 270.18}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 37.1}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.11257}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 559470}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2797300}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 0.13133}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 53.68}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3648.2}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 18241}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2.4733}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3353.8}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 16769}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 210.73}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 1.4641}, {"name": "Dichromate", "categories": ["water", "ground-"], "amount": 8782.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 216660000000}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.1872}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.98564}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3.9175}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.00029073}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0020019}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 399.54}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 363.58}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.91071}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0088551}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.022148}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 336.8}, {"name": "Hypochlorite", "categories": ["water", "ground-"], "amount": 0.25764}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 48.182}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 52971}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 5.3}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 108710000}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.2968}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.71}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.00742}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1290.4}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 19.787}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0029295}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 27687}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 265}, {"name": "Sodium dichromate", "categories": ["air", "urban air close to ground"], "amount": 1448.1}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 12986000}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 4.6962}, {"name": "Titanium ion", "categories": ["water", "ground-"], "amount": 23.481}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.9848}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 37.1}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 185.5}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.0929}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4130.5}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 20652}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028465}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.028465}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028465}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.028465}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074667}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0074667}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074667}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0074667}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6418}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3.6418}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6418}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.6418}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0032788}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0032788}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0032788}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0032788}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0085395}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.0085395}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0085395}, {"name": "Acetone", "categories": ["air"], "amount": 0.0085395}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.062684}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.062684}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.062684}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.062684}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39053}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 0.39053}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39053}, {"name": "Aluminium III", "categories": ["air"], "amount": 0.39053}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 63600}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 63600}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63600}, {"name": "Antimony ion", "categories": ["air"], "amount": 63600}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.38584}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.38584}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.38584}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.38584}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2251.6}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2251.6}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2251.6}, {"name": "Benzene", "categories": ["air"], "amount": 2251.6}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.1}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 37.1}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37.1}, {"name": "Beryllium II", "categories": ["air"], "amount": 37.1}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11257}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.11257}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11257}, {"name": "Butanol", "categories": ["air"], "amount": 0.11257}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 559470}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 559470}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 559470}, {"name": "Cadmium II", "categories": ["air"], "amount": 559470}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["air", "low population density, long-term"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["air"], "amount": 0.13133}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 53.68}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 53.68}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53.68}, {"name": "Chloroform", "categories": ["air"], "amount": 53.68}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3648.2}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 3648.2}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3648.2}, {"name": "Chromium III", "categories": ["air"], "amount": 3648.2}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4733}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 2.4733}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4733}, {"name": "Cobalt II", "categories": ["air"], "amount": 2.4733}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3353.8}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 3353.8}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3353.8}, {"name": "Copper ion", "categories": ["air"], "amount": 3353.8}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 210.73}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 210.73}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 210.73}, {"name": "Cumene", "categories": ["air"], "amount": 210.73}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["air", "low population density, long-term"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["air"], "amount": 1.4641}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 216660000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 216660000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 216660000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 216660000000}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1872}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1.1872}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1872}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.1872}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.98564}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 3.9175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9175}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.9175}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00029073}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.00029073}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00029073}, {"name": "Ethanol", "categories": ["air"], "amount": 0.00029073}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0020019}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["air"], "amount": 399.54}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 363.58}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.91071}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0088551}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0088551}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0088551}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0088551}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022148}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.022148}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022148}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.022148}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 336.8}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 336.8}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 336.8}, {"name": "Hexane", "categories": ["air"], "amount": 336.8}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6364}, {"name": "Iron ion", "categories": ["air", "low population density, long-term"], "amount": 9.6364}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6364}, {"name": "Iron ion", "categories": ["air"], "amount": 9.6364}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 52971}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 52971}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 52971}, {"name": "Lead II", "categories": ["air"], "amount": 52971}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3}, {"name": "Manganese II", "categories": ["air", "low population density, long-term"], "amount": 5.3}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3}, {"name": "Manganese II", "categories": ["air"], "amount": 5.3}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 108710000}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 108710000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 108710000}, {"name": "Mercury II", "categories": ["air"], "amount": 108710000}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2968}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.2968}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2968}, {"name": "Methanol", "categories": ["air"], "amount": 0.2968}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 53}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 53}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 53}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 3.71}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.71}, {"name": "Nickel II", "categories": ["air"], "amount": 3.71}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1290.4}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 1290.4}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1290.4}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1290.4}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.787}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 19.787}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.787}, {"name": "Propanal", "categories": ["air"], "amount": 19.787}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029295}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.0029295}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029295}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.0029295}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 27687}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 27687}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27687}, {"name": "Selenium IV", "categories": ["air"], "amount": 27687}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 53}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 53}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 53}, {"name": "Silver I", "categories": ["air"], "amount": 53}, {"name": "Sodium dichromate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1448.1}, {"name": "Sodium dichromate", "categories": ["air", "low population density, long-term"], "amount": 1448.1}, {"name": "Sodium dichromate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1448.1}, {"name": "Sodium dichromate", "categories": ["air"], "amount": 1448.1}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 12986000}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 12986000}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12986000}, {"name": "Thallium I", "categories": ["air"], "amount": 12986000}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6962}, {"name": "Titanium ion", "categories": ["air", "low population density, long-term"], "amount": 4.6962}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6962}, {"name": "Titanium ion", "categories": ["air"], "amount": 4.6962}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9848}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3.9848}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9848}, {"name": "Toluene", "categories": ["air"], "amount": 3.9848}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.1}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 37.1}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37.1}, {"name": "Vanadium V", "categories": ["air"], "amount": 37.1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0929}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.0929}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0929}, {"name": "Xylene", "categories": ["air"], "amount": 1.0929}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4130.5}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 4130.5}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4130.5}, {"name": "Zinc II", "categories": ["air"], "amount": 4130.5}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 108710000}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 108710000}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 108710000}, {"name": "Mercury II", "categories": ["soil"], "amount": 108710000}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.14233}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.14233}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.14233}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.14233}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.14233}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.037334}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.037334}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.037334}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.037334}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.037334}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 18.209}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 18.209}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 18.209}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 18.209}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 18.209}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.0070658}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.0070658}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0070658}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.0070658}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.0070658}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.016394}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.016394}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.016394}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.016394}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.016394}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.042698}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.042698}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.042698}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.042698}, {"name": "Acetone", "categories": ["water"], "amount": 0.042698}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.9526}, {"name": "Aluminium III", "categories": ["water", "ground-, long-term"], "amount": 1.9526}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.9526}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.9526}, {"name": "Aluminium III", "categories": ["water"], "amount": 1.9526}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 318000}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 318000}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 318000}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 318000}, {"name": "Antimony ion", "categories": ["water"], "amount": 318000}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2251.6}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 2251.6}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 2251.6}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2251.6}, {"name": "Benzene", "categories": ["water"], "amount": 2251.6}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 270.18}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 270.18}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 270.18}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 270.18}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 185.5}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 185.5}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 185.5}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 185.5}, {"name": "Beryllium II", "categories": ["water"], "amount": 185.5}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.56286}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.56286}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.56286}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.56286}, {"name": "Butanol", "categories": ["water"], "amount": 0.56286}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 2797300}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2797300}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2797300}, {"name": "Cadmium II", "categories": ["water"], "amount": 2797300}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["water", "ground-, long-term"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 0.13133}, {"name": "Chlorine", "categories": ["water"], "amount": 0.13133}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 53.68}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 53.68}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 53.68}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 53.68}, {"name": "Chloroform", "categories": ["water"], "amount": 53.68}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 18241}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 18241}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 18241}, {"name": "Chromium III", "categories": ["water"], "amount": 18241}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 12.367}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 12.367}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 12.367}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 12.367}, {"name": "Cobalt II", "categories": ["water"], "amount": 12.367}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 16769}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 16769}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 16769}, {"name": "Copper ion", "categories": ["water"], "amount": 16769}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 210.73}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 210.73}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 210.73}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 210.73}, {"name": "Cumene", "categories": ["water"], "amount": 210.73}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["water", "ground-, long-term"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4641}, {"name": "Cyanide", "categories": ["water"], "amount": 1.4641}, {"name": "Dichromate", "categories": ["water", "ground-, long-term"], "amount": 8782.6}, {"name": "Dichromate", "categories": ["water", "ocean"], "amount": 8782.6}, {"name": "Dichromate", "categories": ["water", "surface water"], "amount": 8782.6}, {"name": "Dichromate", "categories": ["water"], "amount": 8782.6}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.0031428}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.0031428}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 0.0031428}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.0031428}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.0031428}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.98564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.98564}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 19.587}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 19.587}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 19.587}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 19.587}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 19.587}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0014537}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.0014537}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.0014537}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0014537}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0014537}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["water", "ground-, long-term"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 0.0020019}, {"name": "Ethylene", "categories": ["water"], "amount": 0.0020019}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 399.54}, {"name": "Chloroethylene", "categories": ["water"], "amount": 399.54}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 363.58}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 363.58}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.91071}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.91071}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.044275}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.044275}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.044275}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.044275}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.044275}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 12.367}, {"name": "Fluoride", "categories": ["water", "ground-, long-term"], "amount": 12.367}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 12.367}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 12.367}, {"name": "Fluoride", "categories": ["water"], "amount": 12.367}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.11074}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.11074}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.11074}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.11074}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.11074}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 336.8}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 336.8}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 336.8}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 336.8}, {"name": "Hexane", "categories": ["water"], "amount": 336.8}, {"name": "Hypochlorite", "categories": ["water", "ground-, long-term"], "amount": 0.25764}, {"name": "Hypochlorite", "categories": ["water", "ocean"], "amount": 0.25764}, {"name": "Hypochlorite", "categories": ["water", "surface water"], "amount": 0.25764}, {"name": "Hypochlorite", "categories": ["water"], "amount": 0.25764}, {"name": "Iron ion", "categories": ["water", "ground-, long-term"], "amount": 48.182}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 48.182}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 48.182}, {"name": "Iron ion", "categories": ["water"], "amount": 48.182}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 264850}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 264850}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 264850}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 264850}, {"name": "Lead II", "categories": ["water"], "amount": 264850}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 26.5}, {"name": "Manganese II", "categories": ["water", "ground-, long-term"], "amount": 26.5}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 26.5}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 26.5}, {"name": "Manganese II", "categories": ["water"], "amount": 26.5}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 108710000}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 108710000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 108710000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 108710000}, {"name": "Mercury II", "categories": ["water"], "amount": 108710000}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.484}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 1.484}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.484}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.484}, {"name": "Methanol", "categories": ["water"], "amount": 1.484}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 265}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 265}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 265}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 265}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 265}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.0929}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.0929}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.0929}, {"name": "m-Xylene", "categories": ["water"], "amount": 1.0929}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 18.55}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 18.55}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 18.55}, {"name": "Nickel II", "categories": ["water"], "amount": 18.55}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.00742}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.00742}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.00742}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.00742}, {"name": "Nitrate", "categories": ["water"], "amount": 0.00742}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 0.00742}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.00742}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.00742}, {"name": "Nitrite", "categories": ["water"], "amount": 0.00742}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6452.2}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 6452.2}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 6452.2}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6452.2}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6452.2}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 46375}, {"name": "Oils, unspecified", "categories": ["water", "ground-, long-term"], "amount": 46375}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 46375}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 46375}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 46375}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.0929}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.0929}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.0929}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.0929}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 34.256}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 34.256}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 34.256}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 34.256}, {"name": "Phenol", "categories": ["water"], "amount": 34.256}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 98.933}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 98.933}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 98.933}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 98.933}, {"name": "Propanal", "categories": ["water"], "amount": 98.933}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.014648}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.014648}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.014648}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.014648}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.014648}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 138430}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 138430}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 138430}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 138430}, {"name": "Selenium IV", "categories": ["water"], "amount": 138430}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 265}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 265}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 265}, {"name": "Silver I", "categories": ["water"], "amount": 265}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 64928000}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 64928000}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 64928000}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 64928000}, {"name": "Thallium I", "categories": ["water"], "amount": 64928000}, {"name": "Titanium ion", "categories": ["water", "ground-, long-term"], "amount": 23.481}, {"name": "Titanium ion", "categories": ["water", "ocean"], "amount": 23.481}, {"name": "Titanium ion", "categories": ["water", "surface water"], "amount": 23.481}, {"name": "Titanium ion", "categories": ["water"], "amount": 23.481}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.9848}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 3.9848}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 3.9848}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.9848}, {"name": "Toluene", "categories": ["water"], "amount": 3.9848}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 185.5}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 185.5}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 185.5}, {"name": "Vanadium V", "categories": ["water"], "amount": 185.5}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.0929}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.0929}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.0929}, {"name": "Xylene", "categories": ["water"], "amount": 1.0929}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 20652}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 20652}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 20652}, {"name": "Zinc II", "categories": ["water"], "amount": 20652}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 9.6364}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 742}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 742}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 742}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 742}, {"name": "Arsenic ion", "categories": ["air"], "amount": 742}, {"name": "Arsenic ion", "categories": ["water"], "amount": 3710}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3710}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3710}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 3710}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3710}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 365.77}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 365.77}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 365.77}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 365.77}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 365.77}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.00742}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00742}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.00742}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00742}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.00742}]}, {"unit": "kg waste", "name": ["EDIP 2003", "land filling", "bulk waste"], "exchanges": [{"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 22500}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 16000}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 20000}]}, {"unit": "kg waste", "name": ["EDIP 2003", "land filling", "hazardous waste"], "exchanges": [{"name": "Volume occupied, underground deposit", "categories": ["natural resource", "in ground"], "amount": 1600}]}, {"unit": "kg waste", "name": ["EDIP 2003", "land filling", "radioactive waste"], "exchanges": [{"name": "Volume occupied, final repository for low-active radioactive waste", "categories": ["natural resource", "in ground"], "amount": 2500}, {"name": "Volume occupied, final repository for radioactive waste", "categories": ["natural resource", "in ground"], "amount": 5400}]}, {"unit": "kg waste", "name": ["EDIP 2003", "land filling", "slag and ashes"], "exchanges": [{"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 22500}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "aluminium"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "antimony"], "exchanges": [{"name": "Stibnite", "categories": ["natural resource", "in ground"], "amount": 0.717}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.717}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "brown coal"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "cadmium"], "exchanges": [{"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "cerium"], "exchanges": [{"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "coal"], "exchanges": [{"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "cobalt"], "exchanges": [{"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "copper"], "exchanges": [{"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "gold"], "exchanges": [{"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "iron"], "exchanges": [{"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "lanthanum"], "exchanges": [{"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "lead"], "exchanges": [{"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "manganese"], "exchanges": [{"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Pyrolusite", "categories": ["natural resource", "in ground"], "amount": 0.632}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "mercury"], "exchanges": [{"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 0.862}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.862}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "molybdenum"], "exchanges": [{"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "natural gas"], "exchanges": [{"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.8}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.8}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "nickel"], "exchanges": [{"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "oil"], "exchanges": [{"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "palladium"], "exchanges": [{"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "platinum"], "exchanges": [{"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "silver"], "exchanges": [{"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "tantalum"], "exchanges": [{"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "tin"], "exchanges": [{"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["EDIP 2003", "non-renewable resources", "zinc"], "exchanges": [{"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 1}]}, {"unit": "person.ppm.h", "name": ["EDIP 2003", "photochemical ozone formation", "impacts on human health"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 0.03894}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.0767}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.04425}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0295}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.03894}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0767}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.02655}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.118}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.02773}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0885}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.1298}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.004425}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.004425}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0004425}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.03894}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.01239}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.03953}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.1475}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.03776}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00059}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.01003}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.03245}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.02478}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0767}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0649}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.118}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.001357}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.01829}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.0649}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.1475}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.1003}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.1121}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.0885}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0649}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.03894}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.1534}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.059}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 0.1298}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.124}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03894}, {"name": "1,4-Butanediol", "categories": ["air", "low population density, long-term"], "amount": 0.03894}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03894}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 0.03894}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.0767}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.0767}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04425}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.04425}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04425}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.04425}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.1121}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.1121}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0295}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0295}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0295}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0295}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03894}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.03894}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03894}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.03894}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.059}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0767}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.0767}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.059}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 0.000649}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02655}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.02655}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02655}, {"name": "Acetone", "categories": ["air"], "amount": 0.02655}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.118}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 0.118}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.118}, {"name": "Acrolein", "categories": ["air"], "amount": 0.118}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.5}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02773}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.02773}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02773}, {"name": "Benzene", "categories": ["air"], "amount": 0.02773}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0885}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.0885}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0885}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0885}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.1121}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.1121}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1298}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.1298}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1298}, {"name": "Butadiene", "categories": ["air"], "amount": 0.1298}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Butane", "categories": ["air"], "amount": 0.059}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Butanol", "categories": ["air"], "amount": 0.059}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004425}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.004425}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004425}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.004425}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004425}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.004425}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004425}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.004425}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0004425}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0004425}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0004425}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0004425}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0826}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.0826}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0826}, {"name": "Cumene", "categories": ["air"], "amount": 0.0826}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.059}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03894}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 0.03894}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03894}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.03894}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01239}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.01239}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01239}, {"name": "Ethane", "categories": ["air"], "amount": 0.01239}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.059}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0001475}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.000649}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03953}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.03953}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03953}, {"name": "Ethanol", "categories": ["air"], "amount": 0.03953}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1475}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.1475}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1475}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03776}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.03776}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03776}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.03776}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00059}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.00059}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00059}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00059}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01003}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.01003}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01003}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03245}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.03245}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03245}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.03245}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.059}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02478}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.02478}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02478}, {"name": "Ethyne", "categories": ["air"], "amount": 0.02478}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.000649}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 0.0767}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "Heptane", "categories": ["air"], "amount": 0.0767}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0649}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.0649}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0649}, {"name": "Hexane", "categories": ["air"], "amount": 0.0649}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 0.059}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.1121}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.1121}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.000649}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.118}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.118}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.118}, {"name": "Isoprene", "categories": ["air"], "amount": 0.118}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.029}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.029}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001357}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.001357}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001357}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.001357}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.029}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.029}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.000649}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01829}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.01829}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01829}, {"name": "Methanol", "categories": ["air"], "amount": 0.01829}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0649}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.0649}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0649}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0649}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1475}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.1475}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1475}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.1475}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.059}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1003}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.1003}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1003}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.1003}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.1121}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.1121}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Paraffins", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Paraffins", "categories": ["air"], "amount": 0.059}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Pentane", "categories": ["air"], "amount": 0.059}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.1121}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Phenol", "categories": ["air"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1121}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 0.1121}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0885}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.0885}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0885}, {"name": "Propanal", "categories": ["air"], "amount": 0.0885}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0649}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.0649}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0649}, {"name": "Propane", "categories": ["air"], "amount": 0.0649}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03894}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.03894}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03894}, {"name": "Propanol", "categories": ["air"], "amount": 0.03894}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1534}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.1534}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1534}, {"name": "Propene", "categories": ["air"], "amount": 0.1534}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.059}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "Styrene", "categories": ["air"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.059}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.059}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1298}, {"name": "Terpenes", "categories": ["air", "low population density, long-term"], "amount": 0.1298}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1298}, {"name": "Terpenes", "categories": ["air"], "amount": 0.1298}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0826}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.0826}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0826}, {"name": "Toluene", "categories": ["air"], "amount": 0.0826}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.124}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.124}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.124}, {"name": "Xylene", "categories": ["air"], "amount": 0.124}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Butene", "categories": ["air"], "amount": 0.1416}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1416}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.1416}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1416}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.1416}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000649}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000649}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 0.000649}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000649}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000649}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.12}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.12}]}, {"unit": "m2.ppm.h", "name": ["EDIP 2003", "photochemical ozone formation", "impacts on vegetation"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 481.8}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.3}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.9}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 949}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 547.5}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 365}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 481.8}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 949}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 328.5}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1460}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.3}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 343.1}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1095}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1606}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 54.75}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 54.75}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.475}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1022}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 481.8}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 153.3}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 489.1}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1825}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 467.2}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.3}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 124.1}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 401.5}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 306.6}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 949}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 803}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1460}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 16.79}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 360}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 360}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 226.3}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 803}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.2}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1825}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1241}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1387}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1095}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 803}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 481.8}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1898}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 730}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 1606}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1022}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1533}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 481.8}, {"name": "1,4-Butanediol", "categories": ["air", "low population density, long-term"], "amount": 481.8}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 481.8}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 481.8}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.3}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.3}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.9}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.9}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 949}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 949}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 949}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 949}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 547.5}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 547.5}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 547.5}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 547.5}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 1387}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1387}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 365}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "2-Propanol", "categories": ["air"], "amount": 365}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 481.8}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 481.8}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 481.8}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 481.8}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Acenaphthene", "categories": ["air"], "amount": 730}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 949}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 949}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 949}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 949}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Acetic acid", "categories": ["air"], "amount": 730}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 8.03}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 328.5}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 328.5}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 328.5}, {"name": "Acetone", "categories": ["air"], "amount": 328.5}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 1460}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1460}, {"name": "Acrolein", "categories": ["air"], "amount": 1460}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.3}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 343.1}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 343.1}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 343.1}, {"name": "Benzene", "categories": ["air"], "amount": 343.1}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1095}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1095}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1095}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1387}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1387}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1606}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1606}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1606}, {"name": "Butadiene", "categories": ["air"], "amount": 1606}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Butane", "categories": ["air"], "amount": 730}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Butanol", "categories": ["air"], "amount": 730}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 54.75}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 54.75}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 54.75}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 54.75}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 54.75}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 54.75}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 54.75}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 54.75}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.475}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.475}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.475}, {"name": "Chloroform", "categories": ["air"], "amount": 5.475}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1022}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 1022}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1022}, {"name": "Cumene", "categories": ["air"], "amount": 1022}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Cyclohexane", "categories": ["air"], "amount": 730}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 481.8}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 481.8}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 481.8}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 481.8}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air", "low population density, long-term"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 0.2}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 8.03}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 153.3}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 153.3}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 153.3}, {"name": "Ethane", "categories": ["air"], "amount": 153.3}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Ethane thiol", "categories": ["air"], "amount": 730}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.825}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 8.03}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 489.1}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 489.1}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 489.1}, {"name": "Ethanol", "categories": ["air"], "amount": 489.1}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1825}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1825}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1825}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 467.2}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 467.2}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 467.2}, {"name": "Chloroethylene", "categories": ["air"], "amount": 467.2}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 7.3}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.3}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 124.1}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 124.1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124.1}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 401.5}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 401.5}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 401.5}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 401.5}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 730}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 306.6}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 306.6}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306.6}, {"name": "Ethyne", "categories": ["air"], "amount": 306.6}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Formaldehyde", "categories": ["air"], "amount": 8.03}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 949}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 949}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 949}, {"name": "Heptane", "categories": ["air"], "amount": 949}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 803}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 803}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 803}, {"name": "Hexane", "categories": ["air"], "amount": 803}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 730}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1387}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1387}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 8.03}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1460}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1460}, {"name": "Isoprene", "categories": ["air"], "amount": 1460}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 360}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 360}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 360}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 360}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 8.03}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.79}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 16.79}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.79}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 16.79}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.03}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 360}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 360}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 360}, {"name": "Methane, fossil", "categories": ["air"], "amount": 360}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 8.03}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 8.03}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 226.3}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 226.3}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 226.3}, {"name": "Methanol", "categories": ["air"], "amount": 226.3}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.2}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 803}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 803}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 803}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 803}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.2}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1825}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1825}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1825}, {"name": "m-Xylene", "categories": ["air"], "amount": 1825}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 730}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1241}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1241}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1241}, {"name": "o-Xylene", "categories": ["air"], "amount": 1241}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 1387}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1387}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Paraffins", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Paraffins", "categories": ["air"], "amount": 730}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Pentane", "categories": ["air"], "amount": 730}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1387}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Phenol", "categories": ["air"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1387}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1387}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1095}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1095}, {"name": "Propanal", "categories": ["air"], "amount": 1095}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 803}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 803}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 803}, {"name": "Propane", "categories": ["air"], "amount": 803}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 481.8}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 481.8}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 481.8}, {"name": "Propanol", "categories": ["air"], "amount": 481.8}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1898}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 1898}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1898}, {"name": "Propene", "categories": ["air"], "amount": 1898}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Propionic acid", "categories": ["air"], "amount": 730}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "Styrene", "categories": ["air"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 730}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 730}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 1606}, {"name": "Terpenes", "categories": ["air", "low population density, long-term"], "amount": 1606}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1606}, {"name": "Terpenes", "categories": ["air"], "amount": 1606}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1022}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1022}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1022}, {"name": "Toluene", "categories": ["air"], "amount": 1022}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1533}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1533}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1533}, {"name": "Xylene", "categories": ["air"], "amount": 1533}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Butene", "categories": ["air"], "amount": 1752}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1752}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 1752}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1752}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 1752}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 8.03}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.03}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 8.03}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.03}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 8.03}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1800}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1800}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1800}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1800}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1800}]}, {"unit": "cubic meter", "name": ["EDIP 2003", "renewable resources", "wood"], "exchanges": [{"name": "Wood, hard, standing", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Wood, primary forest, standing", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Wood, soft, standing", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Wood, unspecified, standing", "categories": ["natural resource", "biotic"], "amount": 1}]}, {"unit": "kg CFC-11-Eq", "name": ["EDIP 2003", "stratospheric ozone depletion", "ODP total"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.38}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.38}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.38}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 12}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.94}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.94}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.94}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "mol H+-Eq", "name": ["EF v3.0 no LT", "acidification no LT", "accumulated exceedance (AE) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 3.02}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.13467}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1.31}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.04821}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0 no LT", "climate change no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Chloroform", "categories": ["air"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 938}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9620}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2350}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 96}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 635}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8520}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3690}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7150}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2110}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 179}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 817}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 15}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 34}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2020}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 712}, {"name": "Methyl formate", "categories": ["air"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 712}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17900}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26100}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.23}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0 no LT", "climate change: biogenic no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 34}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0 no LT", "climate change: fossil no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Chloroform", "categories": ["air"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 938}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9620}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2350}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 96}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 635}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8520}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3690}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7150}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2110}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 179}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 817}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 15}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2020}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 712}, {"name": "Methyl formate", "categories": ["air"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 712}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17900}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26100}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.23}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0 no LT", "climate change: land use and land use change no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 36.8}]}, {"unit": "CTUe", "name": ["EF v3.0 no LT", "ecotoxicity: freshwater no LT", "comparative toxic unit for ecosystems (CTUe) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 4646.7}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 2.6713}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 30.733}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 112.29}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 68612}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 11624}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 31.157}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 912.29}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 4.1368}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 500.56}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 31.457}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 21.639}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 14.072}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 1845.1}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4860.6}, {"name": "Abamectin", "categories": ["air"], "amount": 8802.3}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Abamectin", "categories": ["water"], "amount": 332160}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6887.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 2139.3}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 96.503}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 325900}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 599.66}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 2.8788}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 4.6517}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 7669.3}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 194540}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water"], "amount": 9541}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1999.7}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Allyl chloride", "categories": ["water"], "amount": 52.64}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 58369000}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air"], "amount": 188000}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil"], "amount": 276000}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.43e-15}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water"], "amount": 204500}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 883.04}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 1246.7}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 52.283}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 9.2245}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 487460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air"], "amount": 43.05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 43}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 122}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 8.22e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 122}, {"name": "Antimony ion", "categories": ["water"], "amount": 61}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air"], "amount": 557}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 803}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.27e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2015}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsine", "categories": ["air"], "amount": 557}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 424730}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 228780}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 161.08}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090}, {"name": "Barium II", "categories": ["air"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1090}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1570}, {"name": "Barium II", "categories": ["soil"], "amount": 1570}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3140}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 9.34e-16}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3140}, {"name": "Barium II", "categories": ["water"], "amount": 1570}, {"name": "Barium sulfide", "categories": ["water"], "amount": 76094}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4382.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 395.82}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 894.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 839.26}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 171240}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 27977}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 28141}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 8173300}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 35.132}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 527}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 527}, {"name": "Beryllium II", "categories": ["air"], "amount": 526}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 525}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil"], "amount": 760}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.55e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water"], "amount": 690}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 814760000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 229740000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2192.2}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 11.793}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 10.242}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 78.497}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 78.497}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 1305.4}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 204.3}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 73.451}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 369.26}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 161.63}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 199.08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air"], "amount": 80800}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 80700}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 116000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.39e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water"], "amount": 114500}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 3800}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 6.38e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 3800}, {"name": "Caesium", "categories": ["water"], "amount": 1900}, {"name": "Calcium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.495}, {"name": "Calcium", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.495}, {"name": "Calcium", "categories": ["air"], "amount": 36.247}, {"name": "Calcium", "categories": ["air", "urban air close to ground"], "amount": 36.998}, {"name": "Calcium", "categories": ["soil", "agricultural"], "amount": 47.27}, {"name": "Calcium", "categories": ["soil", "forestry"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil", "industrial"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil"], "amount": 47.27}, {"name": "Calcium II", "categories": ["water", "ground-"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water", "ocean"], "amount": 7.00649e-45}, {"name": "Calcium II", "categories": ["water", "surface water"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water"], "amount": 109.18}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 3143400}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1158.7}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 23347}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 51145}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 56094}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2518800}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water"], "amount": 150.72}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 150.72}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 150.72}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1705.9}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 970.45}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 37438}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 5964.1}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 16856}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 59379}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 66.766}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 349.64}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 32.609}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 33.571}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 794680}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 196830000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium III", "categories": ["air"], "amount": 364.5}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium III", "categories": ["soil"], "amount": 524}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 809}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.73e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 809}, {"name": "Chromium III", "categories": ["water"], "amount": 404.5}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium VI", "categories": ["air"], "amount": 364.5}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil"], "amount": 524}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.82e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water"], "amount": 520}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 752.52}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air"], "amount": 4490}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4480}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil"], "amount": 6470}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.43e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water"], "amount": 6150}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36500}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 36500}, {"name": "Copper ion", "categories": ["air"], "amount": 36400}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 36300}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil"], "amount": 52400}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 99200}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 9.25e-18}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 99200}, {"name": "Copper ion", "categories": ["water"], "amount": 49600}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 1864.5}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 50458}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 1219.5}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 13400}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1831.5}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 50934000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 88371}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1531.8}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 691.93}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 458.02}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4759}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1234700}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 77330000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2138.6}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 146.75}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 14.079}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 41.875}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 400.44}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 660.23}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 15.723}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 15766000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2241.9}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 513.86}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 27842}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 98085}, {"name": "Dodecanol", "categories": ["water"], "amount": 11313}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 121.22}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 332160}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 617.76}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1129700}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 1864.5}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 248.51}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 25.382}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3140.2}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 18.445}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 61.443}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 890.24}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 68.044}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1361.3}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 6.4334}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 40.121}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 62713000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 73646}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 378860}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 632570}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 3010900}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.5426}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 10.203}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 168290}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2125.4}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 3.4488}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 42.924}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 0.010218}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 50458}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 1020.7}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 7308.6}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 542.27}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 20956}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 0.0014233}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 37438}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 149.48}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 29553}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 11097}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 150.72}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 29.36}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 44670}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 127290}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 480290}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 119590}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.0267}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 332160}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 187.68}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air"], "amount": 50.6}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 50.5}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil"], "amount": 73.2}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 134}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 6.44e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 134}, {"name": "Iron ion", "categories": ["water"], "amount": 67}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 401.31}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water"], "amount": 516.89}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2012700000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 1117.3}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.2}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.2}, {"name": "Lead II", "categories": ["air"], "amount": 28.05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.9}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil"], "amount": 40.7}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.9}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.9e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.9}, {"name": "Lead II", "categories": ["water"], "amount": 34.45}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 0.58961}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 246.66}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 1084900}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air"], "amount": 63.35}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 63.2}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil"], "amount": 91.7}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese II", "categories": ["water"], "amount": 82}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese-55", "categories": ["water"], "amount": 82}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Mercury II", "categories": ["air"], "amount": 1065}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil"], "amount": 1560}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2210}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.54e-18}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2210}, {"name": "Mercury II", "categories": ["water"], "amount": 1105}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 196520}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1281.6}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 70.831}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3241.7}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 2.9582}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 413980}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 110530}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 13.777}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 1981.4}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 107.85}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 15.753}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 88.346}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 111700}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 61309}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.59e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.475}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 70.066}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 659.25}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10700}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 10700}, {"name": "Nickel II", "categories": ["air"], "amount": 10650}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil"], "amount": 15400}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 29800}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.91e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 29800}, {"name": "Nickel II", "categories": ["water"], "amount": 14900}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1789.6}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 13362}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 119590}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 64.453}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 1959600}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 8672}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 5.3621}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.0177}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 31.882}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 6827.4}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 10.486}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 18660}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 7569.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 371.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 50.201}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 22357}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 230.06}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 8.2417}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 96.402}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 148630}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 452.5}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 2674.4}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 62.688}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 18324}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 518980}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2138.6}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 15062000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2138.6}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 433890}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 190510}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2138.6}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air"], "amount": 25.65}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 25.6}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.74e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water"], "amount": 36.6}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water"], "amount": 2.3463}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7030}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7030}, {"name": "Silver I", "categories": ["air"], "amount": 7020}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7010}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 10100}, {"name": "Silver I", "categories": ["soil"], "amount": 10100}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 19400}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.09e-17}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 19400}, {"name": "Silver I", "categories": ["water"], "amount": 9700}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 333470}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 7.6306}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 21.339}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5380}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5380}, {"name": "Strontium", "categories": ["air"], "amount": 5375}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 5370}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 7730}, {"name": "Strontium", "categories": ["soil"], "amount": 7730}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 15400}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.39e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 15400}, {"name": "Strontium", "categories": ["water"], "amount": 7700}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 1322.6}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 210090}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 79836}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil"], "amount": 20911}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 133650}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 153.76}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 133650}, {"name": "Sulfur", "categories": ["water"], "amount": 66901}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 6585.4}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 150700}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21179}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 26919000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 630.38}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230}, {"name": "Thallium I", "categories": ["air"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1230}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil"], "amount": 1760}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3530}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 9.5e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3530}, {"name": "Thallium I", "categories": ["water"], "amount": 1765}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 46196}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 213220}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 385460}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 12129}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 385290}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 119}, {"name": "Tin ion", "categories": ["air"], "amount": 118.5}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 118}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 171}, {"name": "Tin ion", "categories": ["soil"], "amount": 171}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 298}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 3.75e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 298}, {"name": "Tin ion", "categories": ["water"], "amount": 149}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 486.61}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1641.4}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 134.85}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 7.6657}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.25304}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 50458}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 688260000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 831270}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 63.058}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 40.263}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 1.4769}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 181}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 404}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 404}, {"name": "Vanadium V", "categories": ["air"], "amount": 403.5}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 403}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil"], "amount": 581}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 337.41}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 506}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 506}, {"name": "Zinc II", "categories": ["air"], "amount": 504.5}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 503}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 730}, {"name": "Zinc II", "categories": ["soil"], "amount": 730}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1330}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.05e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1330}, {"name": "Zinc II", "categories": ["water"], "amount": 665}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 531.29}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 801.31}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 21.977}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 3022.8}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "CTUe", "name": ["EF v3.0 no LT", "ecotoxicity: freshwater, inorganics no LT", "comparative toxic unit for ecosystems (CTUe) no LT"], "exchanges": [{"name": "Allyl chloride", "categories": ["water"], "amount": 52.64}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 883.04}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 1246.7}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 52.283}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsine", "categories": ["air"], "amount": 557}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 161.08}, {"name": "Barium sulfide", "categories": ["water"], "amount": 76094}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 10.242}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 78.497}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 78.497}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 1305.4}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 56094}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water"], "amount": 150.72}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 150.72}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 150.72}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 5964.1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 33.571}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 13400}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.5426}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 10.203}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 29553}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 150.72}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 29.36}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 44670}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 187.68}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 5.3621}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.0177}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 31.882}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 6827.4}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 10.486}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 7.6306}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 6585.4}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 7.6657}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}]}, {"unit": "CTUe", "name": ["EF v3.0 no LT", "ecotoxicity: freshwater, metals no LT", "comparative toxic unit for ecosystems (CTUe) no LT"], "exchanges": [{"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air"], "amount": 188000}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil"], "amount": 276000}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.43e-15}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water"], "amount": 204500}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air"], "amount": 43.05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 43}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 122}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 8.22e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 122}, {"name": "Antimony ion", "categories": ["water"], "amount": 61}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air"], "amount": 557}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 803}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.27e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2015}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090}, {"name": "Barium II", "categories": ["air"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1090}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1570}, {"name": "Barium II", "categories": ["soil"], "amount": 1570}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3140}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 9.34e-16}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3140}, {"name": "Barium II", "categories": ["water"], "amount": 1570}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 527}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 527}, {"name": "Beryllium II", "categories": ["air"], "amount": 526}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 525}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil"], "amount": 760}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.55e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water"], "amount": 690}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 11.793}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air"], "amount": 80800}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 80700}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 116000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.39e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water"], "amount": 114500}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 3800}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 6.38e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 3800}, {"name": "Caesium", "categories": ["water"], "amount": 1900}, {"name": "Calcium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.495}, {"name": "Calcium", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.495}, {"name": "Calcium", "categories": ["air"], "amount": 36.247}, {"name": "Calcium", "categories": ["air", "urban air close to ground"], "amount": 36.998}, {"name": "Calcium", "categories": ["soil", "agricultural"], "amount": 47.27}, {"name": "Calcium", "categories": ["soil", "forestry"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil", "industrial"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil"], "amount": 47.27}, {"name": "Calcium II", "categories": ["water", "ground-"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water", "ocean"], "amount": 7.00649e-45}, {"name": "Calcium II", "categories": ["water", "surface water"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water"], "amount": 109.18}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium III", "categories": ["air"], "amount": 364.5}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium III", "categories": ["soil"], "amount": 524}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 809}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.73e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 809}, {"name": "Chromium III", "categories": ["water"], "amount": 404.5}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium VI", "categories": ["air"], "amount": 364.5}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil"], "amount": 524}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.82e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water"], "amount": 520}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air"], "amount": 4490}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4480}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil"], "amount": 6470}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.43e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water"], "amount": 6150}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36500}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 36500}, {"name": "Copper ion", "categories": ["air"], "amount": 36400}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 36300}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil"], "amount": 52400}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 99200}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 9.25e-18}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 99200}, {"name": "Copper ion", "categories": ["water"], "amount": 49600}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air"], "amount": 50.6}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 50.5}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil"], "amount": 73.2}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 134}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 6.44e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 134}, {"name": "Iron ion", "categories": ["water"], "amount": 67}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.2}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.2}, {"name": "Lead II", "categories": ["air"], "amount": 28.05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.9}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil"], "amount": 40.7}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.9}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.9e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.9}, {"name": "Lead II", "categories": ["water"], "amount": 34.45}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 0.58961}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air"], "amount": 63.35}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 63.2}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil"], "amount": 91.7}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese II", "categories": ["water"], "amount": 82}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese-55", "categories": ["water"], "amount": 82}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Mercury II", "categories": ["air"], "amount": 1065}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil"], "amount": 1560}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2210}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.54e-18}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2210}, {"name": "Mercury II", "categories": ["water"], "amount": 1105}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.59e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.475}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10700}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 10700}, {"name": "Nickel II", "categories": ["air"], "amount": 10650}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil"], "amount": 15400}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 29800}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.91e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 29800}, {"name": "Nickel II", "categories": ["water"], "amount": 14900}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air"], "amount": 25.65}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 25.6}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.74e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water"], "amount": 36.6}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water"], "amount": 2.3463}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7030}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7030}, {"name": "Silver I", "categories": ["air"], "amount": 7020}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7010}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 10100}, {"name": "Silver I", "categories": ["soil"], "amount": 10100}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 19400}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.09e-17}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 19400}, {"name": "Silver I", "categories": ["water"], "amount": 9700}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5380}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5380}, {"name": "Strontium", "categories": ["air"], "amount": 5375}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 5370}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 7730}, {"name": "Strontium", "categories": ["soil"], "amount": 7730}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 15400}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.39e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 15400}, {"name": "Strontium", "categories": ["water"], "amount": 7700}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil"], "amount": 20911}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 133650}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 153.76}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 133650}, {"name": "Sulfur", "categories": ["water"], "amount": 66901}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230}, {"name": "Thallium I", "categories": ["air"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1230}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil"], "amount": 1760}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3530}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 9.5e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3530}, {"name": "Thallium I", "categories": ["water"], "amount": 1765}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 119}, {"name": "Tin ion", "categories": ["air"], "amount": 118.5}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 118}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 171}, {"name": "Tin ion", "categories": ["soil"], "amount": 171}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 298}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 3.75e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 298}, {"name": "Tin ion", "categories": ["water"], "amount": 149}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 40.263}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 404}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 404}, {"name": "Vanadium V", "categories": ["air"], "amount": 403.5}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 403}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil"], "amount": 581}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 506}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 506}, {"name": "Zinc II", "categories": ["air"], "amount": 504.5}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 503}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 730}, {"name": "Zinc II", "categories": ["soil"], "amount": 730}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1330}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.05e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1330}, {"name": "Zinc II", "categories": ["water"], "amount": 665}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}]}, {"unit": "CTUe", "name": ["EF v3.0 no LT", "ecotoxicity: freshwater, organics no LT", "comparative toxic unit for ecosystems (CTUe) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 4646.7}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 2.6713}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 30.733}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 112.29}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 68612}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 11624}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 31.157}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 912.29}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 4.1368}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 500.56}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 31.457}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 21.639}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 14.072}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 1845.1}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4860.6}, {"name": "Abamectin", "categories": ["air"], "amount": 8802.3}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Abamectin", "categories": ["water"], "amount": 332160}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6887.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 2139.3}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 96.503}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 325900}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 599.66}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 2.8788}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 4.6517}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 7669.3}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 194540}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water"], "amount": 9541}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1999.7}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 58369000}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 9.2245}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 487460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 424730}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 228780}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4382.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 395.82}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 894.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 839.26}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 171240}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 27977}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 28141}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 8173300}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 35.132}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 814760000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 229740000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2192.2}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 204.3}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 73.451}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 369.26}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 161.63}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 199.08}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 3143400}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1158.7}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 23347}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 51145}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2518800}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1705.9}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 970.45}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 37438}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 16856}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 59379}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 66.766}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 349.64}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 32.609}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 794680}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 196830000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 752.52}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 1864.5}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 50458}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 1219.5}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1831.5}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 50934000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 88371}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1531.8}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 691.93}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 458.02}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4759}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1234700}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 77330000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2138.6}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 146.75}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 14.079}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 41.875}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 400.44}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 660.23}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 15.723}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 15766000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2241.9}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 513.86}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 27842}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 98085}, {"name": "Dodecanol", "categories": ["water"], "amount": 11313}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 121.22}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 332160}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 617.76}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1129700}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 1864.5}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 248.51}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 25.382}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3140.2}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 18.445}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 61.443}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 890.24}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 68.044}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1361.3}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 6.4334}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 40.121}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 62713000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 73646}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 378860}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 632570}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 3010900}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 168290}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2125.4}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 3.4488}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 42.924}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 0.010218}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 50458}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 1020.7}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 7308.6}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 542.27}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 20956}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 0.0014233}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 37438}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 149.48}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 11097}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 127290}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 480290}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 119590}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.0267}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 332160}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 401.31}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water"], "amount": 516.89}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2012700000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 1117.3}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 246.66}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 1084900}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 196520}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1281.6}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 70.831}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3241.7}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 2.9582}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 413980}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 110530}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 13.777}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 1981.4}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 107.85}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 15.753}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 88.346}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 111700}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 61309}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 70.066}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 659.25}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1789.6}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 13362}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 119590}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 64.453}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 1959600}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 8672}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 18660}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 7569.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 371.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 50.201}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 22357}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 230.06}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 8.2417}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 96.402}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 148630}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 452.5}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 2674.4}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 62.688}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 18324}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 518980}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2138.6}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 15062000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2138.6}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 433890}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 190510}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2138.6}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 333470}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 21.339}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 1322.6}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 210090}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 79836}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 150700}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21179}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 26919000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 630.38}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 46196}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 213220}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 385460}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 12129}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 385290}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 486.61}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1641.4}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 134.85}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.25304}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 50458}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 688260000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 831270}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 63.058}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 1.4769}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 181}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 337.41}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 531.29}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 801.31}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 21.977}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 3022.8}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "MJ, net calorific value", "name": ["EF v3.0 no LT", "energy resources: non-renewable no LT", "abiotic depletion potential (ADP): fossil fuels no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.76}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}]}, {"unit": "kg P-Eq", "name": ["EF v3.0 no LT", "eutrophication: freshwater no LT", "fraction of nutrients reaching freshwater end compartment (P) no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["EF v3.0 no LT", "eutrophication: marine no LT", "fraction of nutrients reaching marine end compartment (N) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.092}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water"], "amount": 0.778}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.028}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water"], "amount": 0.226}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.596}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water"], "amount": 0.304}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 1}, {"name": "Nitrogen", "categories": ["water"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.389}]}, {"unit": "mol N-Eq", "name": ["EF v3.0 no LT", "eutrophication: terrestrial no LT", "accumulated exceedance (AE) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 13.47}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 3.16065}, {"name": "Nitric oxide", "categories": ["air"], "amount": 6.532}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 4.26}]}, {"unit": "CTUh", "name": ["EF v3.0 no LT", "human toxicity: carcinogenic no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.0 no LT", "human toxicity: carcinogenic, inorganics no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}]}, {"unit": "CTUh", "name": ["EF v3.0 no LT", "human toxicity: carcinogenic, metals no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}]}, {"unit": "CTUh", "name": ["EF v3.0 no LT", "human toxicity: carcinogenic, organics no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.0 no LT", "human toxicity: non-carcinogenic no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3303e-06}, {"name": "Abamectin", "categories": ["air"], "amount": 1.1734e-05}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Abamectin", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 2.2099e-08}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil"], "amount": 1.5387e-08}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6728e-06}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 6.9773e-08}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air"], "amount": 0.00012953}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 0.00013055}, {"name": "Chlorine", "categories": ["soil"], "amount": 0.0001235}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 1.1282e-05}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water"], "amount": 5.5583e-05}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.261e-06}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.261e-06}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 3.1857e-08}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 1.2368e-08}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 3.3487e-07}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 4.3917e-07}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 4.3512e-07}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 8.1969e-10}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil"], "amount": 6.6691e-10}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 2.188e-11}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water"], "amount": 5.5205e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "CTUh", "name": ["EF v3.0 no LT", "human toxicity: non-carcinogenic, inorganics no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 2.2099e-08}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil"], "amount": 1.5387e-08}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air"], "amount": 0.00012953}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 0.00013055}, {"name": "Chlorine", "categories": ["soil"], "amount": 0.0001235}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 1.1282e-05}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water"], "amount": 5.5583e-05}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 3.3487e-07}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 4.3917e-07}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}]}, {"unit": "CTUh", "name": ["EF v3.0 no LT", "human toxicity: non-carcinogenic, metals no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 8.1969e-10}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil"], "amount": 6.6691e-10}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 2.188e-11}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water"], "amount": 5.5205e-10}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}]}, {"unit": "CTUh", "name": ["EF v3.0 no LT", "human toxicity: non-carcinogenic, organics no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3303e-06}, {"name": "Abamectin", "categories": ["air"], "amount": 1.1734e-05}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Abamectin", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6728e-06}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 6.9773e-08}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.261e-06}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.261e-06}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 3.1857e-08}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 1.2368e-08}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 4.3512e-07}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "kBq U235-Eq", "name": ["EF v3.0 no LT", "ionising radiation: human health no LT", "human exposure efficiency relative to u235 no LT"], "exchanges": [{"name": "Americium-241", "categories": ["water", "ground-"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water"], "amount": 1.5}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0386}, {"name": "Antimony-125", "categories": ["water", "ground-"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water"], "amount": 0.0007}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water"], "amount": 6.79}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water"], "amount": 7.86}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Carbon-14", "categories": ["air"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.0557}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00193}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0186}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.29e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.14e-05}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 4.8}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water"], "amount": 4.71}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0236}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000443}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 6.64e-06}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.015}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 3.14}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water"], "amount": 0.00607}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.00679}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0236}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.000193}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 2.14}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.114}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-235", "categories": ["air"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.107}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 6.71e-06}]}, {"unit": "dimensionless", "name": ["EF v3.0 no LT", "land use no LT", "soil quality index no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 39.581}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 36.405}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 51.699}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 105.24}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 18.128}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 33.964}, {"name": "Occupation, forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 11.459}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 11.488}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 21.463}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 48.218}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 139.1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 38.973}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 58.117}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 17.602}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 138.81}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 121.55}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 161.52}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 69.262}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 28.288}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 165.22}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 116.16}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 48.764}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 138.72}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Transformation, from annual crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": -395.81}, {"name": "Transformation, from annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": -364.05}, {"name": "Transformation, from annual crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from arable land, unspecified use", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from bare area (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -516.99}, {"name": "Transformation, from dump site", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, slag compartment", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from forest, extensive", "categories": ["natural resource", "land"], "amount": -181.28}, {"name": "Transformation, from forest, intensive", "categories": ["natural resource", "land"], "amount": -339.64}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": -114.59}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -114.88}, {"name": "Transformation, from forest, unspecified", "categories": ["natural resource", "land"], "amount": -214.63}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": -482.18}, {"name": "Transformation, from industrial area", "categories": ["natural resource", "land"], "amount": -5911.8}, {"name": "Transformation, from mineral extraction site", "categories": ["natural resource", "land"], "amount": -4708.4}, {"name": "Transformation, from pasture, man made", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": -389.73}, {"name": "Transformation, from pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": -581.17}, {"name": "Transformation, from permanent crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -176.02}, {"name": "Transformation, from snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from traffic area, rail network", "categories": ["natural resource", "land"], "amount": -5899.2}, {"name": "Transformation, from traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": -5165.9}, {"name": "Transformation, from traffic area, road network", "categories": ["natural resource", "land"], "amount": -6864.8}, {"name": "Transformation, from unknown", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -282.88}, {"name": "Transformation, from urban, continuously built", "categories": ["natural resource", "land"], "amount": -7021.9}, {"name": "Transformation, from urban, discontinuously built", "categories": ["natural resource", "land"], "amount": -4937}, {"name": "Transformation, from urban, green area", "categories": ["natural resource", "land"], "amount": -2072.5}, {"name": "Transformation, from urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": -5895.4}, {"name": "Transformation, from wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, to annual crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 395.81}, {"name": "Transformation, to annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 364.05}, {"name": "Transformation, to annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to bare area (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 516.99}, {"name": "Transformation, to dump site", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to forest, extensive", "categories": ["natural resource", "land"], "amount": 181.28}, {"name": "Transformation, to forest, intensive", "categories": ["natural resource", "land"], "amount": 339.64}, {"name": "Transformation, to forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 114.59}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 114.88}, {"name": "Transformation, to forest, unspecified", "categories": ["natural resource", "land"], "amount": 214.63}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 482.18}, {"name": "Transformation, to industrial area", "categories": ["natural resource", "land"], "amount": 5911.8}, {"name": "Transformation, to mineral extraction site", "categories": ["natural resource", "land"], "amount": 4708.4}, {"name": "Transformation, to pasture, man made", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 389.73}, {"name": "Transformation, to pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 581.17}, {"name": "Transformation, to permanent crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 176.02}, {"name": "Transformation, to snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to traffic area, rail network", "categories": ["natural resource", "land"], "amount": 5899.2}, {"name": "Transformation, to traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 5165.9}, {"name": "Transformation, to traffic area, road network", "categories": ["natural resource", "land"], "amount": 6864.8}, {"name": "Transformation, to unknown", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 282.88}, {"name": "Transformation, to urban, continuously built", "categories": ["natural resource", "land"], "amount": 7021.9}, {"name": "Transformation, to urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 4937}, {"name": "Transformation, to urban, green area", "categories": ["natural resource", "land"], "amount": 2072.5}, {"name": "Transformation, to urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 5895.4}, {"name": "Transformation, to wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}]}, {"unit": "kg Sb-Eq", "name": ["EF v3.0 no LT", "material resources: metals/minerals no LT", "abiotic depletion potential (ADP): elements (ultimate reserves) no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 4.545212805030338e-05}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.00297}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 6.04e-06}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 1.26e-05}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.0411}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 0.0004841517197042984}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.00427}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 5.343572902983674e-10}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 0.000673718497616036}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 6.544113975666994e-12}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 2.66249274670687e-10}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 6.52e-07}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 3.594003392114496e-05}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.308918482603777e-10}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 4.471605694701393e-05}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 5.823075919490471e-10}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 2.02e-09}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.0922}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.93e-05}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 1.6e-08}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 0.000103180813387238}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 0.194}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1.4e-11}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 5.5e-08}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 1.646069875295716e-05}, {"name": "Sodium nitrate", "categories": ["natural resource", "in ground"], "amount": 1.487682357320205e-08}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 4.358140883174752e-05}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.290510533131037e-07}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 7.07e-07}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.000193}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 1.289527155951242e-05}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 3.92505016360851e-10}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.43e-05}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 2.79e-08}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 0.00452}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 0.0005695419030770708}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 7.7e-07}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 5.69e-07}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}]}, {"unit": "kg CFC-11-Eq", "name": ["EF v3.0 no LT", "ozone depletion no LT", "ozone depletion potential (ODP) no LT"], "exchanges": [{"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.81}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.057}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.26}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.57}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 15.2}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.034}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.72}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "disease incidence", "name": ["EF v3.0 no LT", "particulate matter formation no LT", "impact on human health no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.6e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01757e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000238497}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.94042e-07}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 5.48544e-05}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}]}, {"unit": "kg NMVOC-Eq", "name": ["EF v3.0 no LT", "photochemical oxidant formation: human health no LT", "tropospheric ozone concentration increase no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 1.65}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.608}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1.42}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.709}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.318}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.731}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.828}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Acetone", "categories": ["air"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.155}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Benzene", "categories": ["air"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.23}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.595}, {"name": "Butane", "categories": ["air"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.595}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05}, {"name": "Butanol", "categories": ["air"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.454}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0389}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.845}, {"name": "Cumene", "categories": ["air"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.845}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.752}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.0422}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.319}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.208}, {"name": "Ethane", "categories": ["air"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.208}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0152}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.674}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.353}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.69}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.652}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.144}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.877}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.834}, {"name": "Heptane", "categories": ["air"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.834}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Hexane", "categories": ["air"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.814}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.519}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.115}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00845}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.236}, {"name": "Methanol", "categories": ["air"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.236}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0997}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.63}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.667}, {"name": "Pentane", "categories": ["air"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.667}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Propanal", "categories": ["air"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.35}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "Propane", "categories": ["air"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.948}, {"name": "Propanol", "categories": ["air"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.948}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9}, {"name": "Propene", "categories": ["air"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.9}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.253}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Styrene", "categories": ["air"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.049}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Toluene", "categories": ["air"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.549}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.235}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.78}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.296}]}, {"unit": "m3 world eq. deprived", "name": ["EF v3.0 no LT", "water use no LT", "user deprivation potential (deprivation-weighted water consumption) no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.95}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.95}, {"name": "Water", "categories": ["air"], "amount": 42.95}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 42.95}]}, {"unit": "mol H+-Eq", "name": ["EF v3.0", "acidification", "accumulated exceedance (AE)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 3.02}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.13467}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1.31}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.04821}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Chloroform", "categories": ["air"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 938}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9620}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2350}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 96}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 635}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8520}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3690}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7150}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2110}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 179}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 817}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 15}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 34}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2020}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 712}, {"name": "Methyl formate", "categories": ["air"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 712}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17900}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26100}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.23}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0", "climate change: biogenic", "global warming potential (GWP100)"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 34}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0", "climate change: fossil", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Chloroform", "categories": ["air"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 938}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9620}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2350}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 96}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 635}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8520}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3690}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7150}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2110}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 179}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 817}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 15}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2020}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 712}, {"name": "Methyl formate", "categories": ["air"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 712}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17900}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26100}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.23}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0", "climate change: land use and land use change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 36.8}]}, {"unit": "CTUe", "name": ["EF v3.0", "ecotoxicity: freshwater", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 4646.7}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 2.6713}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 30.733}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 112.29}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 68612}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 11624}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 31.157}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 912.29}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 4.1368}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 500.56}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 31.457}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 21.639}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 14.072}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 1845.1}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4860.6}, {"name": "Abamectin", "categories": ["air"], "amount": 8802.3}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Abamectin", "categories": ["water"], "amount": 332160}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6887.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 2139.3}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 96.503}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 325900}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 599.66}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 2.8788}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 4.6517}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 7669.3}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 194540}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water"], "amount": 9541}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1999.7}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Allyl chloride", "categories": ["water"], "amount": 52.64}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 58369000}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air"], "amount": 188000}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil"], "amount": 276000}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.43e-15}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water"], "amount": 204500}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 883.04}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 1246.7}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 52.283}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 9.2245}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 487460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air"], "amount": 43.05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 43}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 122}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 8.22e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 122}, {"name": "Antimony ion", "categories": ["water"], "amount": 61}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air"], "amount": 557}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 803}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.27e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2015}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsine", "categories": ["air"], "amount": 557}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 424730}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 228780}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 161.08}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090}, {"name": "Barium II", "categories": ["air"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1090}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1570}, {"name": "Barium II", "categories": ["soil"], "amount": 1570}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3140}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 9.34e-16}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3140}, {"name": "Barium II", "categories": ["water"], "amount": 1570}, {"name": "Barium sulfide", "categories": ["water"], "amount": 76094}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4382.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 395.82}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 894.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 839.26}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 171240}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 27977}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 28141}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 8173300}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 35.132}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 527}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 527}, {"name": "Beryllium II", "categories": ["air"], "amount": 526}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 525}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil"], "amount": 760}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.55e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water"], "amount": 690}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 814760000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 229740000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2192.2}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 11.793}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 10.242}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 78.497}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 78.497}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 1305.4}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 204.3}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 73.451}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 369.26}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 161.63}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 199.08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air"], "amount": 80800}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 80700}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 116000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.39e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water"], "amount": 114500}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 3800}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 6.38e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 3800}, {"name": "Caesium", "categories": ["water"], "amount": 1900}, {"name": "Calcium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.495}, {"name": "Calcium", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.495}, {"name": "Calcium", "categories": ["air"], "amount": 36.247}, {"name": "Calcium", "categories": ["air", "urban air close to ground"], "amount": 36.998}, {"name": "Calcium", "categories": ["soil", "agricultural"], "amount": 47.27}, {"name": "Calcium", "categories": ["soil", "forestry"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil", "industrial"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil"], "amount": 47.27}, {"name": "Calcium II", "categories": ["water", "ground-"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water", "ocean"], "amount": 7.00649e-45}, {"name": "Calcium II", "categories": ["water", "surface water"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water"], "amount": 109.18}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 3143400}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1158.7}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 23347}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 51145}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 56094}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2518800}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water"], "amount": 150.72}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 150.72}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 150.72}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1705.9}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 970.45}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 37438}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 5964.1}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 16856}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 59379}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 66.766}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 349.64}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 32.609}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 33.571}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 794680}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 196830000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium III", "categories": ["air"], "amount": 364.5}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium III", "categories": ["soil"], "amount": 524}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 809}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.73e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 809}, {"name": "Chromium III", "categories": ["water"], "amount": 404.5}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium VI", "categories": ["air"], "amount": 364.5}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil"], "amount": 524}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.82e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water"], "amount": 520}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 752.52}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air"], "amount": 4490}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4480}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil"], "amount": 6470}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.43e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water"], "amount": 6150}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36500}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 36500}, {"name": "Copper ion", "categories": ["air"], "amount": 36400}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 36300}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil"], "amount": 52400}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 99200}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 9.25e-18}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 99200}, {"name": "Copper ion", "categories": ["water"], "amount": 49600}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 1864.5}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 50458}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 1219.5}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 13400}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1831.5}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 50934000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 88371}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1531.8}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 691.93}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 458.02}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4759}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1234700}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 77330000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2138.6}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 146.75}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 14.079}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 41.875}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 400.44}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 660.23}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 15.723}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 15766000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2241.9}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 513.86}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 27842}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 98085}, {"name": "Dodecanol", "categories": ["water"], "amount": 11313}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 121.22}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 332160}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 617.76}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1129700}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 1864.5}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 248.51}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 25.382}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3140.2}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 18.445}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 61.443}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 890.24}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 68.044}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1361.3}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 6.4334}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 40.121}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 62713000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 73646}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 378860}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 632570}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 3010900}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.5426}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 10.203}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 168290}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2125.4}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 3.4488}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 42.924}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 0.010218}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 50458}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 1020.7}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 7308.6}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 542.27}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 20956}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 0.0014233}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 37438}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 149.48}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 29553}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 11097}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 150.72}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 29.36}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 44670}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 127290}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 480290}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 119590}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.0267}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 332160}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 187.68}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air"], "amount": 50.6}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 50.5}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil"], "amount": 73.2}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 134}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 6.44e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 134}, {"name": "Iron ion", "categories": ["water"], "amount": 67}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 401.31}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water"], "amount": 516.89}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2012700000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 1117.3}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.2}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.2}, {"name": "Lead II", "categories": ["air"], "amount": 28.05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.9}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil"], "amount": 40.7}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.9}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.9e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.9}, {"name": "Lead II", "categories": ["water"], "amount": 34.45}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 0.58961}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 246.66}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 1084900}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air"], "amount": 63.35}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 63.2}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil"], "amount": 91.7}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese II", "categories": ["water"], "amount": 82}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese-55", "categories": ["water"], "amount": 82}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Mercury II", "categories": ["air"], "amount": 1065}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil"], "amount": 1560}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2210}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.54e-18}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2210}, {"name": "Mercury II", "categories": ["water"], "amount": 1105}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 196520}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1281.6}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 70.831}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3241.7}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 2.9582}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 413980}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 110530}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 13.777}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 1981.4}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 107.85}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 15.753}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 88.346}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 111700}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 61309}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.59e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.475}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 70.066}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 659.25}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10700}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 10700}, {"name": "Nickel II", "categories": ["air"], "amount": 10650}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil"], "amount": 15400}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 29800}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.91e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 29800}, {"name": "Nickel II", "categories": ["water"], "amount": 14900}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1789.6}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 13362}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 119590}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 64.453}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 1959600}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 8672}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 5.3621}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.0177}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 31.882}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 6827.4}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 10.486}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 18660}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 7569.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 371.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 50.201}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 22357}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 230.06}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 8.2417}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 96.402}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 148630}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 452.5}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 2674.4}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 62.688}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 18324}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 518980}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2138.6}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 15062000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2138.6}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 433890}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 190510}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2138.6}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air"], "amount": 25.65}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 25.6}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.74e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water"], "amount": 36.6}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water"], "amount": 2.3463}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7030}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7030}, {"name": "Silver I", "categories": ["air"], "amount": 7020}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7010}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 10100}, {"name": "Silver I", "categories": ["soil"], "amount": 10100}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 19400}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.09e-17}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 19400}, {"name": "Silver I", "categories": ["water"], "amount": 9700}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 333470}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 7.6306}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 21.339}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5380}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5380}, {"name": "Strontium", "categories": ["air"], "amount": 5375}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 5370}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 7730}, {"name": "Strontium", "categories": ["soil"], "amount": 7730}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 15400}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.39e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 15400}, {"name": "Strontium", "categories": ["water"], "amount": 7700}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 1322.6}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 210090}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 79836}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil"], "amount": 20911}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 133650}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 153.76}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 133650}, {"name": "Sulfur", "categories": ["water"], "amount": 66901}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 6585.4}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 150700}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21179}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 26919000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 630.38}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230}, {"name": "Thallium I", "categories": ["air"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1230}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil"], "amount": 1760}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3530}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 9.5e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3530}, {"name": "Thallium I", "categories": ["water"], "amount": 1765}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 46196}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 213220}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 385460}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 12129}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 385290}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 119}, {"name": "Tin ion", "categories": ["air"], "amount": 118.5}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 118}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 171}, {"name": "Tin ion", "categories": ["soil"], "amount": 171}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 298}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 3.75e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 298}, {"name": "Tin ion", "categories": ["water"], "amount": 149}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 486.61}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1641.4}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 134.85}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 7.6657}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.25304}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 50458}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 688260000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 831270}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 63.058}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 40.263}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 1.4769}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 181}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 404}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 404}, {"name": "Vanadium V", "categories": ["air"], "amount": 403.5}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 403}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil"], "amount": 581}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 337.41}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 506}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 506}, {"name": "Zinc II", "categories": ["air"], "amount": 504.5}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 503}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 730}, {"name": "Zinc II", "categories": ["soil"], "amount": 730}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1330}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.05e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1330}, {"name": "Zinc II", "categories": ["water"], "amount": 665}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 531.29}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 801.31}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 21.977}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 3022.8}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "CTUe", "name": ["EF v3.0", "ecotoxicity: freshwater, inorganics", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "Allyl chloride", "categories": ["water"], "amount": 52.64}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 883.04}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 1246.7}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 52.283}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsine", "categories": ["air"], "amount": 557}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 161.08}, {"name": "Barium sulfide", "categories": ["water"], "amount": 76094}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 10.242}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 78.497}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 78.497}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 1305.4}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 56094}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water"], "amount": 150.72}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 150.72}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 150.72}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 5964.1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 33.571}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 13400}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.5426}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 10.203}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 29553}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 150.72}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 29.36}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 44670}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 187.68}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 5.3621}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.0177}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 31.882}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 6827.4}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 10.486}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 7.6306}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 6585.4}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 7.6657}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}]}, {"unit": "CTUe", "name": ["EF v3.0", "ecotoxicity: freshwater, metals", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air"], "amount": 188000}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil"], "amount": 276000}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.43e-15}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water"], "amount": 204500}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air"], "amount": 43.05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 43}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 122}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 8.22e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 122}, {"name": "Antimony ion", "categories": ["water"], "amount": 61}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air"], "amount": 557}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 803}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.27e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2015}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090}, {"name": "Barium II", "categories": ["air"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1090}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1570}, {"name": "Barium II", "categories": ["soil"], "amount": 1570}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3140}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 9.34e-16}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3140}, {"name": "Barium II", "categories": ["water"], "amount": 1570}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 527}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 527}, {"name": "Beryllium II", "categories": ["air"], "amount": 526}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 525}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil"], "amount": 760}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.55e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water"], "amount": 690}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 11.793}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air"], "amount": 80800}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 80700}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 116000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.39e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water"], "amount": 114500}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 3800}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 6.38e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 3800}, {"name": "Caesium", "categories": ["water"], "amount": 1900}, {"name": "Calcium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.495}, {"name": "Calcium", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.495}, {"name": "Calcium", "categories": ["air"], "amount": 36.247}, {"name": "Calcium", "categories": ["air", "urban air close to ground"], "amount": 36.998}, {"name": "Calcium", "categories": ["soil", "agricultural"], "amount": 47.27}, {"name": "Calcium", "categories": ["soil", "forestry"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil", "industrial"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil"], "amount": 47.27}, {"name": "Calcium II", "categories": ["water", "ground-"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water", "ocean"], "amount": 7.00649e-45}, {"name": "Calcium II", "categories": ["water", "surface water"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water"], "amount": 109.18}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium III", "categories": ["air"], "amount": 364.5}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium III", "categories": ["soil"], "amount": 524}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 809}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.73e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 809}, {"name": "Chromium III", "categories": ["water"], "amount": 404.5}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium VI", "categories": ["air"], "amount": 364.5}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil"], "amount": 524}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.82e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water"], "amount": 520}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air"], "amount": 4490}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4480}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil"], "amount": 6470}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.43e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water"], "amount": 6150}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36500}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 36500}, {"name": "Copper ion", "categories": ["air"], "amount": 36400}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 36300}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil"], "amount": 52400}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 99200}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 9.25e-18}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 99200}, {"name": "Copper ion", "categories": ["water"], "amount": 49600}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air"], "amount": 50.6}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 50.5}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil"], "amount": 73.2}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 134}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 6.44e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 134}, {"name": "Iron ion", "categories": ["water"], "amount": 67}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.2}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.2}, {"name": "Lead II", "categories": ["air"], "amount": 28.05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.9}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil"], "amount": 40.7}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.9}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.9e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.9}, {"name": "Lead II", "categories": ["water"], "amount": 34.45}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 0.58961}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air"], "amount": 63.35}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 63.2}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil"], "amount": 91.7}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese II", "categories": ["water"], "amount": 82}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese-55", "categories": ["water"], "amount": 82}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Mercury II", "categories": ["air"], "amount": 1065}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil"], "amount": 1560}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2210}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.54e-18}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2210}, {"name": "Mercury II", "categories": ["water"], "amount": 1105}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.59e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.475}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10700}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 10700}, {"name": "Nickel II", "categories": ["air"], "amount": 10650}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil"], "amount": 15400}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 29800}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.91e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 29800}, {"name": "Nickel II", "categories": ["water"], "amount": 14900}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air"], "amount": 25.65}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 25.6}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.74e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water"], "amount": 36.6}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water"], "amount": 2.3463}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7030}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7030}, {"name": "Silver I", "categories": ["air"], "amount": 7020}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7010}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 10100}, {"name": "Silver I", "categories": ["soil"], "amount": 10100}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 19400}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.09e-17}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 19400}, {"name": "Silver I", "categories": ["water"], "amount": 9700}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5380}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5380}, {"name": "Strontium", "categories": ["air"], "amount": 5375}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 5370}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 7730}, {"name": "Strontium", "categories": ["soil"], "amount": 7730}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 15400}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.39e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 15400}, {"name": "Strontium", "categories": ["water"], "amount": 7700}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil"], "amount": 20911}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 133650}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 153.76}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 133650}, {"name": "Sulfur", "categories": ["water"], "amount": 66901}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230}, {"name": "Thallium I", "categories": ["air"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1230}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil"], "amount": 1760}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3530}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 9.5e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3530}, {"name": "Thallium I", "categories": ["water"], "amount": 1765}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 119}, {"name": "Tin ion", "categories": ["air"], "amount": 118.5}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 118}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 171}, {"name": "Tin ion", "categories": ["soil"], "amount": 171}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 298}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 3.75e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 298}, {"name": "Tin ion", "categories": ["water"], "amount": 149}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 40.263}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 404}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 404}, {"name": "Vanadium V", "categories": ["air"], "amount": 403.5}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 403}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil"], "amount": 581}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 506}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 506}, {"name": "Zinc II", "categories": ["air"], "amount": 504.5}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 503}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 730}, {"name": "Zinc II", "categories": ["soil"], "amount": 730}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1330}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.05e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1330}, {"name": "Zinc II", "categories": ["water"], "amount": 665}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}]}, {"unit": "CTUe", "name": ["EF v3.0", "ecotoxicity: freshwater, organics", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 4646.7}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 2.6713}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 30.733}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 112.29}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 68612}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 11624}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 31.157}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 912.29}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 4.1368}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 500.56}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 31.457}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 21.639}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 14.072}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 1845.1}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4860.6}, {"name": "Abamectin", "categories": ["air"], "amount": 8802.3}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Abamectin", "categories": ["water"], "amount": 332160}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6887.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 2139.3}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 96.503}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 325900}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 599.66}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 2.8788}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 4.6517}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 7669.3}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 194540}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water"], "amount": 9541}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1999.7}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 58369000}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 9.2245}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 487460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 424730}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 228780}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4382.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 395.82}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 894.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 839.26}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 171240}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 27977}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 28141}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 8173300}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 35.132}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 814760000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 229740000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2192.2}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 204.3}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 73.451}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 369.26}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 161.63}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 199.08}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 3143400}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1158.7}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 23347}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 51145}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2518800}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1705.9}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 970.45}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 37438}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 16856}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 59379}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 66.766}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 349.64}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 32.609}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 794680}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 196830000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 752.52}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 1864.5}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 50458}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 1219.5}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1831.5}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 50934000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 88371}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1531.8}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 691.93}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 458.02}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4759}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1234700}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 77330000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2138.6}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 146.75}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 14.079}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 41.875}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 400.44}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 660.23}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 15.723}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 15766000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2241.9}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 513.86}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 27842}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 98085}, {"name": "Dodecanol", "categories": ["water"], "amount": 11313}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 121.22}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 332160}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 617.76}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1129700}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 1864.5}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 248.51}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 25.382}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3140.2}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 18.445}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 61.443}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 890.24}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 68.044}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1361.3}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 6.4334}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 40.121}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 62713000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 73646}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 378860}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 632570}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 3010900}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 168290}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2125.4}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 3.4488}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 42.924}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 0.010218}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 50458}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 1020.7}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 7308.6}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 542.27}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 20956}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 0.0014233}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 37438}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 149.48}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 11097}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 127290}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 480290}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 119590}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.0267}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 332160}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 401.31}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water"], "amount": 516.89}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2012700000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 1117.3}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 246.66}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 1084900}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 196520}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1281.6}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 70.831}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3241.7}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 2.9582}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 413980}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 110530}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 13.777}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 1981.4}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 107.85}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 15.753}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 88.346}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 111700}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 61309}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 70.066}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 659.25}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1789.6}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 13362}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 119590}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 64.453}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 1959600}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 8672}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 18660}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 7569.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 371.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 50.201}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 22357}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 230.06}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 8.2417}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 96.402}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 148630}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 452.5}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 2674.4}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 62.688}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 18324}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 518980}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2138.6}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 15062000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2138.6}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 433890}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 190510}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2138.6}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 333470}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 21.339}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 1322.6}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 210090}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 79836}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 150700}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21179}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 26919000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 630.38}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 46196}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 213220}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 385460}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 12129}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 385290}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 486.61}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1641.4}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 134.85}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.25304}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 50458}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 688260000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 831270}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 63.058}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 1.4769}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 181}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 337.41}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 531.29}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 801.31}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 21.977}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 3022.8}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "MJ, net calorific value", "name": ["EF v3.0", "energy resources: non-renewable", "abiotic depletion potential (ADP): fossil fuels"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.76}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}]}, {"unit": "kg P-Eq", "name": ["EF v3.0", "eutrophication: freshwater", "fraction of nutrients reaching freshwater end compartment (P)"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["EF v3.0", "eutrophication: marine", "fraction of nutrients reaching marine end compartment (N)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.092}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water"], "amount": 0.778}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.028}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water"], "amount": 0.226}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.596}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water"], "amount": 0.304}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 1}, {"name": "Nitrogen", "categories": ["water"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.389}]}, {"unit": "mol N-Eq", "name": ["EF v3.0", "eutrophication: terrestrial", "accumulated exceedance (AE)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 13.47}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 3.16065}, {"name": "Nitric oxide", "categories": ["air"], "amount": 6.532}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 4.26}]}, {"unit": "CTUh", "name": ["EF v3.0", "human toxicity: carcinogenic", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.0", "human toxicity: carcinogenic, inorganics", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}]}, {"unit": "CTUh", "name": ["EF v3.0", "human toxicity: carcinogenic, metals", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}]}, {"unit": "CTUh", "name": ["EF v3.0", "human toxicity: carcinogenic, organics", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.0", "human toxicity: non-carcinogenic", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3303e-06}, {"name": "Abamectin", "categories": ["air"], "amount": 1.1734e-05}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Abamectin", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 2.2099e-08}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil"], "amount": 1.5387e-08}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6728e-06}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 6.9773e-08}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air"], "amount": 0.00012953}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 0.00013055}, {"name": "Chlorine", "categories": ["soil"], "amount": 0.0001235}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 1.1282e-05}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water"], "amount": 5.5583e-05}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.261e-06}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.261e-06}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 3.1857e-08}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 1.2368e-08}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 3.3487e-07}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 4.3917e-07}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 4.3512e-07}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 8.1969e-10}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil"], "amount": 6.6691e-10}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 2.188e-11}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water"], "amount": 5.5205e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "CTUh", "name": ["EF v3.0", "human toxicity: non-carcinogenic, inorganics", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 2.2099e-08}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil"], "amount": 1.5387e-08}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air"], "amount": 0.00012953}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 0.00013055}, {"name": "Chlorine", "categories": ["soil"], "amount": 0.0001235}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 1.1282e-05}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water"], "amount": 5.5583e-05}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 3.3487e-07}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 4.3917e-07}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}]}, {"unit": "CTUh", "name": ["EF v3.0", "human toxicity: non-carcinogenic, metals", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 8.1969e-10}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil"], "amount": 6.6691e-10}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 2.188e-11}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water"], "amount": 5.5205e-10}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}]}, {"unit": "CTUh", "name": ["EF v3.0", "human toxicity: non-carcinogenic, organics", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3303e-06}, {"name": "Abamectin", "categories": ["air"], "amount": 1.1734e-05}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Abamectin", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6728e-06}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 6.9773e-08}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.261e-06}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.261e-06}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 3.1857e-08}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 1.2368e-08}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 4.3512e-07}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "kBq U235-Eq", "name": ["EF v3.0", "ionising radiation: human health", "human exposure efficiency relative to u235"], "exchanges": [{"name": "Americium-241", "categories": ["water", "ground-"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water"], "amount": 1.5}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0386}, {"name": "Antimony-125", "categories": ["water", "ground-"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ground-, long-term"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water"], "amount": 0.0007}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water"], "amount": 6.79}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water"], "amount": 7.86}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Carbon-14", "categories": ["air"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.0557}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00193}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0186}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.29e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.14e-05}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 4.8}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water"], "amount": 4.71}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0236}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000443}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 6.64e-06}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.015}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 3.14}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ground-, long-term"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water"], "amount": 0.00607}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.00679}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0236}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.000193}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 2.14}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ground-, long-term"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.114}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-235", "categories": ["air"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.107}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 6.71e-06}]}, {"unit": "dimensionless", "name": ["EF v3.0", "land use", "soil quality index"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 39.581}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 36.405}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 51.699}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 105.24}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 18.128}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 33.964}, {"name": "Occupation, forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 11.459}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 11.488}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 21.463}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 48.218}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 139.1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 38.973}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 58.117}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 17.602}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 138.81}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 121.55}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 161.52}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 69.262}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 28.288}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 165.22}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 116.16}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 48.764}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 138.72}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Transformation, from annual crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": -395.81}, {"name": "Transformation, from annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": -364.05}, {"name": "Transformation, from annual crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from arable land, unspecified use", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from bare area (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -516.99}, {"name": "Transformation, from dump site", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, slag compartment", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from forest, extensive", "categories": ["natural resource", "land"], "amount": -181.28}, {"name": "Transformation, from forest, intensive", "categories": ["natural resource", "land"], "amount": -339.64}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": -114.59}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -114.88}, {"name": "Transformation, from forest, unspecified", "categories": ["natural resource", "land"], "amount": -214.63}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": -482.18}, {"name": "Transformation, from industrial area", "categories": ["natural resource", "land"], "amount": -5911.8}, {"name": "Transformation, from mineral extraction site", "categories": ["natural resource", "land"], "amount": -4708.4}, {"name": "Transformation, from pasture, man made", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": -389.73}, {"name": "Transformation, from pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": -581.17}, {"name": "Transformation, from permanent crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -176.02}, {"name": "Transformation, from snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from traffic area, rail network", "categories": ["natural resource", "land"], "amount": -5899.2}, {"name": "Transformation, from traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": -5165.9}, {"name": "Transformation, from traffic area, road network", "categories": ["natural resource", "land"], "amount": -6864.8}, {"name": "Transformation, from unknown", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -282.88}, {"name": "Transformation, from urban, continuously built", "categories": ["natural resource", "land"], "amount": -7021.9}, {"name": "Transformation, from urban, discontinuously built", "categories": ["natural resource", "land"], "amount": -4937}, {"name": "Transformation, from urban, green area", "categories": ["natural resource", "land"], "amount": -2072.5}, {"name": "Transformation, from urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": -5895.4}, {"name": "Transformation, from wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, to annual crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 395.81}, {"name": "Transformation, to annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 364.05}, {"name": "Transformation, to annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to bare area (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 516.99}, {"name": "Transformation, to dump site", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to forest, extensive", "categories": ["natural resource", "land"], "amount": 181.28}, {"name": "Transformation, to forest, intensive", "categories": ["natural resource", "land"], "amount": 339.64}, {"name": "Transformation, to forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 114.59}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 114.88}, {"name": "Transformation, to forest, unspecified", "categories": ["natural resource", "land"], "amount": 214.63}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 482.18}, {"name": "Transformation, to industrial area", "categories": ["natural resource", "land"], "amount": 5911.8}, {"name": "Transformation, to mineral extraction site", "categories": ["natural resource", "land"], "amount": 4708.4}, {"name": "Transformation, to pasture, man made", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 389.73}, {"name": "Transformation, to pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 581.17}, {"name": "Transformation, to permanent crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 176.02}, {"name": "Transformation, to snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to traffic area, rail network", "categories": ["natural resource", "land"], "amount": 5899.2}, {"name": "Transformation, to traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 5165.9}, {"name": "Transformation, to traffic area, road network", "categories": ["natural resource", "land"], "amount": 6864.8}, {"name": "Transformation, to unknown", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 282.88}, {"name": "Transformation, to urban, continuously built", "categories": ["natural resource", "land"], "amount": 7021.9}, {"name": "Transformation, to urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 4937}, {"name": "Transformation, to urban, green area", "categories": ["natural resource", "land"], "amount": 2072.5}, {"name": "Transformation, to urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 5895.4}, {"name": "Transformation, to wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}]}, {"unit": "kg Sb-Eq", "name": ["EF v3.0", "material resources: metals/minerals", "abiotic depletion potential (ADP): elements (ultimate reserves)"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 4.545212805030338e-05}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.00297}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 6.04e-06}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 1.26e-05}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.0411}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 0.0004841517197042984}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.00427}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 5.343572902983674e-10}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 0.000673718497616036}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 6.544113975666994e-12}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 2.66249274670687e-10}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 6.52e-07}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 3.594003392114496e-05}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.308918482603777e-10}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 4.471605694701393e-05}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 5.823075919490471e-10}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 2.02e-09}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.0922}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.93e-05}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 1.6e-08}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 0.000103180813387238}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 0.194}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1.4e-11}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 5.5e-08}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 1.646069875295716e-05}, {"name": "Sodium nitrate", "categories": ["natural resource", "in ground"], "amount": 1.487682357320205e-08}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 4.358140883174752e-05}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.290510533131037e-07}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 7.07e-07}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.000193}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 1.289527155951242e-05}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 3.92505016360851e-10}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.43e-05}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 2.79e-08}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 0.00452}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 0.0005695419030770708}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 7.7e-07}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 5.69e-07}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}]}, {"unit": "kg CFC-11-Eq", "name": ["EF v3.0", "ozone depletion", "ozone depletion potential (ODP)"], "exchanges": [{"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.81}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.057}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.26}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.57}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 15.2}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.034}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.72}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "disease incidence", "name": ["EF v3.0", "particulate matter formation", "impact on human health"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.6e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01757e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000238497}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.94042e-07}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 5.48544e-05}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}]}, {"unit": "kg NMVOC-Eq", "name": ["EF v3.0", "photochemical oxidant formation: human health", "tropospheric ozone concentration increase"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 1.65}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.608}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1.42}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.709}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.318}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.731}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.828}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Acetone", "categories": ["air"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.155}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Benzene", "categories": ["air"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.23}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.595}, {"name": "Butane", "categories": ["air"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.595}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05}, {"name": "Butanol", "categories": ["air"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.454}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0389}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.845}, {"name": "Cumene", "categories": ["air"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.845}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.752}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.0422}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.319}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.208}, {"name": "Ethane", "categories": ["air"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.208}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0152}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.674}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.353}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.69}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.652}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.144}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.877}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.834}, {"name": "Heptane", "categories": ["air"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.834}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Hexane", "categories": ["air"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.814}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.519}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.115}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00845}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.236}, {"name": "Methanol", "categories": ["air"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.236}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0997}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.63}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.667}, {"name": "Pentane", "categories": ["air"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.667}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Propanal", "categories": ["air"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.35}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "Propane", "categories": ["air"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.948}, {"name": "Propanol", "categories": ["air"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.948}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9}, {"name": "Propene", "categories": ["air"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.9}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.253}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Styrene", "categories": ["air"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.049}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Toluene", "categories": ["air"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.549}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.235}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.78}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.296}]}, {"unit": "m3 world eq. deprived", "name": ["EF v3.0", "water use", "user deprivation potential (deprivation-weighted water consumption)"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 42.95}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.95}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.95}, {"name": "Water", "categories": ["air"], "amount": 42.95}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 42.95}]}, {"unit": "mol H+-Eq", "name": ["EF v3.1 no LT", "acidification no LT", "accumulated exceedance (AE) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 3.02}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.13467}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1.31}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.04821}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1 no LT", "climate change no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1 no LT", "climate change: biogenic no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1 no LT", "climate change: fossil no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1 no LT", "climate change: land use and land use change no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}]}, {"unit": "CTUe", "name": ["EF v3.1 no LT", "ecotoxicity: freshwater no LT", "comparative toxic unit for ecosystems (CTUe) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9276}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 5.3426}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 61.45}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 224.58}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 137220}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 23240}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 62.294}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1824.6}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 8.2702}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 1001.1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 62.9}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 28.139}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 3689.2}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 315487.19221037}, {"name": "Abamectin", "categories": ["air"], "amount": 554148.578559852}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Abamectin", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 13773}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 4278.6}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 192.93}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 651800}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 1199.3}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 5.7469}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.2823}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15337}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 389000}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 19082}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 19082}, {"name": "Acrylate", "categories": ["water"], "amount": 19082}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3981.3}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Allyl chloride", "categories": ["water"], "amount": 105.28}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 116730000}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air"], "amount": 2002.745979017675}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 1991.389605163728}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.524933039988502e-17}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water"], "amount": 4351.936148782046}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1766.1}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 2493.2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 104.57}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 18.449}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 974460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air"], "amount": 3936.160566162338}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3932.23811982149}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.513617476334719e-17}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water"], "amount": 11236.40165143179}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.674241505374748e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4740.144065793249}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 849450}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 457560}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 322.16}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air"], "amount": 1285.034232822078}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1283.954063979948}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.099193197912493e-15}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water"], "amount": 3697.562482913057}, {"name": "Barium sulfide", "categories": ["water"], "amount": 152190}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 8762.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 791.57}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1787.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 1678.5}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 341750}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 55563}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 56281}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 16347000}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 70.262}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air"], "amount": 618.9529355888297}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 617.3705322217661}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 6.526234802747784e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water"], "amount": 1626.068806336683}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1629500000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 459480000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 4384.3}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 23.585}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 20.458}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 156.99}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 2607.6}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 408.5}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 146.86}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 738.53}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 323.15}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 398.15}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air"], "amount": 238177.2238474309}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 237902.7122128598}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 7.053900825124722e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water"], "amount": 674494.7621301207}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 7.47862628024277e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water"], "amount": 4470.250219771267}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 6286700}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2314.6}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 46693}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 102290}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 111310}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 5037700}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 1.3453e-19}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water"], "amount": 4.7248}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 301.44}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 301.44}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 55559.1411080776}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 70300.9604413129}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 11918}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 33711}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 118620}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 133.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 696.98}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 65.209}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 67.142}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1588300}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 393650000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.208875862910647e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water"], "amount": 952.2972968312423}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.489493252663161e-17}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water"], "amount": 12274.01347021746}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 1505}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air"], "amount": 2014.507718479836}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2010.987520873756}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.400122046360835e-17}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water"], "amount": 5530.110188853351}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air"], "amount": 17.0387771287493}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 17.00696037116091}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.332001250025555e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water"], "amount": 46.47592828149169}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 157664.999993603}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 2439}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 26453}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3663.1}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 101870000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 176740}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3063.7}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1383.9}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0036901}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0036787}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 916.03}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4.9517}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 2469400}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 154660000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 293.47}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 28.15}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 83.707}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 800.87}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 1320.5}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 31.193}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 31479000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 4483.1}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 1027.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 55683}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 196170}, {"name": "Dodecanol", "categories": ["water"], "amount": 22624}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 242.45}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1233.9}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 2259400}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 157664.999993603}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 495.88}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.1505}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 50.686}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 6258.5}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 36.878}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 122.76}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 1780.5}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 136.09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2722.6}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 12.866}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 80.053}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 125430000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 147290}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 757720}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1265100}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 6021800}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 3.0851}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 20.361}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 336590}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4250.7}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 6.8977}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 85.847}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 64.3102104356947}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2041.4}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 14617}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 1084.5}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 41912}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 25.8706937761006}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 298.96}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 59003}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 22194}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 301.44}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 58.72}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 89339}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 254580}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 960570}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 239130}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 2276.4422267126}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 375.32}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air"], "amount": 795.7333426635905}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 793.8224567056676}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 7.574304470573605e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water"], "amount": 158.0383373682407}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 802.63}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ground-"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water", "surface water"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water"], "amount": 1033.8}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 4025200000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 2234.5}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air"], "amount": 27.80611908286212}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.70215524027599}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.886357418817773e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water"], "amount": 68.25546277139645}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 1.1792}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 493.32}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 2169700}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air"], "amount": 19.94318085460731}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 19.88727144657841}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air"], "amount": 15972.69526442819}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 15871.61649678753}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.31875727413759e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water"], "amount": 33175.97305971487}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 393040}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2563.2}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 141.6}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 6459.6}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 5.9133}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 827960}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 221060}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 27.506}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 3961.6}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 215.57}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 31.451}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 176.69}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 223410}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 122620}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.3442680085561654}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.3439346651696575}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.197321478927571e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.9841866365016807}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 140.06}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1318.5}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air"], "amount": 9671.490845144066}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9658.017917373805}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.452235344870308e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water"], "amount": 27049.47608091963}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 3579.2}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 26696}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 239130}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 128.91}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 3919100}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 17344}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 10.724}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 2.0314}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 63.728}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 13653}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 20.943}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 37320}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 15139}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 742.46}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 100.4}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 44637}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 459.99}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 16.477}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 192.8}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 297260}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 904.99}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 5348.7}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 125.14}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 36647}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 1038000}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 30124000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 867770}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 381030}, {"name": "Saflufenacil", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air"], "amount": 30.16996657803469}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 30.13959371908529}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 2.042628203989072e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water"], "amount": 86.08008602421901}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water"], "amount": 4.6927}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air"], "amount": 64053.54859244861}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 63950.19866656793}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.906840719972556e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water"], "amount": 177087.2896818751}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 666940}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 15.261}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 42.676}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air"], "amount": 6317.818728103488}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 6311.78472154855}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.98284211011834e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water"], "amount": 18073.40979134071}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 2645.2}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 420180}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 159670}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 13171}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 301390}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 42358}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 53839000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1260.2}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air"], "amount": 1442.57764721605}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1441.342024998017}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.117103489229396e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water"], "amount": 4147.520198066774}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 92391}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 426440}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 770900}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 24258}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 770570}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air"], "amount": 203.8836811879324}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 203.2079983047431}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 6.470692433736435e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water"], "amount": 513.1042026334452}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 973.2}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 3281.6}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 269.69}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 15.307}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 101.88}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.50608}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 1376500000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 1661800}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 126.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 80.527}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 2.9538}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 361.96}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air"], "amount": 1710.725551638173}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1708.278576231147}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2464.904813447571}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 674.82}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air"], "amount": 628.4971011469244}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 626.9476836185197}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.305118122386737e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water"], "amount": 1659.512213981416}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 1062.6}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 1602.6}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 43.94}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 6045.4}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "CTUe", "name": ["EF v3.1 no LT", "ecotoxicity: freshwater, inorganics no LT", "comparative toxic unit for ecosystems (CTUe) no LT"], "exchanges": [{"name": "Allyl chloride", "categories": ["water"], "amount": 105.28}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air"], "amount": 2002.745979017675}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 1991.389605163728}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.524933039988502e-17}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water"], "amount": 4351.936148782046}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1766.1}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 2493.2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 104.57}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air"], "amount": 3936.160566162338}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3932.23811982149}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.513617476334719e-17}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water"], "amount": 11236.40165143179}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.674241505374748e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4740.144065793249}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 322.16}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air"], "amount": 1285.034232822078}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1283.954063979948}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.099193197912493e-15}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water"], "amount": 3697.562482913057}, {"name": "Barium sulfide", "categories": ["water"], "amount": 152190}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air"], "amount": 618.9529355888297}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 617.3705322217661}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 6.526234802747784e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water"], "amount": 1626.068806336683}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 23.585}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 20.458}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 156.99}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 2607.6}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air"], "amount": 238177.2238474309}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 237902.7122128598}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 7.053900825124722e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water"], "amount": 674494.7621301207}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 7.47862628024277e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water"], "amount": 4470.250219771267}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 111310}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 1.3453e-19}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water"], "amount": 4.7248}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 301.44}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 301.44}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 11918}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 67.142}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.208875862910647e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water"], "amount": 952.2972968312423}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.489493252663161e-17}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water"], "amount": 12274.01347021746}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air"], "amount": 2014.507718479836}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2010.987520873756}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.400122046360835e-17}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water"], "amount": 5530.110188853351}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air"], "amount": 17.0387771287493}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 17.00696037116091}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.332001250025555e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water"], "amount": 46.47592828149169}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 26453}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 3.0851}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 20.361}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 59003}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 301.44}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 58.72}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 89339}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 375.32}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air"], "amount": 795.7333426635905}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 793.8224567056676}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 7.574304470573605e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water"], "amount": 158.0383373682407}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air"], "amount": 27.80611908286212}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.70215524027599}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.886357418817773e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water"], "amount": 68.25546277139645}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 1.1792}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air"], "amount": 19.94318085460731}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 19.88727144657841}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air"], "amount": 15972.69526442819}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 15871.61649678753}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.31875727413759e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water"], "amount": 33175.97305971487}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.3442680085561654}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.3439346651696575}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.197321478927571e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.9841866365016807}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air"], "amount": 9671.490845144066}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9658.017917373805}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.452235344870308e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water"], "amount": 27049.47608091963}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 10.724}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 2.0314}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 63.728}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 13653}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 20.943}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air"], "amount": 30.16996657803469}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 30.13959371908529}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 2.042628203989072e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water"], "amount": 86.08008602421901}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water"], "amount": 4.6927}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air"], "amount": 64053.54859244861}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 63950.19866656793}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.906840719972556e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water"], "amount": 177087.2896818751}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 15.261}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air"], "amount": 6317.818728103488}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 6311.78472154855}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.98284211011834e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water"], "amount": 18073.40979134071}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 13171}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air"], "amount": 1442.57764721605}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1441.342024998017}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.117103489229396e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water"], "amount": 4147.520198066774}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air"], "amount": 203.8836811879324}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 203.2079983047431}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 6.470692433736435e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water"], "amount": 513.1042026334452}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 15.307}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 80.527}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air"], "amount": 1710.725551638173}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1708.278576231147}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2464.904813447571}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air"], "amount": 628.4971011469244}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 626.9476836185197}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.305118122386737e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water"], "amount": 1659.512213981416}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}]}, {"unit": "CTUe", "name": ["EF v3.1 no LT", "ecotoxicity: freshwater, organics no LT", "comparative toxic unit for ecosystems (CTUe) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9276}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 5.3426}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 61.45}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 224.58}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 137220}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 23240}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 62.294}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1824.6}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 8.2702}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 1001.1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 62.9}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 28.139}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 3689.2}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 315487.19221037}, {"name": "Abamectin", "categories": ["air"], "amount": 554148.578559852}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Abamectin", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 13773}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 4278.6}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 192.93}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 651800}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 1199.3}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 5.7469}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.2823}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15337}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 389000}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 19082}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 19082}, {"name": "Acrylate", "categories": ["water"], "amount": 19082}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3981.3}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 116730000}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 18.449}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 974460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 849450}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 457560}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 8762.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 791.57}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1787.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 1678.5}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 341750}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 55563}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 56281}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 16347000}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 70.262}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1629500000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 459480000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 4384.3}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 408.5}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 146.86}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 738.53}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 323.15}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 398.15}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 6286700}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2314.6}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 46693}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 102290}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 5037700}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 55559.1411080776}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 70300.9604413129}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 33711}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 118620}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 133.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 696.98}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 65.209}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1588300}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 393650000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 1505}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 157664.999993603}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 2439}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3663.1}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 101870000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 176740}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3063.7}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1383.9}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0036901}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0036787}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 916.03}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4.9517}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 2469400}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 154660000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 293.47}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 28.15}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 83.707}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 800.87}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 1320.5}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 31.193}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 31479000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 4483.1}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 1027.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 55683}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 196170}, {"name": "Dodecanol", "categories": ["water"], "amount": 22624}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 242.45}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1233.9}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 2259400}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 157664.999993603}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 495.88}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.1505}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 50.686}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 6258.5}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 36.878}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 122.76}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 1780.5}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 136.09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2722.6}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 12.866}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 80.053}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 125430000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 147290}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 757720}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1265100}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 6021800}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 336590}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4250.7}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 6.8977}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 85.847}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 64.3102104356947}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2041.4}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 14617}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 1084.5}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 41912}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 25.8706937761006}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 298.96}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 22194}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 254580}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 960570}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 239130}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 2276.4422267126}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 802.63}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ground-"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water", "surface water"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water"], "amount": 1033.8}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 4025200000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 2234.5}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 493.32}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 2169700}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 393040}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2563.2}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 141.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 6459.6}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 5.9133}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 827960}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 221060}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 27.506}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 3961.6}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 215.57}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 31.451}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 176.69}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 223410}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 122620}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 140.06}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1318.5}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 3579.2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 26696}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 239130}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 128.91}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 3919100}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 17344}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 37320}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 15139}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 742.46}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 100.4}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 44637}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 459.99}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 16.477}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 192.8}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 297260}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 904.99}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 5348.7}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 125.14}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 36647}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 1038000}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 30124000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 867770}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 381030}, {"name": "Saflufenacil", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 666940}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 42.676}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 2645.2}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 420180}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 159670}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 301390}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 42358}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 53839000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1260.2}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 92391}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 426440}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 770900}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 24258}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 770570}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 973.2}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 3281.6}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 269.69}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 101.88}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.50608}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 1376500000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 1661800}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 126.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 2.9538}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 361.96}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 674.82}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 1062.6}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 1602.6}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 43.94}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 6045.4}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "MJ, net calorific value", "name": ["EF v3.1 no LT", "energy resources: non-renewable no LT", "abiotic depletion potential (ADP): fossil fuels no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.76}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}]}, {"unit": "kg P-Eq", "name": ["EF v3.1 no LT", "eutrophication: freshwater no LT", "fraction of nutrients reaching freshwater end compartment (P) no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["EF v3.1 no LT", "eutrophication: marine no LT", "fraction of nutrients reaching marine end compartment (N) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.092}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water"], "amount": 0.778}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.028}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water"], "amount": 0.226}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.596}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water"], "amount": 0.304}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 1}, {"name": "Nitrogen", "categories": ["water"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.389}]}, {"unit": "mol N-Eq", "name": ["EF v3.1 no LT", "eutrophication: terrestrial no LT", "accumulated exceedance (AE) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 13.47}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 3.16065}, {"name": "Nitric oxide", "categories": ["air"], "amount": 6.532}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 4.26}]}, {"unit": "CTUh", "name": ["EF v3.1 no LT", "human toxicity: carcinogenic no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 8.1867e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.1 no LT", "human toxicity: carcinogenic, inorganics no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}]}, {"unit": "CTUh", "name": ["EF v3.1 no LT", "human toxicity: carcinogenic, organics no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 8.1867e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.1 no LT", "human toxicity: non-carcinogenic no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.80160167313958e-05}, {"name": "Abamectin", "categories": ["air"], "amount": 0.000472506721099211}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Abamectin", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.50356882299721e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 2.53019085248595e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.3238e-10}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.1964e-10}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.00025564}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 1.18650289222135e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 9.59587362857198e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.57199659305063e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ground-"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water", "surface water"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "CTUh", "name": ["EF v3.1 no LT", "human toxicity: non-carcinogenic, inorganics no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}]}, {"unit": "CTUh", "name": ["EF v3.1 no LT", "human toxicity: non-carcinogenic, organics no LT", "comparative toxic unit for human (CTUh) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.80160167313958e-05}, {"name": "Abamectin", "categories": ["air"], "amount": 0.000472506721099211}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Abamectin", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.50356882299721e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 2.53019085248595e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.3238e-10}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.1964e-10}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.00025564}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 1.18650289222135e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 9.59587362857198e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.57199659305063e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ground-"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water", "surface water"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "kBq U235-Eq", "name": ["EF v3.1 no LT", "ionising radiation: human health no LT", "human exposure efficiency relative to u235 no LT"], "exchanges": [{"name": "Americium-241", "categories": ["water", "ground-"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water"], "amount": 1.5}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0386}, {"name": "Antimony-125", "categories": ["water", "ground-"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water"], "amount": 0.0007}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water"], "amount": 6.79}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water"], "amount": 7.86}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Carbon-14", "categories": ["air"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.0557}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00193}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0186}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.29e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.14e-05}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 4.8}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water"], "amount": 4.71}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0236}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000443}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 6.64e-06}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.015}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 3.14}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water"], "amount": 0.00607}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.00679}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0236}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.000193}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 2.14}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.114}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-235", "categories": ["air"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.107}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 6.71e-06}]}, {"unit": "dimensionless", "name": ["EF v3.1 no LT", "land use no LT", "soil quality index no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 39.581}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 36.405}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 51.699}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 105.24}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 18.128}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 33.964}, {"name": "Occupation, forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 11.459}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 11.488}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 21.463}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 48.218}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 139.1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 38.973}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 58.117}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 17.602}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 138.81}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 121.55}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 161.52}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 69.262}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 28.288}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 165.22}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 116.16}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 48.764}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 138.72}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Transformation, from annual crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": -395.81}, {"name": "Transformation, from annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": -364.05}, {"name": "Transformation, from annual crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from arable land, unspecified use", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from bare area (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -516.99}, {"name": "Transformation, from dump site", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, slag compartment", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from forest, extensive", "categories": ["natural resource", "land"], "amount": -181.28}, {"name": "Transformation, from forest, intensive", "categories": ["natural resource", "land"], "amount": -339.64}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": -114.59}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -114.88}, {"name": "Transformation, from forest, unspecified", "categories": ["natural resource", "land"], "amount": -214.63}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": -482.18}, {"name": "Transformation, from industrial area", "categories": ["natural resource", "land"], "amount": -5911.8}, {"name": "Transformation, from mineral extraction site", "categories": ["natural resource", "land"], "amount": -4708.4}, {"name": "Transformation, from pasture, man made", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": -389.73}, {"name": "Transformation, from pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": -581.17}, {"name": "Transformation, from permanent crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -176.02}, {"name": "Transformation, from snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from traffic area, rail network", "categories": ["natural resource", "land"], "amount": -5899.2}, {"name": "Transformation, from traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": -5165.9}, {"name": "Transformation, from traffic area, road network", "categories": ["natural resource", "land"], "amount": -6864.8}, {"name": "Transformation, from unknown", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -282.88}, {"name": "Transformation, from urban, continuously built", "categories": ["natural resource", "land"], "amount": -7021.9}, {"name": "Transformation, from urban, discontinuously built", "categories": ["natural resource", "land"], "amount": -4937}, {"name": "Transformation, from urban, green area", "categories": ["natural resource", "land"], "amount": -2072.5}, {"name": "Transformation, from urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": -5895.4}, {"name": "Transformation, from wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, to annual crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 395.81}, {"name": "Transformation, to annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 364.05}, {"name": "Transformation, to annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to bare area (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 516.99}, {"name": "Transformation, to dump site", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to forest, extensive", "categories": ["natural resource", "land"], "amount": 181.28}, {"name": "Transformation, to forest, intensive", "categories": ["natural resource", "land"], "amount": 339.64}, {"name": "Transformation, to forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 114.59}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 114.88}, {"name": "Transformation, to forest, unspecified", "categories": ["natural resource", "land"], "amount": 214.63}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 482.18}, {"name": "Transformation, to industrial area", "categories": ["natural resource", "land"], "amount": 5911.8}, {"name": "Transformation, to mineral extraction site", "categories": ["natural resource", "land"], "amount": 4708.4}, {"name": "Transformation, to pasture, man made", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 389.73}, {"name": "Transformation, to pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 581.17}, {"name": "Transformation, to permanent crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 176.02}, {"name": "Transformation, to snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to traffic area, rail network", "categories": ["natural resource", "land"], "amount": 5899.2}, {"name": "Transformation, to traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 5165.9}, {"name": "Transformation, to traffic area, road network", "categories": ["natural resource", "land"], "amount": 6864.8}, {"name": "Transformation, to unknown", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 282.88}, {"name": "Transformation, to urban, continuously built", "categories": ["natural resource", "land"], "amount": 7021.9}, {"name": "Transformation, to urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 4937}, {"name": "Transformation, to urban, green area", "categories": ["natural resource", "land"], "amount": 2072.5}, {"name": "Transformation, to urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 5895.4}, {"name": "Transformation, to wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}]}, {"unit": "kg Sb-Eq", "name": ["EF v3.1 no LT", "material resources: metals/minerals no LT", "abiotic depletion potential (ADP): elements (ultimate reserves) no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 4.545212805030338e-05}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.00297}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 6.04e-06}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 1.26e-05}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.0411}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 0.0004841517197042984}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.00427}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 5.343572902983674e-10}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 0.000673718497616036}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 6.544113975666994e-12}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 2.66249274670687e-10}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 6.52e-07}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 3.594003392114496e-05}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.308918482603777e-10}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 4.471605694701393e-05}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 5.823075919490471e-10}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 2.02e-09}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.0922}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.93e-05}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 1.6e-08}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 0.000103180813387238}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 0.194}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1.4e-11}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 5.5e-08}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 1.646069875295716e-05}, {"name": "Sodium nitrate", "categories": ["natural resource", "in ground"], "amount": 1.487682357320205e-08}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 4.358140883174752e-05}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.290510533131037e-07}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 7.07e-07}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.000193}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 1.289527155951242e-05}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 3.92505016360851e-10}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.43e-05}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 2.79e-08}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 0.00452}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 0.0005695419030770708}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 7.7e-07}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 5.69e-07}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}]}, {"unit": "kg CFC-11-Eq", "name": ["EF v3.1 no LT", "ozone depletion no LT", "ozone depletion potential (ODP) no LT"], "exchanges": [{"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.81}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.057}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.26}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.57}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 15.2}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.034}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.72}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "disease incidence", "name": ["EF v3.1 no LT", "particulate matter formation no LT", "impact on human health no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.6e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01757e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000238497}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.94042e-07}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 5.48544e-05}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}]}, {"unit": "kg NMVOC-Eq", "name": ["EF v3.1 no LT", "photochemical oxidant formation: human health no LT", "tropospheric ozone concentration increase no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 1.65}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.608}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1.42}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.709}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.318}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.731}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.828}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Acetone", "categories": ["air"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.155}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Benzene", "categories": ["air"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.23}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.595}, {"name": "Butane", "categories": ["air"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.595}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05}, {"name": "Butanol", "categories": ["air"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.454}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0389}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.845}, {"name": "Cumene", "categories": ["air"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.845}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.752}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.0422}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.319}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.208}, {"name": "Ethane", "categories": ["air"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.208}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0152}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.674}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.353}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.69}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.652}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.144}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.877}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.834}, {"name": "Heptane", "categories": ["air"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.834}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Hexane", "categories": ["air"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.814}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.519}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.115}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00845}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.236}, {"name": "Methanol", "categories": ["air"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.236}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0997}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.63}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.667}, {"name": "Pentane", "categories": ["air"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.667}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Propanal", "categories": ["air"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.35}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "Propane", "categories": ["air"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.948}, {"name": "Propanol", "categories": ["air"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.948}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9}, {"name": "Propene", "categories": ["air"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.9}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.253}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Styrene", "categories": ["air"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.049}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Toluene", "categories": ["air"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.549}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.235}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.78}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.296}]}, {"unit": "m3 world eq. deprived", "name": ["EF v3.1 no LT", "water use no LT", "user deprivation potential (deprivation-weighted water consumption) no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.95}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.95}, {"name": "Water", "categories": ["air"], "amount": 42.95}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 42.95}]}, {"unit": "mol H+-Eq", "name": ["EF v3.1", "acidification", "accumulated exceedance (AE)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 3.02}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.13467}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1.31}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.04821}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1", "climate change: biogenic", "global warming potential (GWP100)"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1", "climate change: fossil", "global warming potential (GWP100)"], "exchanges": [{"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1", "climate change: land use and land use change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}]}, {"unit": "CTUe", "name": ["EF v3.1", "ecotoxicity: freshwater", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9276}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 5.3426}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 61.45}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 224.58}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 137220}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 23240}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 62.294}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1824.6}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 8.2702}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 1001.1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 62.9}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 28.139}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 3689.2}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 315487.19221037}, {"name": "Abamectin", "categories": ["air"], "amount": 554148.578559852}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Abamectin", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 13773}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 4278.6}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 192.93}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 651800}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 1199.3}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 5.7469}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.2823}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15337}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 389000}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 19082}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 19082}, {"name": "Acrylate", "categories": ["water"], "amount": 19082}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3981.3}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Allyl chloride", "categories": ["water"], "amount": 105.28}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 116730000}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air"], "amount": 2002.745979017675}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 1991.389605163728}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.524933039988502e-17}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water"], "amount": 4351.936148782046}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1766.1}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 2493.2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 104.57}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 18.449}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 974460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air"], "amount": 3936.160566162338}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3932.23811982149}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.513617476334719e-17}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water"], "amount": 11236.40165143179}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.674241505374748e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4740.144065793249}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 849450}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 457560}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 322.16}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air"], "amount": 1285.034232822078}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1283.954063979948}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.099193197912493e-15}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water"], "amount": 3697.562482913057}, {"name": "Barium sulfide", "categories": ["water"], "amount": 152190}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 8762.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 791.57}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1787.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 1678.5}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 341750}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 55563}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 56281}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 16347000}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 70.262}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air"], "amount": 618.9529355888297}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 617.3705322217661}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 6.526234802747784e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water"], "amount": 1626.068806336683}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1629500000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 459480000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 4384.3}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 23.585}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 20.458}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 156.99}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 2607.6}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 408.5}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 146.86}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 738.53}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 323.15}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 398.15}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air"], "amount": 238177.2238474309}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 237902.7122128598}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 7.053900825124722e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water"], "amount": 674494.7621301207}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 7.47862628024277e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water"], "amount": 4470.250219771267}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 6286700}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2314.6}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 46693}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 102290}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 111310}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 5037700}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 1.3453e-19}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water"], "amount": 4.7248}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 301.44}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 301.44}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 55559.1411080776}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 70300.9604413129}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 11918}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 33711}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 118620}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 133.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 696.98}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 65.209}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 67.142}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1588300}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 393650000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.208875862910647e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water"], "amount": 952.2972968312423}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.489493252663161e-17}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water"], "amount": 12274.01347021746}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 1505}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air"], "amount": 2014.507718479836}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2010.987520873756}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.400122046360835e-17}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water"], "amount": 5530.110188853351}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air"], "amount": 17.0387771287493}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 17.00696037116091}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.332001250025555e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water"], "amount": 46.47592828149169}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 157664.999993603}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 2439}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 26453}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3663.1}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 101870000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 176740}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3063.7}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1383.9}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0036901}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0036787}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 916.03}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4.9517}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 2469400}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 154660000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 293.47}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 28.15}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 83.707}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 800.87}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 1320.5}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 31.193}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 31479000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 4483.1}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 1027.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 55683}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 196170}, {"name": "Dodecanol", "categories": ["water"], "amount": 22624}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 242.45}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1233.9}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 2259400}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 157664.999993603}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 495.88}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.1505}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 50.686}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 6258.5}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 36.878}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 122.76}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 1780.5}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 136.09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2722.6}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 12.866}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 80.053}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 125430000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 147290}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 757720}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1265100}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 6021800}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 3.0851}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 20.361}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 336590}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4250.7}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 6.8977}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 85.847}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 64.3102104356947}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2041.4}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 14617}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 1084.5}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 41912}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 25.8706937761006}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 298.96}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 59003}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 22194}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 301.44}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 58.72}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 89339}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 254580}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 960570}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 239130}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 2276.4422267126}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 375.32}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air"], "amount": 795.7333426635905}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 793.8224567056676}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 7.574304470573605e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water"], "amount": 158.0383373682407}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 802.63}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ground-"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water", "surface water"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water"], "amount": 1033.8}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 4025200000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 2234.5}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air"], "amount": 27.80611908286212}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.70215524027599}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.886357418817773e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water"], "amount": 68.25546277139645}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 1.1792}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 493.32}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 2169700}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air"], "amount": 19.94318085460731}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 19.88727144657841}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air"], "amount": 15972.69526442819}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 15871.61649678753}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.31875727413759e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water"], "amount": 33175.97305971487}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 393040}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2563.2}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 141.6}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 6459.6}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 5.9133}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 827960}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 221060}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 27.506}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 3961.6}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 215.57}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 31.451}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 176.69}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 223410}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 122620}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.3442680085561654}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.3439346651696575}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.197321478927571e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.9841866365016807}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 140.06}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1318.5}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air"], "amount": 9671.490845144066}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9658.017917373805}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.452235344870308e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water"], "amount": 27049.47608091963}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 3579.2}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 26696}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 239130}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 128.91}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 3919100}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 17344}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 10.724}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 2.0314}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 63.728}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 13653}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 20.943}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 37320}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 15139}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 742.46}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 100.4}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 44637}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 459.99}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 16.477}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 192.8}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 297260}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 904.99}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 5348.7}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 125.14}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 36647}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 1038000}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 30124000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 867770}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 381030}, {"name": "Saflufenacil", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air"], "amount": 30.16996657803469}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 30.13959371908529}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 2.042628203989072e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water"], "amount": 86.08008602421901}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water"], "amount": 4.6927}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air"], "amount": 64053.54859244861}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 63950.19866656793}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.906840719972556e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water"], "amount": 177087.2896818751}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 666940}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 15.261}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 42.676}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air"], "amount": 6317.818728103488}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 6311.78472154855}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.98284211011834e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water"], "amount": 18073.40979134071}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 2645.2}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 420180}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 159670}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 13171}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 301390}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 42358}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 53839000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1260.2}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air"], "amount": 1442.57764721605}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1441.342024998017}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.117103489229396e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water"], "amount": 4147.520198066774}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 92391}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 426440}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 770900}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 24258}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 770570}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air"], "amount": 203.8836811879324}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 203.2079983047431}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 6.470692433736435e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water"], "amount": 513.1042026334452}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 973.2}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 3281.6}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 269.69}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 15.307}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 101.88}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.50608}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 1376500000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 1661800}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 126.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 80.527}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 2.9538}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 361.96}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air"], "amount": 1710.725551638173}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1708.278576231147}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2464.904813447571}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 674.82}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air"], "amount": 628.4971011469244}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 626.9476836185197}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.305118122386737e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water"], "amount": 1659.512213981416}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 1062.6}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 1602.6}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 43.94}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 6045.4}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "CTUe", "name": ["EF v3.1", "ecotoxicity: freshwater, inorganics", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "Allyl chloride", "categories": ["water"], "amount": 105.28}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air"], "amount": 2002.745979017675}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 1991.389605163728}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.524933039988502e-17}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water"], "amount": 4351.936148782046}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1766.1}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 2493.2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 104.57}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air"], "amount": 3936.160566162338}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3932.23811982149}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.513617476334719e-17}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water"], "amount": 11236.40165143179}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.674241505374748e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4740.144065793249}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 322.16}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air"], "amount": 1285.034232822078}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1283.954063979948}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.099193197912493e-15}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water"], "amount": 3697.562482913057}, {"name": "Barium sulfide", "categories": ["water"], "amount": 152190}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air"], "amount": 618.9529355888297}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 617.3705322217661}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 6.526234802747784e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water"], "amount": 1626.068806336683}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 23.585}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 20.458}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 156.99}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 2607.6}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air"], "amount": 238177.2238474309}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 237902.7122128598}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 7.053900825124722e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water"], "amount": 674494.7621301207}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 7.47862628024277e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water"], "amount": 4470.250219771267}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 111310}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 1.3453e-19}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water"], "amount": 4.7248}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 301.44}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 301.44}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 11918}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 67.142}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.208875862910647e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water"], "amount": 952.2972968312423}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.489493252663161e-17}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water"], "amount": 12274.01347021746}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air"], "amount": 2014.507718479836}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2010.987520873756}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.400122046360835e-17}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water"], "amount": 5530.110188853351}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air"], "amount": 17.0387771287493}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 17.00696037116091}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.332001250025555e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water"], "amount": 46.47592828149169}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 26453}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 3.0851}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 20.361}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 59003}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 301.44}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 58.72}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 89339}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 375.32}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air"], "amount": 795.7333426635905}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 793.8224567056676}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 7.574304470573605e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water"], "amount": 158.0383373682407}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air"], "amount": 27.80611908286212}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.70215524027599}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.886357418817773e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water"], "amount": 68.25546277139645}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 1.1792}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air"], "amount": 19.94318085460731}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 19.88727144657841}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air"], "amount": 15972.69526442819}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 15871.61649678753}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.31875727413759e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water"], "amount": 33175.97305971487}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.3442680085561654}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.3439346651696575}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.197321478927571e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.9841866365016807}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air"], "amount": 9671.490845144066}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9658.017917373805}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.452235344870308e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water"], "amount": 27049.47608091963}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 10.724}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 2.0314}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 63.728}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 13653}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 20.943}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air"], "amount": 30.16996657803469}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 30.13959371908529}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 2.042628203989072e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water"], "amount": 86.08008602421901}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water"], "amount": 4.6927}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air"], "amount": 64053.54859244861}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 63950.19866656793}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.906840719972556e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water"], "amount": 177087.2896818751}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 15.261}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air"], "amount": 6317.818728103488}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 6311.78472154855}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.98284211011834e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water"], "amount": 18073.40979134071}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 13171}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air"], "amount": 1442.57764721605}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1441.342024998017}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.117103489229396e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water"], "amount": 4147.520198066774}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air"], "amount": 203.8836811879324}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 203.2079983047431}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 6.470692433736435e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water"], "amount": 513.1042026334452}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 15.307}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 80.527}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air"], "amount": 1710.725551638173}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1708.278576231147}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2464.904813447571}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air"], "amount": 628.4971011469244}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 626.9476836185197}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.305118122386737e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water"], "amount": 1659.512213981416}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}]}, {"unit": "CTUe", "name": ["EF v3.1", "ecotoxicity: freshwater, organics", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9276}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 5.3426}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 61.45}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 224.58}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 137220}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 23240}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 62.294}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1824.6}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 8.2702}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 1001.1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 62.9}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 28.139}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 3689.2}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 315487.19221037}, {"name": "Abamectin", "categories": ["air"], "amount": 554148.578559852}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Abamectin", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 13773}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 4278.6}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 192.93}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 651800}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 1199.3}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 5.7469}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.2823}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15337}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 389000}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 19082}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 19082}, {"name": "Acrylate", "categories": ["water"], "amount": 19082}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3981.3}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 116730000}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 18.449}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 974460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 849450}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 457560}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 8762.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 791.57}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1787.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 1678.5}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 341750}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 55563}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 56281}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 16347000}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 70.262}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1629500000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 459480000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 4384.3}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 408.5}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 146.86}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 738.53}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 323.15}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 398.15}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 6286700}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2314.6}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 46693}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 102290}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 5037700}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 55559.1411080776}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 70300.9604413129}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 33711}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 118620}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 133.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 696.98}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 65.209}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1588300}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 393650000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 1505}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 157664.999993603}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 2439}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3663.1}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 101870000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 176740}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3063.7}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1383.9}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0036901}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0036787}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 916.03}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4.9517}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 2469400}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 154660000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 293.47}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 28.15}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 83.707}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 800.87}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 1320.5}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 31.193}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 31479000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 4483.1}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 1027.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 55683}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 196170}, {"name": "Dodecanol", "categories": ["water"], "amount": 22624}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 242.45}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1233.9}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 2259400}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 157664.999993603}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 495.88}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.1505}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 50.686}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 6258.5}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 36.878}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 122.76}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 1780.5}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 136.09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2722.6}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 12.866}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 80.053}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 125430000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 147290}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 757720}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1265100}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 6021800}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 336590}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4250.7}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 6.8977}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 85.847}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 64.3102104356947}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2041.4}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 14617}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 1084.5}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 41912}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 25.8706937761006}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 298.96}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 22194}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 254580}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 960570}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 239130}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 2276.4422267126}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 802.63}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ground-"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water", "surface water"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water"], "amount": 1033.8}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 4025200000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 2234.5}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 493.32}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 2169700}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 393040}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2563.2}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 141.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 6459.6}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 5.9133}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 827960}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 221060}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 27.506}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 3961.6}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 215.57}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 31.451}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 176.69}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 223410}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 122620}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 140.06}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1318.5}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 3579.2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 26696}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 239130}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 128.91}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 3919100}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 17344}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 37320}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 15139}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 742.46}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 100.4}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 44637}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 459.99}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 16.477}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 192.8}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 297260}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 904.99}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 5348.7}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 125.14}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 36647}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 1038000}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 30124000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 867770}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 381030}, {"name": "Saflufenacil", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 666940}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 42.676}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 2645.2}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 420180}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 159670}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 301390}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 42358}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 53839000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1260.2}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 92391}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 426440}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 770900}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 24258}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 770570}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 973.2}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 3281.6}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 269.69}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 101.88}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.50608}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 1376500000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 1661800}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 126.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 2.9538}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 361.96}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 674.82}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 1062.6}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 1602.6}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 43.94}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 6045.4}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "MJ, net calorific value", "name": ["EF v3.1", "energy resources: non-renewable", "abiotic depletion potential (ADP): fossil fuels"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.76}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}]}, {"unit": "kg P-Eq", "name": ["EF v3.1", "eutrophication: freshwater", "fraction of nutrients reaching freshwater end compartment (P)"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["EF v3.1", "eutrophication: marine", "fraction of nutrients reaching marine end compartment (N)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.092}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water"], "amount": 0.778}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.028}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water"], "amount": 0.226}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.596}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water"], "amount": 0.304}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 1}, {"name": "Nitrogen", "categories": ["water"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.389}]}, {"unit": "mol N-Eq", "name": ["EF v3.1", "eutrophication: terrestrial", "accumulated exceedance (AE)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 13.47}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 3.16065}, {"name": "Nitric oxide", "categories": ["air"], "amount": 6.532}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 4.26}]}, {"unit": "CTUh", "name": ["EF v3.1", "human toxicity: carcinogenic", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 8.1867e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.1", "human toxicity: carcinogenic, inorganics", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}]}, {"unit": "CTUh", "name": ["EF v3.1", "human toxicity: carcinogenic, organics", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 8.1867e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.1", "human toxicity: non-carcinogenic", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.80160167313958e-05}, {"name": "Abamectin", "categories": ["air"], "amount": 0.000472506721099211}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Abamectin", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.50356882299721e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 2.53019085248595e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.3238e-10}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.1964e-10}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.00025564}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 1.18650289222135e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 9.59587362857198e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.57199659305063e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ground-"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water", "surface water"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "CTUh", "name": ["EF v3.1", "human toxicity: non-carcinogenic, inorganics", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}]}, {"unit": "CTUh", "name": ["EF v3.1", "human toxicity: non-carcinogenic, organics", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.80160167313958e-05}, {"name": "Abamectin", "categories": ["air"], "amount": 0.000472506721099211}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Abamectin", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.50356882299721e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 2.53019085248595e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.3238e-10}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.1964e-10}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.00025564}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 1.18650289222135e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 9.59587362857198e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.57199659305063e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ground-"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water", "surface water"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "kBq U235-Eq", "name": ["EF v3.1", "ionising radiation: human health", "human exposure efficiency relative to u235"], "exchanges": [{"name": "Americium-241", "categories": ["water", "ground-"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water"], "amount": 1.5}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0386}, {"name": "Antimony-125", "categories": ["water", "ground-"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ground-, long-term"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water"], "amount": 0.0007}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water"], "amount": 6.79}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water"], "amount": 7.86}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Carbon-14", "categories": ["air"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.0557}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00193}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0186}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.29e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.14e-05}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 4.8}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water"], "amount": 4.71}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0236}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000443}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 6.64e-06}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.015}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 3.14}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ground-, long-term"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water"], "amount": 0.00607}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.00679}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0236}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.000193}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 2.14}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ground-, long-term"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.114}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-235", "categories": ["air"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.107}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 6.71e-06}]}, {"unit": "dimensionless", "name": ["EF v3.1", "land use", "soil quality index"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 39.581}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 36.405}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 51.699}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 105.24}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 18.128}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 33.964}, {"name": "Occupation, forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 11.459}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 11.488}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 21.463}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 48.218}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 139.1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 38.973}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 58.117}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 17.602}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 138.81}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 121.55}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 161.52}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 69.262}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 28.288}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 165.22}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 116.16}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 48.764}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 138.72}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Transformation, from annual crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": -395.81}, {"name": "Transformation, from annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": -364.05}, {"name": "Transformation, from annual crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from arable land, unspecified use", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from bare area (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -516.99}, {"name": "Transformation, from dump site", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, slag compartment", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from forest, extensive", "categories": ["natural resource", "land"], "amount": -181.28}, {"name": "Transformation, from forest, intensive", "categories": ["natural resource", "land"], "amount": -339.64}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": -114.59}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -114.88}, {"name": "Transformation, from forest, unspecified", "categories": ["natural resource", "land"], "amount": -214.63}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": -482.18}, {"name": "Transformation, from industrial area", "categories": ["natural resource", "land"], "amount": -5911.8}, {"name": "Transformation, from mineral extraction site", "categories": ["natural resource", "land"], "amount": -4708.4}, {"name": "Transformation, from pasture, man made", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": -389.73}, {"name": "Transformation, from pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": -581.17}, {"name": "Transformation, from permanent crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -176.02}, {"name": "Transformation, from snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from traffic area, rail network", "categories": ["natural resource", "land"], "amount": -5899.2}, {"name": "Transformation, from traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": -5165.9}, {"name": "Transformation, from traffic area, road network", "categories": ["natural resource", "land"], "amount": -6864.8}, {"name": "Transformation, from unknown", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -282.88}, {"name": "Transformation, from urban, continuously built", "categories": ["natural resource", "land"], "amount": -7021.9}, {"name": "Transformation, from urban, discontinuously built", "categories": ["natural resource", "land"], "amount": -4937}, {"name": "Transformation, from urban, green area", "categories": ["natural resource", "land"], "amount": -2072.5}, {"name": "Transformation, from urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": -5895.4}, {"name": "Transformation, from wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, to annual crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 395.81}, {"name": "Transformation, to annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 364.05}, {"name": "Transformation, to annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to bare area (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 516.99}, {"name": "Transformation, to dump site", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to forest, extensive", "categories": ["natural resource", "land"], "amount": 181.28}, {"name": "Transformation, to forest, intensive", "categories": ["natural resource", "land"], "amount": 339.64}, {"name": "Transformation, to forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 114.59}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 114.88}, {"name": "Transformation, to forest, unspecified", "categories": ["natural resource", "land"], "amount": 214.63}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 482.18}, {"name": "Transformation, to industrial area", "categories": ["natural resource", "land"], "amount": 5911.8}, {"name": "Transformation, to mineral extraction site", "categories": ["natural resource", "land"], "amount": 4708.4}, {"name": "Transformation, to pasture, man made", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 389.73}, {"name": "Transformation, to pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 581.17}, {"name": "Transformation, to permanent crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 176.02}, {"name": "Transformation, to snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to traffic area, rail network", "categories": ["natural resource", "land"], "amount": 5899.2}, {"name": "Transformation, to traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 5165.9}, {"name": "Transformation, to traffic area, road network", "categories": ["natural resource", "land"], "amount": 6864.8}, {"name": "Transformation, to unknown", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 282.88}, {"name": "Transformation, to urban, continuously built", "categories": ["natural resource", "land"], "amount": 7021.9}, {"name": "Transformation, to urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 4937}, {"name": "Transformation, to urban, green area", "categories": ["natural resource", "land"], "amount": 2072.5}, {"name": "Transformation, to urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 5895.4}, {"name": "Transformation, to wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}]}, {"unit": "kg Sb-Eq", "name": ["EF v3.1", "material resources: metals/minerals", "abiotic depletion potential (ADP): elements (ultimate reserves)"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 4.545212805030338e-05}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.00297}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 6.04e-06}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 1.26e-05}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.0411}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 0.0004841517197042984}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.00427}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 5.343572902983674e-10}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 0.000673718497616036}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 6.544113975666994e-12}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 2.66249274670687e-10}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 6.52e-07}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 3.594003392114496e-05}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.308918482603777e-10}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 4.471605694701393e-05}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 5.823075919490471e-10}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 2.02e-09}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.0922}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.93e-05}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 1.6e-08}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 0.000103180813387238}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 0.194}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1.4e-11}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 5.5e-08}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 1.646069875295716e-05}, {"name": "Sodium nitrate", "categories": ["natural resource", "in ground"], "amount": 1.487682357320205e-08}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 4.358140883174752e-05}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.290510533131037e-07}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 7.07e-07}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.000193}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 1.289527155951242e-05}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 3.92505016360851e-10}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.43e-05}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 2.79e-08}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 0.00452}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 0.0005695419030770708}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 7.7e-07}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 5.69e-07}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}]}, {"unit": "kg CFC-11-Eq", "name": ["EF v3.1", "ozone depletion", "ozone depletion potential (ODP)"], "exchanges": [{"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.81}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.057}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.26}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.57}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 15.2}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.034}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.72}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "disease incidence", "name": ["EF v3.1", "particulate matter formation", "impact on human health"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.6e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01757e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000238497}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.94042e-07}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 5.48544e-05}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}]}, {"unit": "kg NMVOC-Eq", "name": ["EF v3.1", "photochemical oxidant formation: human health", "tropospheric ozone concentration increase"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 1.65}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.608}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1.42}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.709}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.318}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.731}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.828}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Acetone", "categories": ["air"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.155}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Benzene", "categories": ["air"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.23}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.595}, {"name": "Butane", "categories": ["air"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.595}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05}, {"name": "Butanol", "categories": ["air"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.454}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0389}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.845}, {"name": "Cumene", "categories": ["air"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.845}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.752}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.0422}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.319}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.208}, {"name": "Ethane", "categories": ["air"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.208}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0152}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.674}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.353}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.69}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.652}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.144}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.877}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.834}, {"name": "Heptane", "categories": ["air"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.834}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Hexane", "categories": ["air"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.814}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.519}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.115}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00845}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.236}, {"name": "Methanol", "categories": ["air"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.236}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0997}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.63}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.667}, {"name": "Pentane", "categories": ["air"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.667}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Propanal", "categories": ["air"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.35}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "Propane", "categories": ["air"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.948}, {"name": "Propanol", "categories": ["air"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.948}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9}, {"name": "Propene", "categories": ["air"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.9}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.253}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Styrene", "categories": ["air"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.049}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Toluene", "categories": ["air"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.549}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.235}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.78}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.296}]}, {"unit": "m3 world eq. deprived", "name": ["EF v3.1", "water use", "user deprivation potential (deprivation-weighted water consumption)"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 42.95}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.95}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.95}, {"name": "Water", "categories": ["air"], "amount": 42.95}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 42.95}]}, {"unit": "EUR 2018", "name": ["EPS 2020d no LT", "emissions to air no LT", "monetary impact value no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2.98}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 9.29}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.82}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 9.26}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.17}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.749}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.54}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2.36}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": -43.4}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 38.4}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 39.5}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 39.8}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.62}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.22}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.93}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 27.3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.64}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 343}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.56}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 444}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1580}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 271}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 47.9}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.936}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 674}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 28.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 183}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 2450}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 3580}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 9.36}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.32}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.43}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.95}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.16}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.07}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.387}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.65}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.71}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": -6.8}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": -6.64}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": -19.7}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.55e-07}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.000514}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.000128}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 749}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2400}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 605}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 201}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 4450}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3330}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 52.2}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 234}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.46}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 595}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 1810}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3970}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 8.62}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.61}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.89}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 8.44}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.46}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 5130}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.01}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 39.7}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 4.83}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.56}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.000128}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.13}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 9.49}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.07}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.983}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 7.71e-05}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.93e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 2.47}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": -8.45}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 7480}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 0.00385}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 39.3}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 0.00103}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.0008990000000000001}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air"], "amount": 2.98}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 9.29}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.82}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air"], "amount": 9.26}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.17}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.85}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.749}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54}, {"name": "Acetone", "categories": ["air"], "amount": 1.54}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air"], "amount": 2.36}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air"], "amount": -43.4}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 38.4}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.5}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.5}, {"name": "Benzene", "categories": ["air"], "amount": 39.5}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 39.8}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air"], "amount": 2.62}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22}, {"name": "Butane", "categories": ["air"], "amount": 2.22}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.93}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.93}, {"name": "Butanol", "categories": ["air"], "amount": 9.93}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air"], "amount": 27.3}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 0.288}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.08}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.0109}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air"], "amount": 4.64}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 343}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 343}, {"name": "Chromium III", "categories": ["air"], "amount": 343}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.56}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.64}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5}, {"name": "Ethane", "categories": ["air"], "amount": 1.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 444}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1580}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 271}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 47.9}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.936}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 674}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 28.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 183}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 2450}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 3580}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1060}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air"], "amount": 9.36}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.32}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.95}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 9.16}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air"], "amount": 1.84}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.07}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air"], "amount": 0.387}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.65}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.65}, {"name": "Heptane", "categories": ["air"], "amount": 2.65}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71}, {"name": "Hexane", "categories": ["air"], "amount": 2.71}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": -6.8}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -6.8}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": -6.64}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": -19.7}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.55e-07}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.000514}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air"], "amount": 2.57e-07}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air"], "amount": 0.000128}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 8.21}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 12}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 749}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2400}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 605}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 201}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 4450}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3330}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 52.2}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 234}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air"], "amount": 8.21}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.46}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 595}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 1810}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1550}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3970}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62}, {"name": "Methanol", "categories": ["air"], "amount": 8.62}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air"], "amount": 8.61}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.89}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air"], "amount": 8.44}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.46}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air"], "amount": 40.2}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 5130}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 9.01}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air"], "amount": 39.7}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 4.83}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.56}, {"name": "Pentane", "categories": ["air"], "amount": 2.56}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.000128}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.13}, {"name": "Propanal", "categories": ["air"], "amount": 2.13}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Propane", "categories": ["air"], "amount": 1.96}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49}, {"name": "Propanol", "categories": ["air"], "amount": 9.49}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.07}, {"name": "Propene", "categories": ["air"], "amount": 3.07}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.983}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air"], "amount": 7.71e-05}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air"], "amount": 1.93e-06}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47}, {"name": "Styrene", "categories": ["air"], "amount": 2.47}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": -8.45}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 7480}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.64}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air"], "amount": 0.00385}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.3}, {"name": "Toluene", "categories": ["air"], "amount": 39.3}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air"], "amount": 0.00103}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.0008990000000000001}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.56}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 8.21}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Sulfur oxides", "categories": ["air"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": -8.45}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 0.288}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 0.288}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.35}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 0.288}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.43}, {"name": "Nitric oxide", "categories": ["air"], "amount": -26.4}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene", "categories": ["air"], "amount": 3}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": -6.8}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2780}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1910}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2780}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1910}, {"name": "Butene", "categories": ["air"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3.05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air"], "amount": 325}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 9.01}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 76.7}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": -26.4}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 232}]}, {"unit": "EUR 2018", "name": ["EPS 2020d no LT", "emissions to soil no LT", "monetary impact value no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.856}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.348}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 344}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.319}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 6.55}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.69}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.88}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 39.9}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.481}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.238}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.271}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.28}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.318}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.37}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.84}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Diclofop", "categories": ["soil", "agricultural"], "amount": 0.57}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.467}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 0.887}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.19}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 124}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.543}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 12.8}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.01}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.228}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 3.68}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 4.85}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 187}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 208}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 4.91}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 1.69}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1.14}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 0.981}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.955}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 21.6}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.182}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.4}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 3.64}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.461}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.474}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.348}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.481}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.274}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 0.488}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.3}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 16}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.02}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.176}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 53.3}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 5.91}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 25.4}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.643}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.6}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.232}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.214}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 0.643}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 247}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 16.3}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.273}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.672}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 0.346}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.76}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.454}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 0.496}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 3.72}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 4.89}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 22.1}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.217}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.396}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Furathiocarb", "categories": ["soil", "agricultural"], "amount": 7.63}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 4.05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 0.541}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.461}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 0.973}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.239}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 0.471}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 1.04}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.349}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.28}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 1.14}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 1.3}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 197}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.575}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 6.76}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 2.39}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.344}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 4.25}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 13.6}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.33}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.43}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.43}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 65.4}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 0.834}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 4.28}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.95}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 9.24}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Cupric hydroxide", "categories": ["soil", "agricultural"], "amount": 85.6}, {"name": "Tetraconazole", "categories": ["soil", "agricultural"], "amount": 1.43}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.192}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.324}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 78.3}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 0.973}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.318}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 29.3}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4.89}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 4.91}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.4}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.55}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 0.224}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 4.05}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 78.3}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 0.526}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.526}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.856}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.64}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 1.79}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.672}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.214}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.05}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 18.8}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.192}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.714}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.714}]}, {"unit": "EUR 2018", "name": ["EPS 2020d no LT", "emissions to water no LT", "monetary impact value no LT"], "exchanges": [{"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.00032}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 23800}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.00032}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 0.00032}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 23800}, {"name": "Cadmium II", "categories": ["water"], "amount": 23800}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 395}, {"name": "Mercury II", "categories": ["water"], "amount": 395}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.00545}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.00218}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water"], "amount": 0.0414}, {"name": "Arsenic ion", "categories": ["water"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 7300}]}, {"unit": "EUR 2018", "name": ["EPS 2020d no LT", "energy resources: non-renewable, fossil no LT", "monetary impact value no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.076}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.258}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.56875}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.56875}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.727}]}, {"unit": "EUR 2018", "name": ["EPS 2020d no LT", "land use no LT", "monetary impact value no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.6}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.00026}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.00138}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 9.45}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.568}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 9.57}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.61}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.61}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.6}]}, {"unit": "EUR 2018", "name": ["EPS 2020d no LT", "material resources: metals no LT", "monetary impact value no LT"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 53400}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 81.8}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 39.1}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5950}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1380}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 175}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 4.55}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.09}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.258}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 202}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 737}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 13100000}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1160}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.182}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 5240000}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 635}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 205}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 10}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 53400}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 5.09}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 78200}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 49.1}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 26200}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 8730}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 40300}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 9.09}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 81.8}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 2280}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 5950}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 1380}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 3270}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 903}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 6550}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 238000000}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 175}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 4.55}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 16400}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 202}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 436}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 105000000}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 737}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 13100000}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 175000000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 1160}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 374}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 45.5}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 5240000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 8180}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Thorium", "categories": ["natural resource", "in ground"], "amount": 1870}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 15900}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 2380}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 238}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 205}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 489}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.181}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 39.1}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.909}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 635}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 709}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.45}]}, {"unit": "EUR 2018", "name": ["EPS 2020d no LT", "total no LT", "monetary impact value no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2.98}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.856}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 9.29}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.82}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 9.26}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.17}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.749}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.54}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2.36}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.348}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 344}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": -43.4}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.319}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 38.4}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 39.5}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 39.8}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 6.55}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.00032}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.69}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.88}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.62}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.22}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.93}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 27.3}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 53400}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 23800}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 39.9}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 81.8}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.481}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.64}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 343}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 39.1}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.238}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.076}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.258}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.56}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.271}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.28}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.318}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.37}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.84}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Diclofop", "categories": ["soil", "agricultural"], "amount": 0.57}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.467}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 0.887}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.19}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 124}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.543}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 12.8}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.01}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.228}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 3.68}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 444}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1580}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 271}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 47.9}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.936}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 674}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 28.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 183}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 2450}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 3580}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 9.36}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.32}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.43}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.95}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.16}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5950}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 4.85}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 187}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 208}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 4.91}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 1.69}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1.14}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 0.981}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.07}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.387}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.955}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1380}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.65}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.71}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": -6.8}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": -6.64}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": -19.7}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.55e-07}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.000514}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 21.6}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.182}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.4}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 175}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.000128}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 3.64}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 4.55}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.461}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.474}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.348}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.481}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.274}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.258}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 0.488}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 749}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2400}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 605}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 201}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 4450}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3330}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 52.2}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 234}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.46}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 595}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 1810}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3970}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 8.62}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 16}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.61}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.89}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 8.44}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.02}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.46}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 202}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 5130}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.01}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.6}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.00026}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.00138}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 9.45}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.568}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 9.57}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.61}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.61}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.6}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.176}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 53.3}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 5.91}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 39.7}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 4.83}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 25.4}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.56}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.643}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.6}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.000128}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 737}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.13}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.232}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 9.49}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.07}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.214}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.983}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 7.71e-05}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.93e-06}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 13100000}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1160}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 0.643}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 2.47}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": -8.45}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 7480}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.182}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 247}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 16.3}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 5240000}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.273}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.672}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 0.00385}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 635}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 39.3}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 0.346}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.76}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.454}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 0.496}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 0.00103}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.0008990000000000001}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air"], "amount": 2.98}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 9.29}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.82}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air"], "amount": 9.26}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.17}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.85}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.749}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54}, {"name": "Acetone", "categories": ["air"], "amount": 1.54}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air"], "amount": 2.36}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air"], "amount": -43.4}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 38.4}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.5}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.5}, {"name": "Benzene", "categories": ["air"], "amount": 39.5}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 39.8}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air"], "amount": 2.62}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22}, {"name": "Butane", "categories": ["air"], "amount": 2.22}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.93}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.93}, {"name": "Butanol", "categories": ["air"], "amount": 9.93}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air"], "amount": 27.3}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 0.288}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.08}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.0109}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air"], "amount": 4.64}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 343}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 343}, {"name": "Chromium III", "categories": ["air"], "amount": 343}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.56}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.64}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5}, {"name": "Ethane", "categories": ["air"], "amount": 1.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 444}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1580}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 271}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 47.9}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.936}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 674}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 28.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 183}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 2450}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 3580}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1060}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air"], "amount": 9.36}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.32}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.95}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 9.16}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air"], "amount": 1.84}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.07}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air"], "amount": 0.387}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.65}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.65}, {"name": "Heptane", "categories": ["air"], "amount": 2.65}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71}, {"name": "Hexane", "categories": ["air"], "amount": 2.71}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": -6.8}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -6.8}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": -6.64}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": -19.7}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.55e-07}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.000514}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air"], "amount": 2.57e-07}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air"], "amount": 0.000128}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 8.21}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 12}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 749}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2400}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 605}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 201}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 4450}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3330}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 52.2}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 234}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air"], "amount": 8.21}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.46}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 595}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 1810}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1550}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3970}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62}, {"name": "Methanol", "categories": ["air"], "amount": 8.62}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air"], "amount": 8.61}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.89}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air"], "amount": 8.44}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.46}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air"], "amount": 40.2}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 5130}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 9.01}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air"], "amount": 39.7}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 4.83}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.56}, {"name": "Pentane", "categories": ["air"], "amount": 2.56}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.000128}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.13}, {"name": "Propanal", "categories": ["air"], "amount": 2.13}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Propane", "categories": ["air"], "amount": 1.96}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49}, {"name": "Propanol", "categories": ["air"], "amount": 9.49}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.07}, {"name": "Propene", "categories": ["air"], "amount": 3.07}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.983}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air"], "amount": 7.71e-05}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air"], "amount": 1.93e-06}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47}, {"name": "Styrene", "categories": ["air"], "amount": 2.47}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": -8.45}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 7480}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.64}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air"], "amount": 0.00385}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.3}, {"name": "Toluene", "categories": ["air"], "amount": 39.3}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air"], "amount": 0.00103}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.0008990000000000001}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.00032}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 0.00032}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 23800}, {"name": "Cadmium II", "categories": ["water"], "amount": 23800}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 395}, {"name": "Mercury II", "categories": ["water"], "amount": 395}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.00545}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.00218}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water"], "amount": 0.0414}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 3.72}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 4.89}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 22.1}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.217}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.396}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Furathiocarb", "categories": ["soil", "agricultural"], "amount": 7.63}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 4.05}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.56}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 0.541}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 8.21}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Sulfur oxides", "categories": ["air"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": -8.45}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 0.288}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 0.288}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.35}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 0.288}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 205}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.461}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 0.973}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.43}, {"name": "Nitric oxide", "categories": ["air"], "amount": -26.4}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.239}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 0.471}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 1.04}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.349}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.28}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 1.14}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 1.3}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 197}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.575}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 6.76}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 2.39}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.344}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 4.25}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 13.6}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.33}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.43}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.43}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 65.4}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 0.834}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 4.28}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.95}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 9.24}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 10}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 53400}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 5.09}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 78200}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 49.1}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 26200}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 8730}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 40300}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 9.09}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 81.8}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 2280}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 5950}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 1380}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 3270}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 903}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 6550}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 238000000}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 175}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 4.55}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 16400}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 202}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 436}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 105000000}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 737}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 13100000}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 175000000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 1160}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 374}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 45.5}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 5240000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 8180}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Thorium", "categories": ["natural resource", "in ground"], "amount": 1870}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 15900}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 2380}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 238}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 205}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 489}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.181}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 39.1}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.909}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 635}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Cupric hydroxide", "categories": ["soil", "agricultural"], "amount": 85.6}, {"name": "Tetraconazole", "categories": ["soil", "agricultural"], "amount": 1.43}, {"name": "Ethylene", "categories": ["air"], "amount": 3}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 709}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": -6.8}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2780}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1910}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.192}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2780}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1910}, {"name": "Butene", "categories": ["air"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3.05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air"], "amount": 325}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 9.01}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.324}, {"name": "Arsenic ion", "categories": ["water"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 7300}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 78.3}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 0.973}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.318}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 29.3}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4.89}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 4.91}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.4}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.55}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 0.224}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 4.05}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 78.3}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 0.526}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.526}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.856}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.64}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 1.79}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.672}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.214}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.05}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 18.8}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.192}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.05}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.56875}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.714}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.714}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 76.7}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": -26.4}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.56875}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.727}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 232}]}, {"unit": "EUR 2018", "name": ["EPS 2020d", "emissions to air", "monetary impact value"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2.98}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 9.29}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.82}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 9.26}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.17}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.749}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.54}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2.36}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": -43.4}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 38.4}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 39.5}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 39.8}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.62}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.22}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.93}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 27.3}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.64}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 343}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.56}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 444}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1580}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 271}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 47.9}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.936}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 674}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 28.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 183}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 2450}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 3580}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 9.36}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.32}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.43}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.95}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.16}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.07}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.387}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.65}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.71}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": -6.8}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": -6.64}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": -19.7}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.55e-07}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.000514}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.000128}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 749}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2400}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 605}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 201}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 4450}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3330}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 52.2}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 234}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.46}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 595}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 1810}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3970}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 8.62}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.61}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.89}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 8.44}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.46}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 5130}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.01}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 39.7}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 4.83}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.56}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.000128}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.13}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 9.49}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.07}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.983}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 7.71e-05}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.93e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 2.47}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": -8.45}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 7480}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 0.00385}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 39.3}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 0.00103}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.0008990000000000001}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air"], "amount": 2.98}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 9.29}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.82}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air"], "amount": 9.26}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.17}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.85}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.749}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 1.54}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54}, {"name": "Acetone", "categories": ["air"], "amount": 1.54}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air"], "amount": 2.36}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air"], "amount": -43.4}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 38.4}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.5}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 39.5}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.5}, {"name": "Benzene", "categories": ["air"], "amount": 39.5}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 39.8}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air"], "amount": 2.62}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.22}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22}, {"name": "Butane", "categories": ["air"], "amount": 2.22}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.93}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 9.93}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.93}, {"name": "Butanol", "categories": ["air"], "amount": 9.93}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air"], "amount": 27.3}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 0.288}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.08}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.0109}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air"], "amount": 4.64}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 343}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 343}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 343}, {"name": "Chromium III", "categories": ["air"], "amount": 343}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.56}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.64}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1.5}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5}, {"name": "Ethane", "categories": ["air"], "amount": 1.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 444}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1580}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 271}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 47.9}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.936}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 674}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 28.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 183}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 2450}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 3580}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1060}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air"], "amount": 9.36}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.32}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.43}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.95}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 9.16}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air"], "amount": 1.84}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.07}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air"], "amount": 0.387}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.65}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 2.65}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.65}, {"name": "Heptane", "categories": ["air"], "amount": 2.65}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.71}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71}, {"name": "Hexane", "categories": ["air"], "amount": 2.71}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": -6.8}, {"name": "Hydrochloric acid", "categories": ["air", "low population density, long-term"], "amount": -6.8}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -6.8}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": -6.64}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": -19.7}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.55e-07}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.000514}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air"], "amount": 2.57e-07}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air"], "amount": 0.000128}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 8.21}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 12}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 749}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2400}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 605}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 201}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 4450}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3330}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 52.2}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 234}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air"], "amount": 8.21}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.46}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 595}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 1810}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1550}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3970}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 8.62}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62}, {"name": "Methanol", "categories": ["air"], "amount": 8.62}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air"], "amount": 8.61}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.89}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air"], "amount": 8.44}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.46}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air"], "amount": 40.2}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 5130}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 9.01}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air"], "amount": 39.7}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 4.83}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.56}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.56}, {"name": "Pentane", "categories": ["air"], "amount": 2.56}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.000128}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.13}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 2.13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.13}, {"name": "Propanal", "categories": ["air"], "amount": 2.13}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.96}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Propane", "categories": ["air"], "amount": 1.96}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 9.49}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49}, {"name": "Propanol", "categories": ["air"], "amount": 9.49}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.07}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.07}, {"name": "Propene", "categories": ["air"], "amount": 3.07}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.983}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air"], "amount": 7.71e-05}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air"], "amount": 1.93e-06}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 2.47}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47}, {"name": "Styrene", "categories": ["air"], "amount": 2.47}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": -8.45}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 7480}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.64}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air"], "amount": 0.00385}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.3}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 39.3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.3}, {"name": "Toluene", "categories": ["air"], "amount": 39.3}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air"], "amount": 0.00103}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.0008990000000000001}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.56}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 8.21}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.288}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 8.21}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Sulfur oxides", "categories": ["air"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": -8.45}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 0.288}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 0.288}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 9.35}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 0.288}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.43}, {"name": "Nitric oxide", "categories": ["air"], "amount": -26.4}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Ethylene", "categories": ["air"], "amount": 3}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": -6.8}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2780}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1910}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2780}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1910}, {"name": "Butene", "categories": ["air"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3.05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air"], "amount": 325}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 9.01}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 76.7}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": -26.4}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 232}]}, {"unit": "EUR 2018", "name": ["EPS 2020d", "emissions to soil", "monetary impact value"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.856}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.348}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 344}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.319}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 6.55}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.69}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.88}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 39.9}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.481}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.238}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.271}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.28}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.318}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.37}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.84}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Diclofop", "categories": ["soil", "agricultural"], "amount": 0.57}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.467}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 0.887}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.19}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 124}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.543}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 12.8}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.01}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.228}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 3.68}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 4.85}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 187}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 208}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 4.91}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 1.69}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1.14}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 0.981}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.955}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 21.6}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.182}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.4}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 3.64}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.461}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.474}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.348}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.481}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.274}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 0.488}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.3}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 16}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.02}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.176}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 53.3}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 5.91}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 25.4}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.643}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.6}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.232}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.214}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 0.643}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 247}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 16.3}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.273}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.672}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 0.346}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.76}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.454}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 0.496}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 3.72}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 4.89}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 22.1}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.217}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.396}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Furathiocarb", "categories": ["soil", "agricultural"], "amount": 7.63}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 4.05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 0.541}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.461}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 0.973}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.239}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 0.471}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 1.04}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.349}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.28}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 1.14}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 1.3}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 197}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.575}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 6.76}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 2.39}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.344}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 4.25}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 13.6}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.33}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.43}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.43}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 65.4}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 0.834}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 4.28}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.95}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 9.24}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Cupric hydroxide", "categories": ["soil", "agricultural"], "amount": 85.6}, {"name": "Tetraconazole", "categories": ["soil", "agricultural"], "amount": 1.43}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.192}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.324}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 78.3}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 0.973}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.318}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 29.3}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4.89}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 4.91}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.4}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.55}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 0.224}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 4.05}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 78.3}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 0.526}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.526}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.856}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.64}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 1.79}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.672}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.214}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.05}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 18.8}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.192}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.714}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.714}]}, {"unit": "EUR 2018", "name": ["EPS 2020d", "emissions to water", "monetary impact value"], "exchanges": [{"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.00032}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 23800}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-, long-term"], "amount": 0.00032}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.00032}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 0.00032}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 23800}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 23800}, {"name": "Cadmium II", "categories": ["water"], "amount": 23800}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 395}, {"name": "Mercury II", "categories": ["water"], "amount": 395}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.00545}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.00218}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water"], "amount": 0.0414}, {"name": "Arsenic ion", "categories": ["water"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 7300}]}, {"unit": "EUR 2018", "name": ["EPS 2020d", "energy resources: non-renewable, fossil", "monetary impact value"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.076}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.258}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.56875}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.56875}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.727}]}, {"unit": "EUR 2018", "name": ["EPS 2020d", "land use", "monetary impact value"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.6}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.00026}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.00138}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 9.45}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.568}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 9.57}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.61}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.61}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.6}]}, {"unit": "EUR 2018", "name": ["EPS 2020d", "material resources: metals", "monetary impact value"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 53400}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 81.8}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 39.1}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5950}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1380}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 175}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 4.55}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.09}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.258}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 202}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 737}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 13100000}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1160}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.182}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 5240000}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 635}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 205}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 10}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 53400}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 5.09}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 78200}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 49.1}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 26200}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 8730}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 40300}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 9.09}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 81.8}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 2280}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 5950}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 1380}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 3270}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 903}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 6550}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 238000000}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 175}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 4.55}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 16400}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 202}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 436}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 105000000}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 737}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 13100000}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 175000000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 1160}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 374}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 45.5}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 5240000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 8180}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Thorium", "categories": ["natural resource", "in ground"], "amount": 1870}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 15900}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 2380}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 238}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 205}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 489}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.181}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 39.1}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.909}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 635}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 709}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.45}]}, {"unit": "EUR 2018", "name": ["EPS 2020d", "total", "monetary impact value"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 2.98}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.856}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 9.29}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.82}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 9.26}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.17}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.749}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.54}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 2.36}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.348}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 344}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": -43.4}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.319}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 38.4}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 39.5}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 39.8}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 6.55}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.00032}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.69}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.88}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.62}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.22}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.93}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 27.3}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 53400}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 23800}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 39.9}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 81.8}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.481}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.64}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 343}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 39.1}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.238}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.076}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.258}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.56}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.271}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.28}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.318}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.37}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.84}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Diclofop", "categories": ["soil", "agricultural"], "amount": 0.57}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.467}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 0.887}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.19}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 124}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.543}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 12.8}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.01}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.228}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 3.68}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 444}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1580}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 271}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 47.9}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.936}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 674}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 28.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 183}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 2450}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 3580}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 9.36}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.32}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.43}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.95}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.16}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5950}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 4.85}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 187}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 208}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 4.91}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 1.69}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1.14}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 0.981}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.07}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.387}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.955}, {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1380}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.65}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.71}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": -6.8}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": -6.64}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": -19.7}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.55e-07}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.000514}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 21.6}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.182}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.4}, {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", "categories": ["natural resource", "in ground"], "amount": 175}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.000128}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 3.64}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 4.55}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.461}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.474}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.348}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.481}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.274}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.258}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 0.488}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 12}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 749}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2400}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 605}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 201}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 4450}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3330}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 52.2}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 234}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.46}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 595}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 1810}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3970}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 8.62}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 16}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.61}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.89}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 8.44}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.02}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.46}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 202}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 5130}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.01}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.6}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.00026}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.00138}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 9.45}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.568}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.000231}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.000742}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 9.56}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.959}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 9.57}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.61}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.61}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.6}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.176}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 53.3}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 5.91}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 39.7}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 4.83}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 25.4}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.56}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.643}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.6}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.000128}, {"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", "categories": ["natural resource", "in ground"], "amount": 737}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.13}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.232}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 9.49}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.07}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.214}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.983}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 7.71e-05}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.93e-06}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 13100000}, {"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1160}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 0.643}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 2.47}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": -8.45}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 7480}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.182}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 247}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 16.3}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 5240000}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.273}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.672}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 0.00385}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 635}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 39.3}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 0.346}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.76}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.454}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 0.496}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 0.00103}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.0008990000000000001}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98}, {"name": "1-Pentene", "categories": ["air"], "amount": 2.98}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.29}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 9.29}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.82}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.82}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.26}, {"name": "2-Propanol", "categories": ["air"], "amount": 9.26}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.17}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.17}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.85}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.749}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.749}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 1.54}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54}, {"name": "Acetone", "categories": ["air"], "amount": 1.54}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.36}, {"name": "Acrolein", "categories": ["air"], "amount": 2.36}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -43.4}, {"name": "Ammonia", "categories": ["air"], "amount": -43.4}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 38.4}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 38.4}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.5}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 39.5}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.5}, {"name": "Benzene", "categories": ["air"], "amount": 39.5}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.8}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 39.8}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62}, {"name": "Butadiene", "categories": ["air"], "amount": 2.62}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.22}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22}, {"name": "Butane", "categories": ["air"], "amount": 2.22}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.93}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 9.93}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.93}, {"name": "Butanol", "categories": ["air"], "amount": 9.93}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.3}, {"name": "Cadmium II", "categories": ["air"], "amount": 27.3}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 0.288}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.08}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.0109}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64}, {"name": "Chloroform", "categories": ["air"], "amount": 4.64}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 343}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 343}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 343}, {"name": "Chromium III", "categories": ["air"], "amount": 343}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.56}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.64}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1.5}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5}, {"name": "Ethane", "categories": ["air"], "amount": 1.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 444}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 444}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1580}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1580}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 271}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 271}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 47.9}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 47.9}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.936}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.936}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 674}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 674}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 28.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 183}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 183}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2450}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 2450}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 3580}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1060}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1060}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.36}, {"name": "Ethanol", "categories": ["air"], "amount": 9.36}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.32}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.43}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.95}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.95}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.16}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 9.16}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Ethyne", "categories": ["air"], "amount": 1.84}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.07}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.387}, {"name": "Formic acid", "categories": ["air"], "amount": 0.387}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.65}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 2.65}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.65}, {"name": "Heptane", "categories": ["air"], "amount": 2.65}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.71}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71}, {"name": "Hexane", "categories": ["air"], "amount": 2.71}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": -6.8}, {"name": "Hydrochloric acid", "categories": ["air", "low population density, long-term"], "amount": -6.8}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -6.8}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -6.64}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": -6.64}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -19.7}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": -19.7}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-07}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.55e-07}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000514}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.000514}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.57e-07}, {"name": "Krypton-85", "categories": ["air"], "amount": 2.57e-07}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Lead-210", "categories": ["air"], "amount": 0.000128}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 8.21}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 12}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 749}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 749}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2400}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2400}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 605}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 605}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 201}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 201}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4450}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 4450}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3330}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3330}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 52.2}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 52.2}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 234}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 234}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Methane, fossil", "categories": ["air"], "amount": 8.21}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.46}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 595}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 595}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 1810}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1550}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3970}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3970}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 8.62}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62}, {"name": "Methanol", "categories": ["air"], "amount": 8.62}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.61}, {"name": "Methyl acetate", "categories": ["air"], "amount": 8.61}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.89}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.89}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.44}, {"name": "Methyl formate", "categories": ["air"], "amount": 8.44}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.46}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "m-Xylene", "categories": ["air"], "amount": 40.2}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5130}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 5130}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.01}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 9.01}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.7}, {"name": "o-Xylene", "categories": ["air"], "amount": 39.7}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.83}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 4.83}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.56}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.56}, {"name": "Pentane", "categories": ["air"], "amount": 2.56}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.000128}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.13}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 2.13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.13}, {"name": "Propanal", "categories": ["air"], "amount": 2.13}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.96}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Propane", "categories": ["air"], "amount": 1.96}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 9.49}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49}, {"name": "Propanol", "categories": ["air"], "amount": 9.49}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.07}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.07}, {"name": "Propene", "categories": ["air"], "amount": 3.07}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.983}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.983}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.71e-05}, {"name": "Radium-226", "categories": ["air"], "amount": 7.71e-05}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.93e-06}, {"name": "Radon-222", "categories": ["air"], "amount": 1.93e-06}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 2.47}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47}, {"name": "Styrene", "categories": ["air"], "amount": 2.47}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -8.45}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": -8.45}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7480}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 7480}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.64}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00385}, {"name": "Thorium-230", "categories": ["air"], "amount": 0.00385}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.3}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 39.3}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.3}, {"name": "Toluene", "categories": ["air"], "amount": 39.3}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00103}, {"name": "Uranium-234", "categories": ["air"], "amount": 0.00103}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0008990000000000001}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.0008990000000000001}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-, long-term"], "amount": 0.00032}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.00032}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 0.00032}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 23800}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 23800}, {"name": "Cadmium II", "categories": ["water"], "amount": 23800}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 395}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 395}, {"name": "Mercury II", "categories": ["water"], "amount": 395}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.00545}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.00218}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.00218}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 0.0414}, {"name": "Phosphorus", "categories": ["water"], "amount": 0.0414}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 3.72}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 4.89}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 22.1}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.217}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.396}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Furathiocarb", "categories": ["soil", "agricultural"], "amount": 7.63}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 4.05}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.5454}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.56}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 0.541}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 8.21}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.288}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 8.21}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.288}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.288}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.288}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 8.21}, {"name": "Sulfur oxides", "categories": ["air"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -8.45}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": -8.45}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 0.288}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 0.288}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.35}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 9.35}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.18}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 0.288}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 205}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.461}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.204}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 0.973}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.43}, {"name": "Nitric oxide", "categories": ["air"], "amount": -26.4}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.239}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 0.471}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 1.04}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.349}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.28}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 1.14}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 1.3}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 197}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.575}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 6.76}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 2.39}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.344}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 4.25}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 13.6}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.33}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.43}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.43}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 65.4}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 0.834}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 4.28}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.95}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 9.24}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 41.8}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 10}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 53400}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 5.09}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 78200}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 7.45}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 49.1}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 26200}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 8730}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 40300}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 9.09}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 81.8}, {"name": "Dysprosium", "categories": ["natural resource", "in ground"], "amount": 1500}, {"name": "Erbium", "categories": ["natural resource", "in ground"], "amount": 2280}, {"name": "Europium", "categories": ["natural resource", "in ground"], "amount": 5950}, {"name": "Fluorine", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Gadolinium", "categories": ["natural resource", "in ground"], "amount": 1380}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 3270}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 903}, {"name": "Holmium", "categories": ["natural resource", "in ground"], "amount": 6550}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 105000}, {"name": "Iridium", "categories": ["natural resource", "in ground"], "amount": 238000000}, {"name": "Lanthanum", "categories": ["natural resource", "in ground"], "amount": 175}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 4.55}, {"name": "Lutetium", "categories": ["natural resource", "in ground"], "amount": 16400}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 3490}, {"name": "Neodymium", "categories": ["natural resource", "in ground"], "amount": 202}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 436}, {"name": "Osmium", "categories": ["natural resource", "in ground"], "amount": 105000000}, {"name": "Praseodymium", "categories": ["natural resource", "in ground"], "amount": 737}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 13100000}, {"name": "Ruthenium", "categories": ["natural resource", "in ground"], "amount": 175000000}, {"name": "Samarium", "categories": ["natural resource", "in ground"], "amount": 1160}, {"name": "Scandium", "categories": ["natural resource", "in ground"], "amount": 374}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 45.5}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 5240000}, {"name": "Terbium", "categories": ["natural resource", "in ground"], "amount": 8180}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Thorium", "categories": ["natural resource", "in ground"], "amount": 1870}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 5240}, {"name": "Thulium", "categories": ["natural resource", "in ground"], "amount": 15900}, {"name": "Ytterbium", "categories": ["natural resource", "in ground"], "amount": 2380}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 238}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 205}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 489}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 308}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.181}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 39.1}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.909}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 27.3}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 8730000}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 9880000}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 291000000}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 124}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 2910000}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 131}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 635}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Cupric hydroxide", "categories": ["soil", "agricultural"], "amount": 85.6}, {"name": "Tetraconazole", "categories": ["soil", "agricultural"], "amount": 1.43}, {"name": "Ethylene", "categories": ["air"], "amount": 3}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 709}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": -6.8}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 2780}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2780}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1910}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.192}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2780}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1910}, {"name": "Butene", "categories": ["air"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.05}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 3.05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Arsenic ion", "categories": ["air"], "amount": 325}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 9.01}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.324}, {"name": "Arsenic ion", "categories": ["water"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 7300}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 7300}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 78.3}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 0.973}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.318}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 29.3}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4.89}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 4.91}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.4}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.55}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 0.224}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 4.05}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 78.3}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 0.526}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.526}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.856}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.64}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 1.79}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.672}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.214}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.05}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 18.8}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.192}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.05}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.56875}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.714}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.714}, {"name": "Fluorine, 4.5% in apatite, 3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Fluorine, 4.5% in apatite, 1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.45}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 76.7}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 76.7}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -26.4}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": -26.4}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.56875}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.727}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 232}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 232}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "climate change", "climate change"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0001005}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00015779}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.00090452}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.040201}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.1608}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.022111}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.0037186}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.074372}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.0036181}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.019095}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.99497}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.809}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.11055}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.0001005}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.039196}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.27136}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.054271}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1.6382}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.00030151}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.52261}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.0065327}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.017085}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00070352}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00050251}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00070352}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.058291}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.89447}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.1608}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 1.005}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 3.2563}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001005}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0001005}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001005}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 0.0001005}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00015779}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00015779}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00015779}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.00015779}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00090452}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.00090452}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00090452}, {"name": "Chloroform", "categories": ["air"], "amount": 0.00090452}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.040201}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.040201}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.040201}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.040201}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1608}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.1608}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1608}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.1608}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.27136}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022111}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.022111}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022111}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.022111}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037186}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 0.0037186}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0037186}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.0037186}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.074372}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.074372}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.074372}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.074372}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036181}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.0036181}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036181}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.0036181}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.019095}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.019095}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.019095}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.019095}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.99497}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.99497}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.99497}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.99497}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.809}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 1.809}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.809}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.809}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11055}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.11055}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11055}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.11055}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00070352}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00070352}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00070352}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.00070352}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001005}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.0001005}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001005}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.0001005}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.039196}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.039196}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.039196}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.039196}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27136}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.27136}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27136}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.27136}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.054271}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.054271}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.054271}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.054271}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6382}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 1.6382}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6382}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1.6382}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00030151}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.00030151}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00030151}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.00030151}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.52261}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.52261}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.52261}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.52261}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0065327}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.0065327}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0065327}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.0065327}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017085}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.017085}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017085}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.017085}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00070352}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00070352}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00070352}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.00070352}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00050251}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.00050251}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00050251}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00050251}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.058291}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.058291}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.058291}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.058291}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.89447}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.89447}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.89447}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.89447}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1608}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 0.1608}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1608}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.1608}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.005}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 1.005}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.005}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 1.005}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2563}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 3.2563}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2563}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 3.2563}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 0.0001005}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.0001005}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001005}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001005}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0001005}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.87437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.87437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.87437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.87437}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.27136}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27136}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27136}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.87437}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.27136}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.015678}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015678}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.015678}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.015678}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.015678}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "climate change", "total"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0001005}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00015779}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.00090452}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.040201}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.1608}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.022111}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.0037186}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.074372}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.0036181}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.019095}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.99497}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.809}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.11055}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.0001005}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.039196}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.27136}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.054271}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1.6382}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.00030151}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.52261}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.0065327}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.017085}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00070352}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00050251}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00070352}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.058291}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.89447}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.1608}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 1.005}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 3.2563}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001005}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0001005}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001005}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 0.0001005}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00015779}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00015779}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00015779}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.00015779}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00090452}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.00090452}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00090452}, {"name": "Chloroform", "categories": ["air"], "amount": 0.00090452}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.040201}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.040201}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.040201}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.040201}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0042211}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1608}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.1608}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1608}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.1608}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.27136}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022111}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.022111}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022111}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.022111}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037186}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 0.0037186}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0037186}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.0037186}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.074372}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.074372}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.074372}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.074372}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036181}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.0036181}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036181}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.0036181}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.019095}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.019095}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.019095}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.019095}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.99497}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.99497}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.99497}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.99497}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.809}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 1.809}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.809}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.809}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11055}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.11055}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11055}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.11055}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00070352}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00070352}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00070352}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.00070352}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001005}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.0001005}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001005}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.0001005}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.039196}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.039196}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.039196}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.039196}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27136}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.27136}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27136}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.27136}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.054271}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.054271}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.054271}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.054271}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6382}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 1.6382}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6382}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1.6382}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00030151}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.00030151}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00030151}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.00030151}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.52261}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.52261}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.52261}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.52261}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0065327}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.0065327}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0065327}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.0065327}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017085}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.017085}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017085}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.017085}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00070352}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00070352}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00070352}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.00070352}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00050251}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.00050251}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00050251}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00050251}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.058291}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.058291}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.058291}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.058291}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.89447}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.89447}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.89447}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.89447}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1608}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 0.1608}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1608}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.1608}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.005}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 1.005}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.005}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 1.005}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2563}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 3.2563}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2563}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 3.2563}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 0.0001005}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.0001005}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001005}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001005}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0001005}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.87437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.87437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.87437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.87437}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.27136}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27136}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27136}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.87437}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.27136}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.015678}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015678}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.015678}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.015678}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.015678}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "ecosystem quality", "aquatic ecotoxicity"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 8.0085e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.9351e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 2.3083e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.6403e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.4229e-08}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 1.5008e-10}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 7.3426e-06}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2.7622e-10}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 3.3033e-06}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 2.8409e-06}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 0.00038132}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.003553}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 0.001808}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 0.00017757}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.4297e-08}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.0010865}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0852e-14}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.0037402}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 0.00027003}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3.008e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.1558e-05}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.5789e-05}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.1584e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 1.4066e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 8.939e-11}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.0591e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.0154e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.9129e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 9.1442e-05}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.0626e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 1.6831e-06}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00012984}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 9.9002e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.3302e-12}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.3641e-11}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0015668}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.0182e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.703e-05}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.00059259}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.094e-06}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 7.9189e-05}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.00016817}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 7.9517e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 9.2654e-09}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 3.2414e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 6.1536e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.00024571}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 4.0334e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 0.0019835}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 0.010777}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.00011954}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 9.7757e-06}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 1.5334e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 3.5158e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 9.7567e-07}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 6.8414e-05}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.5039e-05}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 4.7323e-13}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.0049896}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.2091e-05}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 8.5648e-07}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.7736e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 8.0319e-06}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1.2839e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.4602e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 7.115e-06}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 4.1991e-05}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.0956e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.00024365}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 1.0884e-06}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.9732e-09}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.0046077}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 0.0014421}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.00012948}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.2527e-05}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.0258e-06}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7738e-08}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 8.3885e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 2.5263e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.0763e-08}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 8.3045e-10}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.3258e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2.818e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 7.6945e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 9.8962e-09}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.8346e-10}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 5.5096e-09}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 7.0727e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 2.637e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 4.793e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 6.7852e-12}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.9872e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.4669e-09}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.7377e-10}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 6.0845e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 1.493e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.00010835}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 1.6947e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.00012209}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.7842e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.798e-05}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 0.00093343}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.00036819}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.4544e-06}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 1.1155e-05}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 8.8786e-06}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 2.1013e-05}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 5.743e-06}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.8584e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.1055e-09}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 4.5951e-06}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 5.9077e-05}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 3.1077e-14}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.2921e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.2121e-05}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 1.2183e-05}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 6.6326e-07}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 2.731e-05}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.00024}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.2311e-05}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.3331e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 0.00017598}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00014683}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.0020458}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 3.0784e-05}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.0039e-06}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 1.6617e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 9.2936e-06}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.2001e-06}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 4.7963e-07}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 2.1853e-06}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0028818}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.1905e-07}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 4.6036e-07}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 6.0125e-06}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.00028476}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 9.1053e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.4124e-07}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2.3737e-09}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2.692e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 3.4335e-11}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 1.3964e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 7.8539e-10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.0826e-09}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1.5136e-09}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 2.1425e-09}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.5908e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.1433e-08}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 1.4363e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.2435e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.7857e-10}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.7422e-08}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.0029173}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 5.129e-10}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.00025942}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 6.2966e-08}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.8868e-06}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 7.4661e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 7.6434e-05}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 3.451e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.00065491}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7067e-05}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 2.2662e-05}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 3.9525e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 1.328e-05}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 7.7604e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3.2121e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 2.2189e-05}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 5.8864e-05}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.8819e-11}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 2.3465e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.2153e-12}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 3.5811e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.135e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.9198e-05}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 2.7303e-06}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 2.4446e-05}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 0.00018133}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.00039845}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 4.1412e-06}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 6.8829e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.7906e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 2.0646e-06}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.2621e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.3019e-12}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.00012518}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 9.8238e-05}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3.6719e-07}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 1.0686e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.8876e-08}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 4.7729e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 7.7279e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.5706e-05}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.0017501}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.0488e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 2.3549e-05}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.7074e-10}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 4.2541e-05}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 1.6638e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.2268e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 0.00038016}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.3183e-07}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.6107e-05}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 4.7601e-06}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.0011308}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1.3741e-06}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.00031999}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.2249e-07}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.00069504}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.9687e-10}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 6.7956e-07}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 9.0261e-07}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2.794e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.1545e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.00015614}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 2.0458e-08}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.98e-06}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9835e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2683e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.5208e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.2566e-10}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.00074758}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9351e-07}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 5.9351e-07}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.9351e-07}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6403e-09}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.6403e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.6403e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4229e-08}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.4229e-08}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.4229e-08}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5008e-10}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 1.5008e-10}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 1.5008e-10}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7622e-10}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.7622e-10}, {"name": "Acetone", "categories": ["air"], "amount": 2.7622e-10}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3033e-06}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 3.3033e-06}, {"name": "Acrolein", "categories": ["air"], "amount": 3.3033e-06}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001808}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 0.001808}, {"name": "Aluminium III", "categories": ["air"], "amount": 0.001808}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4297e-08}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 1.4297e-08}, {"name": "Ammonia", "categories": ["air"], "amount": 1.4297e-08}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010865}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.0010865}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.0010865}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1558e-05}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 4.1558e-05}, {"name": "Barium II", "categories": ["air"], "amount": 4.1558e-05}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.939e-11}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 8.939e-11}, {"name": "Benzene", "categories": ["air"], "amount": 8.939e-11}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0591e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 4.0591e-10}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.0591e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0154e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 3.0154e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 3.0154e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9129e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.9129e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1.9129e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1442e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 9.1442e-05}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 9.1442e-05}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3302e-12}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 6.3302e-12}, {"name": "Butadiene", "categories": ["air"], "amount": 6.3302e-12}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3641e-11}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.3641e-11}, {"name": "Butane", "categories": ["air"], "amount": 2.3641e-11}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015668}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.0015668}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0015668}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.2654e-09}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 9.2654e-09}, {"name": "Chloroform", "categories": ["air"], "amount": 9.2654e-09}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00024571}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.00024571}, {"name": "Chromium III", "categories": ["air"], "amount": 0.00024571}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0019835}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 0.0019835}, {"name": "Cobalt II", "categories": ["air"], "amount": 0.0019835}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.010777}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 0.010777}, {"name": "Copper ion", "categories": ["air"], "amount": 0.010777}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9732e-09}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.9732e-09}, {"name": "Dimethylamine", "categories": ["air"], "amount": 2.9732e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0014421}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 0.0014421}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 0.0014421}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5263e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 2.5263e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 2.5263e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0763e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 2.0763e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.0763e-08}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3045e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 8.3045e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 8.3045e-10}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3258e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.3258e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.3258e-08}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 7.7704e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.818e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2.818e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2.818e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6945e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 7.6945e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 7.6945e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8962e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 9.8962e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 9.8962e-09}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8346e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2.8346e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.8346e-10}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.5096e-09}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 5.5096e-09}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 5.5096e-09}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.0727e-10}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 7.0727e-10}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 7.0727e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.637e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 2.637e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 2.637e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.793e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.793e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 4.793e-10}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7852e-12}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 6.7852e-12}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9872e-11}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 5.9872e-11}, {"name": "Chloroethylene", "categories": ["air"], "amount": 5.9872e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4669e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 4.4669e-09}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 4.4669e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7377e-10}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 5.7377e-10}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6947e-11}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 1.6947e-11}, {"name": "Ethyne", "categories": ["air"], "amount": 1.6947e-11}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1055e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.1055e-09}, {"name": "Formaldehyde", "categories": ["air"], "amount": 6.1055e-09}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1077e-14}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 3.1077e-14}, {"name": "Heptane", "categories": ["air"], "amount": 3.1077e-14}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2921e-13}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.2921e-13}, {"name": "Hexane", "categories": ["air"], "amount": 2.2921e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2121e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 3.2121e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.2121e-05}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014683}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.00014683}, {"name": "Lead II", "categories": ["air"], "amount": 0.00014683}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028818}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.0028818}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0028818}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4124e-07}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.4124e-07}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.4124e-07}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3737e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2.3737e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2.3737e-09}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.692e-09}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2.692e-09}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2.692e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4335e-11}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 3.4335e-11}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 3.4335e-11}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3964e-10}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 1.3964e-10}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 1.3964e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8539e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 7.8539e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 7.8539e-10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0826e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 3.0826e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.0826e-09}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5136e-09}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 1.5136e-09}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1.5136e-09}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-09}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 2.1425e-09}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 2.1425e-09}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5908e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2.5908e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.5908e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1433e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.1433e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.1433e-08}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4363e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 1.4363e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 1.4363e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2435e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1.2435e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.2435e-08}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7857e-10}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 3.7857e-10}, {"name": "Methanol", "categories": ["air"], "amount": 3.7857e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.129e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 5.129e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 5.129e-10}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4661e-10}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 7.4661e-10}, {"name": "m-Xylene", "categories": ["air"], "amount": 7.4661e-10}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00065491}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.00065491}, {"name": "Nickel II", "categories": ["air"], "amount": 0.00065491}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7604e-10}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 7.7604e-10}, {"name": "o-Xylene", "categories": ["air"], "amount": 7.7604e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2121e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 3.2121e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3.2121e-05}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8819e-11}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.8819e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.8819e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5811e-09}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.5811e-09}, {"name": "Phenol", "categories": ["air"], "amount": 3.5811e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.135e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.135e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 4.135e-05}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8829e-10}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 6.8829e-10}, {"name": "Propanal", "categories": ["air"], "amount": 6.8829e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7906e-11}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.7906e-11}, {"name": "Propane", "categories": ["air"], "amount": 1.7906e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3019e-12}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 1.3019e-12}, {"name": "Propene", "categories": ["air"], "amount": 1.3019e-12}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017501}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 0.0017501}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.0017501}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7074e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.7074e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.7074e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2268e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.2268e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.2268e-09}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9687e-10}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.9687e-10}, {"name": "Toluene", "categories": ["air"], "amount": 1.9687e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2566e-10}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.2566e-10}, {"name": "Xylene", "categories": ["air"], "amount": 2.2566e-10}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00074758}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.00074758}, {"name": "Zinc II", "categories": ["air"], "amount": 0.00074758}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 0.012813}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 0.012813}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 0.012813}, {"name": "Aluminium III", "categories": ["soil"], "amount": 0.012813}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.0077026}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.0077026}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.0077026}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.0077026}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.00029499}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.00029499}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.00029499}, {"name": "Barium II", "categories": ["soil"], "amount": 0.00029499}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.010677}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.010677}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.010677}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.010677}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.001645}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.001645}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.001645}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.001645}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.014062}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.014062}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.014062}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.014062}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.074913}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.074913}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.074913}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.074913}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 4.5951e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0009664}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0009664}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0009664}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0009664}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.057877}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.057877}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.057877}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.057877}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.004633}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.004633}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.004633}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.004633}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.012431}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.012431}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.012431}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.012431}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0051158}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.0051158}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.0051158}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.0051158}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.0005446}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.0005446}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 3.4018e-05}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.4018e-05}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.3772e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 8.3772e-07}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 7.4043e-07}, {"name": "Acetic acid", "categories": ["water"], "amount": 7.4043e-07}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.1599e-08}, {"name": "Acetone", "categories": ["water"], "amount": 3.1599e-08}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 0.013181}, {"name": "Aluminium III", "categories": ["water"], "amount": 0.013181}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.0077083}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.0077083}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 0.00029513}, {"name": "Barium II", "categories": ["water"], "amount": 0.00029513}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 3.9653e-06}, {"name": "Benzene", "categories": ["water"], "amount": 3.9653e-06}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.00011207}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.00011207}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.7782e-05}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.7782e-05}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 2.226e-07}, {"name": "Butyl acetate", "categories": ["water"], "amount": 2.226e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.010687}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.010687}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.3557e-05}, {"name": "Chloroform", "categories": ["water"], "amount": 1.3557e-05}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.0016604}, {"name": "Chromium III", "categories": ["water"], "amount": 0.0016604}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 0.014162}, {"name": "Cobalt II", "categories": ["water"], "amount": 0.014162}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 0.0753086147582}, {"name": "Copper ion", "categories": ["water"], "amount": 0.0753086147582}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1.6401e-06}, {"name": "Dimethylamine", "categories": ["water"], "amount": 1.6401e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.2901e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.2901e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.6839e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.6839e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.00041527}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.00041527}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 5.5935e-08}, {"name": "Ethanol", "categories": ["water"], "amount": 5.5935e-08}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 5.8306e-06}, {"name": "Ethylene", "categories": ["water"], "amount": 5.8306e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 5.3579e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 5.3579e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 7.8113e-05}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.8113e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.1408e-05}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.1408e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.3946e-06}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.3946e-06}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 2.2848e-05}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 2.2848e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 3.3548e-06}, {"name": "Hexane", "categories": ["water"], "amount": 3.3548e-06}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 0.00025329}, {"name": "Hydrazine", "categories": ["water"], "amount": 0.00025329}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0035468}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0035468}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.00096644}, {"name": "Lead II", "categories": ["water"], "amount": 0.00096644}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.057882}, {"name": "Mercury II", "categories": ["water"], "amount": 0.057882}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 3.7254e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 3.7254e-06}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "surface water"], "amount": 1.7159e-06}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water"], "amount": 1.7159e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.583e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.583e-05}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.7446e-08}, {"name": "Methanol", "categories": ["water"], "amount": 2.7446e-08}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 4.658e-05}, {"name": "m-Xylene", "categories": ["water"], "amount": 4.658e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.00466}, {"name": "Nickel II", "categories": ["water"], "amount": 0.00466}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.4991e-05}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.4991e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.0035468}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.0035468}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.258e-07}, {"name": "Phenol", "categories": ["water"], "amount": 6.258e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.00012479}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.00012479}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.00015576}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.00015576}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.3635e-06}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 2.3635e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 4.1561e-05}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 4.1561e-05}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.4848e-06}, {"name": "Propanal", "categories": ["water"], "amount": 1.4848e-06}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 3.3341e-06}, {"name": "Propene", "categories": ["water"], "amount": 3.3341e-06}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 0.012471}, {"name": "Selenium IV", "categories": ["water"], "amount": 0.012471}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.1849e-05}, {"name": "Styrene", "categories": ["water"], "amount": 1.1849e-05}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.5602e-06}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.5602e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.0919e-05}, {"name": "Toluene", "categories": ["water"], "amount": 1.0919e-05}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.6649e-09}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.6649e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.0189e-05}, {"name": "Xylene", "categories": ["water"], "amount": 1.0189e-05}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00514}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00514}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 3.2001e-05}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 8.3199e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 7.7704e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7704e-07}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 3.9514e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 7.7704e-07}, {"name": "Butene", "categories": ["water"], "amount": 9.7756e-06}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 9.7756e-06}, {"name": "Butene", "categories": ["air"], "amount": 4.9618e-12}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 4.9618e-12}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9618e-12}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.9618e-12}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.000201}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 2.5671e-08}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000201}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.000201}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.000201}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0014201}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0014201}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0014201}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0014201}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0014221}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0014221}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 4.031e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.547e-05}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2.2616e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 2.8309e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.3322e-05}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 7.4452e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4452e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 7.4452e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 7.4452e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.00014446}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.00014446}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.7133e-07}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "ecosystem quality", "land occupation"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 8.0305e-06}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 8.0305e-06}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 8.0305e-06}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 7.4465e-05}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 7.4465e-05}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 8.2495e-05}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 8.0305e-06}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 7.0085e-05}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 7.0085e-05}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "ecosystem quality", "terrestrial acidification & nutrification"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.0011365}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 7.5985e-05}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011365}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.0011365}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011365}, {"name": "Ammonia", "categories": ["air"], "amount": 0.0011365}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5985e-05}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 7.5985e-05}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5985e-05}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 7.5985e-05}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 6.0752e-05}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 6.0752e-05}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0752e-05}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 6.0752e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.00041701}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00041701}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.00041701}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00041701}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.00041701}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "ecosystem quality", "terrestrial ecotoxicity"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.8876e-05}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 6.8208e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.000214}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.3626e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.1087e-05}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.702e-08}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 0.00077259}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 7.9759e-09}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 5.1063e-05}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.00029563}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 0.13595}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.17077}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 0.072988}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 0.001034}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 5.6563e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.011625}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.9812e-08}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.0022932}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 0.14922}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.0011813}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.0002902}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0052167}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 3.9045e-05}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 4.5115e-05}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.7247e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.1841e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.9691e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.7242e-06}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1.3986e-05}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 6.8716e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 0.00014842}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00010597}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.0010614}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 9.0658e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 5.1555e-09}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.52613}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.01027}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.0069265}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.04945}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.0022099}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 0.020646}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.0052571}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.00010471}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.9934e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.0053725}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.00028722}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.22028}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.00044883}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 0.12212}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 0.68301}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0036821}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 0.0017767}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.0063614}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.0013154}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.00010668}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 5.8596e-05}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 0.0001268}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 2.1278e-07}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.0054069}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.00028418}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.7847e-05}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 2.1559e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 7.823e-05}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.01596}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.4999e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00073678}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 0.0053602}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 0.0013456}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.061976}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.00012188}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.5855e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.0031769}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 0.00014952}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.010214}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 0.00057699}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.0001546}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.9184e-06}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 1.6277e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.8942e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.3895e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1.3438e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.6379e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1.3349e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 3.5355e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.614e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.97e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 3.5748e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.5678e-07}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6.3527e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 7.6597e-09}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 4.2323e-09}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 8.6062e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2596e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4579e-08}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.00076496}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.00016479}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.0016334}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 7.7139e-09}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.00028176}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 0.00056881}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.00012569}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 0.012916}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0092599}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 0.00014887}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 0.0011824}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 0.0010989}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.0025173}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.001595}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 3.0025e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.4649e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.0023555}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.025557}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 7.7149e-13}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 9.1654e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 4.3922e-06}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 0.0039993}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.00072313}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 5.4721e-05}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.0095307}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.0039452}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 0.00048591}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 0.00056586}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.07538}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.014918}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.0020986}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.00065517}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.00022337}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.0092629}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 7.5292e-06}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 5.8085e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0028923}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 2.2161}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.00011568}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.00023469}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.002173}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0076356}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.011984}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.4996e-05}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 5.058e-07}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2.3404e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0692e-07}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 3.6807e-08}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 2.606e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.8649e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5.2985e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1.9348e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1.3691e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 6.2405e-07}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6.0427e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.5067e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.5796e-08}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 0.00014902}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.10337}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.3441e-08}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.017585}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.5669e-06}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 0.00022369}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.1551e-09}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 0.029504}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.2786e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.3247}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 0.0021128}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.016737}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.00097732}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.00015525}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 4.8353e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 4.3922e-06}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.011198}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 0.002383}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.2659e-05}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.1474e-09}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.7417e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 5.9829e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.9031e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.0174e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.005717}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.0010347}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.0045301}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 8.6529e-05}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.00071912}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.00015578}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.3882e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 9.5883e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.00021137}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.5617e-05}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.264e-10}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.00012358}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 0.00014278}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 0.00045015}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 5.1157e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 5.5494e-06}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 0.0016859}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.00058047}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 0.014252}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.00538}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.4726e-06}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.0010055}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.1631e-09}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 0.011237}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 0.0040554}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.02e-08}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 0.0025693}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 4.9519e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 0.00015954}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00044865}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.003793}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.00067945}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.034824}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.4811e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.13853}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 2.3994e-09}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.4907e-05}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 9.8832e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 0.0061144}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 1.1667e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.084938}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 3.4511e-05}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.1767e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 5.1886e-05}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.00033946}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.00026589}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9359e-10}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.58377}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8208e-07}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 6.8208e-07}, {"name": "Acenaphthene", "categories": ["air"], "amount": 6.8208e-07}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3626e-08}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 4.3626e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.3626e-08}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1087e-05}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.1087e-05}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.1087e-05}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.702e-08}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 8.702e-08}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 8.702e-08}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9759e-09}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 7.9759e-09}, {"name": "Acetone", "categories": ["air"], "amount": 7.9759e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1063e-05}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.1063e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 5.1063e-05}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072988}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 0.072988}, {"name": "Aluminium III", "categories": ["air"], "amount": 0.072988}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6563e-06}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 5.6563e-06}, {"name": "Ammonia", "categories": ["air"], "amount": 5.6563e-06}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011625}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.011625}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.011625}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002902}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.0002902}, {"name": "Barium II", "categories": ["air"], "amount": 0.0002902}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7247e-09}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.7247e-09}, {"name": "Benzene", "categories": ["air"], "amount": 2.7247e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1841e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.1841e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.1841e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9691e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.9691e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.9691e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7242e-06}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 9.7242e-06}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 9.7242e-06}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3986e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1.3986e-05}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1.3986e-05}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0658e-10}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 9.0658e-10}, {"name": "Butadiene", "categories": ["air"], "amount": 9.0658e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1555e-09}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 5.1555e-09}, {"name": "Butane", "categories": ["air"], "amount": 5.1555e-09}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.52613}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.52613}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.52613}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9934e-07}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 3.9934e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 3.9934e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22028}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.22028}, {"name": "Chromium III", "categories": ["air"], "amount": 0.22028}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12212}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 0.12212}, {"name": "Cobalt II", "categories": ["air"], "amount": 0.12212}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68301}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 0.68301}, {"name": "Copper ion", "categories": ["air"], "amount": 0.68301}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.5855e-07}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 5.5855e-07}, {"name": "Dimethylamine", "categories": ["air"], "amount": 5.5855e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014952}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 0.00014952}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 0.00014952}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8942e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4.8942e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.8942e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3895e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 7.3895e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.3895e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3438e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1.3438e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1.3438e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6379e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 7.6379e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 7.6379e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 7.0379e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3349e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 1.3349e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1.3349e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5355e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 3.5355e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 3.5355e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.614e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.614e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.614e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.97e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2.97e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.97e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5748e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 3.5748e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.5748e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5678e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1.5678e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.5678e-07}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3527e-07}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6.3527e-07}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6.3527e-07}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6597e-09}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 7.6597e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 7.6597e-09}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2323e-09}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 4.2323e-09}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6062e-09}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.6062e-09}, {"name": "Chloroethylene", "categories": ["air"], "amount": 8.6062e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2596e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.2596e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.2596e-07}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4579e-08}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.4579e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7139e-09}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 7.7139e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 7.7139e-09}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4649e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.4649e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.4649e-06}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7149e-13}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 7.7149e-13}, {"name": "Heptane", "categories": ["air"], "amount": 7.7149e-13}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1654e-12}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 9.1654e-12}, {"name": "Hexane", "categories": ["air"], "amount": 9.1654e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3922e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.3922e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 4.3922e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07538}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.07538}, {"name": "Lead II", "categories": ["air"], "amount": 0.07538}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2161}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2.2161}, {"name": "Mercury II", "categories": ["air"], "amount": 2.2161}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4996e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.4996e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.4996e-05}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.058e-07}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 5.058e-07}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 5.058e-07}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3404e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2.3404e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2.3404e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0692e-07}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1.0692e-07}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0692e-07}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6807e-08}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 3.6807e-08}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 3.6807e-08}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.606e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 2.606e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 2.606e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8649e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.8649e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.8649e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2985e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 5.2985e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5.2985e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9348e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 1.9348e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1.9348e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3691e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 1.3691e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1.3691e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2405e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 6.2405e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 6.2405e-07}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0427e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 6.0427e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6.0427e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5067e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1.5067e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.5067e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5796e-08}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 3.5796e-08}, {"name": "Methanol", "categories": ["air"], "amount": 3.5796e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3441e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 1.3441e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.3441e-08}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1551e-09}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 5.1551e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 5.1551e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3247}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.3247}, {"name": "Nickel II", "categories": ["air"], "amount": 0.3247}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8353e-09}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 4.8353e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 4.8353e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3922e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 4.3922e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 4.3922e-06}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1474e-09}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.1474e-09}, {"name": "Pentane", "categories": ["air"], "amount": 2.1474e-09}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9031e-06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1.9031e-06}, {"name": "Phenol", "categories": ["air"], "amount": 1.9031e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.0174e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 7.0174e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 7.0174e-06}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3882e-08}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.3882e-08}, {"name": "Propanal", "categories": ["air"], "amount": 1.3882e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5883e-09}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 9.5883e-09}, {"name": "Propane", "categories": ["air"], "amount": 9.5883e-09}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.264e-10}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.264e-10}, {"name": "Propene", "categories": ["air"], "amount": 3.264e-10}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00538}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 0.00538}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.00538}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1631e-09}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.1631e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.1631e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.02e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.02e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3994e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 2.3994e-09}, {"name": "Toluene", "categories": ["air"], "amount": 2.3994e-09}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.9359e-10}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.9359e-10}, {"name": "Xylene", "categories": ["air"], "amount": 8.9359e-10}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.58377}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.58377}, {"name": "Zinc II", "categories": ["air"], "amount": 0.58377}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 0.43756}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 0.43756}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 0.43756}, {"name": "Aluminium III", "categories": ["soil"], "amount": 0.43756}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.067289}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.067289}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.067289}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.067289}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.0016781}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.0016781}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.0016781}, {"name": "Barium II", "categories": ["soil"], "amount": 0.0016781}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 3.0475}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 3.0475}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 3.0475}, {"name": "Cadmium II", "categories": ["soil"], "amount": 3.0475}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.2964}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.2964}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.2964}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.2964}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.71639}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.71639}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.71639}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.71639}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.9959}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 3.9959}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 3.9959}, {"name": "Copper ion", "categories": ["soil"], "amount": 3.9959}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.0023555}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.43496}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.43496}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.43496}, {"name": "Lead II", "categories": ["soil"], "amount": 0.43496}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 15.317}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 15.317}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 15.317}, {"name": "Mercury II", "categories": ["soil"], "amount": 15.317}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.9026}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.9026}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.9026}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.9026}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.031343}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.031343}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.031343}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.031343}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 3.4118}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 3.4118}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 3.4118}, {"name": "Zinc II", "categories": ["soil"], "amount": 3.4118}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.8877e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.8877e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 5.8912e-10}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 5.8912e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.9395e-09}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.9395e-09}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 2.5128e-11}, {"name": "Acetic acid", "categories": ["water"], "amount": 2.5128e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 4.709e-10}, {"name": "Acetone", "categories": ["water"], "amount": 4.709e-10}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.3114e-14}, {"name": "Aluminium III", "categories": ["water"], "amount": 1.3114e-14}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 7.0456e-16}, {"name": "Antimony ion", "categories": ["water"], "amount": 7.0456e-16}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 8.8183e-17}, {"name": "Barium II", "categories": ["water"], "amount": 8.8183e-17}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 3.9066e-10}, {"name": "Benzene", "categories": ["water"], "amount": 3.9066e-10}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.1422e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.1422e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1.046e-09}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 1.046e-09}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.2024e-09}, {"name": "Butyl acetate", "categories": ["water"], "amount": 1.2024e-09}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 8.7907e-16}, {"name": "Cadmium II", "categories": ["water"], "amount": 8.7907e-16}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.341e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.341e-07}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 6.6805e-16}, {"name": "Cobalt II", "categories": ["water"], "amount": 6.6805e-16}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 3.391e-09}, {"name": "Dimethylamine", "categories": ["water"], "amount": 3.391e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 5.7544e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 5.7544e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.7478e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 2.7478e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.2913e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.2913e-06}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 1.3621e-10}, {"name": "Ethanol", "categories": ["water"], "amount": 1.3621e-10}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 1.3296e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.3296e-09}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 3.1323e-09}, {"name": "Chloroethylene", "categories": ["water"], "amount": 3.1323e-09}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 3.8057e-08}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.8057e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.6081e-09}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 4.6081e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.4297e-09}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.4297e-09}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 3.9404e-08}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 3.9404e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 3.1181e-12}, {"name": "Hexane", "categories": ["water"], "amount": 3.1181e-12}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.5951e-07}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.5951e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.4255e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.4255e-07}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.999e-14}, {"name": "Mercury II", "categories": ["water"], "amount": 3.999e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.746e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.746e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "surface water"], "amount": 4.5236e-08}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water"], "amount": 4.5236e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.5571e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3.5571e-07}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.8261e-10}, {"name": "Methanol", "categories": ["water"], "amount": 3.8261e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.6928e-09}, {"name": "m-Xylene", "categories": ["water"], "amount": 1.6928e-09}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.5865e-09}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.5865e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.4255e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.4255e-07}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 4.9953e-10}, {"name": "Phenol", "categories": ["water"], "amount": 4.9953e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 2.4769e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.4769e-09}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 3.5976e-09}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.5976e-09}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.7345e-09}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 2.7345e-09}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.1498e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.1498e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 5.845e-10}, {"name": "Propanal", "categories": ["water"], "amount": 5.845e-10}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 7.8363e-11}, {"name": "Propene", "categories": ["water"], "amount": 7.8363e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.5455e-10}, {"name": "Styrene", "categories": ["water"], "amount": 1.5455e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 2.0397e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.0397e-08}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.1029e-10}, {"name": "Toluene", "categories": ["water"], "amount": 8.1029e-10}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 2.2214e-14}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 2.2214e-14}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.4383e-10}, {"name": "Xylene", "categories": ["water"], "amount": 2.4383e-10}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.00058656}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 8.5709e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 7.0379e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.0379e-05}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.92e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 7.0379e-05}, {"name": "Butene", "categories": ["water"], "amount": 5.7874e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 5.7874e-11}, {"name": "Butene", "categories": ["air"], "amount": 6.1126e-10}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 6.1126e-10}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1126e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.1126e-10}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.24159}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 8.4991e-06}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24159}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.24159}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.24159}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.4032}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.4032}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.4032}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.4032}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.00036786}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.001507}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.6526e-05}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.6751e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 0.00040141}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.6765e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6765e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 3.6765e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.6765e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.0902e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.0902e-07}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.00020812}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "ecosystem quality", "total"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.967685e-05}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.27559e-06}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.0002163083}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.52663e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.1101229e-05}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.717008e-08}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 0.0007799326}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.25212e-09}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 5.43663e-05}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.0002984709}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 0.13633132}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.174323}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 0.074796}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 0.00121157}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.001142170597}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.0127115}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.9812010852e-08}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.0060334}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 0.14949003}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.001184308}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.000331758}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.005232489}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 3.926084e-05}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 4.65216e-05}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.81409e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.59001e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.9845e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.88532e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000105428}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 6.97786e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 0.0001501031}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00023581}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.0010713002}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 9.129102e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 5.179141e-09}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.5276968}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.0102740182}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.00695353}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.05004259}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.002213994}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 0.020725189}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.00542527}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.000104789517}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.086054e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.005404914}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.0002933736}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.22052571}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.0004528634}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 0.1241035}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 0.693787}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.00380164}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 0.0017864757}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.006376734}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.001350558}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.00010765567}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 0.00012701}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 0.000141839}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 2.1278047323e-07}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.0103965}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.000296271}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.870348e-05}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 2.173636e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 8.62619e-05}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.015972839}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.574502e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.000743895}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 0.005402191}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 0.0013466956}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.06221965}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.0001229684}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.615232e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.0077846}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 0.00159162}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.01034348}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 0.000589517}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.0001556258}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.986138e-06}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 1.711585e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.919463e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.59713e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1.34463045e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.07048e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1.36308e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 3.5431945e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.712962e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.9728346e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 3.629896e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.5748727e-07}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6.37907e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.139e-09}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 4.2390852e-09}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 8.666072e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.304269e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.515277e-08}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.00076556845}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.000166283}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.00174175}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 7.730847e-09}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.00040385}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 0.0005755942}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.00016367}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 0.01384943}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.00962809}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 0.0001503244}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 0.001193555}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 0.0011077786}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.002538313}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.001600743}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 3.031084e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.4710055e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.0023600951}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.025616077}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 8.02567e-13}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 9.39461e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.65132e-05}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 0.004011483}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.00072379326}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 8.2031e-05}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.0097707}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.003977511}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 0.0004872431}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 0.00074184}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.07552683}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.0169638}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.002129384}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.0006561739}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.00022353617}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.0092721936}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 8.7293e-06}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 6.28813e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0028944853}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 2.2189818}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.00011589905}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.00023515036}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.0021790125}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.00792036}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.0119931053}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.523724e-05}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 5.081737e-07}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2.343092e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.06954335e-07}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 3.694664e-08}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 2.60678539e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.895726e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5.313636e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1.956225e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1.36935908e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 6.35483e-07}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6.04284363e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.519135e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.617457e-08}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 0.000149057422}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.1062873}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.39539e-08}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.01784442}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.629866e-06}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 0.0002255768}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.90171e-09}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 0.029580434}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.282051e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.32535491}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 0.002129867}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 8.0305e-06}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 8.0305e-06}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 8.0305e-06}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 7.4465e-05}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 7.4465e-05}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 8.2495e-05}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 8.0305e-06}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.1324e-05}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 7.0085e-05}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 8.3955e-05}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 7.0085e-05}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.016759662}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.0009812725}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.00016853}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.61134e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3.65132e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.011220189}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 0.002441864}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.38065e-05}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.176219e-09}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.97635e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 5.9841153e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.9066811e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.83674e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.005756198}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.0010374303}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.004554546}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 0.000267859}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.00111757}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.0001599212}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.457029e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 9.606206e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.0002134346}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.604321e-05}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.277019e-10}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.00024876}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 0.000241018}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 0.00045051719}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 5.22256e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 5.578276e-06}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 0.0016906729}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.000657749}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 0.014287706}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.0071301}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.69606e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.001029049}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.33384e-09}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 0.011279541}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 0.004072038}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 7.5985e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.14268e-08}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 0.00294946}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.005083e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 0.000195647}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.0004534101}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.0049238}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.0006808241}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.03514399}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.513349e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.13922504}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 2.59627e-09}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.558656e-05}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 9.973461e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 0.00614234}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.3212e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.08509414}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 3.4531458e-05}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.8747e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 5.238435e-05}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.0003407283}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.0002684108}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.11925e-09}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.58451758}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27559e-06}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.27559e-06}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.27559e-06}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.52663e-08}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 4.52663e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.52663e-08}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1101229e-05}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.1101229e-05}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.1101229e-05}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.717008e-08}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 8.717008e-08}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 8.717008e-08}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.25212e-09}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 8.25212e-09}, {"name": "Acetone", "categories": ["air"], "amount": 8.25212e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43663e-05}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.43663e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 5.43663e-05}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.074796}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 0.074796}, {"name": "Aluminium III", "categories": ["air"], "amount": 0.074796}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001142170597}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.001142170597}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011365}, {"name": "Ammonia", "categories": ["air"], "amount": 0.001142170597}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0127115}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.0127115}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.0127115}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000331758}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.000331758}, {"name": "Barium II", "categories": ["air"], "amount": 0.000331758}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.81409e-09}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.81409e-09}, {"name": "Benzene", "categories": ["air"], "amount": 2.81409e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59001e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.59001e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.59001e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9845e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.9845e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 4.9845e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.88532e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.88532e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.88532e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000105428}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.000105428}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000105428}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.129102e-10}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 9.129102e-10}, {"name": "Butadiene", "categories": ["air"], "amount": 9.129102e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.179141e-09}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 5.179141e-09}, {"name": "Butane", "categories": ["air"], "amount": 5.179141e-09}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5276968}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.5276968}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.5276968}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.086054e-07}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.086054e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 4.086054e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22052571}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.22052571}, {"name": "Chromium III", "categories": ["air"], "amount": 0.22052571}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1241035}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 0.1241035}, {"name": "Cobalt II", "categories": ["air"], "amount": 0.1241035}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.693787}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 0.693787}, {"name": "Copper ion", "categories": ["air"], "amount": 0.693787}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.615232e-07}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 5.615232e-07}, {"name": "Dimethylamine", "categories": ["air"], "amount": 5.615232e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00159162}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 0.00159162}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 0.00159162}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.919463e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4.919463e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.919463e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.59713e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 7.59713e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.59713e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34463045e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1.34463045e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1.34463045e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.07048e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 8.07048e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 8.07048e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 7.115604e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36308e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 1.36308e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1.36308e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5431945e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 3.5431945e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 3.5431945e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.712962e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.712962e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.712962e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9728346e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2.9728346e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.9728346e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.629896e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 3.629896e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.629896e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5748727e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1.5748727e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.5748727e-07}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.37907e-07}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6.37907e-07}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6.37907e-07}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.139e-09}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 8.139e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 8.139e-09}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2390852e-09}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 4.2390852e-09}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.666072e-09}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.666072e-09}, {"name": "Chloroethylene", "categories": ["air"], "amount": 8.666072e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.304269e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.304269e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.304269e-07}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.515277e-08}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.515277e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.730847e-09}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 7.730847e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 7.730847e-09}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4710055e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.4710055e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.4710055e-06}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.02567e-13}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 8.02567e-13}, {"name": "Heptane", "categories": ["air"], "amount": 8.02567e-13}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.39461e-12}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 9.39461e-12}, {"name": "Hexane", "categories": ["air"], "amount": 9.39461e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.65132e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 3.65132e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.65132e-05}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07552683}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.07552683}, {"name": "Lead II", "categories": ["air"], "amount": 0.07552683}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2189818}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2.2189818}, {"name": "Mercury II", "categories": ["air"], "amount": 2.2189818}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.523724e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.523724e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.523724e-05}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.081737e-07}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 5.081737e-07}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 5.081737e-07}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.343092e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2.343092e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2.343092e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06954335e-07}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1.06954335e-07}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.06954335e-07}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.694664e-08}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 3.694664e-08}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 3.694664e-08}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.60678539e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 2.60678539e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 2.60678539e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.895726e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.895726e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.895726e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.313636e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 5.313636e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5.313636e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.956225e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 1.956225e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1.956225e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36935908e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 1.36935908e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1.36935908e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.35483e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 6.35483e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 6.35483e-07}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04284363e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 6.04284363e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6.04284363e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.519135e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1.519135e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.519135e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.617457e-08}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 3.617457e-08}, {"name": "Methanol", "categories": ["air"], "amount": 3.617457e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39539e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 1.39539e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.39539e-08}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.90171e-09}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 5.90171e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 5.90171e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.32535491}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.32535491}, {"name": "Nickel II", "categories": ["air"], "amount": 0.32535491}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.61134e-09}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 5.61134e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.61134e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.65132e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 3.65132e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3.65132e-05}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.176219e-09}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.176219e-09}, {"name": "Pentane", "categories": ["air"], "amount": 2.176219e-09}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9066811e-06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1.9066811e-06}, {"name": "Phenol", "categories": ["air"], "amount": 1.9066811e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83674e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.83674e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 4.83674e-05}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.457029e-08}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.457029e-08}, {"name": "Propanal", "categories": ["air"], "amount": 1.457029e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.606206e-09}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 9.606206e-09}, {"name": "Propane", "categories": ["air"], "amount": 9.606206e-09}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.277019e-10}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.277019e-10}, {"name": "Propene", "categories": ["air"], "amount": 3.277019e-10}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0071301}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 0.0071301}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.0071301}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33384e-09}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.33384e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.33384e-09}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5985e-05}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 7.5985e-05}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5985e-05}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 7.5985e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14268e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.14268e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.14268e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.59627e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 2.59627e-09}, {"name": "Toluene", "categories": ["air"], "amount": 2.59627e-09}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.11925e-09}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.11925e-09}, {"name": "Xylene", "categories": ["air"], "amount": 1.11925e-09}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.58451758}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.58451758}, {"name": "Zinc II", "categories": ["air"], "amount": 0.58451758}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 0.450373}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 0.450373}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 0.450373}, {"name": "Aluminium III", "categories": ["soil"], "amount": 0.450373}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.0749916}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.0749916}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.0749916}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.0749916}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.00197309}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.00197309}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.00197309}, {"name": "Barium II", "categories": ["soil"], "amount": 0.00197309}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 3.058177}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 3.058177}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 3.058177}, {"name": "Cadmium II", "categories": ["soil"], "amount": 3.058177}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.298045}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.298045}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.298045}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.298045}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.730452}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.730452}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.730452}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.730452}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 4.070813}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.070813}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.070813}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.070813}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.0023600951}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.4359264}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.4359264}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.4359264}, {"name": "Lead II", "categories": ["soil"], "amount": 0.4359264}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 15.374877}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 15.374877}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 15.374877}, {"name": "Mercury II", "categories": ["soil"], "amount": 15.374877}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.907233}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.907233}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.907233}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.907233}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.043774}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.043774}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.043774}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.043774}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 3.4169158}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 3.4169158}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 3.4169158}, {"name": "Zinc II", "categories": ["soil"], "amount": 3.4169158}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.00054478877}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.00054478877}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 3.401858912e-05}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.401858912e-05}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.396595e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 8.396595e-07}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 7.40455128e-07}, {"name": "Acetic acid", "categories": ["water"], "amount": 7.40455128e-07}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.20699e-08}, {"name": "Acetone", "categories": ["water"], "amount": 3.20699e-08}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 0.013181}, {"name": "Aluminium III", "categories": ["water"], "amount": 0.013181}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.0077083}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.0077083}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 0.00029513}, {"name": "Barium II", "categories": ["water"], "amount": 0.00029513}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 3.96569066e-06}, {"name": "Benzene", "categories": ["water"], "amount": 3.96569066e-06}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.00011218422}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.00011218422}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.7783046e-05}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.7783046e-05}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 2.238024e-07}, {"name": "Butyl acetate", "categories": ["water"], "amount": 2.238024e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.010687}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.010687}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.37911e-05}, {"name": "Chloroform", "categories": ["water"], "amount": 1.37911e-05}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.0016604}, {"name": "Chromium III", "categories": ["water"], "amount": 0.0016604}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 0.014162}, {"name": "Cobalt II", "categories": ["water"], "amount": 0.014162}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 0.0753086147582}, {"name": "Copper ion", "categories": ["water"], "amount": 0.0753086147582}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1.643491e-06}, {"name": "Dimethylamine", "categories": ["water"], "amount": 1.643491e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.347644e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.347644e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.95868e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.95868e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0004175613}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0004175613}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 5.607121e-08}, {"name": "Ethanol", "categories": ["water"], "amount": 5.607121e-08}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 5.8319296e-06}, {"name": "Ethylene", "categories": ["water"], "amount": 5.8319296e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 5.3610323e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 5.3610323e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 7.8151057e-05}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.8151057e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.14126081e-05}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.14126081e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.3970297e-06}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.3970297e-06}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 2.2887404e-05}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 2.2887404e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 3.3548031181e-06}, {"name": "Hexane", "categories": ["water"], "amount": 3.3548031181e-06}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 0.00025354951}, {"name": "Hydrazine", "categories": ["water"], "amount": 0.00025354951}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.00354704255}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.00354704255}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.00096644}, {"name": "Lead II", "categories": ["water"], "amount": 0.00096644}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.057882}, {"name": "Mercury II", "categories": ["water"], "amount": 0.057882}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 3.9e-06}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water", "surface water"], "amount": 1.761136e-06}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["water"], "amount": 1.761136e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.618571e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.618571e-05}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.782861e-08}, {"name": "Methanol", "categories": ["water"], "amount": 2.782861e-08}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 4.65816928e-05}, {"name": "m-Xylene", "categories": ["water"], "amount": 4.65816928e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.00466}, {"name": "Nickel II", "categories": ["water"], "amount": 0.00466}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.49925865e-05}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.49925865e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.00354704255}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.00354704255}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.2629953e-07}, {"name": "Phenol", "categories": ["water"], "amount": 6.2629953e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.0001247924769}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.0001247924769}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.0001557635976}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.0001557635976}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.3662345e-06}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 2.3662345e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 4.156181498e-05}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 4.156181498e-05}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.4853845e-06}, {"name": "Propanal", "categories": ["water"], "amount": 1.4853845e-06}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 3.334178363e-06}, {"name": "Propene", "categories": ["water"], "amount": 3.334178363e-06}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 0.012471}, {"name": "Selenium IV", "categories": ["water"], "amount": 0.012471}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.184915455e-05}, {"name": "Styrene", "categories": ["water"], "amount": 1.184915455e-05}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.580597e-06}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.580597e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.091981029e-05}, {"name": "Toluene", "categories": ["water"], "amount": 1.091981029e-05}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.664922214e-09}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.664922214e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.018924383e-05}, {"name": "Xylene", "categories": ["water"], "amount": 1.018924383e-05}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00514}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00514}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 6.0752e-05}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 6.0752e-05}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0752e-05}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 6.0752e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.000618561}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.68908e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 7.115604e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.115604e-05}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.9239514e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 7.115604e-05}, {"name": "Butene", "categories": ["water"], "amount": 9.775657874e-06}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 9.775657874e-06}, {"name": "Butene", "categories": ["air"], "amount": 6.162218e-10}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 6.162218e-10}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.162218e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.162218e-10}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.241791}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 8.524771e-06}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.241791}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.241791}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.241791}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.4046201}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.4046201}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.4046201}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.4046201}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0014221}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0014221}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.000371891}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.00157247}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.675216e-05}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.95819e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 0.000434732}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.42102e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.42102e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 4.42102e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.42102e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.00014466902}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.00014466902}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.00041701}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00041701}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.00041701}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00041701}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.00041701}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.00020849133}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "human health", "human toxicity"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.00023413}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.9152e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3.0492e-06}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.011806}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.3147e-05}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.3772e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 0.00024595}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.5468e-06}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.7376e-05}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.010733}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00040399}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.00015503}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 0.0072443}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 1.4999}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 0.00019202}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 0.00079932}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.0161e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00061335}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.063893}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.0551e-11}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.0082718}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.0029812}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0038197}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.7901e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.7047e-05}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.1964e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0029289}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 8.851e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 28.795}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0029555}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 13.972}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.024088}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 0.010069}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00042394}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1593e-05}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 4.7556e-07}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.23054}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.00034343}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.024367}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 0.0016167}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.6146e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 5.1993e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.00089314}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.00048079}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 3.5635e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.055147}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.049225}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 0.00080644}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.1146e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.0016767}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4.6268e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.068699}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.0033791}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.8377e-10}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 7.0193e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 7.055e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 8.5223e-05}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.18748}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 7.6134e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.15919}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 4114700}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.0027758}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 0.00077694}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.9784e-06}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.0028291}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 8.3209e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.4257e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.00042411}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 9.6153e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.00098621}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 4.9849e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.7121e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00042348}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.2585e-05}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.057e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 5.3741e-05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.9582e-06}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00098862}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.00083282}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.00043527}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 0.00071454}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 5.3437e-06}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0016478}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 3.0591e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 7.1862e-06}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.1696e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.036468}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.9255e-05}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 0.00012035}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.5478e-05}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 1.0657e-05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0010281}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.11494}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.028358}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 6.2373e-05}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 1.121e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.1328e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.00025489}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 5.0677e-06}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.00023977}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.47e-07}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.15066}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.3022e-05}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.0049473}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.0087252}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 3.1922e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 8.4578e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.4293e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8.9255e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.015386}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.2639e-07}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.6738e-06}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.00084231}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 9.4136e-08}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 5.9448e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.0723e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.0036591}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 65.318}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.363e-05}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 0.00056611}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 2.5387e-07}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.0035042}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.7857e-05}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 9.36e-05}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.00014099}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.0038714}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.036468}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 4.0602e-05}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.00016103}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.9162e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.9611e-13}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.4356e-06}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.0037131}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.062879}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.00059605}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.9589e-05}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 3.5256e-05}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 0.0097183}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.00025318}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.0064285}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.00074339}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 3.7148e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 1.7925e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00047093}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.0078483}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.071131}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.7684e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.00034582}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.2587e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.2221e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.00013375}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.0021539}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.3076e-06}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.342e-06}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 4.6699e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.4054e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 0.000406}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.0011956}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.0018767}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 7.7233e-05}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.0070213}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.00016395}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.3177e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.03663}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9152e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.9152e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.9152e-07}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0492e-06}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3.0492e-06}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3.0492e-06}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3147e-05}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.3147e-05}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3.3147e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5468e-06}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 4.5468e-06}, {"name": "Acetone", "categories": ["air"], "amount": 4.5468e-06}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7376e-05}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.7376e-05}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.7376e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.010733}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 0.010733}, {"name": "Acrolein", "categories": ["air"], "amount": 0.010733}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00040399}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00040399}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.00040399}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019202}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 0.00019202}, {"name": "Aluminium III", "categories": ["air"], "amount": 0.00019202}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0161e-05}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 2.0161e-05}, {"name": "Ammonia", "categories": ["air"], "amount": 2.0161e-05}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00061335}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00061335}, {"name": "Aniline", "categories": ["air"], "amount": 0.00061335}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.063893}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.063893}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.063893}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029812}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.0029812}, {"name": "Barium II", "categories": ["air"], "amount": 0.0029812}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1964e-08}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.1964e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 6.1964e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029289}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.0029289}, {"name": "Benzene", "categories": ["air"], "amount": 0.0029289}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.851e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 8.851e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 8.851e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.795}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 28.795}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 28.795}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029555}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0029555}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.0029555}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.972}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 13.972}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 13.972}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024088}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.024088}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.024088}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1593e-05}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1.1593e-05}, {"name": "Butadiene", "categories": ["air"], "amount": 1.1593e-05}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7556e-07}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 4.7556e-07}, {"name": "Butanol", "categories": ["air"], "amount": 4.7556e-07}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23054}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.23054}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.23054}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6146e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.6146e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.6146e-05}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00089314}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.00089314}, {"name": "Chloroform", "categories": ["air"], "amount": 0.00089314}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.055147}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.055147}, {"name": "Chromium III", "categories": ["air"], "amount": 0.055147}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049225}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.049225}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.049225}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00080644}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 0.00080644}, {"name": "Copper ion", "categories": ["air"], "amount": 0.00080644}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1146e-07}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 1.1146e-07}, {"name": "Cumene", "categories": ["air"], "amount": 1.1146e-07}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8377e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 8.8377e-10}, {"name": "Diethyl ether", "categories": ["air"], "amount": 8.8377e-10}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.0193e-05}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 7.0193e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 7.0193e-05}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6134e-07}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 7.6134e-07}, {"name": "Dimethylamine", "categories": ["air"], "amount": 7.6134e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4114700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 4114700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 4114700}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028291}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.0028291}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.0028291}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4257e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.4257e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.4257e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00042411}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.00042411}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.00042411}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 2.3644e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6153e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 9.6153e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 9.6153e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00098621}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.00098621}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.00098621}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9849e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 4.9849e-07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 4.9849e-07}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7121e-07}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 2.7121e-07}, {"name": "Ethanol", "categories": ["air"], "amount": 2.7121e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00042348}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.00042348}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.00042348}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2585e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 5.2585e-05}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.2585e-05}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.057e-05}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.057e-05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9582e-06}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.9582e-06}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.9582e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00098862}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.00098862}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.00098862}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0016478}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0016478}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0016478}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0591e-06}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 3.0591e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.0591e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1696e-06}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.1696e-06}, {"name": "Hexane", "categories": ["air"], "amount": 1.1696e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.036468}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.036468}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.036468}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9255e-05}, {"name": "Hydrogen peroxide", "categories": ["air", "low population density, long-term"], "amount": 1.9255e-05}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 1.9255e-05}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012035}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 0.00012035}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 0.00012035}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010281}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.0010281}, {"name": "Lead II", "categories": ["air"], "amount": 0.0010281}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.15066}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.15066}, {"name": "Mercury II", "categories": ["air"], "amount": 0.15066}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0087252}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.0087252}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.0087252}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1922e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 3.1922e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 3.1922e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4578e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 8.4578e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 8.4578e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.4293e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 9.4293e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.4293e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.9255e-08}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 8.9255e-08}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8.9255e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015386}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.015386}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.015386}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2639e-07}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1.2639e-07}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.2639e-07}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6738e-06}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1.6738e-06}, {"name": "Methanol", "categories": ["air"], "amount": 1.6738e-06}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.4136e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 9.4136e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 9.4136e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 65.318}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 65.318}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 65.318}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.363e-05}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 3.363e-05}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.363e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035042}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.0035042}, {"name": "Nickel II", "categories": ["air"], "amount": 0.0035042}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7857e-05}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.7857e-05}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.7857e-05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.036468}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.036468}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.036468}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4356e-06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.4356e-06}, {"name": "Phenol", "categories": ["air"], "amount": 2.4356e-06}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037131}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.0037131}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.0037131}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.062879}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.062879}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 0.062879}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5256e-05}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 3.5256e-05}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 3.5256e-05}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00047093}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.00047093}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.00047093}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.071131}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 0.071131}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.071131}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2587e-05}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 5.2587e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.2587e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2221e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.2221e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.2221e-07}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.342e-06}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.342e-06}, {"name": "Toluene", "categories": ["air"], "amount": 1.342e-06}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6699e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 4.6699e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 4.6699e-07}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3177e-06}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.3177e-06}, {"name": "Xylene", "categories": ["air"], "amount": 3.3177e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03663}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.03663}, {"name": "Zinc II", "categories": ["air"], "amount": 0.03663}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 0.0038216}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 0.0014447}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 0.0014447}, {"name": "Aluminium III", "categories": ["soil"], "amount": 0.0014447}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.0782}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.47882}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.47882}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.47882}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.022224}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.020054}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.020054}, {"name": "Barium II", "categories": ["soil"], "amount": 0.020054}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.011294}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.0068685}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.0068685}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.0068685}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.0824}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.7411}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.7411}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.7411}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.0045247}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.002233}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.002233}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.002233}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.0026678}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.0013166}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.0013166}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.0013166}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.024165}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.0064154}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.0064154}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.0064154}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 7.1862e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.013768}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0062447}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0062447}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0062447}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.51408}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.35507}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.35507}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.35507}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2471.4}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 538.58}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 538.58}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 538.58}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.047193}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.013495}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.013495}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.013495}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.75044}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.4172}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.4172}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.4172}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.2117}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.29426}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.29426}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.29426}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 4.5458e-07}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 4.5458e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.4516e-05}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.4516e-05}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 7.9015e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 7.9015e-06}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.4734e-06}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.4734e-06}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 2.5824e-06}, {"name": "Acetone", "categories": ["water"], "amount": 2.5824e-06}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 3.9481e-05}, {"name": "Acetonitrile", "categories": ["water"], "amount": 3.9481e-05}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.0008591}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.0008591}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 0.00080984}, {"name": "Aluminium III", "categories": ["water"], "amount": 0.00080984}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.00010504}, {"name": "Aniline", "categories": ["water"], "amount": 0.00010504}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.31389}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.31389}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 0.019702}, {"name": "Barium II", "categories": ["water"], "amount": 0.019702}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00058246}, {"name": "Benzene", "categories": ["water"], "amount": 0.00058246}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.00016815}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.00016815}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.746e-05}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.746e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 0.0063253}, {"name": "Beryllium II", "categories": ["water"], "amount": 0.0063253}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.9921e-06}, {"name": "Butanol", "categories": ["water"], "amount": 1.9921e-06}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 2.6831e-07}, {"name": "Butyl acetate", "categories": ["water"], "amount": 2.6831e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.28194}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.28194}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.5756e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.5756e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.00064196}, {"name": "Chloroform", "categories": ["water"], "amount": 0.00064196}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0010504}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0010504}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.0017815}, {"name": "Chromium III", "categories": ["water"], "amount": 0.0017815}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 0.0016305}, {"name": "Copper ion", "categories": ["water"], "amount": 0.0016305}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 9.1579e-06}, {"name": "Cumene", "categories": ["water"], "amount": 9.1579e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.0744e-06}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.0744e-06}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 7.3095e-06}, {"name": "Dimethylamine", "categories": ["water"], "amount": 7.3095e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.005082}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.005082}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0026575}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0026575}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 5.483e-07}, {"name": "Ethanol", "categories": ["water"], "amount": 5.483e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 0.0034243}, {"name": "Chloroethylene", "categories": ["water"], "amount": 0.0034243}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.00038382}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.00038382}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.4522e-05}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.4522e-05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.9572e-06}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 1.9572e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.00020736}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.00020736}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 8.1879e-06}, {"name": "Formaldehyde", "categories": ["water"], "amount": 8.1879e-06}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 3.9742e-07}, {"name": "Hexane", "categories": ["water"], "amount": 3.9742e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 0.0032731}, {"name": "Hydrazine", "categories": ["water"], "amount": 0.0032731}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0027477}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0027477}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 6.769e-07}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 6.769e-07}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 5.535e-05}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 5.535e-05}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.0042432}, {"name": "Lead II", "categories": ["water"], "amount": 0.0042432}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.31395}, {"name": "Mercury II", "categories": ["water"], "amount": 0.31395}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.00018212}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.00018212}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.012829}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.012829}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.2495e-07}, {"name": "Methanol", "categories": ["water"], "amount": 3.2495e-07}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.4114}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.4114}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.1147e-05}, {"name": "Monochloroethane", "categories": ["water"], "amount": 2.1147e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.0043219}, {"name": "Nickel II", "categories": ["water"], "amount": 0.0043219}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.0064276}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.0064276}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.0027477}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.0027477}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 3.0323e-07}, {"name": "Phenol", "categories": ["water"], "amount": 3.0323e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.131e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 5.131e-06}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.6059e-06}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 6.6059e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.00013057}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.00013057}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.00052324}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.00052324}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 0.36927}, {"name": "Selenium IV", "categories": ["water"], "amount": 0.36927}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.1546e-06}, {"name": "Styrene", "categories": ["water"], "amount": 7.1546e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 2.3638e-05}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3638e-05}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.2085e-05}, {"name": "Toluene", "categories": ["water"], "amount": 3.2085e-05}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3.565e-05}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 3.565e-05}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.3748e-06}, {"name": "Xylene", "categories": ["water"], "amount": 2.3748e-06}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.052684}, {"name": "Zinc II", "categories": ["water"], "amount": 0.052684}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.00013914}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.0011046}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 6.3836e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 6.3836e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2.3644e-08}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3644e-08}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2.3644e-08}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.4232}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4232}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 5.4232}, {"name": "Arsenic ion", "categories": ["air"], "amount": 5.4232}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 185.34}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 43.795}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 43.795}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 43.795}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.4677}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.4677}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 3.0558e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.0010192}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 8.0343e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 0.037163}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.2537e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2537e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 3.2537e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.2537e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.1779e-05}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.1779e-05}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.8712e-06}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "human health", "ionising radiation"], "exchanges": [{"name": "Antimony-124", "categories": ["air", "urban air close to ground"], "amount": 0.063893}, {"name": "Antimony-125", "categories": ["air", "urban air close to ground"], "amount": 0.063893}, {"name": "Barium-140", "categories": ["air", "urban air close to ground"], "amount": 0.0029812}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 2.9577e-05}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 6.0563e-08}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.9718e-09}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.00013239}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 2.2535e-08}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 1.3239e-09}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 1.9718e-11}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0010281}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 9.4366e-06}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 1.169e-05}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 2.1127e-07}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 1.2817e-07}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 3.3803e-09}, {"name": "Uranium", "categories": ["air", "urban air close to ground"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 1.1549e-06}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 1.3662e-05}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 2.9577e-06}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 1.1549e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 1.9718e-11}, {"name": "Zinc-65", "categories": ["air", "urban air close to ground"], "amount": 0.03663}, {"name": "Antimony-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.063893}, {"name": "Antimony-124", "categories": ["air", "low population density, long-term"], "amount": 0.063893}, {"name": "Antimony-124", "categories": ["air"], "amount": 0.063893}, {"name": "Antimony-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.063893}, {"name": "Antimony-125", "categories": ["air", "low population density, long-term"], "amount": 0.063893}, {"name": "Antimony-125", "categories": ["air"], "amount": 0.063893}, {"name": "Barium-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029812}, {"name": "Barium-140", "categories": ["air", "low population density, long-term"], "amount": 0.0029812}, {"name": "Barium-140", "categories": ["air"], "amount": 0.0029812}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9577e-05}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 2.9577e-05}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9577e-05}, {"name": "Carbon-14", "categories": ["air"], "amount": 2.9577e-05}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0563e-08}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 6.0563e-08}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0563e-08}, {"name": "Cobalt-58", "categories": ["air"], "amount": 6.0563e-08}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9718e-09}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 1.9718e-09}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9718e-09}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.9718e-09}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00013239}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 0.00013239}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00013239}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.00013239}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2535e-08}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 2.2535e-08}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2535e-08}, {"name": "Iodine-131", "categories": ["air"], "amount": 2.2535e-08}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3239e-09}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 1.3239e-09}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3239e-09}, {"name": "Iodine-133", "categories": ["air"], "amount": 1.3239e-09}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9718e-11}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 1.9718e-11}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9718e-11}, {"name": "Krypton-85", "categories": ["air"], "amount": 1.9718e-11}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010281}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.0010281}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0010281}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.4366e-06}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 9.4366e-06}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.4366e-06}, {"name": "Plutonium-238", "categories": ["air"], "amount": 9.4366e-06}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.169e-05}, {"name": "Plutonium-alpha", "categories": ["air", "low population density, long-term"], "amount": 1.169e-05}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.169e-05}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 1.169e-05}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1127e-07}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 2.1127e-07}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1127e-07}, {"name": "Polonium-210", "categories": ["air"], "amount": 2.1127e-07}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2817e-07}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 1.2817e-07}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2817e-07}, {"name": "Radium-226", "categories": ["air"], "amount": 1.2817e-07}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3803e-09}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 3.3803e-09}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3803e-09}, {"name": "Radon-222", "categories": ["air"], "amount": 3.3803e-09}, {"name": "Uranium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1549e-06}, {"name": "Uranium", "categories": ["air", "low population density, long-term"], "amount": 1.1549e-06}, {"name": "Uranium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1549e-06}, {"name": "Uranium", "categories": ["air"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air", "low population density, long-term"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air"], "amount": 1.1549e-06}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3662e-05}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 1.3662e-05}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3662e-05}, {"name": "Uranium-234", "categories": ["air"], "amount": 1.3662e-05}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9577e-06}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 2.9577e-06}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9577e-06}, {"name": "Uranium-235", "categories": ["air"], "amount": 2.9577e-06}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1549e-06}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 1.1549e-06}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1549e-06}, {"name": "Uranium-238", "categories": ["air"], "amount": 1.1549e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9718e-11}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 1.9718e-11}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9718e-11}, {"name": "Xenon-133", "categories": ["air"], "amount": 1.9718e-11}, {"name": "Zinc-65", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03663}, {"name": "Zinc-65", "categories": ["air", "low population density, long-term"], "amount": 0.03663}, {"name": "Zinc-65", "categories": ["air"], "amount": 0.03663}, {"name": "Antimony-122", "categories": ["water", "surface water"], "amount": 0.31389}, {"name": "Antimony-122", "categories": ["water"], "amount": 0.31389}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.31389}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.31389}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 0.31389}, {"name": "Antimony-125", "categories": ["water"], "amount": 0.31389}, {"name": "Barium-140", "categories": ["water", "surface water"], "amount": 0.019702}, {"name": "Barium-140", "categories": ["water"], "amount": 0.019702}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 5.7746e-09}, {"name": "Cobalt-58", "categories": ["water"], "amount": 5.7746e-09}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 6.338e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 6.338e-11}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 7.0423e-08}, {"name": "Iodine-131", "categories": ["water"], "amount": 7.0423e-08}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 4.3662e-08}, {"name": "Manganese-54", "categories": ["water"], "amount": 4.3662e-08}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 1.831e-08}, {"name": "Radium-226", "categories": ["water"], "amount": 1.831e-08}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 7.1831e-08}, {"name": "Silver-110", "categories": ["water"], "amount": 7.1831e-08}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 3.3803e-07}, {"name": "Uranium-234", "categories": ["water"], "amount": 3.3803e-07}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 3.2394e-07}, {"name": "Uranium-235", "categories": ["water"], "amount": 3.2394e-07}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 3.2394e-07}, {"name": "Uranium-238", "categories": ["water"], "amount": 3.2394e-07}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 1.6901e-06}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.831e-06}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6901e-06}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 1.6901e-06}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6901e-06}, {"name": "Caesium-134", "categories": ["air"], "amount": 1.6901e-06}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.831e-06}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 1.831e-06}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.831e-06}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.831e-06}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.9718e-05}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.9718e-05}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 2.3944e-05}, {"name": "Caesium-137", "categories": ["water"], "amount": 2.3944e-05}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "human health", "ozone layer depletion"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.017746}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.017746}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.010352}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0029577}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.06507}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.056197}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.88732}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 1.7746}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0073944}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 0.0029577}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.14789}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.14789}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.0059155}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.0029577}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.10796}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.14789}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017746}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.017746}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017746}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.017746}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.14789}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017746}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.017746}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017746}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.017746}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.010352}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.010352}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.010352}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.010352}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029577}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.0029577}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029577}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0029577}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06507}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.06507}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06507}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.06507}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.056197}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.056197}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.056197}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.056197}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.88732}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.88732}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.88732}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.88732}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7746}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 1.7746}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7746}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 1.7746}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0073944}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.0073944}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0073944}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0073944}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029577}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 0.0029577}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029577}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 0.0029577}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14789}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.14789}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14789}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.14789}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14789}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.14789}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14789}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.14789}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0059155}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.0059155}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0059155}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.0059155}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029577}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.0029577}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029577}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.0029577}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.10796}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.10796}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.10796}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14789}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 0.14789}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14789}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.14789}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.13901}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13901}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.13901}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13901}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.14789}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14789}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14789}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.13901}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.14789}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "human health", "photochemical oxidation"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.0003}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.00014366}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00011394}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.00025211}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 4.1972e-05}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.00011986}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.00014366}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00019155}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 3e-05}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2.8732e-05}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.00019718}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 6.5915e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.00021549}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.00026338}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.00010662}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.0003831}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 6.9577e-06}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.00015634}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 8.7465e-05}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00014366}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 3.7183e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.7606e-06}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.00011746}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0003}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 8.7465e-06}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.831e-05}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.3099e-05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00011746}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.6338e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00015634}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.7042e-06}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.00015634}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.00014366}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.00010563}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.00029577}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 4.9296e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.00033521}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.0423e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.8028e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.5634e-06}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.8028e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.9577e-05}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.4366e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.00011394}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.00033521}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.00018028}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.00032394}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.00029577}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00011986}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.00023944}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 5.3944e-05}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00016761}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00033521}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.6761e-05}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.00019155}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.00031127}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.0003}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.0003}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014366}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.00014366}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.00014366}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011394}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.00011394}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.00011394}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00025211}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.00025211}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.00025211}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1972e-05}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 4.1972e-05}, {"name": "2-Propanol", "categories": ["air"], "amount": 4.1972e-05}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011986}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.00011986}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.00011986}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014366}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.00014366}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.00014366}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019155}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00019155}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.00019155}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3e-05}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 3e-05}, {"name": "Acetic acid", "categories": ["air"], "amount": 3e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8732e-05}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.8732e-05}, {"name": "Acetone", "categories": ["air"], "amount": 2.8732e-05}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019718}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.00019718}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.00019718}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5915e-05}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 6.5915e-05}, {"name": "Benzene", "categories": ["air"], "amount": 6.5915e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00021549}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.00021549}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.00021549}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00026338}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.00026338}, {"name": "Butadiene", "categories": ["air"], "amount": 0.00026338}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010662}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.00010662}, {"name": "Butane", "categories": ["air"], "amount": 0.00010662}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003831}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.0003831}, {"name": "Butanol", "categories": ["air"], "amount": 0.0003831}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9577e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 6.9577e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 6.9577e-06}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00015634}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.00015634}, {"name": "Cumene", "categories": ["air"], "amount": 0.00015634}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.7465e-05}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 8.7465e-05}, {"name": "Cyclohexane", "categories": ["air"], "amount": 8.7465e-05}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014366}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00014366}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00014366}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7183e-05}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 3.7183e-05}, {"name": "Ethane", "categories": ["air"], "amount": 3.7183e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7606e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 2.7606e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.7606e-06}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011746}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.00011746}, {"name": "Ethanol", "categories": ["air"], "amount": 0.00011746}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0003}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.7465e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.7465e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 8.7465e-06}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.831e-05}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 9.831e-05}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3099e-05}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 7.3099e-05}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 7.3099e-05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011746}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00011746}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.00011746}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6338e-05}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 2.6338e-05}, {"name": "Ethyne", "categories": ["air"], "amount": 2.6338e-05}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00015634}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00015634}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.00015634}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7042e-06}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 9.7042e-06}, {"name": "Formic acid", "categories": ["air"], "amount": 9.7042e-06}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00015634}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 0.00015634}, {"name": "Heptane", "categories": ["air"], "amount": 0.00015634}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014366}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.00014366}, {"name": "Hexane", "categories": ["air"], "amount": 0.00014366}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.00010563}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00029577}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.00029577}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.00029577}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9296e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 4.9296e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 4.9296e-05}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00033521}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.00033521}, {"name": "Isoprene", "categories": ["air"], "amount": 0.00033521}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8028e-06}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.8028e-06}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1.8028e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0423e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.0423e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.0423e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8028e-06}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.8028e-06}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.8028e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5634e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.5634e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.5634e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9577e-05}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 3.9577e-05}, {"name": "Methanol", "categories": ["air"], "amount": 3.9577e-05}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4366e-05}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.4366e-05}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.4366e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011394}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.00011394}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.00011394}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.007e-05}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 1.007e-05}, {"name": "Methyl formate", "categories": ["air"], "amount": 1.007e-05}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00033521}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.00033521}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.00033521}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018028}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.00018028}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.00018028}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00032394}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.00032394}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.00032394}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00029577}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.00029577}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.00029577}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011986}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.00011986}, {"name": "Pentane", "categories": ["air"], "amount": 0.00011986}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023944}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.00023944}, {"name": "Propanal", "categories": ["air"], "amount": 0.00023944}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3944e-05}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 5.3944e-05}, {"name": "Propane", "categories": ["air"], "amount": 5.3944e-05}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00016761}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.00016761}, {"name": "Propanol", "categories": ["air"], "amount": 0.00016761}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00033521}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.00033521}, {"name": "Propene", "categories": ["air"], "amount": 0.00033521}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6761e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.6761e-05}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.6761e-05}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019155}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.00019155}, {"name": "Toluene", "categories": ["air"], "amount": 0.00019155}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00031127}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.00031127}, {"name": "Xylene", "categories": ["air"], "amount": 0.00031127}, {"name": "Butene", "categories": ["air"], "amount": 0.00034789}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.00034789}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034789}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.00034789}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "human health", "respiratory effects (inorganics)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.011972}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00010296}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00010296}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0076901}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011972}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.011972}, {"name": "Ammonia", "categories": ["air"], "amount": 0.011972}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010296}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00010296}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.00010296}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010296}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00010296}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.00010296}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0076901}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0076901}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.0076901}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0061549}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0061549}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061549}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.0061549}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.012549}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.012549}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.012549}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.012549}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.098592}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.098592}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.098592}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.098592}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "human health", "total"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.0003}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.00023413}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.00014366}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00011413152}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.00025211}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 4.1972e-05}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.00011986}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.00014366}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3.0492e-06}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.011806}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000224697}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.3772e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 3e-05}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 0.00024595}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.32788e-05}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.7376e-05}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.010733}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00040399}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.00015503}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.00019718}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 0.0072443}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 1.4999}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 0.00019202}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 0.00079932}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.011992161}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00061335}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.063893}, {"name": "Antimony-124", "categories": ["air", "urban air close to ground"], "amount": 0.063893}, {"name": "Antimony-125", "categories": ["air", "urban air close to ground"], "amount": 0.063893}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.0551e-11}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.0082718}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.0029812}, {"name": "Barium-140", "categories": ["air", "urban air close to ground"], "amount": 0.0029812}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0038197}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.7901e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.7047e-05}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.1964e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.002994815}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.00021557851}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 28.795}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0029555}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 13.972}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.024088}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 0.010069}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00042394}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.000274973}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.00010662}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.00038357556}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.23054}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.00034343}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.024367}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 0.0016167}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.6146e-05}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00010296}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.00010296}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 2.9577e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 5.1993e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0009000977}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.00048079}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 3.5635e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.055147}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.049225}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 6.0563e-08}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 0.00080644}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.00015645146}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 8.7465e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.0016767}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4.6268e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.068699}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.0033791}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00014366088377}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 7.0193e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 7.055e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 8.5223e-05}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.18748}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 7.6134e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.15919}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 4114700}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.0027758}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 0.00077694}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.9784e-06}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.0028291}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 8.3209e-05}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 3.7183e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.4257e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0177487606}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.00042411}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.017746}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 9.6153e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.00098621}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.01035249849}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0029577}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.06507}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.00011773121}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0003}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00042348}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.13315e-05}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00011888}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 5.3741e-05}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.3099e-05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0001194182}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00098862}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.6338e-05}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.00083282}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.00043527}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 0.00071454}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 5.3437e-06}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00180414}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.7042e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 3.0591e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 7.1862e-06}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.00015634}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0001448296}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.00010563}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.03676377}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 4.9296e-05}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.9255e-05}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 0.00012035}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.9718e-09}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.5478e-05}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 0.00013239}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 2.2535e-08}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 1.3239e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.00033521}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 1.9718e-11}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 1.0657e-05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0010281}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0010281}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.11494}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.028358}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 6.2373e-05}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 1.121e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.1328e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.00025489}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 5.0677e-06}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.00023977}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.47e-07}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.15066}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.3022e-05}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.0049473}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.0649222}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.88732}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 1.7746}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0073975922}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 0.003042278}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.14789}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.000114716}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.147890089255}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.0059155}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.8028e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.0029592634}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.8028e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.123346}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.14789012639}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.12508e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.00084231}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.4366e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.000114034136}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 5.9448e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.0723e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.0036591}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 65.318}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.363e-05}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.00033521}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 0.00056611}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 2.5387e-07}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.0035042}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.7857e-05}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.00018028}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 9.36e-05}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.00014099}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.0038714}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.00032394}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.03676377}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 4.0602e-05}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.00016103}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00011986}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.9162e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.9611e-13}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.4356e-06}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.0037131}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.062879}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.00059605}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.9589e-05}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 3.5256e-05}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 9.4366e-06}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 1.169e-05}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 2.1127e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 0.0097183}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.00025318}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.0064285}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.00023944}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 5.3944e-05}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.00074339}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00016761}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 3.7148e-06}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00033521}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 1.7925e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00047093}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.0078483}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 1.2817e-07}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 3.3803e-09}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.071131}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.7684e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.00034582}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.2587e-05}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0076901}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.728321e-05}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.00013375}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.0021539}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.3076e-06}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000192892}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 4.6699e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.4054e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 0.000406}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.0011956}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.0018767}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 7.7233e-05}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.0070213}, {"name": "Uranium", "categories": ["air", "urban air close to ground"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 1.1549e-06}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 1.3662e-05}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 2.9577e-06}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 1.1549e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.00016395}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 1.9718e-11}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0003145877}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.03663}, {"name": "Zinc-65", "categories": ["air", "urban air close to ground"], "amount": 0.03663}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.0003}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.0003}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014366}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.00014366}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.00014366}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011413152}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.00011413152}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.00011413152}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00025211}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.00025211}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.00025211}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1972e-05}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 4.1972e-05}, {"name": "2-Propanol", "categories": ["air"], "amount": 4.1972e-05}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011986}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.00011986}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.00011986}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014366}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.00014366}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.00014366}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0492e-06}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3.0492e-06}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3.0492e-06}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000224697}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.000224697}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.000224697}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3e-05}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 3e-05}, {"name": "Acetic acid", "categories": ["air"], "amount": 3e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32788e-05}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 3.32788e-05}, {"name": "Acetone", "categories": ["air"], "amount": 3.32788e-05}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7376e-05}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.7376e-05}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.7376e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.010733}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 0.010733}, {"name": "Acrolein", "categories": ["air"], "amount": 0.010733}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00040399}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00040399}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.00040399}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019718}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.00019718}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.00019718}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019202}, {"name": "Aluminium III", "categories": ["air", "low population density, long-term"], "amount": 0.00019202}, {"name": "Aluminium III", "categories": ["air"], "amount": 0.00019202}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011992161}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.011992161}, {"name": "Ammonia", "categories": ["air"], "amount": 0.011992161}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00061335}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00061335}, {"name": "Aniline", "categories": ["air"], "amount": 0.00061335}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.063893}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.063893}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.063893}, {"name": "Antimony-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.063893}, {"name": "Antimony-124", "categories": ["air", "low population density, long-term"], "amount": 0.063893}, {"name": "Antimony-124", "categories": ["air"], "amount": 0.063893}, {"name": "Antimony-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.063893}, {"name": "Antimony-125", "categories": ["air", "low population density, long-term"], "amount": 0.063893}, {"name": "Antimony-125", "categories": ["air"], "amount": 0.063893}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029812}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.0029812}, {"name": "Barium II", "categories": ["air"], "amount": 0.0029812}, {"name": "Barium-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029812}, {"name": "Barium-140", "categories": ["air", "low population density, long-term"], "amount": 0.0029812}, {"name": "Barium-140", "categories": ["air"], "amount": 0.0029812}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1964e-08}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.1964e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 6.1964e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002994815}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.002994815}, {"name": "Benzene", "categories": ["air"], "amount": 0.002994815}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00021557851}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.00021557851}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.00021557851}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.795}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 28.795}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 28.795}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029555}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0029555}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.0029555}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.972}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 13.972}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 13.972}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024088}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.024088}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.024088}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000274973}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.000274973}, {"name": "Butadiene", "categories": ["air"], "amount": 0.000274973}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010662}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.00010662}, {"name": "Butane", "categories": ["air"], "amount": 0.00010662}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00038357556}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.00038357556}, {"name": "Butanol", "categories": ["air"], "amount": 0.00038357556}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23054}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.23054}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.23054}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6146e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.6146e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.6146e-05}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010296}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00010296}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.00010296}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010296}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.00010296}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.00010296}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9577e-05}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 2.9577e-05}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9577e-05}, {"name": "Carbon-14", "categories": ["air"], "amount": 2.9577e-05}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0009000977}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0009000977}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0009000977}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.055147}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.055147}, {"name": "Chromium III", "categories": ["air"], "amount": 0.055147}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049225}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.049225}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.049225}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0563e-08}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 6.0563e-08}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0563e-08}, {"name": "Cobalt-58", "categories": ["air"], "amount": 6.0563e-08}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00080644}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 0.00080644}, {"name": "Copper ion", "categories": ["air"], "amount": 0.00080644}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00015645146}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.00015645146}, {"name": "Cumene", "categories": ["air"], "amount": 0.00015645146}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.7465e-05}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 8.7465e-05}, {"name": "Cyclohexane", "categories": ["air"], "amount": 8.7465e-05}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014366088377}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00014366088377}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00014366088377}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.0193e-05}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 7.0193e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 7.0193e-05}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6134e-07}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 7.6134e-07}, {"name": "Dimethylamine", "categories": ["air"], "amount": 7.6134e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4114700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 4114700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 4114700}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028291}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.0028291}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.0028291}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7183e-05}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 3.7183e-05}, {"name": "Ethane", "categories": ["air"], "amount": 3.7183e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4257e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.4257e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.4257e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0177487606}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0177487606}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017746}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0177487606}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00042411}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.00042411}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.00042411}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.147890023644}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017746}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.017746}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017746}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.017746}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6153e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 9.6153e-08}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 9.6153e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00098621}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.00098621}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.00098621}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01035249849}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.01035249849}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.010352}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.01035249849}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029577}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.0029577}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029577}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029577}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0029577}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06507}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.06507}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06507}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.06507}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011773121}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.00011773121}, {"name": "Ethanol", "categories": ["air"], "amount": 0.00011773121}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0003}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00042348}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.00042348}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.00042348}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13315e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.13315e-05}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.13315e-05}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011888}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.00011888}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3099e-05}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 7.3099e-05}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 7.3099e-05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001194182}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0001194182}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.0001194182}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00098862}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.00098862}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.00098862}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6338e-05}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 2.6338e-05}, {"name": "Ethyne", "categories": ["air"], "amount": 2.6338e-05}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00180414}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00180414}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.00180414}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7042e-06}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 9.7042e-06}, {"name": "Formic acid", "categories": ["air"], "amount": 9.7042e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0591e-06}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 3.0591e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.0591e-06}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00015634}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 0.00015634}, {"name": "Heptane", "categories": ["air"], "amount": 0.00015634}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001448296}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.0001448296}, {"name": "Hexane", "categories": ["air"], "amount": 0.0001448296}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.00010563}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.00010563}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03676377}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.03676377}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.03676377}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9296e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 4.9296e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 4.9296e-05}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9255e-05}, {"name": "Hydrogen peroxide", "categories": ["air", "low population density, long-term"], "amount": 1.9255e-05}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 1.9255e-05}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012035}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 0.00012035}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 0.00012035}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9718e-09}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 1.9718e-09}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9718e-09}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.9718e-09}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00013239}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 0.00013239}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00013239}, {"name": "Iodine-129", "categories": ["air"], "amount": 0.00013239}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2535e-08}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 2.2535e-08}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2535e-08}, {"name": "Iodine-131", "categories": ["air"], "amount": 2.2535e-08}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3239e-09}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 1.3239e-09}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3239e-09}, {"name": "Iodine-133", "categories": ["air"], "amount": 1.3239e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00033521}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.00033521}, {"name": "Isoprene", "categories": ["air"], "amount": 0.00033521}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9718e-11}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 1.9718e-11}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9718e-11}, {"name": "Krypton-85", "categories": ["air"], "amount": 1.9718e-11}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010281}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.0010281}, {"name": "Lead II", "categories": ["air"], "amount": 0.0010281}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010281}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.0010281}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0010281}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.15066}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.15066}, {"name": "Mercury II", "categories": ["air"], "amount": 0.15066}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8028e-06}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.8028e-06}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1.8028e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0649222}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.0649222}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.056197}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.0649222}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.88732}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.88732}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.88732}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.88732}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7746}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 1.7746}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7746}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 1.7746}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0073975922}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.0073975922}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0073944}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0073975922}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003042278}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 0.003042278}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029577}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 0.003042278}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14789}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.14789}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14789}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.14789}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114716}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.000114716}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.000114716}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.147890089255}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.147890089255}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14789}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.147890089255}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0059155}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.0059155}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0059155}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.0059155}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8028e-06}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.8028e-06}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.8028e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0029592634}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.0029592634}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0029577}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.0029592634}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123346}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.123346}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.123346}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14789012639}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 0.14789012639}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14789}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.14789012639}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.12508e-05}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 4.12508e-05}, {"name": "Methanol", "categories": ["air"], "amount": 4.12508e-05}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4366e-05}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.4366e-05}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.4366e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114034136}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.000114034136}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.000114034136}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.007e-05}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 1.007e-05}, {"name": "Methyl formate", "categories": ["air"], "amount": 1.007e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 65.318}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 65.318}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 65.318}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.363e-05}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 3.363e-05}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.363e-05}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00033521}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.00033521}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.00033521}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035042}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.0035042}, {"name": "Nickel II", "categories": ["air"], "amount": 0.0035042}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7857e-05}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.7857e-05}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.7857e-05}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018028}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.00018028}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.00018028}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00032394}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.00032394}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.00032394}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03676377}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.03676377}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.03676377}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011986}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.00011986}, {"name": "Pentane", "categories": ["air"], "amount": 0.00011986}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4356e-06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.4356e-06}, {"name": "Phenol", "categories": ["air"], "amount": 2.4356e-06}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037131}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.0037131}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.0037131}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.062879}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.062879}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 0.062879}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5256e-05}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 3.5256e-05}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 3.5256e-05}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.4366e-06}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 9.4366e-06}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.4366e-06}, {"name": "Plutonium-238", "categories": ["air"], "amount": 9.4366e-06}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.169e-05}, {"name": "Plutonium-alpha", "categories": ["air", "low population density, long-term"], "amount": 1.169e-05}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.169e-05}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 1.169e-05}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1127e-07}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 2.1127e-07}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1127e-07}, {"name": "Polonium-210", "categories": ["air"], "amount": 2.1127e-07}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023944}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.00023944}, {"name": "Propanal", "categories": ["air"], "amount": 0.00023944}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3944e-05}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 5.3944e-05}, {"name": "Propane", "categories": ["air"], "amount": 5.3944e-05}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00016761}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.00016761}, {"name": "Propanol", "categories": ["air"], "amount": 0.00016761}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00033521}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.00033521}, {"name": "Propene", "categories": ["air"], "amount": 0.00033521}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00047093}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.00047093}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.00047093}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2817e-07}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 1.2817e-07}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2817e-07}, {"name": "Radium-226", "categories": ["air"], "amount": 1.2817e-07}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3803e-09}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 3.3803e-09}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3803e-09}, {"name": "Radon-222", "categories": ["air"], "amount": 3.3803e-09}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.071131}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 0.071131}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.071131}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2587e-05}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 5.2587e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.2587e-05}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0076901}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0076901}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.0076901}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.728321e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.728321e-05}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.728321e-05}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000192892}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.000192892}, {"name": "Toluene", "categories": ["air"], "amount": 0.000192892}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6699e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 4.6699e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 4.6699e-07}, {"name": "Uranium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1549e-06}, {"name": "Uranium", "categories": ["air", "low population density, long-term"], "amount": 1.1549e-06}, {"name": "Uranium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1549e-06}, {"name": "Uranium", "categories": ["air"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air", "low population density, long-term"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1549e-06}, {"name": "Uranium alpha", "categories": ["air"], "amount": 1.1549e-06}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3662e-05}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 1.3662e-05}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3662e-05}, {"name": "Uranium-234", "categories": ["air"], "amount": 1.3662e-05}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9577e-06}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 2.9577e-06}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9577e-06}, {"name": "Uranium-235", "categories": ["air"], "amount": 2.9577e-06}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1549e-06}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 1.1549e-06}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1549e-06}, {"name": "Uranium-238", "categories": ["air"], "amount": 1.1549e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9718e-11}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 1.9718e-11}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9718e-11}, {"name": "Xenon-133", "categories": ["air"], "amount": 1.9718e-11}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003145877}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0003145877}, {"name": "Xylene", "categories": ["air"], "amount": 0.0003145877}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03663}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.03663}, {"name": "Zinc II", "categories": ["air"], "amount": 0.03663}, {"name": "Zinc-65", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03663}, {"name": "Zinc-65", "categories": ["air", "low population density, long-term"], "amount": 0.03663}, {"name": "Zinc-65", "categories": ["air"], "amount": 0.03663}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 0.0038216}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 0.0014447}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 0.0014447}, {"name": "Aluminium III", "categories": ["soil"], "amount": 0.0014447}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.0782}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.47882}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.47882}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.47882}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.022224}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.020054}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.020054}, {"name": "Barium II", "categories": ["soil"], "amount": 0.020054}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.011294}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.0068685}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.0068685}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.0068685}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.0824}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.7411}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.7411}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.7411}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.0045247}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.002233}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.002233}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.002233}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.0026678}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.0013166}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.0013166}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.0013166}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.024165}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.0064154}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.0064154}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.0064154}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 7.1862e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.013768}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0062447}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0062447}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0062447}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.51408}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.35507}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.35507}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.35507}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2471.4}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 538.58}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 538.58}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 538.58}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.047193}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.013495}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.013495}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.013495}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.75044}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.4172}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.4172}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.4172}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.2117}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.29426}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.29426}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.29426}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 4.5458e-07}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 4.5458e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.4516e-05}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.4516e-05}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 7.9015e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 7.9015e-06}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.4734e-06}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.4734e-06}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 2.5824e-06}, {"name": "Acetone", "categories": ["water"], "amount": 2.5824e-06}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 3.9481e-05}, {"name": "Acetonitrile", "categories": ["water"], "amount": 3.9481e-05}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.0008591}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.0008591}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 0.00080984}, {"name": "Aluminium III", "categories": ["water"], "amount": 0.00080984}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.00010504}, {"name": "Aniline", "categories": ["water"], "amount": 0.00010504}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.31389}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.31389}, {"name": "Antimony-122", "categories": ["water", "surface water"], "amount": 0.31389}, {"name": "Antimony-122", "categories": ["water"], "amount": 0.31389}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.31389}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.31389}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 0.31389}, {"name": "Antimony-125", "categories": ["water"], "amount": 0.31389}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 0.019702}, {"name": "Barium II", "categories": ["water"], "amount": 0.019702}, {"name": "Barium-140", "categories": ["water", "surface water"], "amount": 0.019702}, {"name": "Barium-140", "categories": ["water"], "amount": 0.019702}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00058246}, {"name": "Benzene", "categories": ["water"], "amount": 0.00058246}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.00016815}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.00016815}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.746e-05}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.746e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 0.0063253}, {"name": "Beryllium II", "categories": ["water"], "amount": 0.0063253}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.9921e-06}, {"name": "Butanol", "categories": ["water"], "amount": 1.9921e-06}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 2.6831e-07}, {"name": "Butyl acetate", "categories": ["water"], "amount": 2.6831e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.28194}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.28194}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.5756e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.5756e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.00064196}, {"name": "Chloroform", "categories": ["water"], "amount": 0.00064196}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0010504}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0010504}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.0017815}, {"name": "Chromium III", "categories": ["water"], "amount": 0.0017815}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 5.7746e-09}, {"name": "Cobalt-58", "categories": ["water"], "amount": 5.7746e-09}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 0.0016305}, {"name": "Copper ion", "categories": ["water"], "amount": 0.0016305}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 9.1579e-06}, {"name": "Cumene", "categories": ["water"], "amount": 9.1579e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.0744e-06}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.0744e-06}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 7.3095e-06}, {"name": "Dimethylamine", "categories": ["water"], "amount": 7.3095e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.005082}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.005082}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0026575}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0026575}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 5.483e-07}, {"name": "Ethanol", "categories": ["water"], "amount": 5.483e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 0.0034243}, {"name": "Chloroethylene", "categories": ["water"], "amount": 0.0034243}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.00038382}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.00038382}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.4522e-05}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.4522e-05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.9572e-06}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 1.9572e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.00020736}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.00020736}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 8.1879e-06}, {"name": "Formaldehyde", "categories": ["water"], "amount": 8.1879e-06}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 3.9742e-07}, {"name": "Hexane", "categories": ["water"], "amount": 3.9742e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 0.0032731}, {"name": "Hydrazine", "categories": ["water"], "amount": 0.0032731}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0027477}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0027477}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 6.769e-07}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 6.769e-07}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 5.535e-05}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 5.535e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 6.338e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 6.338e-11}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 7.0423e-08}, {"name": "Iodine-131", "categories": ["water"], "amount": 7.0423e-08}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.0042432}, {"name": "Lead II", "categories": ["water"], "amount": 0.0042432}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 4.3662e-08}, {"name": "Manganese-54", "categories": ["water"], "amount": 4.3662e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.31395}, {"name": "Mercury II", "categories": ["water"], "amount": 0.31395}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.00018212}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.00018212}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.012829}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.012829}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.2495e-07}, {"name": "Methanol", "categories": ["water"], "amount": 3.2495e-07}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.4114}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.4114}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.1147e-05}, {"name": "Monochloroethane", "categories": ["water"], "amount": 2.1147e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.0043219}, {"name": "Nickel II", "categories": ["water"], "amount": 0.0043219}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.0064276}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.0064276}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.0027477}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.0027477}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 3.0323e-07}, {"name": "Phenol", "categories": ["water"], "amount": 3.0323e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.131e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 5.131e-06}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.6059e-06}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 6.6059e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.00013057}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.00013057}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.00052324}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.00052324}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 1.831e-08}, {"name": "Radium-226", "categories": ["water"], "amount": 1.831e-08}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 0.36927}, {"name": "Selenium IV", "categories": ["water"], "amount": 0.36927}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 7.1831e-08}, {"name": "Silver-110", "categories": ["water"], "amount": 7.1831e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.1546e-06}, {"name": "Styrene", "categories": ["water"], "amount": 7.1546e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 2.3638e-05}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3638e-05}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.2085e-05}, {"name": "Toluene", "categories": ["water"], "amount": 3.2085e-05}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3.565e-05}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 3.565e-05}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 3.3803e-07}, {"name": "Uranium-234", "categories": ["water"], "amount": 3.3803e-07}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 3.2394e-07}, {"name": "Uranium-235", "categories": ["water"], "amount": 3.2394e-07}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 3.2394e-07}, {"name": "Uranium-238", "categories": ["water"], "amount": 3.2394e-07}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.3748e-06}, {"name": "Xylene", "categories": ["water"], "amount": 2.3748e-06}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.052684}, {"name": "Zinc II", "categories": ["water"], "amount": 0.052684}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0061549}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0061549}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061549}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.0061549}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.00013914}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.0011046}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 6.3836e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 6.3836e-07}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.13901}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13901}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.13901}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13901}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.147890023644}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14789}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.147890023644}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.13901}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.147890023644}, {"name": "Butene", "categories": ["air"], "amount": 0.00034789}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.00034789}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034789}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.00034789}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.4232}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4232}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 5.4232}, {"name": "Arsenic ion", "categories": ["air"], "amount": 5.4232}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 185.34}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 43.795}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 43.795}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 43.795}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.4677}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.4677}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 3.0558e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.0010192}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 8.0343e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 0.037163}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.2537e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2537e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 3.2537e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.2537e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.1779e-05}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.1779e-05}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 1.6901e-06}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.831e-06}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6901e-06}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 1.6901e-06}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6901e-06}, {"name": "Caesium-134", "categories": ["air"], "amount": 1.6901e-06}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.831e-06}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 1.831e-06}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.831e-06}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.831e-06}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.9718e-05}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.9718e-05}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 2.3944e-05}, {"name": "Caesium-137", "categories": ["water"], "amount": 2.3944e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.012549}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.012549}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.012549}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.012549}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.8712e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.098592}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.098592}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.098592}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.098592}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "resources", "mineral extraction"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.5658e-05}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.0296e-06}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 0.0010888}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.3553e-07}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 4.8355e-05}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.0592e-06}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00010737}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00010737}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00010737}, {"name": "Pyrolusite", "categories": ["natural resource", "in ground"], "amount": 2.0592e-06}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0039474}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.2401e-05}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4.8355e-05}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.2401e-05}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 1.2401e-05}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 4.8355e-05}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.0592e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.0010888}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.5658e-05}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 3.3553e-07}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 6.0296e-06}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.00010737}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.0039474}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "resources", "non-renewable energy"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 6.5132e-05}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00012566}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 6.5132e-05}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 3.6842}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.00026513}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.00026513}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.00030132}]}, {"unit": "points", "name": ["IMPACT 2002+ (Endpoint)", "resources", "total"], "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.5658e-05}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.0296e-06}, {"name": "Cinnabar", "categories": ["natural resource", "in ground"], "amount": 0.0010888}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 6.5132e-05}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00012566}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3.3553e-07}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 4.8355e-05}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.0592e-06}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00010737}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00010737}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00010737}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 6.5132e-05}, {"name": "Pyrolusite", "categories": ["natural resource", "in ground"], "amount": 2.0592e-06}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0039474}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.2401e-05}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4.8355e-05}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.2401e-05}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 1.2401e-05}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 4.8355e-05}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.0592e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.0010888}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 0.00026974}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 3.6842}, {"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.5658e-05}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 3.3553e-07}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 6.0296e-06}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.00010737}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.00024145}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.0039474}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.00026513}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.00026513}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.00030132}]}, {"unit": "kg SO2-Eq", "name": ["IMPACT 2002+ (Midpoint)", "ecosystem quality", "aquatic acidification"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.88}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 0.88}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.6}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 1.88}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 0.98}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 1.88}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "Ammonia", "categories": ["air"], "amount": 1.88}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.88}, {"name": "Hydrochloric acid", "categories": ["air", "low population density, long-term"], "amount": 0.88}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.88}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 1.6}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.6}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 1.88}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.98}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 0.98}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.98}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 0.98}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.65}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 1.88}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.7}]}, {"unit": "kg PO4-Eq", "name": ["IMPACT 2002+ (Midpoint)", "ecosystem quality", "aquatic eutrophication"], "exchanges": [{"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 0.97}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 3.06}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.97}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 0.97}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.97}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 0.97}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["air", "low population density, long-term"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["air"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["soil"], "amount": 3.06}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.022}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 0.022}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.022}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 0.022}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphate", "categories": ["water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 3.06}, {"name": "Phosphorus", "categories": ["water"], "amount": 3.06}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2013 no LT", "climate change no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.3864}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.26099103}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 2504.54117161}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 111.36886022}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 19.01534578}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.12375371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 355.70904262}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 10.96555186}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 73.67421685}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8977.01466873}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 13455.63285373}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 967.40161765}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.32489627}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 296.86626879}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 4167.51900477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 261.70622477}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15922.81568973}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.22891799}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8448.35132681}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 20.42224025}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 94.49366841}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.699999999999999}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.68197775}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.3}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 479.24856328}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 8038.40372143}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2335.19186209}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12708.85603515}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18118.78539979}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 28214.80930274}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.3864}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.9578}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26099103}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26099103}, {"name": "Chloroform", "categories": ["air"], "amount": 2.26099103}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2504.54117161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2504.54117161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 2504.54117161}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 111.36886022}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 111.36886022}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 111.36886022}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.01534578}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.01534578}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 19.01534578}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12375371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12375371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.12375371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 355.70904262}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 355.70904262}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 355.70904262}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.96555186}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.96555186}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 10.96555186}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 73.67421685}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 73.67421685}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 73.67421685}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8977.01466873}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8977.01466873}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8977.01466873}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 13455.63285373}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13455.63285373}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 13455.63285373}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 967.40161765}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 967.40161765}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 967.40161765}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.32489627}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.32489627}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.32489627}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 296.86626879}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 296.86626879}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 296.86626879}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 4167.51900477}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4167.51900477}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 4167.51900477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.70622477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.70622477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 261.70622477}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15922.81568973}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15922.81568973}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15922.81568973}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22891799}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22891799}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.22891799}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8448.35132681}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8448.35132681}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8448.35132681}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.42224025}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.42224025}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 20.42224025}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 94.49366841}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94.49366841}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 94.49366841}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.699999999999999}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.699999999999999}, {"name": "Methane, fossil", "categories": ["air"], "amount": 5.699999999999999}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68197775}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68197775}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.68197775}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 479.24856328}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 479.24856328}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 479.24856328}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 8038.40372143}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8038.40372143}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 8038.40372143}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2335.19186209}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2335.19186209}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2335.19186209}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12708.85603515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12708.85603515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12708.85603515}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18118.78539979}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18118.78539979}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18118.78539979}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 28214.80930274}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28214.80930274}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 28214.80930274}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 10284.28180003}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.699999999999999}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.699999999999999}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.9578}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 5.699999999999999}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.699999999999999}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Nitric oxide", "categories": ["air"], "amount": -2.8}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8553.18565655}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8553.18565655}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8553.18565655}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 4473.62844371}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4473.62844371}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4473.62844371}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8553.18565655}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 4473.62844371}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.66}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 234.2}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 234.2}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 234.2}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 234.2}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2013 no LT", "climate change no LT", "global temperature change potential (GTP20) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.4714}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.9}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 18.24837414}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 6957.14306684}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 174.39608796}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.9747162}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 4393.45390921}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 98.08200817}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1115.61822832}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 6314.35359241}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8876.75317735}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 5797.34335077}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.73872249}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 3949.60813155}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7986.04106265}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 4196.41323495}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 11683.35721739}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.90392379}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11266.32205517}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 192.19782135}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1361.718525}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 68.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 14.51076012}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 67.5}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3278.12858556}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5272.10470425}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6889.13353303}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 11523.75388112}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13722.57941308}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18904.21083067}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 4.9}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4714}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4714}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 6.4714}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 18.24837414}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18.24837414}, {"name": "Chloroform", "categories": ["air"], "amount": 18.24837414}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 6957.14306684}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6957.14306684}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 6957.14306684}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 174.39608796}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 174.39608796}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 174.39608796}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9747162}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9747162}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.9747162}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4393.45390921}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4393.45390921}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 4393.45390921}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 98.08200817}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 98.08200817}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 98.08200817}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1115.61822832}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1115.61822832}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1115.61822832}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 6314.35359241}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6314.35359241}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 6314.35359241}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8876.75317735}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8876.75317735}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8876.75317735}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 5797.34335077}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5797.34335077}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 5797.34335077}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.5}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67.5}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 67.5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.73872249}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.73872249}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.73872249}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 3949.60813155}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3949.60813155}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 3949.60813155}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7986.04106265}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7986.04106265}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7986.04106265}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 4196.41323495}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4196.41323495}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 4196.41323495}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 11683.35721739}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11683.35721739}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 11683.35721739}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.90392379}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.90392379}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.90392379}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 11266.32205517}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11266.32205517}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11266.32205517}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 192.19782135}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 192.19782135}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 192.19782135}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1361.718525}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1361.718525}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1361.718525}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 68.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 68.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.51076012}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.51076012}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 14.51076012}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3278.12858556}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3278.12858556}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3278.12858556}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5272.10470425}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5272.10470425}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5272.10470425}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6889.13353303}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6889.13353303}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6889.13353303}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 11523.75388112}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11523.75388112}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 11523.75388112}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13722.57941308}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13722.57941308}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13722.57941308}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18904.21083067}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18904.21083067}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18904.21083067}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6856.19412664}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 68.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 6.4714}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 68.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 6.4714}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4714}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4714}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 68.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Nitric oxide", "categories": ["air"], "amount": -86.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8186.32416562}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8186.32416562}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8186.32416562}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6731.10248487}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6731.10248487}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6731.10248487}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8186.32416562}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6731.10248487}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 7.5}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 276.9}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 276.9}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 276.9}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 276.9}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2013 no LT", "climate change no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 16.40180896}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4804.43907777}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 782.03725986}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 137.56020393}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.89826217}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1982.03546266}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 79.36717675}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 526.54777691}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7665.36131656}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11123.49391992}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3169.25517622}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.3545465}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1746.48198701}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 6291.62957595}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1764.62950881}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 13893.35260104}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.9151946}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10239.23459918}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 147.66224518}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 676.80778461}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 12.18322764}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 28.5}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1728.47068126}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6625.78042077}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4662.93699438}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12397.60343847}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 16069.99763401}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 23506.81999316}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 2.491}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 4.0624}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.40180896}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.40180896}, {"name": "Chloroform", "categories": ["air"], "amount": 16.40180896}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4804.43907777}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4804.43907777}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4804.43907777}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 782.03725986}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 782.03725986}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 782.03725986}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 137.56020393}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 137.56020393}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 137.56020393}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.89826217}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.89826217}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.89826217}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1982.03546266}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1982.03546266}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1982.03546266}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.36717675}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.36717675}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 79.36717675}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 526.54777691}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 526.54777691}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 526.54777691}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7665.36131656}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7665.36131656}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7665.36131656}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11123.49391992}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11123.49391992}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11123.49391992}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3169.25517622}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3169.25517622}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3169.25517622}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.5}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.5}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 28.5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3545465}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3545465}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.3545465}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1746.48198701}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1746.48198701}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1746.48198701}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 6291.62957595}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6291.62957595}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 6291.62957595}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1764.62950881}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1764.62950881}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1764.62950881}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 13893.35260104}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13893.35260104}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 13893.35260104}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.9151946}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.9151946}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.9151946}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10239.23459918}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10239.23459918}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10239.23459918}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 147.66224518}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 147.66224518}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 147.66224518}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 676.80778461}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 676.80778461}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 676.80778461}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.7}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.18322764}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.18322764}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 12.18322764}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1728.47068126}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1728.47068126}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1728.47068126}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6625.78042077}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6625.78042077}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6625.78042077}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4662.93699438}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4662.93699438}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4662.93699438}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12397.60343847}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12397.60343847}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12397.60343847}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 16069.99763401}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16069.99763401}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 16069.99763401}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 23506.81999316}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23506.81999316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 23506.81999316}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8546.70453046}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.7}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Nitric oxide", "categories": ["air"], "amount": -10.8}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8592.20208449}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8592.20208449}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8592.20208449}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5823.72618701}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5823.72618701}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5823.72618701}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8592.20208449}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5823.72618701}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.5}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 264.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.8}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 264.8}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2013 no LT", "climate change no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 60.29647382}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 6941.44823395}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 505.69920794}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3.30219927}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5023.56183413}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 291.77024983}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1870.43870156}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 5859.04711178}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8211.20366114}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6094.03667874}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.65580448}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4589.80812159}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7800.9561974}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5280.10704552}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 10863.17056314}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 32.7741165}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10794.23514189}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 542.83301944}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2434.93685948}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 84.60000000000001}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 44.78808811}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 83.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3484.29927629}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 4875.44842707}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6898.42980647}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10826.80979255}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 12778.94210066}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 17499.90776451}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 7.65}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 60.29647382}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 60.29647382}, {"name": "Chloroform", "categories": ["air"], "amount": 60.29647382}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 6941.44823395}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6941.44823395}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 6941.44823395}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 505.69920794}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 505.69920794}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 505.69920794}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.30219927}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.30219927}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.30219927}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5023.56183413}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5023.56183413}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5023.56183413}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 291.77024983}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 291.77024983}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 291.77024983}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1870.43870156}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1870.43870156}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1870.43870156}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 5859.04711178}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5859.04711178}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 5859.04711178}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8211.20366114}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8211.20366114}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8211.20366114}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6094.03667874}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6094.03667874}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6094.03667874}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 83.9}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 83.9}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 83.9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.65580448}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.65580448}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.65580448}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4589.80812159}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4589.80812159}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4589.80812159}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7800.9561974}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7800.9561974}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7800.9561974}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5280.10704552}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5280.10704552}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5280.10704552}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 10863.17056314}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10863.17056314}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 10863.17056314}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.7741165}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32.7741165}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 32.7741165}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10794.23514189}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10794.23514189}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10794.23514189}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 542.83301944}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 542.83301944}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 542.83301944}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2434.93685948}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2434.93685948}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2434.93685948}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.60000000000001}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84.60000000000001}, {"name": "Methane, fossil", "categories": ["air"], "amount": 84.60000000000001}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.78808811}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.78808811}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 44.78808811}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3484.29927629}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3484.29927629}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3484.29927629}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 4875.44842707}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4875.44842707}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 4875.44842707}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6898.42980647}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6898.42980647}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6898.42980647}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10826.80979255}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10826.80979255}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10826.80979255}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12778.94210066}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12778.94210066}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 12778.94210066}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17499.90776451}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17499.90776451}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 17499.90776451}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6345.34933827}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.60000000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84.60000000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 84.60000000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 84.60000000000001}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Nitric oxide", "categories": ["air"], "amount": 16.7}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 7711.95410637}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7711.95410637}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 7711.95410637}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6489.97806239}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6489.97806239}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6489.97806239}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 7711.95410637}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6489.97806239}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 14}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 263.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 263.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 263.7}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 263.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2013", "climate change", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.3864}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.26099103}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 2504.54117161}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 111.36886022}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 19.01534578}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.12375371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 355.70904262}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 10.96555186}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 73.67421685}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8977.01466873}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 13455.63285373}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 967.40161765}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.32489627}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 296.86626879}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 4167.51900477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 261.70622477}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15922.81568973}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.22891799}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8448.35132681}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 20.42224025}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 94.49366841}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.699999999999999}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.68197775}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.3}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 479.24856328}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 8038.40372143}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2335.19186209}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12708.85603515}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18118.78539979}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 28214.80930274}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.3864}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.9578}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26099103}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 2.26099103}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26099103}, {"name": "Chloroform", "categories": ["air"], "amount": 2.26099103}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 200.74820021}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 22.33931669}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2504.54117161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 2504.54117161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2504.54117161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 2504.54117161}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 4473.62844371}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 111.36886022}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 111.36886022}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 111.36886022}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 111.36886022}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.01534578}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 19.01534578}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.01534578}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 19.01534578}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12375371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.12375371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12375371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.12375371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 355.70904262}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 355.70904262}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 355.70904262}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 355.70904262}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.96555186}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 10.96555186}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.96555186}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 10.96555186}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 73.67421685}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 73.67421685}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 73.67421685}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 73.67421685}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8977.01466873}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8977.01466873}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8977.01466873}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8977.01466873}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 13455.63285373}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 13455.63285373}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13455.63285373}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 13455.63285373}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 967.40161765}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 967.40161765}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 967.40161765}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 967.40161765}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.3}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.32489627}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.32489627}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.32489627}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.32489627}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 296.86626879}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 296.86626879}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 296.86626879}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 296.86626879}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 4167.51900477}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 4167.51900477}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4167.51900477}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 4167.51900477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.70622477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 261.70622477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.70622477}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 261.70622477}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15922.81568973}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 15922.81568973}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15922.81568973}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15922.81568973}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22891799}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1.22891799}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22891799}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.22891799}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8448.35132681}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 8448.35132681}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8448.35132681}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8448.35132681}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.42224025}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 20.42224025}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.42224025}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 20.42224025}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 94.49366841}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 94.49366841}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94.49366841}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 94.49366841}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.699999999999999}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 5.699999999999999}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.699999999999999}, {"name": "Methane, fossil", "categories": ["air"], "amount": 5.699999999999999}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68197775}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.68197775}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68197775}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.68197775}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 479.24856328}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 479.24856328}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 479.24856328}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 479.24856328}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 8038.40372143}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 8038.40372143}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8038.40372143}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 8038.40372143}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2335.19186209}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 2335.19186209}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2335.19186209}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2335.19186209}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12708.85603515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12708.85603515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12708.85603515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12708.85603515}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18118.78539979}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 18118.78539979}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18118.78539979}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18118.78539979}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 28214.80930274}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 28214.80930274}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28214.80930274}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 28214.80930274}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 10284.28180003}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.9578}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.699999999999999}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 5.699999999999999}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.699999999999999}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 5.699999999999999}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.699999999999999}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Nitric oxide", "categories": ["air"], "amount": -2.8}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8553.18565655}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8553.18565655}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8553.18565655}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8553.18565655}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 4473.62844371}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4473.62844371}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4473.62844371}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8553.18565655}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 4473.62844371}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.66}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 234.2}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 234.2}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 234.2}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 234.2}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 234.2}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2013", "climate change", "global temperature change potential (GTP20)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.4714}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.9}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 18.24837414}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 6957.14306684}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 174.39608796}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.9747162}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 4393.45390921}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 98.08200817}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1115.61822832}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 6314.35359241}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8876.75317735}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 5797.34335077}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.73872249}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 3949.60813155}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7986.04106265}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 4196.41323495}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 11683.35721739}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.90392379}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11266.32205517}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 192.19782135}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1361.718525}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 68.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 14.51076012}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 67.5}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3278.12858556}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5272.10470425}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6889.13353303}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 11523.75388112}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13722.57941308}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18904.21083067}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.9}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 4.9}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4714}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 6.4714}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4714}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 6.4714}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 18.24837414}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 18.24837414}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18.24837414}, {"name": "Chloroform", "categories": ["air"], "amount": 18.24837414}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 3052.69963023}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 316.60550853}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 6957.14306684}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 6957.14306684}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6957.14306684}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 6957.14306684}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6731.10248487}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1853.06008034}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 174.39608796}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 174.39608796}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 174.39608796}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 174.39608796}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9747162}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.9747162}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9747162}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.9747162}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4393.45390921}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 4393.45390921}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4393.45390921}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 4393.45390921}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 98.08200817}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 98.08200817}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 98.08200817}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 98.08200817}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1115.61822832}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1115.61822832}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1115.61822832}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1115.61822832}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 6314.35359241}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 6314.35359241}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6314.35359241}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 6314.35359241}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8876.75317735}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8876.75317735}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8876.75317735}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8876.75317735}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 5797.34335077}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 5797.34335077}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5797.34335077}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 5797.34335077}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.5}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 67.5}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67.5}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 67.5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.73872249}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.73872249}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.73872249}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.73872249}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 3949.60813155}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 3949.60813155}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3949.60813155}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 3949.60813155}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7986.04106265}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7986.04106265}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7986.04106265}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7986.04106265}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 4196.41323495}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 4196.41323495}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4196.41323495}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 4196.41323495}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 11683.35721739}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 11683.35721739}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11683.35721739}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 11683.35721739}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.90392379}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 9.90392379}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.90392379}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.90392379}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 11266.32205517}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 11266.32205517}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11266.32205517}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11266.32205517}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 192.19782135}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 192.19782135}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 192.19782135}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 192.19782135}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1361.718525}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 1361.718525}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1361.718525}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1361.718525}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 68.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 68.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 68.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.51076012}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 14.51076012}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.51076012}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 14.51076012}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3278.12858556}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3278.12858556}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3278.12858556}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3278.12858556}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5272.10470425}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5272.10470425}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5272.10470425}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5272.10470425}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6889.13353303}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6889.13353303}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6889.13353303}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6889.13353303}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 11523.75388112}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 11523.75388112}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11523.75388112}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 11523.75388112}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13722.57941308}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13722.57941308}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13722.57941308}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13722.57941308}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18904.21083067}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 18904.21083067}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18904.21083067}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18904.21083067}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6856.19412664}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 6.4714}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 68.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 68.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 6.4714}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 68.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 6.4714}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4714}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4714}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 68.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Nitric oxide", "categories": ["air"], "amount": -86.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8186.32416562}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8186.32416562}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8186.32416562}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8186.32416562}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6731.10248487}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6731.10248487}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6731.10248487}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8186.32416562}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6731.10248487}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 7.5}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 276.9}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 276.9}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 276.9}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 276.9}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 276.9}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2013", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 16.40180896}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4804.43907777}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 782.03725986}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 137.56020393}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.89826217}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1982.03546266}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 79.36717675}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 526.54777691}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7665.36131656}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 11123.49391992}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3169.25517622}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.3545465}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1746.48198701}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 6291.62957595}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1764.62950881}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 13893.35260104}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.9151946}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10239.23459918}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 147.66224518}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 676.80778461}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 12.18322764}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 28.5}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1728.47068126}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 6625.78042077}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4662.93699438}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12397.60343847}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 16069.99763401}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 23506.81999316}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 2.491}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 4.0624}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.40180896}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 16.40180896}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.40180896}, {"name": "Chloroform", "categories": ["air"], "amount": 16.40180896}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1301.27019996}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 160.09863099}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4804.43907777}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 4804.43907777}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4804.43907777}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4804.43907777}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 5823.72618701}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 782.03725986}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 782.03725986}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 782.03725986}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 782.03725986}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 137.56020393}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 137.56020393}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 137.56020393}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 137.56020393}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.89826217}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.89826217}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.89826217}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.89826217}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1982.03546266}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 1982.03546266}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1982.03546266}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1982.03546266}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.36717675}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 79.36717675}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.36717675}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 79.36717675}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 526.54777691}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 526.54777691}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 526.54777691}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 526.54777691}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7665.36131656}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7665.36131656}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7665.36131656}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7665.36131656}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 11123.49391992}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 11123.49391992}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11123.49391992}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 11123.49391992}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3169.25517622}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3169.25517622}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3169.25517622}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3169.25517622}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.5}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 28.5}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.5}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 28.5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3545465}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.3545465}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3545465}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.3545465}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1746.48198701}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1746.48198701}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1746.48198701}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1746.48198701}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 6291.62957595}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 6291.62957595}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6291.62957595}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 6291.62957595}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1764.62950881}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1764.62950881}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1764.62950881}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1764.62950881}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 13893.35260104}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 13893.35260104}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13893.35260104}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 13893.35260104}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.9151946}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 8.9151946}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.9151946}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.9151946}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10239.23459918}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10239.23459918}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10239.23459918}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10239.23459918}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 147.66224518}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 147.66224518}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 147.66224518}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 147.66224518}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 676.80778461}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 676.80778461}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 676.80778461}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 676.80778461}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.7}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.7}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.18322764}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 12.18322764}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.18322764}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 12.18322764}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1728.47068126}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1728.47068126}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1728.47068126}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1728.47068126}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 6625.78042077}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 6625.78042077}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6625.78042077}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 6625.78042077}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4662.93699438}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 4662.93699438}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4662.93699438}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4662.93699438}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12397.60343847}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12397.60343847}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12397.60343847}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12397.60343847}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 16069.99763401}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 16069.99763401}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16069.99763401}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 16069.99763401}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 23506.81999316}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 23506.81999316}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23506.81999316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 23506.81999316}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8546.70453046}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.7}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.7}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Nitric oxide", "categories": ["air"], "amount": -10.8}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8592.20208449}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8592.20208449}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8592.20208449}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8592.20208449}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5823.72618701}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5823.72618701}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5823.72618701}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8592.20208449}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5823.72618701}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.5}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 264.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 264.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.8}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 264.8}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2013", "climate change", "global warming potential (GWP20)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 60.29647382}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 6941.44823395}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 505.69920794}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3.30219927}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5023.56183413}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 291.77024983}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1870.43870156}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 5859.04711178}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8211.20366114}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6094.03667874}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.65580448}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4589.80812159}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7800.9561974}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5280.10704552}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 10863.17056314}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 32.7741165}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10794.23514189}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 542.83301944}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2434.93685948}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 84.60000000000001}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 44.78808811}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 83.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3484.29927629}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 4875.44842707}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6898.42980647}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10826.80979255}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 12778.94210066}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 17499.90776451}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 7.65}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 60.29647382}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 60.29647382}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 60.29647382}, {"name": "Chloroform", "categories": ["air"], "amount": 60.29647382}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 3710.4788196}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 577.77621224}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 6941.44823395}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 6941.44823395}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6941.44823395}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 6941.44823395}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6489.97806239}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2548.00975967}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 505.69920794}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 505.69920794}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 505.69920794}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 505.69920794}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.30219927}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 3.30219927}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.30219927}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.30219927}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5023.56183413}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5023.56183413}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5023.56183413}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5023.56183413}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 291.77024983}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 291.77024983}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 291.77024983}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 291.77024983}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1870.43870156}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1870.43870156}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1870.43870156}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1870.43870156}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 5859.04711178}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 5859.04711178}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5859.04711178}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 5859.04711178}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8211.20366114}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8211.20366114}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8211.20366114}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8211.20366114}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6094.03667874}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6094.03667874}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6094.03667874}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6094.03667874}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 83.9}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 83.9}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 83.9}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 83.9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.65580448}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 8.65580448}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.65580448}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.65580448}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4589.80812159}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 4589.80812159}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4589.80812159}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4589.80812159}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7800.9561974}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7800.9561974}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7800.9561974}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7800.9561974}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5280.10704552}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 5280.10704552}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5280.10704552}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5280.10704552}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 10863.17056314}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 10863.17056314}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10863.17056314}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 10863.17056314}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.7741165}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 32.7741165}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32.7741165}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 32.7741165}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10794.23514189}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10794.23514189}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10794.23514189}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10794.23514189}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 542.83301944}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 542.83301944}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 542.83301944}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 542.83301944}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2434.93685948}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2434.93685948}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2434.93685948}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2434.93685948}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.60000000000001}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 84.60000000000001}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84.60000000000001}, {"name": "Methane, fossil", "categories": ["air"], "amount": 84.60000000000001}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.78808811}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 44.78808811}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.78808811}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 44.78808811}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3484.29927629}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3484.29927629}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3484.29927629}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3484.29927629}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 4875.44842707}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 4875.44842707}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4875.44842707}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 4875.44842707}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6898.42980647}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6898.42980647}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6898.42980647}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6898.42980647}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10826.80979255}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 10826.80979255}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10826.80979255}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10826.80979255}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12778.94210066}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 12778.94210066}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12778.94210066}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 12778.94210066}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17499.90776451}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 17499.90776451}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17499.90776451}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 17499.90776451}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6345.34933827}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.60000000000001}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 84.60000000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84.60000000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 84.60000000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 84.60000000000001}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Nitric oxide", "categories": ["air"], "amount": 16.7}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 7711.95410637}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7711.95410637}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 7711.95410637}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 7711.95410637}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6489.97806239}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6489.97806239}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6489.97806239}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 7711.95410637}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6489.97806239}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 14}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 263.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 263.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 263.7}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 263.7}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 263.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 30600}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.079}, {"name": "Ethane", "categories": ["air"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 20000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 30600}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 11200}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.008}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.009}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5210}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5210}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 233}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change no LT", "global temperature change potential (GTP50) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.53}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.096}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 733}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 269}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 36.5}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.285}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1430}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 143}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 10100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.39}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.535}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 785}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 17.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 17000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.46}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 13300}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 181}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 10.4}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1990}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air"], "amount": 4.53}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.096}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.096}, {"name": "Ethane", "categories": ["air"], "amount": 0.096}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 733}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 269}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 36.5}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.285}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1430}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 20}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 143}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 10100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.39}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 10.4}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.535}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 785}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 17.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 17000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.46}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 13300}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 35.5}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 181}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air"], "amount": 13.2}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.22}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1990}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.105}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18200}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9580}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.01}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.011}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9990}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6910}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9990}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6910}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 290}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change no LT", "global warming potential (GWP500) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.002}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.87}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.125}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 46}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1940}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 246}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 46.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 658}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 25.8}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 170}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9880}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 17500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1110}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.013}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.692}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 552}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2750}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 560}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 22.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 17500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.18}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 45.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 220}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.2}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 658}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2090}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10500}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.137}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 34100}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002}, {"name": "Butane", "categories": ["air"], "amount": 0.002}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air"], "amount": 5.87}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.125}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.125}, {"name": "Ethane", "categories": ["air"], "amount": 0.125}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 46}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1940}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 246}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 46.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 658}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 25.8}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 170}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9880}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 17500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1110}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.81}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 7.2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.692}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 552}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2750}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 560}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 22.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 17500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.18}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 45.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 220}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air"], "amount": 10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.58}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 658}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 10600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2090}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10500}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.137}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18200}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Propane", "categories": ["air"], "amount": 0.006}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 34100}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 12700}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.013}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.015}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 6150}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2830}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2830}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2830}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 6150}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2830}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 130}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: biogenic no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: biogenic no LT", "global temperature change potential (GTP50) no LT"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 10.4}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: biogenic no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: biogenic no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: biogenic no LT", "global warming potential (GWP500) no LT"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 7.2}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: biogenic, including SLCFs no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.3864}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.7}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.3864}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: biogenic, including SLCFs no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.491}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 2.491}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: biogenic, including SLCFs no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 7.65}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: fossil no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 30600}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.079}, {"name": "Ethane", "categories": ["air"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 20000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 30600}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 11200}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.008}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.009}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5210}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5210}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 233}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: fossil no LT", "global temperature change potential (GTP50) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.53}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.096}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 733}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 269}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 36.5}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.285}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1430}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 143}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 10100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.39}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.535}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 785}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 17.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 17000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.46}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 13300}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 181}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1990}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air"], "amount": 4.53}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.096}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.096}, {"name": "Ethane", "categories": ["air"], "amount": 0.096}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 733}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 269}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 36.5}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.285}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1430}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 20}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 143}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 10100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.39}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.535}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 785}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 17.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 17000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.46}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 13300}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 35.5}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 181}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air"], "amount": 13.2}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.22}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1990}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.105}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18200}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9580}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.01}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.011}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9990}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6910}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9990}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6910}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 290}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: fossil no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: fossil no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: fossil no LT", "global warming potential (GWP500) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.002}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.87}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.125}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 46}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1940}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 246}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 46.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 658}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 25.8}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 170}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9880}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 17500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1110}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.013}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.692}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 552}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2750}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 560}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 22.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 17500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.18}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 45.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 220}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 658}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2090}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10500}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.137}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 34100}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002}, {"name": "Butane", "categories": ["air"], "amount": 0.002}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air"], "amount": 5.87}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.125}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.125}, {"name": "Ethane", "categories": ["air"], "amount": 0.125}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 46}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1940}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 246}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 46.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 658}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 25.8}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 170}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9880}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 17500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1110}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.81}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.692}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 552}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2750}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 560}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 22.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 17500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.18}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 45.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 220}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air"], "amount": 10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.58}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 658}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 10600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2090}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10500}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.137}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18200}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Propane", "categories": ["air"], "amount": 0.006}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 34100}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 12700}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.013}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.015}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 6150}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2830}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2830}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2830}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 6150}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2830}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 130}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: fossil, including SLCFs no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 30600}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.9578}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.079}, {"name": "Ethane", "categories": ["air"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 20000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 30600}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 11200}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.008}, {"name": "Nitric oxide", "categories": ["air"], "amount": -2.8}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.009}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5210}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5210}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.66}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 233}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: fossil, including SLCFs no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 4.0624}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Nitric oxide", "categories": ["air"], "amount": -10.8}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.5}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: fossil, including SLCFs no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Nitric oxide", "categories": ["air"], "amount": 16.7}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 14}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: including SLCFs no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.3864}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 30600}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.3864}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.9578}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.079}, {"name": "Ethane", "categories": ["air"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 20000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 30600}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 11200}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.9578}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 7.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.008}, {"name": "Nitric oxide", "categories": ["air"], "amount": -2.8}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.009}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5210}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5210}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.66}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 233}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: including SLCFs no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 2.491}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 4.0624}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Nitric oxide", "categories": ["air"], "amount": -10.8}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.5}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: including SLCFs no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 7.65}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Nitric oxide", "categories": ["air"], "amount": 16.7}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 14}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: land use no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: land use no LT", "global temperature change potential (GTP50) no LT"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: land use no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: land use no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: land use no LT", "global warming potential (GWP500) no LT"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: land use, including SLCFs no LT", "global temperature change potential (GTP100) no LT"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.9578}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 7.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: land use, including SLCFs no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021 no LT", "climate change: land use, including SLCFs no LT", "global warming potential (GWP20) no LT"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 30600}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.079}, {"name": "Ethane", "categories": ["air"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3250}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 5210}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 20000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 30600}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 11200}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.008}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.009}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5210}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5210}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 233}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "global temperature change potential (GTP50)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.53}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.096}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 733}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 269}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 36.5}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.285}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1430}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 143}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 10100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.39}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.535}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 785}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 17.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 17000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.46}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 13300}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 181}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 10.4}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1990}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air"], "amount": 4.53}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.096}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.096}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.096}, {"name": "Ethane", "categories": ["air"], "amount": 0.096}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 733}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 269}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 36.5}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.285}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1430}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 20}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 143}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 10100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.39}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 10.4}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.535}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 785}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 17.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 17000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.46}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 13300}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 35.5}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 181}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air"], "amount": 13.2}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.22}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1990}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.105}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18200}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9580}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.01}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.011}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9990}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6910}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9990}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6910}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 290}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "global warming potential (GWP20)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "global warming potential (GWP500)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.002}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.87}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.125}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 46}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1940}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 246}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 46.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 658}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 25.8}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 170}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9880}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 17500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1110}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.013}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.692}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 552}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2750}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 560}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 22.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 17500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.18}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 45.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 220}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.2}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 658}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2090}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10500}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.137}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 34100}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.002}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002}, {"name": "Butane", "categories": ["air"], "amount": 0.002}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air"], "amount": 5.87}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.125}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.125}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.125}, {"name": "Ethane", "categories": ["air"], "amount": 0.125}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 46}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1940}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 2830}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 246}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 46.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 658}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 25.8}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 170}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9880}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 17500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1110}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.81}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.013}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 7.2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.692}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 552}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2750}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 560}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 22.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 17500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.18}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 45.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 220}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air"], "amount": 10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.58}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 658}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 10600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2090}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10500}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.137}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18200}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Propane", "categories": ["air"], "amount": 0.006}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 34100}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 12700}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.013}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.015}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 6150}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2830}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2830}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2830}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 6150}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2830}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 130}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: biogenic", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: biogenic", "global temperature change potential (GTP50)"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.4}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 10.4}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: biogenic", "global warming potential (GWP100)"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: biogenic", "global warming potential (GWP20)"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: biogenic", "global warming potential (GWP500)"], "exchanges": [{"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 7.2}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: biogenic, including SLCFs", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.3864}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.7}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.3864}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: biogenic, including SLCFs", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.491}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 2.491}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: biogenic, including SLCFs", "global warming potential (GWP20)"], "exchanges": [{"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 7.65}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: fossil", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 30600}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.079}, {"name": "Ethane", "categories": ["air"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3250}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 5210}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 20000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 30600}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 11200}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.008}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.009}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5210}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5210}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 233}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: fossil", "global temperature change potential (GTP50)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.53}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.096}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 733}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 269}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 36.5}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.285}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1430}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 143}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 10100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.39}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.535}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 785}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 17.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 17000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.46}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 13300}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 181}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1990}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53}, {"name": "Chloroform", "categories": ["air"], "amount": 4.53}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.096}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.096}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.096}, {"name": "Ethane", "categories": ["air"], "amount": 0.096}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 733}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 733}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 37.5}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5910}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6910}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 269}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 269}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.5}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 36.5}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.285}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.285}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1430}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 20}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 143}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 143}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10100}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 10100}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12900}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12900}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.39}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.535}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.535}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7560}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 785}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 785}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 17.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17000}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 17000}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.46}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.46}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13300}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 13300}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.5}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 35.5}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 181}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 181}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Methane, fossil", "categories": ["air"], "amount": 13.2}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.22}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1990}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1990}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7660}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7660}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.105}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18200}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9580}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.01}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.011}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9990}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9990}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6910}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6910}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9990}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6910}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 290}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 290}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: fossil", "global warming potential (GWP100)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: fossil", "global warming potential (GWP20)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: fossil", "global warming potential (GWP500)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.002}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.87}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.125}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 46}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1940}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 246}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 46.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 658}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 25.8}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 170}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9880}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 17500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1110}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.013}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.692}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 552}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2750}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 560}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 22.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 17500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.18}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 45.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 220}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 658}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2090}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10500}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.137}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 34100}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.002}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.002}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002}, {"name": "Butane", "categories": ["air"], "amount": 0.002}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.87}, {"name": "Chloroform", "categories": ["air"], "amount": 5.87}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.125}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.125}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.125}, {"name": "Ethane", "categories": ["air"], "amount": 0.125}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 436}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 436}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 46}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1940}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 2830}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 246}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 246}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 46.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.371}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.371}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 658}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 658}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 25.8}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 170}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 170}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9880}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9880}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 17500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1110}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1110}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.81}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.013}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.692}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.692}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 552}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 552}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2750}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2750}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 560}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 560}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.6}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 22.6}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 17500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.18}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 45.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 220}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 220}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Methane, fossil", "categories": ["air"], "amount": 10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.58}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 658}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 658}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10600}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 10600}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2090}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2090}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10500}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10500}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.137}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 18200}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Propane", "categories": ["air"], "amount": 0.006}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 34100}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 12700}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.013}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.015}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 6150}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 6150}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2830}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2830}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2830}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 6150}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2830}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 130}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 130}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: fossil, including SLCFs", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 30600}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.9578}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.079}, {"name": "Ethane", "categories": ["air"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3250}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 5210}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 20000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 30600}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 11200}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.008}, {"name": "Nitric oxide", "categories": ["air"], "amount": -2.8}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.009}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5210}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5210}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.66}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 233}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: fossil, including SLCFs", "global warming potential (GWP100)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 4.0624}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Nitric oxide", "categories": ["air"], "amount": -10.8}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.5}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: fossil, including SLCFs", "global warming potential (GWP20)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Nitric oxide", "categories": ["air"], "amount": 16.7}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 14}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: including SLCFs", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.3864}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3250}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.008}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 20000}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 30600}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.001}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001}, {"name": "Butane", "categories": ["air"], "amount": 0.001}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3864}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.3864}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.9578}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.72}, {"name": "Chloroform", "categories": ["air"], "amount": 3.72}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.079}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.079}, {"name": "Ethane", "categories": ["air"], "amount": 0.079}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 306}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 306}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 29.7}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3250}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3250}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 5210}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 162}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 162}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 29.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.234}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 514}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 514}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 16.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 110}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 110}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 11000}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 15200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1300}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.14}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.008}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.008}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.438}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 406}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 406}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5060}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5060}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 379}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 379}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 14.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18800}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 18800}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.01}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10400}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 29}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 142}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 7.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9050}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 9050}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3540}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3540}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15100}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 15100}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.087}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.087}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20000}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 20000}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.004}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004}, {"name": "Propane", "categories": ["air"], "amount": 0.004}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30600}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 30600}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 11200}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.9578}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 7.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.008}, {"name": "Nitric oxide", "categories": ["air"], "amount": -2.8}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.009}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9410}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5210}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5210}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5210}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.66}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 233}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 233}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: including SLCFs", "global warming potential (GWP100)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 2.491}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 4.0624}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Nitric oxide", "categories": ["air"], "amount": -10.8}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.5}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: including SLCFs", "global warming potential (GWP20)"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 7.65}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Nitric oxide", "categories": ["air"], "amount": 16.7}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 14}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: land use", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: land use", "global temperature change potential (GTP50)"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 13.2}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: land use", "global warming potential (GWP100)"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: land use", "global warming potential (GWP20)"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: land use", "global warming potential (GWP500)"], "exchanges": [{"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: land use, including SLCFs", "global temperature change potential (GTP100)"], "exchanges": [{"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.9578}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 7.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 7.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.9578}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9578}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: land use, including SLCFs", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change: land use, including SLCFs", "global warming potential (GWP20)"], "exchanges": [{"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "acidification: terrestrial no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.72e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.17e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.63e-08}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.38e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "climate change: freshwater ecosystems no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-13}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-13}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 6.82e-13}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 6.82e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 1.87e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.38e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.38e-11}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 5.38e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 5.38e-11}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.48e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.48e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.83e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.83e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 9.61e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 9.61e-10}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 8.93e-11}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 8.93e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 1.57e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 1.57e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.03e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.03e-13}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2.38e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2.38e-09}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.27e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.27e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.27e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.27e-10}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 9.06e-12}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 9.06e-12}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.01e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.01e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 6.01e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 6.01e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.85e-09}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.85e-09}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 5.85e-09}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 5.85e-09}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.21e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.21e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.73e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.73e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3.73e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3.73e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.34e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.34e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.69e-13}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.69e-13}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.15e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.15e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 9.15e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 9.15e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.02e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.02e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.65e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.65e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 8.65e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 8.65e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.02e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.02e-12}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1.85e-09}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1.85e-09}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1.68e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1.68e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.72e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.72e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 7.72e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 7.72e-11}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.34e-12}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-12}, {"name": "Methane, fossil", "categories": ["air"], "amount": 3.34e-12}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 3.34e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.25e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.25e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 3.25e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 3.25e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.39e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.39e-12}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.25e-12}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.25e-12}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 3.25e-12}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 3.25e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2.02e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2.02e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-09}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-09}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7.51e-09}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7.51e-09}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5.97e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5.97e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3.86e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3.86e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74e-09}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 8.74e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 8.74e-09}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8.76e-09}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 2.34e-08}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "climate change: terrestrial ecosystems no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.5e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 2.5e-08}, {"name": "Chloroform", "categories": ["air"], "amount": 6.84e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 6.84e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.97e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97e-06}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.97e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.97e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 5.44e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.44e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 6.7e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 6.7e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.52e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 3.52e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 3.27e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 3.27e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 5.75e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 5.75e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.76e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3.76e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.73e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.73e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8.73e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8.73e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.31e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.31e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 8.31e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 8.31e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.32e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 3.32e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2.2e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2.2e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000214}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000214}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.000214}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.000214}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000445}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000445}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.000445}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.000445}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.37e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.37e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 4.93e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 4.93e-08}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.85e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 9.85e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.33e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.33e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 7.33e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 7.33e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.36e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.36e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 3.36e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 3.36e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 7.4e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 7.4e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000317}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000317}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.000317}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.000317}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.73e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.73e-08}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 6.77e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 6.77e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.16e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.16e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 6.16e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 6.16e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.83e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.83e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.83e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.83e-06}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22e-07}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-07}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.22e-07}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.22e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 1.19e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.11e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.11e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-07}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-07}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1.19e-07}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 7.4e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 7.4e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000275}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000275}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.000275}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.000275}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2.19e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2.19e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000142}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000142}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.000142}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.000142}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00032}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00032}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.00032}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00032}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.000321}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000859}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000859}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.000859}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.000859}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "ecotoxicity: freshwater no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 3.63e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 5.81e-10}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.73e-15}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 2.86e-11}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-10}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.5e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.33e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.82e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.82e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09e-11}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.4e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.4e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09e-11}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1.27e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.4e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.51e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.97e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.7e-15}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.73e-11}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 4.27e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 4.27e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.07e-15}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.32e-12}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 2.57e-09}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.27e-14}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.38e-20}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.54e-11}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.77e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-11}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.8e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.96e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.19e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.19e-10}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.93e-14}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1e-10}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-13}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.05e-18}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.18e-10}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.21e-15}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.51e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.03e-14}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 6.07e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 6.26e-13}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 1.96e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.54e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.35e-18}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.17e-11}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1.64e-11}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1.64e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.16e-13}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.06e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-09}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 7.92e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 5.28e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.89e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.88e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.02e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 7.64e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.75e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.43e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.74e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.47e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.33e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.37e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 9.34e-11}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.46e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.31e-08}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.31e-08}, {"name": "Antimony ion", "categories": ["air"], "amount": 8.84e-08}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 8.84e-08}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 6.85e-08}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 2.13e-07}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 2.13e-07}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.13e-07}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 4.57e-26}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.36e-07}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-09}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-09}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.47e-08}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.47e-08}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 3.98e-09}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 3.92e-08}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 3.92e-08}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.92e-08}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 6.69e-27}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.32e-08}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.44e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 5.93e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.25e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.18e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.62e-07}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.38e-10}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.89e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.09e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.09e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-10}, {"name": "Barium II", "categories": ["air"], "amount": 7.71e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 7.71e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8.16e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.61e-27}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water"], "amount": 1.94e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.59e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.59e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14e-09}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 9.99e-11}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.81e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.73e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.73e-10}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1.44e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.11e-06}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.17e-10}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.19e-14}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.03e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.2e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.78e-15}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.04e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.71e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 4.79e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.79e-11}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.06e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.34e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.34e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.42e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.35e-11}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 2.9e-15}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.98e-10}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-09}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-09}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.31e-08}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.31e-08}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.38e-09}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.54e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.54e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.54e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.62e-27}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.89e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.6e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.97e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.48e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 3.54e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.67e-08}, {"name": "Bifenthrin", "categories": ["air"], "amount": 2.8e-08}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.7e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.46e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.45e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.45e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.12e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.31e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.06e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 6.95e-09}, {"name": "Bromopropane", "categories": ["air"], "amount": 2.52e-14}, {"name": "Bromopropane", "categories": ["water"], "amount": 8.96e-11}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.16e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.16e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.24e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.12e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.52e-09}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 2.9e-11}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.33e-15}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.27e-11}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.04e-14}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.36e-11}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-09}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.08e-07}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38e-09}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38e-09}, {"name": "Cadmium II", "categories": ["air"], "amount": 4.2e-09}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 4.2e-09}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 2.38e-09}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.05e-08}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.05e-08}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.05e-08}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.41e-28}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.17e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.79e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-09}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.36e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.06e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.06e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-09}, {"name": "Carbendazim", "categories": ["air"], "amount": 4.88e-09}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.14e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.83e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.83e-08}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.43e-13}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.43e-13}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 6.9e-14}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.42e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.88e-10}, {"name": "Carboxin", "categories": ["air"], "amount": 2.92e-09}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.59e-09}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 9.59e-09}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Carboxin", "categories": ["water"], "amount": 1.81e-08}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 4.4e-19}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.59e-11}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.41e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 6.3e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 5e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 2.87e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 2.87e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 2.87e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 6.75e-21}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.51e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.54e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.75e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 4.41e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.72e-10}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 3.2e-11}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1.15e-09}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.15e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 2.02e-19}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 6.26e-09}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.92e-14}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.13e-10}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.27e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 5.59e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 5.59e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.25e-13}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.24e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.84e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.1e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.68e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 4.68e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.29e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.24e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.02e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.02e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.35e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.6e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-10}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-10}, {"name": "Chromium III", "categories": ["air"], "amount": 6.08e-10}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 6.08e-10}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.21e-10}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.44e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.44e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.44e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.87e-29}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.6e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.96e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.96e-09}, {"name": "Chromium VI", "categories": ["air"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 5.42e-08}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 5.42e-08}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.42e-08}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 2.37e-26}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 6.02e-08}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.76e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.6e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.84e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["air"], "amount": 1.51e-09}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1.51e-09}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 4.44e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 3.99e-09}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 3.99e-09}, {"name": "Cobalt II", "categories": ["soil"], "amount": 3.99e-09}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 9.43e-29}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.4e-09}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-08}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-08}, {"name": "Copper ion", "categories": ["air"], "amount": 3.84e-08}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.84e-08}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.06e-08}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.02e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.02e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.02e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.88e-27}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1.12e-07}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 6.36e-15}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.88e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.15e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 5.06e-17}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.8e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 8.95e-18}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.34e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.51e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.4e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 5.84e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.4e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.4e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 8.9e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.11e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.04e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.72e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Decanoic acid", "categories": ["water"], "amount": 2.11e-09}, {"name": "Deltamethrin", "categories": ["air"], "amount": 3.72e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 7.76e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.39e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.63e-11}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.39e-10}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.14e-08}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.06e-11}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.93e-09}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-10}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.62e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 9.42e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.19e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.97e-11}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.63e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.38e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.38e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 6.55e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 4.01e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.96e-10}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.11e-10}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 7.06e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.09e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.09e-15}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 3.34e-15}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.21e-10}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.5e-13}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.5e-13}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.57e-19}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.88e-12}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.92e-09}, {"name": "Difenoconazole", "categories": ["air"], "amount": 1.49e-08}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.72e-09}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 5.46e-08}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 1.62e-07}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1.62e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.08e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.39e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.38e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.38e-06}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.08e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 2.72e-14}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.33e-10}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.34e-09}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.97e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.69e-08}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 6.14e-10}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.52e-14}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.77e-10}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.18e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.21e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.52e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1.68e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1.68e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 6.92e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 3.32e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 3.32e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 3.32e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 4.57e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.21e-05}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-10}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.18e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.36e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.05e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.36e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.36e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.38e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.76e-09}, {"name": "Diuron", "categories": ["air"], "amount": 2.45e-08}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.05e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.82e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.55e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.56e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.5e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.8e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.75e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.95e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.24e-12}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 9.24e-12}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 5.09e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49e-09}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.74e-09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 2.85e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 5.82e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.82e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 6.95e-07}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air"], "amount": 3.92e-13}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-13}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.14e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.95e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.89e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 3.85e-11}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 3.59e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.47e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.56e-15}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.37e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.26e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.28e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.28e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.55e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.11e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.02e-14}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.14e-11}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air"], "amount": 2.81e-11}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.81e-11}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 1.58e-15}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water"], "amount": 1.4e-10}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 5.71e-11}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 5.71e-11}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 3.43e-18}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.96e-10}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.23e-13}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 3.35e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.87e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.51e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 5.25e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.65e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.18e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 6.95e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.2e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.03e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.44e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.43e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.56e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.21e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.11e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.11e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.77e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.01e-07}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.3e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.17e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.57e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-09}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 6.47e-09}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 4.85e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.91e-07}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.91e-07}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-08}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2.84e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8.46e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 6.05e-10}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 8.17e-12}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.95e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.85e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.14e-10}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.15e-08}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 3.25e-14}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.31e-10}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.07e-19}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.93e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.27e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.93e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air"], "amount": 9.02e-16}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 9.02e-16}, {"name": "Furfural", "categories": ["air"], "amount": 4.88e-12}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 4.09e-10}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.66e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1.98e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.23e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.23e-08}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air"], "amount": 4.54e-18}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 4.54e-18}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 7.5e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.13e-18}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.81e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.04e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.21e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.57e-11}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.49e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.04e-15}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 4.64e-15}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.08e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.52e-13}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.57e-09}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.32e-09}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.24e-09}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.07e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.83e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.37e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.37e-09}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.98e-09}, {"name": "Indoxacarb", "categories": ["air"], "amount": 8.21e-09}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2.88e-09}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2.36e-08}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.43e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air"], "amount": 1.19e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.19e-17}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air"], "amount": 2.6e-11}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 2.6e-11}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 7.25e-15}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water"], "amount": 1.22e-10}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.38e-09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.22e-08}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.79e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 2.94e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.35e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.35e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.35e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.03e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.01e-09}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-11}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-11}, {"name": "Lead II", "categories": ["air"], "amount": 1.42e-10}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 1.42e-10}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.64e-11}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 3.88e-10}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 3.88e-10}, {"name": "Lead II", "categories": ["soil"], "amount": 3.88e-10}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 4.29e-31}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water"], "amount": 4.21e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.74e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.71e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.45e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-11}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.21e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.14e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.14e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.32e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.17e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.17e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.43e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.03e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.14e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-09}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.01e-08}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.41e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.94e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.42e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.42e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.61e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.34e-10}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 6.27e-16}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-09}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-09}, {"name": "Mercury II", "categories": ["air"], "amount": 1.19e-08}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.19e-08}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 7.72e-10}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 3.27e-08}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 3.27e-08}, {"name": "Mercury II", "categories": ["soil"], "amount": 3.27e-08}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.25e-29}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 3.46e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.03e-10}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 4.18e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.38e-09}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2.32e-09}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2.32e-09}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 4.74e-11}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.51e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.78e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 8.99e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.91e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.26e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.03e-11}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.03e-14}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.01e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3.71e-10}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.74e-15}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.42e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.71e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.95e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35e-09}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.98e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.46e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.58e-10}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.85e-09}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.5e-08}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 7.69e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 5.46e-08}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 1.68e-07}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 1.68e-07}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.64e-13}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.64e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.59e-14}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.96e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 2.54e-13}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.37e-12}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air"], "amount": 5.42e-12}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 5.42e-12}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.4e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.29e-15}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.03e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.51e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.02e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.54e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.06e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.03e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 5.37e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.62e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.08e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.52e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.52e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.71e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.24e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.25e-11}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.25e-11}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.09e-10}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.09e-10}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 9.29e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.57e-10}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.57e-10}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.57e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.01e-29}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.85e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 9.34e-10}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 9.11e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.16e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 9.47e-10}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.71e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.27e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.27e-09}, {"name": "Nickel II", "categories": ["air"], "amount": 1.12e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.12e-08}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 4.58e-09}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.89e-08}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.89e-08}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.89e-08}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.18e-27}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 3.2e-08}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.68e-11}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 2.28e-10}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 8.86e-10}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.3e-09}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.3e-09}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 9.4e-13}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.28e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.27e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.08e-11}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 8.95e-10}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.46e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.06e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 2.29e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 6.47e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.17e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.37e-12}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.04e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.94e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.65e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.67e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.27e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.81e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.83e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.22e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.22e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air"], "amount": 4.37e-15}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.37e-15}, {"name": "Pentane", "categories": ["water"], "amount": 4.99e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.24e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.53e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.99e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 9.47e-11}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.96e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.4e-10}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 8.58e-15}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.74e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 9.42e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 9.42e-11}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.33e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.33e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.84e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.14e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.17e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.31e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.21e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 3.75e-13}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.09e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.59e-13}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.81e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 2.65e-14}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 4.23e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.02e-15}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.65e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.04e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.67e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1.36e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1.36e-10}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.21e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 9.19e-09}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 3.76e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 2.98e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 9.74e-09}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.24e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4e-11}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.1e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air"], "amount": 1.22e-13}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.22e-13}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 3.55e-14}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water"], "amount": 7.1e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 9.98e-10}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air"], "amount": 8.13e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 8.13e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.67e-15}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.54e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.48e-09}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.3e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.19e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.33e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.1e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.21e-08}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 9.19e-18}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09e-10}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air"], "amount": 1.51e-11}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 1.51e-11}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.29e-15}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water"], "amount": 8.05e-11}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 4.53e-13}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air"], "amount": 7.69e-13}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 7.69e-13}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.49e-13}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.9e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.73e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 8.18e-10}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.26e-06}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.7e-07}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.49e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5.6e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.65e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 3.12e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.97e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.63e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.88e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.88e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.26e-10}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.1e-08}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2.69e-09}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22e-09}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-09}, {"name": "Selenium IV", "categories": ["air"], "amount": 3.8e-09}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 3.8e-09}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.02e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 9.61e-09}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 9.61e-09}, {"name": "Selenium IV", "categories": ["soil"], "amount": 9.61e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.06e-28}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.07e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.86e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.15e-09}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.23e-08}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.23e-08}, {"name": "Silver I", "categories": ["air"], "amount": 1.16e-07}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 3.98e-08}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 3.05e-07}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 3.05e-07}, {"name": "Silver I", "categories": ["soil"], "amount": 3.05e-07}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.71e-27}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water"], "amount": 3.37e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-09}, {"name": "Simazine", "categories": ["air"], "amount": 8.25e-09}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.93e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.3e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.01e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.01e-08}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.1e-12}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 2.89e-35}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water"], "amount": 5.71e-12}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.68e-15}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75e-10}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.5e-08}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 9.93e-08}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.98e-10}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.98e-10}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.06e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.06e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 9.94e-08}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-09}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.27e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.07e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.81e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7e-09}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-08}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.02e-08}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.72e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.72e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.72e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8e-08}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.59e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.51e-08}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 4.76e-07}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 1.63e-06}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.3e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.05e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 2.72e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 9.7e-14}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.52e-10}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.32e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.32e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 1.46e-08}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1.46e-08}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.52e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 2.78e-26}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 3.68e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-10}, {"name": "Thiabendazole", "categories": ["air"], "amount": 9.79e-10}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.12e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.59e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 8.57e-10}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 6.48e-18}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water"], "amount": 6.28e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 8.78e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.5e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.02e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-10}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.02e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.22e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air"], "amount": 4.11e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.87e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.25e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.25e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.57e-10}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-10}, {"name": "Tin ion", "categories": ["air"], "amount": 1.11e-09}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.11e-09}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1.48e-10}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 3.04e-09}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 3.04e-09}, {"name": "Tin ion", "categories": ["soil"], "amount": 3.04e-09}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 2.45e-29}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 3.32e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 3.28e-15}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.67e-11}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1.07e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1.07e-13}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 4.93e-14}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.4e-10}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 2.54e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Triallate", "categories": ["air"], "amount": 1.14e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.15e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.04e-08}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.34e-07}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.05e-08}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.13e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.52e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.44e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 7.67e-15}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.18e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.67e-09}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 3.41e-20}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.23e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.36e-09}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 3.24e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 1.76e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 9.83e-06}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.54e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.54e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-11}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.05e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.51e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.46e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.46e-08}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.69e-10}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 3.99e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.17e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.18e-20}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.22e-11}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.12e-11}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-08}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-08}, {"name": "Vanadium V", "categories": ["air"], "amount": 4.3e-08}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 4.3e-08}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7e-08}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.12e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.12e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.12e-07}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 5.44e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.24e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 3.79e-10}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 2.18e-15}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-08}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-08}, {"name": "Zinc II", "categories": ["air"], "amount": 4.94e-08}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4.94e-08}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 9.24e-09}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.33e-07}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.33e-07}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.33e-07}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.48e-25}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.46e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.26e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.67e-08}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.06e-15}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.42e-10}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 7.38e-15}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.65e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 8.94e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.94e-15}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 2.51e-15}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 4.65e-12}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1.68e-10}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1.68e-10}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 3.21e-14}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water"], "amount": 7.78e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 9.62e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "ecotoxicity: marine no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 8.73e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.48e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.69e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water"], "amount": 1.32e-13}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52e-11}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.09e-12}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.52e-11}, {"name": "2,4-D", "categories": ["water"], "amount": 1.52e-11}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46e-12}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 9.27e-12}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 9.27e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 6.63e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 9.27e-12}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 6.33e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.48e-11}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.48e-11}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 6.47e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.38e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.38e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 5.67e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.51e-13}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.67e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.3e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.3e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.05e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.14e-14}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.49e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.3e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.73e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.73e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.35e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.63e-13}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.46e-13}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.1e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.1e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.22e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6.61e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68e-12}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 7.35e-13}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.15e-12}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 5.17e-12}, {"name": "Acephate", "categories": ["water"], "amount": 5.17e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 5.38e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 7.52e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 9.91e-13}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-14}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.08e-15}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.77e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water"], "amount": 2.5e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air"], "amount": 6.25e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 6.25e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 9.39e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water"], "amount": 5.28e-14}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.07e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.51e-13}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 1.59e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 8.95e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.64e-11}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["water"], "amount": 3.41e-10}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water"], "amount": 1.95e-13}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air"], "amount": 3.57e-13}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 3.57e-13}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.67e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.67e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 2.67e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 5.46e-12}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.09e-10}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2.05e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-12}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.47e-10}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.85e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Allyl chloride", "categories": ["water"], "amount": 5.74e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 5.21e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 3.19e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 1.71e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 3.08e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.97e-10}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air"], "amount": 1.12e-13}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.12e-13}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.46e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water"], "amount": 2.7e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 4.88e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.22e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water"], "amount": 3.04e-09}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 2.06e-12}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.03e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.03e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 8.37e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 8.37e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.22e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 6.9e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 6.9e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 6.9e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 7.66e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 0.00016}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 7.66e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 7.66e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.79e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.79e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.43e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.41e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.41e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.41e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.64e-05}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.56e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.56e-05}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.63e-12}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.3e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.44e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Atrazine", "categories": ["water"], "amount": 1.56e-09}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.94e-12}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 1.5e-11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.37e-09}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3e-11}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.38e-10}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.36e-09}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.36e-09}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.89e-06}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.89e-06}, {"name": "Barium II", "categories": ["air"], "amount": 1.91e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.91e-06}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9.17e-07}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.96e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.96e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 1.96e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.18e-06}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.03e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.18e-06}, {"name": "Barium II", "categories": ["water"], "amount": 2.18e-06}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.65e-13}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 3.11e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 4.09e-12}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 1.38e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.51e-12}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 6.1e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.59e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.15e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.34e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water"], "amount": 5.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.73e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 3.96e-12}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.79e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.79e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 5.91e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.16e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.26e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 2.3e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.83e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.83e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 1.28e-09}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 1.28e-09}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 1.23e-13}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.52e-13}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.26e-14}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.38e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 7.34e-13}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.87e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.87e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 7.65e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 7.65e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.79e-07}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.65e-06}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.65e-06}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.65e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.91e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.89e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.91e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 2.91e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.24e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 6.3e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4.36e-07}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4.36e-07}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.34e-11}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.65e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.54e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.89e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 4.59e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2.62e-07}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2.62e-07}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.61e-10}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 7.79e-12}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 1.73e-13}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 2.01e-10}, {"name": "Bromopropane", "categories": ["air"], "amount": 1.45e-13}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.71e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.65e-10}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.7e-10}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.7e-10}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.41e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.13e-11}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 5.24e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.1e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water"], "amount": 5.85e-14}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 1.9e-12}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.1e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water"], "amount": 3.2e-13}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.77e-10}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 1.16e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.48e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 1.86e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1.86e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.07e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.74e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.74e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.74e-07}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 5.25e-07}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 4.85e-06}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 5.25e-07}, {"name": "Cadmium II", "categories": ["water"], "amount": 5.25e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-10}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 5.38e-11}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.74e-10}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.74e-10}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36e-10}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.18e-10}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.62e-11}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.53e-10}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.67e-10}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.67e-10}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.1e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.77e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.44e-11}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.59e-11}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-10}, {"name": "Carboxin", "categories": ["air"], "amount": 1.06e-10}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.33e-11}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 8.02e-11}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.51e-10}, {"name": "Carboxin", "categories": ["water"], "amount": 1.51e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.88e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.4e-13}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.89e-09}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.46e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 8.34e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 8.34e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 8.34e-08}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water"], "amount": 5.42e-10}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-11}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.34e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.08e-10}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.11e-12}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.68e-13}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 3.39e-11}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 3.39e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 1.01e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 2.25e-11}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.85e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 4.92e-12}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.07e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1.3e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.26e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 6.01e-12}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.95e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.91e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 8.48e-09}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.13e-08}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.03e-08}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.03e-08}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.1e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.53e-08}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2.82e-07}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2.82e-07}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 5.04e-10}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 9.52e-11}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 8.39e-12}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 2.33e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.33e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.78e-08}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.92e-08}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.92e-08}, {"name": "Chromium III", "categories": ["soil"], "amount": 4.92e-08}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 5.46e-08}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 6.12e-07}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 5.46e-08}, {"name": "Chromium III", "categories": ["water"], "amount": 5.46e-08}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 3.88e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3.88e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.06e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.92e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.92e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.92e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.25e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.64e-05}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.25e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.25e-05}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.02e-10}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.29e-12}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 3.43e-12}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.06e-12}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 7.79e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 7.79e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.57e-07}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.57e-07}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.57e-07}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.84e-07}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.96e-06}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.84e-07}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.84e-07}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.41e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.41e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.84e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.84e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.84e-07}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.61e-06}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.61e-06}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.61e-06}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.19e-06}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.69e-05}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.19e-06}, {"name": "Copper ion", "categories": ["water"], "amount": 6.19e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air"], "amount": 6.61e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 6.61e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.48e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water"], "amount": 1.1e-12}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.49e-10}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.6e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.91e-14}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.27e-17}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.63e-13}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.58e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 5.68e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.87e-14}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 2.43e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 1.3e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.75e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.12e-10}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.15e-12}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 5.21e-11}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.34e-13}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-11}, {"name": "Decanoic acid", "categories": ["water"], "amount": 4.49e-12}, {"name": "Deltamethrin", "categories": ["air"], "amount": 8.94e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 8.47e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.54e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 8.19e-13}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 4.74e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.32e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5.5e-11}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-11}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.91e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.36e-11}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.36e-11}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 3.96e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.62e-10}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-12}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 4.71e-13}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 3.66e-12}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 3.66e-12}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.28e-10}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.87e-10}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 8.19e-12}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.15e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 2.35e-13}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 6.36e-12}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.39e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.39e-15}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air"], "amount": 1.88e-12}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.88e-12}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.21e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.16e-12}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.53e-15}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.53e-15}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.82e-14}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4e-15}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-09}, {"name": "Difenoconazole", "categories": ["air"], "amount": 2.27e-09}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2.24e-10}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 1.59e-09}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 4.71e-09}, {"name": "Difenoconazole", "categories": ["water"], "amount": 4.71e-09}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.74e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.15e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 4.03e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.8e-08}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.8e-08}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.71e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 9.13e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 6.62e-13}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.11e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.74e-11}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.43e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 9.68e-11}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 7.7e-12}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air"], "amount": 4e-12}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 4e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.1e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 2.44e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 6.48e-13}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 6.91e-11}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.81e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.81e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 4.25e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 4.25e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 6.24e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1.01e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1.01e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1.01e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.44e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.42e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.44e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.44e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 5.94e-13}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-11}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3.32e-11}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 7.82e-12}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 5.06e-11}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.14e-10}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 4.96e-11}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.99e-11}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-09}, {"name": "Diuron", "categories": ["air"], "amount": 1.08e-09}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 8.82e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.7e-10}, {"name": "Diuron", "categories": ["water"], "amount": 1.29e-09}, {"name": "Dodecanol", "categories": ["water"], "amount": 9.08e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.18e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.06e-12}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 4.7e-13}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2.75e-12}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2.03e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 4.15e-13}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.37e-11}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4e-10}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.45e-10}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.43e-10}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 8.35e-10}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 1.69e-09}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1.69e-09}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.88e-07}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.32e-08}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.19e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.59e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.59e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.86e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.86e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 6.47e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.94e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.15e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 8.08e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 9.46e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water"], "amount": 2.36e-14}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-12}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.72e-13}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.91e-12}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.91e-12}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 7.22e-12}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.03e-12}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 2.75e-13}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.75e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 9.26e-13}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 2.77e-13}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air"], "amount": 8.7e-13}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 8.7e-13}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.27e-12}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water"], "amount": 5.04e-13}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.56e-12}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 1.56e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1.06e-12}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.4e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.87e-12}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 4.03e-11}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 3.79e-11}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.28e-09}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 4.39e-12}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.09e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.8200000000000003e-11}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 6.62e-11}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.48e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.36e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.33e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.38e-11}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.56e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.71e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.71e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.89e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.48e-08}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.51e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 4.56e-08}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-09}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.34e-09}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 8.13e-11}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 6.09e-10}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 2.4e-09}, {"name": "Fludioxonil", "categories": ["water"], "amount": 2.4e-09}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.31e-09}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.46e-10}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.07e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.53e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 6.08e-09}, {"name": "Fluorene", "categories": ["air"], "amount": 1.72e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 3.45e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 9.7e-11}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.42e-12}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.07e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.56e-10}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.46e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.62e-12}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.62e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.09e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.48e-12}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.9e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water"], "amount": 1.26e-13}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 2.49e-12}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.17e-12}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air"], "amount": 2.67e-15}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.67e-15}, {"name": "Furfural", "categories": ["air"], "amount": 8.15e-13}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 7.63e-13}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.53e-11}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 7.63e-13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.07e-11}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.69e-12}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 8.77e-13}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 5.97e-12}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 5.97e-12}, {"name": "Glyphosate", "categories": ["water"], "amount": 5.97e-12}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 3.1e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.47e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.47e-10}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air"], "amount": 1.05e-17}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.05e-17}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 8.77e-11}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.6e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water"], "amount": 1.7e-13}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 2.54e-11}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.94e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.42e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.06e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.38e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.8e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 4.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 4.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.11e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 3.89e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 1.56e-14}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.98e-11}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 5.41e-11}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-11}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.85e-11}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.05e-11}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 7.98e-11}, {"name": "Imidacloprid", "categories": ["water"], "amount": 7.98e-11}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-09}, {"name": "Indoxacarb", "categories": ["air"], "amount": 2.9e-09}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 8.8e-11}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 6.91e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 3.55e-11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.08e-11}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air"], "amount": 2.94e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-17}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air"], "amount": 6.76e-13}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 6.76e-13}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.97e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water"], "amount": 4.39e-13}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 4.26e-11}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.87e-10}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.98e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5.81e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 1.13e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 1.13e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 1.13e-06}, {"name": "Lauric acid", "categories": ["air"], "amount": 1.94e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 2.15e-12}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8e-08}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-08}, {"name": "Lead II", "categories": ["air"], "amount": 5.84e-08}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 5.84e-08}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.15e-10}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 9.81e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 9.81e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 9.81e-09}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.07e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.57e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.07e-08}, {"name": "Lead II", "categories": ["water"], "amount": 1.07e-08}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.14e-12}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.37e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 8.13e-12}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.61e-12}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 4.33e-13}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.08e-12}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.08e-12}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-11}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.1e-12}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 3.49e-11}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 3.49e-11}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.15e-11}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 7.31e-13}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 7.68e-14}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.08e-10}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.94e-10}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.19e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.29e-10}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.53e-10}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.53e-10}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.36e-11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 6.97e-12}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 8.91e-13}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.33e-18}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.02e-06}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.02e-06}, {"name": "Mercury II", "categories": ["air"], "amount": 5.1e-06}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 5.1e-06}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.3e-08}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 9.74e-07}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 9.74e-07}, {"name": "Mercury II", "categories": ["soil"], "amount": 9.74e-07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.03e-06}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.31e-05}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.03e-06}, {"name": "Mercury II", "categories": ["water"], "amount": 1.03e-06}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.75e-12}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 1.29e-11}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.05e-12}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.16e-11}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 1.94e-11}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1.94e-11}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 6.97e-13}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5.6e-11}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 5.04e-13}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.9e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 6.52e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 3.23e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.55e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.55e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.23e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.23e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 8.7e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.86e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.86e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5.64e-11}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 7.49e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water"], "amount": 2.34e-14}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 4.81e-11}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-10}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 2.15e-11}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.19e-10}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Methomyl", "categories": ["water"], "amount": 1.96e-10}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 1.82e-11}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-09}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.34e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 9.64e-11}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.85e-10}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 2.11e-09}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.11e-09}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air"], "amount": 8.79e-13}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.79e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 1.67e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water"], "amount": 8.04e-13}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.31e-12}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 4.14e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.04e-12}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.58e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 7.58e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.03e-14}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.17e-13}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.17e-13}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.02e-11}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.28e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water"], "amount": 7.29e-13}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-10}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.4e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.28e-09}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.28e-09}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.28e-09}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.35e-10}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 8.88e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.63e-10}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-08}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 3.05e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.53e-09}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.61e-08}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 4.42e-08}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 4.42e-08}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.77e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.6e-12}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 7.24e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 7.24e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.33e-08}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.33e-08}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.33e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 3.7e-08}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.69e-07}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 3.7e-08}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 3.7e-08}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 7.82e-12}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 7.19e-13}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 8.98e-12}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 7.74e-12}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 8.13e-10}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.15e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.15e-11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 7.93e-12}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.23e-10}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.26e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.26e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 5.76e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.76e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.4e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.4e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.4e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.66e-06}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.66e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 2.66e-06}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-11}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.16e-11}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 2.04e-12}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.63e-11}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.63e-11}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.24e-11}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-14}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.35e-11}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 9.69e-12}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 3.72e-13}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5.1e-11}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 7.59e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 7.89e-11}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 3.93e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.99e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.99e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.67e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.16e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.11e-10}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7.51e-14}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.59e-10}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.06e-12}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.58e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.78e-11}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air"], "amount": 1.2e-14}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.2e-14}, {"name": "Pentane", "categories": ["water"], "amount": 8.58e-12}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.92e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 3.01e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.6e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.72e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.19e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air"], "amount": 8.91e-13}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.91e-13}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.16e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water"], "amount": 2.49e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.14e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.22e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.22e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 9.12e-10}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 4.91e-11}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.04e-10}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.17e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.26e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.05e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 4.39e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.97e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.59e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.4e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 3.38e-12}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 6.31e-12}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.92e-11}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.98e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.44e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1.76e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1.76e-09}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.13e-09}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.72e-10}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.69e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 4.1e-09}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.25e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.89e-11}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 1.75e-13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air"], "amount": 2.52e-13}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.52e-13}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 5.18e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water"], "amount": 5.62e-13}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.26e-11}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air"], "amount": 5.95e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.95e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.99e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water"], "amount": 5.78e-14}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 8.13e-11}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 7.92e-12}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 5.08e-13}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-10}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.94e-11}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.38e-10}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.53e-10}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.53e-10}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.53e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.32e-13}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air"], "amount": 4.83e-13}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.83e-13}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.3e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water"], "amount": 2.9e-13}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 1.05e-15}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.15e-12}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.15e-12}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 3.86e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.94e-12}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 4.88e-11}, {"name": "Pyrene", "categories": ["air"], "amount": 2.25e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.64e-08}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.49e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.09e-13}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.95e-11}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 3.96e-12}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.97e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.39e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.57e-10}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.45e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2.38e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2.38e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.05e-12}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 5.99e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.41e-10}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.38e-11}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 1.96e-06}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.96e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.73e-07}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 8.22e-07}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 8.22e-07}, {"name": "Selenium IV", "categories": ["soil"], "amount": 8.22e-07}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 9.11e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.73e-06}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 9.11e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.11e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.56e-12}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 4.31e-11}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.84e-05}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.84e-05}, {"name": "Silver I", "categories": ["air"], "amount": 5.11e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 5.11e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.21e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.21e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 1.21e-05}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.34e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 0.000134}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.34e-05}, {"name": "Silver I", "categories": ["water"], "amount": 1.34e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-10}, {"name": "Simazine", "categories": ["air"], "amount": 3.63e-10}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.96e-11}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.88e-10}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 5.02e-10}, {"name": "Simazine", "categories": ["water"], "amount": 5.02e-10}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air"], "amount": 2.65e-14}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2.65e-14}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 8.56e-14}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water"], "amount": 1.21e-14}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.34e-10}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air"], "amount": 9.96e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.96e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.5e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water"], "amount": 7.56e-13}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.09e-10}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 5.56e-12}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 5.56e-12}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 5.23e-13}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.81e-12}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 3.81e-12}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.34e-10}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-10}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.6e-11}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.14e-10}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.53e-10}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-09}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 2.01e-09}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.32e-09}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.27e-09}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.27e-09}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.66e-08}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2.35e-08}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.89e-09}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 4.74e-08}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 7.77e-12}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.68e-10}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.8e-11}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.06e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.84e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.84e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.5e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.26e-11}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.94e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.94e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 4.81e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 4.81e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2.07e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 4.53e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 4.53e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 4.53e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 5.03e-05}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 8.21e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 5.03e-05}, {"name": "Thallium I", "categories": ["water"], "amount": 5.03e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.05e-11}, {"name": "Thiabendazole", "categories": ["air"], "amount": 5.14e-11}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.29e-11}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.76e-11}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.76e-11}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 7.16e-12}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.72e-11}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.02e-10}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water"], "amount": 2.26e-11}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-10}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.23e-10}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.96e-10}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.96e-10}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.55e-11}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 6.88e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 9.06e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.31e-10}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.31e-10}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-09}, {"name": "Thiram", "categories": ["air"], "amount": 9.6e-10}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.45e-11}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.16e-10}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.73e-09}, {"name": "Thiram", "categories": ["water"], "amount": 2.73e-09}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.78e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.78e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 5.09e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 5.09e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 6.31e-09}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1.29e-07}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1.29e-07}, {"name": "Tin ion", "categories": ["soil"], "amount": 1.29e-07}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.32e-06}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Tin ion", "categories": ["water"], "amount": 1.41e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air"], "amount": 3.47e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.47e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 8.99e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water"], "amount": 2.9e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.27e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.27e-13}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 3.49e-11}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.94e-12}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.48e-10}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.45e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.51e-11}, {"name": "Triallate", "categories": ["air"], "amount": 1.05e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.43e-11}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.13e-10}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.66e-09}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 9.31e-09}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.01e-09}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.42e-08}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.38e-12}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 6.82e-11}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.14e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.71e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.67e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.35e-11}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 3.54e-09}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.32e-15}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47e-07}, {"name": "Triflumuron", "categories": ["air"], "amount": 2.5e-07}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 5.36e-08}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 2.87e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 4.48e-07}, {"name": "Triflumuron", "categories": ["water"], "amount": 4.48e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.45e-11}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.03e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.84e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.84e-10}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.16e-11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.59e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water"], "amount": 7.98e-14}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 5.95e-13}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.24e-05}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.24e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.05e-05}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.05e-05}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.31e-05}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 8.6e-05}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 8.6e-05}, {"name": "Vanadium V", "categories": ["soil"], "amount": 8.6e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 9.52e-05}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 0.000165}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 9.52e-05}, {"name": "Vanadium V", "categories": ["water"], "amount": 9.52e-05}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.91e-12}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air"], "amount": 1.73e-14}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.73e-14}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.78e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water"], "amount": 3.07e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000212}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000212}, {"name": "Zinc II", "categories": ["air"], "amount": 0.000238}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.000238}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.06e-05}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.000297}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.000297}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.000297}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.000326}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.000368}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.000326}, {"name": "Zinc II", "categories": ["water"], "amount": 0.000326}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.9e-11}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.08e-10}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.11e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 9.34e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.87e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.87e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.32e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.04e-12}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.22e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.22e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 4.23e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 4.35e-14}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air"], "amount": 4.68e-12}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 4.68e-12}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 1.26e-11}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 2.8e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 6.07e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "ecotoxicity: terrestrial no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.14e-12}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.01e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.07e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water"], "amount": 7.92e-12}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.74e-13}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.35e-14}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 6.16e-15}, {"name": "2,4-D", "categories": ["water"], "amount": 6.16e-15}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.1e-18}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 5.32e-20}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 3.8e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.1e-18}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 5.42e-13}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 5.42e-13}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 2.55e-12}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.75e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.1e-12}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.15e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.21e-14}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.14e-13}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.9e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 8.21e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.96e-18}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.1e-15}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.69e-12}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 7.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.84e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.27e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 2.66e-14}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.6e-15}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 9.01e-16}, {"name": "Acephate", "categories": ["water"], "amount": 9.01e-16}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.44e-13}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 3.86e-12}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.04e-11}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.72e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.86e-16}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water"], "amount": 7.63e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 5.07e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water"], "amount": 2.69e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 6.94e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 3.48e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 4.22e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 1.78e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-09}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.45e-16}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water"], "amount": 4.85e-14}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.21e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.21e-10}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 9.88e-12}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.57e-11}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.84e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 8.32e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.32e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.32e-09}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 1.66e-09}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.97e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 7.19e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.3e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.35e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 4.14e-08}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 6.71e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 9.75e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.62e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 4.67e-13}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water"], "amount": 7.09e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 3.97e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.28e-10}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water"], "amount": 8.11e-10}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65e-06}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65e-06}, {"name": "Antimony ion", "categories": ["air"], "amount": 5.29e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 5.29e-06}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.52e-24}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 4.72e-24}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 4.72e-24}, {"name": "Antimony ion", "categories": ["soil"], "amount": 4.72e-24}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 5.24e-24}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.06e-23}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 5.24e-24}, {"name": "Antimony ion", "categories": ["water"], "amount": 5.24e-24}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-06}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-06}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.13e-06}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.13e-06}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.15e-25}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.13e-24}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.13e-24}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.13e-24}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.24e-24}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.83e-24}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.24e-24}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.24e-24}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.98e-13}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.59e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 1.64e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water"], "amount": 1.15e-10}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 6.3e-13}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 7.63e-16}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.98e-09}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 5.77e-16}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.64e-15}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.56e-15}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.94e-16}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.94e-16}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.01e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.01e-08}, {"name": "Barium II", "categories": ["air"], "amount": 2.78e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.78e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 5.86e-26}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.25e-25}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.25e-25}, {"name": "Barium II", "categories": ["soil"], "amount": 1.25e-25}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.39e-25}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.92e-25}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.39e-25}, {"name": "Barium II", "categories": ["water"], "amount": 1.39e-25}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.96e-18}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 5.88e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.19e-15}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 7.42e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.28e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.08e-13}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.08e-13}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 3.94e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 2.13e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 6.63e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 4.87e-13}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water"], "amount": 9.79e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.05e-11}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.47e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.85e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 5.52e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 8.95e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.95e-10}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 8.7e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 5.07e-12}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 5.07e-12}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 9.12e-14}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 2.15e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.06e-14}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 5.44e-13}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.84e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.84e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 4.04e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 4.04e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.27e-26}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 4.86e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 4.86e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 4.86e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 5.32e-25}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.02e-24}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 5.32e-25}, {"name": "Beryllium II", "categories": ["water"], "amount": 5.32e-25}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.14e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 3.51e-09}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 3.51e-09}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.12e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.49e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.53e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 2.59e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 9.13e-09}, {"name": "Bifenthrin", "categories": ["water"], "amount": 9.13e-09}, {"name": "Bisphenol A", "categories": ["water"], "amount": 7.3e-14}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.14e-16}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 8.57e-18}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.09e-13}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.79e-13}, {"name": "Bromopropane", "categories": ["water"], "amount": 8.91e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.31e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 3.77e-14}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 7.59e-15}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 7.59e-15}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 9.83e-12}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 1.71e-14}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water"], "amount": 2.12e-13}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 3.66e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.01e-13}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water"], "amount": 4.2e-12}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.31e-08}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.43e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 2.36e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 2.36e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.48e-27}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.21e-26}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.21e-26}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.21e-26}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 4.66e-26}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.49e-25}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 4.66e-26}, {"name": "Cadmium II", "categories": ["water"], "amount": 4.66e-26}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.7e-12}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.58e-11}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.58e-11}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.48e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.57e-12}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 9.95e-13}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.75e-13}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.75e-13}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 9.72e-12}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 8.54e-11}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.87e-08}, {"name": "Carboxin", "categories": ["air"], "amount": 3.36e-08}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 7.59e-12}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 5.26e-12}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 2.76e-12}, {"name": "Carboxin", "categories": ["water"], "amount": 2.76e-12}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.12e-17}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.81e-14}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 2.3e-09}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 2.27e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 1.4e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 1.4e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 1.4e-09}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.98e-18}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water"], "amount": 3.72e-17}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 3.76e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 7.06e-12}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 1e-16}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 7.3e-08}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.3e-08}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 4.2e-17}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 7.75e-15}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.5e-12}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 5.27e-12}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.76e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 6.35e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 6.35e-10}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 4.71e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 7.83e-11}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.49e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.06e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.11e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.01e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1.01e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.88e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 8.96e-09}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 3.18e-08}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 3.18e-08}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.86e-09}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 8.15e-17}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.44e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.44e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 5.15e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5.15e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 2.21e-27}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6.11e-27}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6.11e-27}, {"name": "Chromium III", "categories": ["soil"], "amount": 6.11e-27}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 6.78e-27}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.84e-26}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 6.78e-27}, {"name": "Chromium III", "categories": ["water"], "amount": 6.78e-27}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.74e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.74e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 9.44e-25}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.61e-24}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.61e-24}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.61e-24}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.9e-24}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.67e-24}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.9e-24}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.9e-24}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.51e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 3.75e-13}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 5.04e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 5.04e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.91e-27}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.61e-26}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.61e-26}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.61e-26}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.88e-26}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.71e-25}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.88e-26}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.88e-26}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.48e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.48e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.96e-26}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.72e-25}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.72e-25}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.72e-25}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.32e-25}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4e-24}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.32e-25}, {"name": "Copper ion", "categories": ["water"], "amount": 6.32e-25}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.57e-13}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water"], "amount": 5.31e-13}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 3.89e-12}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 2.31e-15}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water"], "amount": 7.36e-15}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.25e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.73e-16}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.98e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 1.55e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.7e-19}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.05e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 3.23e-08}, {"name": "Cypermethrin", "categories": ["water"], "amount": 3.23e-08}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.9e-12}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.33e-16}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.78e-10}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 5.78e-14}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-12}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1.3e-13}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1.68e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.57e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.22e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1.04e-22}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 8.6e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 3.11e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 3.27e-11}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.43e-14}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 7.38e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.64e-16}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.64e-16}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.21e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3e-09}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 7.92e-15}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.91e-17}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.91e-17}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 3.71e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6.94e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1.05e-11}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 6.77e-17}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 3.98e-11}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.73e-14}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.73e-14}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.22e-13}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water"], "amount": 8.74e-13}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.1e-11}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.48e-17}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.7e-15}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.33e-07}, {"name": "Difenoconazole", "categories": ["air"], "amount": 1.89e-07}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 8.15e-13}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 7.46e-13}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 5.73e-13}, {"name": "Difenoconazole", "categories": ["water"], "amount": 5.73e-13}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.57e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.41e-08}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.19e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 7.89e-09}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.89e-09}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 8.45e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 7.8e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 3.44e-12}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 9.29e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.68e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 8.57e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.64e-12}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 1.77e-12}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 3.84e-12}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 7.98e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3e-11}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1.62e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1.62e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 2.36e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 3.76e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 3.76e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 3.76e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 2.39e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 5.52e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 2.39e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 2.39e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.47e-14}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 4.83e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.94e-17}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.52e-18}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 7.52e-18}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.3e-12}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.26e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.33e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 5.23e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4.31e-11}, {"name": "Diuron", "categories": ["water"], "amount": 2.9100000000000002e-11}, {"name": "Dodecanol", "categories": ["water"], "amount": 8.69e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.45e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 7.83e-16}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.49e-19}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 5.34e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.17e-21}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.82e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.65e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.69e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 1.23e-09}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.71e-10}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.71e-10}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.29e-07}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air"], "amount": 5.06e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 5.06e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.27e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.06e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.06e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.1e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.41e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.49e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.05e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.14e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water"], "amount": 2.99e-13}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 6.4e-17}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.88e-22}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.88e-22}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.45e-11}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 1.64e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1.73e-08}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.17e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.63e-12}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air"], "amount": 1.92e-09}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.92e-09}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 3.52e-13}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water"], "amount": 7.3e-13}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 1.23e-15}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.57e-15}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 5.19e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.79e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.71e-16}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 7.57e-18}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 2.02e-12}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 7.27e-09}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 5.54e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.51e-12}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.09e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.28e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.65e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.31e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.77e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.98e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 3.06e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.65e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1.41e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.3e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.03e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.03e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.03e-08}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 9.95e-08}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.21e-11}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 1.31e-11}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.65e-11}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.65e-11}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.08e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 4.43e-09}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.61e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.13e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 9.13e-10}, {"name": "Fluorene", "categories": ["air"], "amount": 2.07e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.37e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 2.35e-17}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.19e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.94e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.62e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 5.77e-13}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.01e-11}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 5.22e-17}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water"], "amount": 1.04e-14}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.58e-20}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 7.07e-14}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.07e-12}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air"], "amount": 2.79e-14}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.79e-14}, {"name": "Furfural", "categories": ["air"], "amount": 1.81e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.53e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.44e-21}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.99e-16}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.73e-22}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.26e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 9.11e-14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 9.11e-14}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.36e-16}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-16}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 2.92e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.98e-16}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water"], "amount": 2.21e-15}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.23e-14}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.86e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.18e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.55e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 9.06e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.42e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.42e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.63e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 4.41e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.03e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.03e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 8.95e-15}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.49e-11}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.79e-15}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4.92e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 6.83e-17}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 7.03e-21}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.26e-21}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.26e-21}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.79e-08}, {"name": "Indoxacarb", "categories": ["air"], "amount": 6.86e-08}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.13e-10}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 1.14e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.44e-12}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 4.29e-16}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.29e-16}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1e-09}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1e-09}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.95e-12}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 2.28e-12}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.3e-10}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.56e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.28e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.43e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 2.13e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 2.13e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2.13e-07}, {"name": "Lauric acid", "categories": ["air"], "amount": 9.87e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.76e-14}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.66e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Lead II", "categories": ["air"], "amount": 5.3e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 5.3e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.72e-29}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.78e-28}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.78e-28}, {"name": "Lead II", "categories": ["soil"], "amount": 8.78e-28}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 9.54e-28}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.02e-26}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 9.54e-28}, {"name": "Lead II", "categories": ["water"], "amount": 9.54e-28}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 4.48e-18}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5.81e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.33e-18}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.14e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 7.51e-16}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.25e-16}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.25e-16}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 6.71e-15}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.01e-14}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.01e-14}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.35e-21}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.48e-16}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.17e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 9.63e-15}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.09e-16}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.08e-16}, {"name": "Mancozeb", "categories": ["water"], "amount": 1.08e-16}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 9.9e-15}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.72e-13}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 8.33e-15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 2.1e-24}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 1.7e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.7e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.86e-27}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 7.89e-26}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 7.89e-26}, {"name": "Mercury II", "categories": ["soil"], "amount": 7.89e-26}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 8.34e-26}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.88e-25}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 8.34e-26}, {"name": "Mercury II", "categories": ["water"], "amount": 8.34e-26}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-09}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 5.19e-09}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.6e-11}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 9.35e-12}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 3.96e-12}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 5.19e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 3.14e-15}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 2.18e-15}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.3e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.08e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.5e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.5e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 5.61e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.14e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 4.74e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 4.74e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.19e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.61e-11}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 3.48e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water"], "amount": 4.81e-13}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.36e-10}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 4.81e-12}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.35e-12}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water"], "amount": 7.73e-13}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 6.18e-11}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.46e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6.81e-13}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.56e-13}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 5.89e-13}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 5.89e-13}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.6e-11}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.37e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.4e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.19e-11}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.27e-13}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.36e-10}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.36e-10}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.45e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.61e-10}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 8.27e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.1e-10}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.79e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.29e-10}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.66e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 9.76e-12}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.02e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 7.39e-16}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.2e-16}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2e-16}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.59e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.59e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.79e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.79e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 9.47e-28}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.62e-27}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.62e-27}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.62e-27}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.91e-27}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.22e-26}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.91e-27}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.91e-27}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1.6e-13}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 6.87e-14}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 2.62e-11}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 9.13e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 6.66e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.1e-11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.88e-12}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 6.91e-09}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.33e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.3e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 2.3e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.71e-26}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.34e-25}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.34e-25}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.34e-25}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.59e-25}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.2e-24}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.59e-25}, {"name": "Nickel II", "categories": ["water"], "amount": 2.59e-25}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-09}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 6.05e-09}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 8.3e-19}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 3.78e-19}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.25e-19}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.25e-19}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.39e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.69e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 5.35e-14}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 2.47e-10}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 6.63e-16}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 9.69e-15}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.94e-10}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1.52e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 1.1e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.84e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.34e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.54e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.81e-11}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.35e-19}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.15e-09}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 2.05e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 7.34e-16}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 7.89e-10}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 7.89e-10}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air"], "amount": 2.36e-13}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-13}, {"name": "Pentane", "categories": ["water"], "amount": 2.23e-13}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.32e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.57e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.22e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 6.3e-14}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water"], "amount": 1.12e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.48e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.48e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.82e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.82e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.32e-12}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.55e-12}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.38e-10}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.1e-09}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.74e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.13e-12}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 3.24e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.87e-12}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.22e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 4.56e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 8.37e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-14}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.04e-13}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.73e-15}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 8.88e-10}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 4.31e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 5.75e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 8.81e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 8.81e-10}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 7.27e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 6.22e-10}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 7.72e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.92e-08}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 4.29e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 4.49e-16}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 4.62e-17}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air"], "amount": 7.09e-12}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 7.09e-12}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 2.39e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water"], "amount": 1e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.86e-11}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.42e-14}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water"], "amount": 3.44e-13}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.32e-14}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.61e-11}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.31e-11}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 6.11e-12}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 2.7e-12}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.55e-12}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.19e-15}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.33e-13}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air"], "amount": 5.86e-10}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 5.86e-10}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.76e-13}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water"], "amount": 3.65e-13}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 3.72e-14}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.36e-11}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.36e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.67e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.98e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Pyrene", "categories": ["air"], "amount": 1.38e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 2.64e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 4.89e-15}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1.36e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 7.6e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 3.04e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.06e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.06e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.09e-15}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 4.66e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3.04e-10}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.01e-14}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.64e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 7.64e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.52e-26}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 7.22e-26}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 7.22e-26}, {"name": "Selenium IV", "categories": ["soil"], "amount": 7.22e-26}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 8e-26}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 3.68e-25}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 8e-26}, {"name": "Selenium IV", "categories": ["water"], "amount": 8e-26}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.77e-13}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.59e-13}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000119}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000119}, {"name": "Silver I", "categories": ["air"], "amount": 8.19e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 8.19e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.47e-25}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.13e-24}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.13e-24}, {"name": "Silver I", "categories": ["soil"], "amount": 1.13e-24}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.24e-24}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 9.91e-24}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.24e-24}, {"name": "Silver I", "categories": ["water"], "amount": 1.24e-24}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.07e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.91e-11}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.48e-11}, {"name": "Simazine", "categories": ["water"], "amount": 3.48e-11}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.76e-10}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.76e-10}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.5e-32}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water"], "amount": 3.19e-32}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 8.8e-10}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 4.77e-14}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water"], "amount": 1.58e-13}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 9.02e-14}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.43e-08}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.7e-08}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.7e-08}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 7.38e-15}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.96e-21}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.96e-21}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.68e-11}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.03e-12}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.01e-12}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water"], "amount": 9.55e-13}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 8.65e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 8.7e-11}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.36e-11}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.43e-11}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.43e-11}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-06}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.54e-06}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 9.93e-11}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 8.97e-11}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 6.71e-14}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 3.26e-09}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 5.45e-10}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.57e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-12}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-06}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-06}, {"name": "Thallium I", "categories": ["air"], "amount": 7.15e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 7.15e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.16e-24}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.53e-24}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.53e-24}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.53e-24}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.82e-24}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.55e-24}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.82e-24}, {"name": "Thallium I", "categories": ["water"], "amount": 2.82e-24}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.24e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 4.04e-14}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.18e-14}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.18e-14}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 7.08e-15}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 5.59e-10}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.31e-15}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water"], "amount": 2.43e-13}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 1.11e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.34e-09}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.34e-09}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.16e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 8.34e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.68e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.22e-11}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.22e-11}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air"], "amount": 6.43e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 3.45e-12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.84e-12}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.09e-11}, {"name": "Thiram", "categories": ["water"], "amount": 2.09e-11}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.85e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.85e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 6.82e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 6.82e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 5.57e-28}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.24e-26}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 9.38e-26}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.24e-26}, {"name": "Tin ion", "categories": ["water"], "amount": 1.24e-26}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.06e-13}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water"], "amount": 3.43e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.83e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.83e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.32e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.82e-12}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 9.93e-09}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2.06e-10}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.77e-14}, {"name": "Triallate", "categories": ["air"], "amount": 5.36e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.14e-10}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.07e-10}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 8.53e-13}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.73e-06}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.55e-14}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.1e-14}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.64e-14}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.82e-13}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.03e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.02e-11}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.09e-17}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 2.05e-16}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.67e-05}, {"name": "Triflumuron", "categories": ["air"], "amount": 5.52e-05}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 9.58e-07}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 6.68e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.3e-07}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.29e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.5e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.63e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.63e-10}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.01e-15}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.13e-13}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 7.82e-18}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water"], "amount": 1.47e-16}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 2.26e-15}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.33e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.3e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.3e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.16e-24}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 7.67e-24}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 7.67e-24}, {"name": "Vanadium V", "categories": ["soil"], "amount": 7.67e-24}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 8.48e-24}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.45e-23}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 8.48e-24}, {"name": "Vanadium V", "categories": ["water"], "amount": 8.48e-24}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.67e-11}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 6.28e-14}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water"], "amount": 2.09e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.41e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.41e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 1.66e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1.66e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.66e-24}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.41e-23}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.41e-23}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.41e-23}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.64e-23}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.98e-23}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.64e-23}, {"name": "Zinc II", "categories": ["water"], "amount": 2.64e-23}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 8.48e-10}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 9.19e-14}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.04e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 2.13e-13}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water"], "amount": 7.07e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.14e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 3.88e-13}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air"], "amount": 6.1e-09}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 6.1e-09}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 4.62e-12}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 9.58e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2.13e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "eutrophication: freshwater no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "eutrophication: marine no LT"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "land use no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "photochemical oxidant formation: terrestrial ecosystems no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.71e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.71e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.92e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.15e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.15e-08}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.79e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.79e-09}, {"name": "Acetone", "categories": ["air"], "amount": 4.52e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.52e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.07e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.07e-08}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.62e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.43e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.43e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.54e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air"], "amount": 3.92e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.96e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.96e-08}, {"name": "Cumene", "categories": ["air"], "amount": 2.41e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.11e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.47e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -7.54e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -7.54e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56e-08}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.47e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Formic acid", "categories": ["air"], "amount": 2.26e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Heptane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Hexane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-09}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 8.6e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.6e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 7.54e-10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Methanol", "categories": ["air"], "amount": 9.8e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.97e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.29e-07}, {"name": "Pentane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Phenol", "categories": ["air"], "amount": -3.77e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.77e-09}, {"name": "Propanal", "categories": ["air"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanol", "categories": ["air"], "amount": 3.62e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propionic acid", "categories": ["air"], "amount": 9.8e-09}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Styrene", "categories": ["air"], "amount": 3.77e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77e-09}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.54e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Toluene", "categories": ["air"], "amount": 3.32e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48e-08}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "water use: aquatic ecosystems no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "ecosystem quality no LT", "water use: terrestrial ecosystems no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1.35e-08}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "human health no LT", "climate change: human health no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 1.25e-05}, {"name": "Chloroform", "categories": ["air"], "amount": 3.42e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.42e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000985}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000985}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.000985}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.000985}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.00272}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.00272}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000335}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000335}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.0114}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.0176}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.0176}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.00164}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.00164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000287}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.88e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.88e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.0437}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00416}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00416}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.00416}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.00416}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.000166}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.000166}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0011}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.107}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.107}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.223}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.00683}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.46e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.46e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 4.93e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 4.93e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00367}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00367}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00367}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00367}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0168}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0168}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.0168}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.0168}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0037}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0037}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.87e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.87e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0339}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0339}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000308}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.00142}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.12e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.95e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.55e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.55e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.95e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.0037}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.0037}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.138}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.0109}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.0708}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.16}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.43}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "human health no LT", "human toxicity: carcinogenic no LT"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 2.16e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-06}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 5.75e-06}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 2.16e-07}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Acephate", "categories": ["water"], "amount": 2.69e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 0.000165}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.23e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 7.17e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.83e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 9.87e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air"], "amount": 1.07e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.07e-07}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.23e-10}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water"], "amount": 8.03e-08}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0745}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0745}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0694}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0694}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.00574}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0536}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0536}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0536}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0586}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0586}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0586}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-05}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 9.48e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.44e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 5.11e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 5.11e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 5.11e-06}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.54e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.54e-07}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 3.56e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.24e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.17e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.24e-07}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 4.82e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.43e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.19e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.000312}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000312}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00381}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.91e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.91e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.000889}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.000889}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.18e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.02e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.02e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.02e-05}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.88e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.61e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.88e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 2.88e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 4.42e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 4.42e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000569}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000569}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00103}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.00103}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.00112}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 5.18e-05}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 5.18e-05}, {"name": "Cadmium II", "categories": ["soil"], "amount": 5.18e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 3.29e-05}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.000262}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 3.29e-05}, {"name": "Cadmium II", "categories": ["water"], "amount": 3.29e-05}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 7.18e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.27e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.09e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.09e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 9.73e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 4.29e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.23e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.86e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.65e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 7.03e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.2e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 3.22e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 3.22e-07}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47}, {"name": "Chromium VI", "categories": ["air"], "amount": 2.21}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 2.21}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.61}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.66}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.66}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.66}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.82}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.22}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.82}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.82}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0008}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.64e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 9.01e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.11e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.63e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 331}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 331}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 77.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 263}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 755}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.33e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 2.24e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 2.24e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.68e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.68e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 8.1e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 8.1e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.16e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 7.42e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 7.42e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 2.92e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.45e-05}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 4.32e-06}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000172}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.11e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 4.14e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.08e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4.55e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.12e-09}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.000315}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.000315}, {"name": "Furfural", "categories": ["air"], "amount": 9.63e-07}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air"], "amount": 1.6e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.6e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 3.44e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water"], "amount": 8.81e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.4e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 5.71e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 5.71e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.77e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.84e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 7.54e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 7.54e-06}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 4.26e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.26e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000119}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000119}, {"name": "Lead II", "categories": ["air"], "amount": 8.8e-05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 8.8e-05}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.57e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.28e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.28e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 2.28e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.78e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 5.54e-05}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.78e-06}, {"name": "Lead II", "categories": ["water"], "amount": 4.78e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 4.15e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.37e-07}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0103}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0103}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.000544}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.00251}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.00251}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.00251}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.00244}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0252}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.00244}, {"name": "Mercury II", "categories": ["water"], "amount": 0.00244}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 4.09e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 4.09e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.93e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.29e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000848}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000848}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000448}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000782}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.25e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.87e-07}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.87e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 5.69e-08}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.82e-07}, {"name": "Naphthalene", "categories": ["air"], "amount": 7.98e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00389}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00389}, {"name": "Nickel II", "categories": ["air"], "amount": 0.00301}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.00301}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.000698}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.00118}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.00118}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.00118}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 0.000828}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 0.00396}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.000828}, {"name": "Nickel II", "categories": ["water"], "amount": 0.000828}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.82e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.000112}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.000112}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 2.27e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.97e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.92e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.54e-05}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.12e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.21e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.61e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.017}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.17e-05}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.94e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.95e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.21e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.21e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3.16e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.24e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.33e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.73e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.77e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air"], "amount": 4.44e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 4.44e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.13e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water"], "amount": 7.51e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.08e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.35e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1.26e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.26e-05}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air"], "amount": 6.77e-08}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.77e-08}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 8.86e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water"], "amount": 7.62e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.64e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 7.99e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.04e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.04e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.2e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.12e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "human health no LT", "human toxicity: non-carcinogenic no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 3.35e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0044}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.28e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 2e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.22e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.09e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.66e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.66e-07}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 7.34e-05}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.9e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.84e-06}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.42e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water"], "amount": 9.33e-07}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.0088}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.0088}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.00235}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 0.0149}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.00734}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.18}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.1}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.933}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.933}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.933}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.02}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.35}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.02}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.02}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 1.39e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.00479}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.00228}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.00481}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.00481}, {"name": "Barium II", "categories": ["soil"], "amount": 0.00481}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 0.0073}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water"], "amount": 0.00529}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.08e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3.06e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.86e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 2.96e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.15e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.07e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.44e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000306}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00629}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00629}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.99e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.58e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.58e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.58e-05}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 7.3e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 4.08e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 7.3e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 7.3e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.27e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.76e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.66e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.48e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.64e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.63e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000449}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000449}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.52e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.52e-06}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0342}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0342}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0244}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0244}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.0707}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00326}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00326}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.00326}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00207}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.0165}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00207}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00207}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.64e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.89e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.89e-06}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.74e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.96e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 2.25e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.36e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.92e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.86e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.48e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.28e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.28e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 9.69e-08}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 9.69e-08}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.89e-08}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.04e-07}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water"], "amount": 1.12e-08}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00136}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00136}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00244}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00244}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.000321}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.000878}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.000878}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.000878}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.000962}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.00223}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.000962}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.000962}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 2.53e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2.53e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.9e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["soil"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.72e-05}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water"], "amount": 5.54e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.75e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.92e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.92e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 6.38e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.98e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000197}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2.18e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.18e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.85e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 6.5e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.88e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.88e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.32e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.32e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.72e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1.61e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1.61e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.000126}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.57e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.35e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.51e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 7.09e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.02e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air"], "amount": 8.09e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 8.09e-06}, {"name": "Furfural", "categories": ["air"], "amount": 3.63e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00125}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.57e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 9.28e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 9.28e-06}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00978}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00978}, {"name": "Lead II", "categories": ["air"], "amount": 0.00725}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00725}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.00129}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.00188}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.00188}, {"name": "Lead II", "categories": ["soil"], "amount": 0.00188}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.000394}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.00456}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.000394}, {"name": "Lead II", "categories": ["water"], "amount": 0.000394}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.000113}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.02e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39}, {"name": "Mercury II", "categories": ["air"], "amount": 0.287}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.287}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0151}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.07}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.07}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0677}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.702}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0677}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0677}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000349}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 3.65e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 3.65e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 7.64e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.61e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 9.21e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 9.21e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.12e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.12e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000668}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000668}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000353}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000618}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 7.64e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 7.64e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.42e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.00114}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.000714}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.000258}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 4.86e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.56e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.51e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.35e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.15e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.15e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 3.97e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.97e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 9.23e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.56e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.56e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.56e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 5.24e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 1.1e-05}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.74e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 3.24e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.11e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.92e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.39e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 9.85e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.89e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000138}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 7.23e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.13e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.72e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 5.29e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 9.76e-08}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 5.15e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.78e-08}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 6.25e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 3.37e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.33e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.21e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air"], "amount": 0.0211}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0211}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0424}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.00347}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.00347}, {"name": "Silver I", "categories": ["soil"], "amount": 0.00347}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 0.00771}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water"], "amount": 0.000921}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.05e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water"], "amount": 4.81e-09}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.43e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 2.71e-06}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air"], "amount": 0.249}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.249}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.107}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.235}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.235}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.235}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.422}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water"], "amount": 0.26}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.2e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.63e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.01e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.18e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.12e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.92e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.92e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.69e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air"], "amount": 0.0141}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 0.0141}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.00208}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 0.0253}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.0148}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4.15e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.58e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air"], "amount": 0.449}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.449}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0777}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.547}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.547}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.547}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.677}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water"], "amount": 0.602}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.88e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.36e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.41e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.16e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "human health no LT", "ionising radiation no LT"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 6.45e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 4.09e-11}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 6.75e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 5.1e-11}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 6.87e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1.25e-11}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 6.62e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.21e-07}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 8.15e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water"], "amount": 1.4e-07}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 3.82e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water"], "amount": 1.78e-10}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 3.43e-11}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 3.3e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 3.7e-08}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 4.83e-08}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 5.67e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 5.77e-13}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water"], "amount": 2.17e-06}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 4.2e-10}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 7.9e-12}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 1.27e-09}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 2.67e-10}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.1e-13}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 5.6e-08}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 6.23e-08}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 1.27e-09}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water"], "amount": 1.08e-10}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 2.03e-11}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 1.53e-11}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 3.3e-12}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 4.2e-10}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 6.37e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water"], "amount": 3.95e-10}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 1.53e-12}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 1.53e-12}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water"], "amount": 4.33e-10}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 3.82e-08}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water", "ocean"], "amount": 1.17e-11}, {"name": "Uranium alpha", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water"], "amount": 1.9e-09}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 1.9e-11}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water"], "amount": 2.03e-09}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 2.84e-11}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 1.17e-11}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water"], "amount": 1.9e-09}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 1.2e-13}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "human health no LT", "ozone depletion no LT"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-05}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.28e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000214}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000214}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.00114}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.000161}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000777}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000777}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.000777}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.000777}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.04e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.04e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 8.04e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 8.04e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.34e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.34e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.68e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.68e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2.68e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2.68e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.000764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.000764}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 8.87e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 8.87e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000884}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000884}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0106}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0106}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.0106}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.0106}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0213}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0213}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.0213}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.0213}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5.36e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5.36e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0011}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0011}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.68e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.68e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.0011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.0011}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.00134}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.00134}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "human health no LT", "particulate matter formation no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.000151}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.03e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.000107}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 6.92e-05}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000182}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000145}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "human health no LT", "photochemical oxidant formation: human health no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.72e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.82e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.82e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air"], "amount": 1.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.98e-08}, {"name": "Acrolein", "categories": ["air"], "amount": 1.78e-07}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.78e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -6.27e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -6.27e-08}, {"name": "Benzene", "categories": ["air"], "amount": 3.3e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.52e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 2.94e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air"], "amount": 1.72e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cumene", "categories": ["air"], "amount": 1.06e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 9.24e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.52e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -3.3e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -3.3e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 6.27e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 6.27e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.22e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.22e-07}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.52e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.48e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.48e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.42e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.42e-08}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.3e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Methanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.06e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.63e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.63e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 6.73e-07}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.39e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 9.1e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Phenol", "categories": ["air"], "amount": -1.65e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -1.65e-08}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Styrene", "categories": ["air"], "amount": 1.65e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.3e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 9.57e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.57e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "human health no LT", "water use: human health no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 2.22e-06}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "natural resources no LT", "energy resources: non-renewable, fossil no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.0341}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "natural resources no LT", "material resources: metals/minerals no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.132}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0303}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00527}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 17.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.74}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0267}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0705}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0025}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00241}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0113}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00356}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 73.4}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0443}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000654}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 22.3}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.07}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00212}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00133}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 3.07}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.099}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0202}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00874}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 278}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.83}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.918}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "total: ecosystem quality no LT", "ecosystem quality no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.680299999999999e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 6.158999999999999e-10}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.48373e-12}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.6652e-11}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83562e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.52564e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.3411235e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.83520616e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.83520616e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7236e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.083400011e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.492700000532001e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.492700000532001e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7236e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 5.1363e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.083400011e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.492700000532001e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.522999999999999e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.6019e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.995342e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.995342e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.80725e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.7113922e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.7113922e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.5517e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.6551e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.01482e-11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36004267e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36004267e-08}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.2917e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.5654e-12}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 2.9949e-09}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 2.1337e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.9679973e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.9679973e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.350059938e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.55641e-11}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1.16136e-10}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.311e-11}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.311e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.22876e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.8545e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.320779999999999e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.87616e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.001556000000001e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.24170901e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.24170901e-10}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.1503717e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.1503717e-08}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 8.5333e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04851e-10}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05858e-11}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 4.5908e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.77038805e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.183263e-10}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air"], "amount": 4.5204406e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.5204406e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.4881e-13}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.8318e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.1213e-12}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.801e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 5.8726e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 3.8295e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.7464e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["water"], "amount": 5.3361e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37024635e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.194350000000001e-11}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.37757e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.37757e-10}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.232e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.232e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 3.6996e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.4716e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.783900000000001e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9.863e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.630105e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.630105e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.8867e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 1.347e-09}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 4.0935e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15771e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.647e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.428e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.273e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.093999999999999e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.925140000000001e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.5279e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.3014e-09}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.82132e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air"], "amount": 9.982e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 9.982e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.50817e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.4279e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.022e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.26214e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.49851e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.7676e-10}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.79831e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.79831e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 8.90784e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 8.90784e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.22685e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 6.9213e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 6.9213e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 6.9213e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 7.683600000000001e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 0.00016}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 7.683600000000001e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 7.683600000000001e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.123386e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.123386e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.90447e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.90447e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.43398e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.41392e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.41392e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.41392e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.56432e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.64e-05}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.56432e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.56432e-05}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.17828e-10}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1346e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.0689e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.0208e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.26675e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.26675e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.26675e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.1857e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.330007629999999e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.6535e-07}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.39150577e-10}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.698e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.42000164e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.913800156e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.10360000694e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.10360000694e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.930437e-06}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.930437e-06}, {"name": "Barium II", "categories": ["air"], "amount": 1.938571e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.938571e-06}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9.178159999999999e-07}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.96175e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.96175e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 1.96175e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.18194e-06}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.03e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.18194e-06}, {"name": "Barium II", "categories": ["water"], "amount": 2.18194e-06}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.606500196e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 2.489e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14409719e-09}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 1.087e-10}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2491e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.9148e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.772679999999999e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.772679999999999e-10}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1.148e-08}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.12803e-06}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.2778e-10}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.8389e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.178899999999999e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.053e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47005026e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47005026e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.875178e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.05076e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.6023e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.6023e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.8812e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 3.2029e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.2029e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.377e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.994e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3.994e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.468506999999999e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.468506999999999e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.44142e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.4232e-11}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 5.1476e-12}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.4135e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.99278e-10}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.571314e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.571314e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.17031e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.17031e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.8138e-07}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.6854e-06}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.6854e-06}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.6854e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.9489e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.89e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.9489e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 2.9489e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.594e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.834e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.0444e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.523951e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.523951e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 4.794e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.587e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 3.31e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 1.512e-08}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 7.178e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.72113e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.72113e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.1461073e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.38790514e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.077300857e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 7.151109e-09}, {"name": "Bromopropane", "categories": ["air"], "amount": 1.1492e-12}, {"name": "Bromopropane", "categories": ["water"], "amount": 9.086200000000001e-11}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.465e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.907349999999999e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.24030377e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.1697000759e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.1697000759e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 5.120000000000001e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.2437e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.5907e-09}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.9354e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.3043e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.29705e-11}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 2.29266e-10}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.921400000000001e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.812e-11}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5287e-08}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.1259e-07}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.891379999999999e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.891379999999999e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 4.2242e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 4.2242e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.0938e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.845e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.845e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.845e-07}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 5.367e-07}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 4.85e-06}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 5.367e-07}, {"name": "Cadmium II", "categories": ["water"], "amount": 5.367e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.81297e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.11696e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.5588e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.133979999999999e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.133979999999999e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19026e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.9898e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.16777e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.8453995e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2267475e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2267475e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9602e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.2783e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.5000682e-08}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.6843e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.6843e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.0889e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.6612e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.5213e-09}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9713e-08}, {"name": "Carboxin", "categories": ["air"], "amount": 3.6626e-08}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.61089e-09}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 9.67546e-09}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.825376e-08}, {"name": "Carboxin", "categories": ["water"], "amount": 1.825376e-08}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.8809164e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.60581e-11}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9851e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 6.719e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 5.1687e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 2.9548e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 2.9548e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 2.9548e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44000000198675e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.515420000372e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.9074e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.811e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.390799999999999e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.8217e-10}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 3.22681e-11}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 7.41839e-08}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.41839e-08}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 1.01000042202e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 6.28250775e-09}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air"], "amount": 6.8412273e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 6.8412273e-08}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.10592e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.2319e-10}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 9.1e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 7.039e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 7.039e-10}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.7535e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.32431e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.862e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.846e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.3288e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.323e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 5.893e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 5.893e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.97e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.588e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.28426e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.05138e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.05138e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.6864e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.6952000815e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.01023e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.058238e-06}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.058238e-06}, {"name": "Chromium III", "categories": ["air"], "amount": 7.48608e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.48608e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.8321e-08}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.064e-08}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.064e-08}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.064e-08}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 5.62e-08}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 6.12e-07}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 5.62e-08}, {"name": "Chromium III", "categories": ["water"], "amount": 5.62e-08}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.552896000000001e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.552896000000001e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.05629e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 4.05629e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.06196e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.92542e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.92542e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.92542e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.25602e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.64e-05}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.25602e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.25602e-05}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.0517e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 6.9229e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 5.144300000000001e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.88435e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.737403e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.737403e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 1.28451e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1.28451e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.9144e-08}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.6099e-07}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.6099e-07}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.6099e-07}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.884e-07}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.96e-06}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.884e-07}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.884e-07}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.55101e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.55101e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 3.32384e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.32384e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.946e-07}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.712e-06}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.712e-06}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.712e-06}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.302e-06}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.69e-05}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.302e-06}, {"name": "Copper ion", "categories": ["water"], "amount": 6.302e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air"], "amount": 2.41005783e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41005783e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.496336e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.89631e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.30289e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.6023606e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.810646e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.6665e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.3763373e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5.07e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.0723e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.42870047e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.036e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 6.188000000000001e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.53323e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.53323e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4299e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.0219e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.16150233e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.970099999999999e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.73918e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.54408e-09}, {"name": "Decanoic acid", "categories": ["water"], "amount": 2.11462e-09}, {"name": "Deltamethrin", "categories": ["air"], "amount": 2.946e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 3.193e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.507600000000001e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.7119000000104e-11}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.5234e-10}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.1811e-08}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.753e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.985034300000001e-09}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73316e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.3729e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.633600264e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.633600264e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 5.548e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3362e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.243e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.677892000000001e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.416600291e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.416600291e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.4928e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.129e-09}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.1337e-08}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.29869e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 3.056e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.112350677e-10}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 7.5216e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.470005178e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.470005178e-08}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.17928e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.17928e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.635339999999999e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.23034e-10}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.125253e-11}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.125253e-11}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.8284957e-14}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.8857e-12}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4135e-07}, {"name": "Difenoconazole", "categories": ["air"], "amount": 2.0617e-07}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.944815e-09}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 5.6190746e-08}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 1.66710573e-07}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1.66710573e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7484e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.2825e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.4422e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.48589e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.48589e-06}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 2.096e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 9.9372e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.37102e-10}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.594e-09}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.91574e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 4.07e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.699944e-08}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 6.2347e-10}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.025e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.025e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.48552e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.874200000000001e-10}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9700538e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9700538e-06}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.9700538e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.9700538e-06}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.244924e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.3321e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3362e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3362e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 2.0618e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 2.0618e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 3.0532e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 5.102e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 5.102e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 5.102e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.593e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.97657e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.593e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.593e-05}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.656187e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09252e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 6.0432e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.438200645e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.1006000494e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.371400000752e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.371400000752e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.7426e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.4012e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3505e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.5858e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.06405e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.88131e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.563191e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.57777e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.486299999999999e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.530607829999999e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21470000249e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 9.755e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3.039e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.9541500000117e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.7474e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.7474e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 7.047e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2333e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.5985e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.402999999999999e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 3.0565e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.056100000000001e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.056100000000001e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8228e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8.372e-07}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air"], "amount": 6.642e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 6.642e-12}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 5.440147999999999e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.440147999999999e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 6.692738872000001e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 6.692738872000001e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.99014e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.5485e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.5485e-11}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.5200961e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 3.5200961e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 3.2700893e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 3.2700893e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.750157e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.750157e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 5.750157e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 5.750157e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.766732e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3.766732e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 8.6189e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.730238e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.730238e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8.730238e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8.730238e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.310227e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.310227e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 8.310227e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 8.310227e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.3200906e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 3.3200906e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2000601e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2000601e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2.2000601e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2.2000601e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00021400585}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00021400585}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.00021400585}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.00021400585}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.30259e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.483e-09}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0004450121}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0004450121}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.0004450121}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.0004450121}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3700373e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3700373e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3700373e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3700373e-05}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.1756e-13}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.6926e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16852e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.2872064e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.29910000000288e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.29910000000288e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.7672e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 5.7903e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.50894e-08}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43055768e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43055768e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.1162e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.6307e-11}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air"], "amount": 1.94897e-09}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.94897e-09}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.62358e-12}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water"], "amount": 1.41234e-10}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.26866e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.26866e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78123343e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.9706257e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.713000000000001e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 5.327e-11}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 3.4403e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.547900471e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.528000000757e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 5.3141e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.4086e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.2763e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 7.01371e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.3682e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 7.599999999999999e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2464e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.539800000000001e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.956e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.7608e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.2454e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.2177e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.2177e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.8758e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 8.938000000000001e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.451e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.6259e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.6259e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.6259e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5126e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.1734e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 6.5634e-09}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 4.91221e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.934165e-07}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.934165e-07}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2711e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 3.3676e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.027999999999999e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 3.265e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.35993e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 4.607e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 5.0082e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 5.117e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.154200235e-10}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.6626e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.16056e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.606e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.483852e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.483852e-08}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.15095e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.4358e-10}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.900524070000001e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.943639999999999e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.314100085799999e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.955606999999999e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4224e-10}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air"], "amount": 3.1472e-14}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 3.1472e-14}, {"name": "Furfural", "categories": ["air"], "amount": 1.86695e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.127630000202e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.9543e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.127630000202e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.98070000000144e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.732769e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.44877699e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.665970000000373e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.665970000000373e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.665970000000373e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8926e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.489e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.29470911e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.29470911e-08}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.640000025104e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.640000025104e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 1.05077e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.60050713e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.827221e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.0654423e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.0826e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.249e-08}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.2557e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 8.063800000000001e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.809164e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39003934e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39003934e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.126764e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.483915199999999e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.483915199999999e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.34455e-12}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.6047e-09}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.37410479e-09}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04271e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.049849999999999e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.184000683e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.89050000000703e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.44980000000226e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.44980000000226e-09}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.541e-08}, {"name": "Indoxacarb", "categories": ["air"], "amount": 7.971e-08}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 3.081e-09}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2.4405e-08}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.275617e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.46424e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 8.600000047030001e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.600000047030001e-08}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1.026676e-09}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1.026676e-09}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 3.16725e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water"], "amount": 1.24899e-10}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.40115e-09}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.42488e-09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.2617e-08}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.736e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.605e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 4.164e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.4843e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.4843e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.4843e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 1.784e-11}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.0121676e-09}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.460321999999999e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.460321999999999e-07}, {"name": "Lead II", "categories": ["air"], "amount": 5.885420000000001e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 5.885420000000001e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.314e-10}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 1.0198e-08}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 1.0198e-08}, {"name": "Lead II", "categories": ["soil"], "amount": 1.0198e-08}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.1121e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.57e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.1121e-08}, {"name": "Lead II", "categories": ["water"], "amount": 1.1121e-08}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.7714000448e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 8.89e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.5313000233e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.213709999999999e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.21433751e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.144080125e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.144080125e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2503e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.3310671e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.204910100000001e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.204910100000001e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.951499999999999e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.0373100000135e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.1477148e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.10228e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.27494e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.47190963e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.972900040900001e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.4653000108e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.4653000108e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.6736099e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.41742e-10}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 1.0789933e-10}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 6.303300021e-16}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.192228e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.192228e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 2.21119e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 2.21119e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.3772e-08}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0067e-06}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0067e-06}, {"name": "Mercury II", "categories": ["soil"], "amount": 1.0067e-06}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.0646e-06}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.31e-05}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.0646e-06}, {"name": "Mercury II", "categories": ["water"], "amount": 1.0646e-06}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.8765e-10}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.133500000000001e-09}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 5.6209e-09}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.5905e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.40095e-09}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2.34336e-09}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2.34336e-09}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 5.67097e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.565600314e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4050618e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.552e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.885999999999999e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 9.035899999999999e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.982679e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 9.982679e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3302e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3302e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 7.3302e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 7.3302e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3600915e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3600915e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 3.3600915e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 3.3600915e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 7.400202e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 7.400202e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00031700865}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00031700865}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.00031700865}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.00031700865}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.956307e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.956307e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 4.0236e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.231e-11}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 6.770185e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 6.770185e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.160168e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.160168e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 6.160168e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 6.160168e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8300772e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8300772e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.8300772e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.8300772e-06}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2200334e-07}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2200334e-07}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.2200334e-07}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.2200334e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1900325e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1900325e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 1.1900325e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.1900325e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.18562603e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.18562603e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1900325e-07}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1900325e-07}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1.1900325e-07}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.1900325e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 7.400275968e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 7.400275968e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.04391e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.435e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00027500751}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00027500751}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.00027500751}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.00027500751}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2.1900597e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2.1900597e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00014200386}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014200386}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.00014200386}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.00014200386}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.1144e-13}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.9244e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.894100000000001e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 2.0765e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74674e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 6.00631e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.322135e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.479677299999999e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.479677299999999e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.479677299999999e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.38e-10}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8735e-07}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.6234e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 7.787081e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 5.5285656e-08}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 1.70110589e-07}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 1.70110589e-07}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.297143e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.297143e-09}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.1759e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 3.4104e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.8277e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.8277e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 5.5654e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.5594e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41003796e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41003796e-08}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.6673e-12}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.416369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.416369999999999e-10}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.142e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.9012e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.47429e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.06189e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.3719e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9329e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.8029e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3719e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.03409e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.03409e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.03409e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63375e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.07254e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.0387276e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26365e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.07675e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.6653000124e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.106100000739e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.56420000032e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.56420000032e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.767999999999999e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 5.336e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.157425e-07}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.157425e-07}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 9.0409e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 9.0409e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.21929e-08}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.3557e-08}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.3557e-08}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.3557e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 3.7285e-08}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.69e-07}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 3.7285e-08}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 3.7285e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17798e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2.007877e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.25798e-09}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 9.4494e-10}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.3103e-08}, {"name": "Naphthalene", "categories": ["air"], "amount": 9.302e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.6425e-09}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 9.5681e-10}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.4533e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.059327e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.059327e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 8.0712e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 8.0712e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.8558e-07}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.4289e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.4289e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.4289e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.692e-06}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.692e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 2.692e-06}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4485e-09}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 6.2896e-09}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1.6504000083e-10}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 8.971000003780001e-10}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.316300000125e-09}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.316300000125e-09}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitric oxide", "categories": ["air"], "amount": 3.14e-07}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.884e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 7.094000000000001e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00032000874}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00032000874}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.00032000874}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00032000874}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 2.053e-07}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 3.436e-09}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.08772e-11}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.1555e-09}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 7.78690663e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.498169e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.305e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11911e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 4.179e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 9.703e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.409e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.409e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.171e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.17877e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.189100000000001e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.956e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 9.015100535000001e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.0009e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.975e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.28060734e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.429e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.1088e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.24349e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.24349e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air"], "amount": 3.020025237e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.020025237e-08}, {"name": "Pentane", "categories": ["water"], "amount": 4.998803000000001e-09}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.00032100876}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.017e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.002e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 2.0333e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 8.117e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.0794e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.461900645e-10}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air"], "amount": -3.749579e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.749579e-09}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.167158e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.7761e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 3.562e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 3.562e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.472000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.472000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.95232e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.231355e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.757099999999999e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.6404e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 8.9875e-08}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.19505e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.0975e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.12529e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.82659e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.15565e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 5.0829e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.402442000000001e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.68484e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.1031573e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.5872e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.2429e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.6319e-08}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.898e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.898e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 2.777e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 2.777e-09}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.4957e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.0084e-08}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.317e-10}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.413e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.0294e-08}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.3839e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 2.2356e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4117449e-11}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.11750462e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air"], "amount": 5.4307464e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.4307464e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 7.6055e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water"], "amount": 8.1562e-11}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.0292e-09}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air"], "amount": 3.62007158e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62007158e-08}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 2.3687e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.9418e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.561343199999999e-09}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.6402e-10}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.32608e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8246e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.36551e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.11407e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.275855e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.275855e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.275855e-08}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63119919e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09465e-10}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air"], "amount": 6.01583e-10}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 6.01583e-10}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.47729e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water"], "amount": 8.115500000000002e-11}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 4.9125e-13}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.6519e-11}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.6519e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.679e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 7.074e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.3538e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.9068e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 4.448e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.278e-06}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.7413e-07}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.389e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.389e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.511389e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.0395e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.8366e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.887e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.211e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.2767e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.6849e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.9144e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.9144e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.2705209e-10}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.167e-09}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.1445e-08}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2.8868e-09}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.85901e-11}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57122e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57122e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 2.7278e-06}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 2.7278e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.7502e-07}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 8.316100000000001e-07}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 8.316100000000001e-07}, {"name": "Selenium IV", "categories": ["soil"], "amount": 8.316100000000001e-07}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 9.217e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.73e-06}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 9.217e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.217e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.904e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.88237e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.193859000000001e-09}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001874323}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001874323}, {"name": "Silver I", "categories": ["air"], "amount": 0.000133116}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.000133116}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.6198e-06}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.2405e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.2405e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 1.2405e-05}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.3737e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 0.000134}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.3737e-05}, {"name": "Silver I", "categories": ["water"], "amount": 1.3737e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55942e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.15613e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.0866e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.33571e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.06368e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.06368e-08}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.771265e-10}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.771265e-10}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 8.56e-14}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water"], "amount": 5.7221e-12}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.5114e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air"], "amount": 3.77007198e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77007198e-09}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.505038e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75914e-10}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.52090902e-08}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.14369e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0008590233999999999}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0008590233999999999}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.0008590233999999999}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0008590233999999999}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.5520356e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.5520356e-07}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.4553038e-10}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.06381000000196e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.06381000000196e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1.003208e-07}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3431e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.28703e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.185009999999999e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.8453955e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7556e-09}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14932e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9.172099999999999e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.7515e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.593736e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.742943e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.742943e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1146e-06}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.7225e-06}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.709199999999999e-08}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 4.898993e-07}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 1.6774897e-06}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.378371e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.4728e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.303e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.7316e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.687849999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.687849999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.53667e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.7108e-10}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.043632000000001e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.043632000000001e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 4.88296e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 4.88296e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2.07152e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 4.53331e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 4.53331e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 4.53331e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 5.03368e-05}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 8.21e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 5.03368e-05}, {"name": "Thallium I", "categories": ["water"], "amount": 5.03368e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58345e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.34304e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.138841e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.6029404e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05376318e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05376318e-08}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 8.6416708e-10}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.0562e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.0200131648e-10}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water"], "amount": 6.302843e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8483e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.2836e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.6623e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.11236e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.11236e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03395e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.36888e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.4302e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.3474e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.06432e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.06432e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.531e-08}, {"name": "Thiram", "categories": ["air"], "amount": 1.15e-08}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.89795e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.391784e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.277509e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.277509e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.663257e-06}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.663257e-06}, {"name": "Tin ion", "categories": ["air"], "amount": 1.19211e-06}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.19211e-06}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 6.458e-09}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1.3204e-07}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1.3204e-07}, {"name": "Tin ion", "categories": ["soil"], "amount": 1.3204e-07}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.4432e-07}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.32e-06}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.4432e-07}, {"name": "Tin ion", "categories": ["water"], "amount": 1.4432e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.32003648e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32003648e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.099279999999999e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.7333e-11}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.764e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.764e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 3.62693e-11}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.4476e-10}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 3.5878e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 5.11706e-07}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2151177e-09}, {"name": "Triallate", "categories": ["air"], "amount": 7.55e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.4183e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.202e-08}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.29660853e-07}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.87331e-06}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.15100855e-08}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.144200041e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.7988e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.508216400000001e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19007233e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19007233e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.738967e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.1927e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.7237e-09}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.9184e-07}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49109341e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.26525e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.895e-09}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7987e-05}, {"name": "Triflumuron", "categories": ["air"], "amount": 5.869e-05}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 2.7716e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 1.0785e-05}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.5978e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.5978e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.932e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 4.985e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.763e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.5447e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.5447e-08}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.8260301e-10}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 4.10713e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.2304e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.590078418e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.2279947e-11}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.179726e-11}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.57424e-05}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.57424e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.2843e-05}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.2843e-05}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.3117e-05}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 8.6112e-05}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 8.6112e-05}, {"name": "Vanadium V", "categories": ["soil"], "amount": 8.6112e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 9.5324e-05}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 0.000165}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 9.5324e-05}, {"name": "Vanadium V", "categories": ["water"], "amount": 9.5324e-05}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.1061e-10}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.81e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.81e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.84498e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08516e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.036e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000214422}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000214422}, {"name": "Zinc II", "categories": ["air"], "amount": 0.0002397094}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.0002397094}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.060924e-05}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.000297133}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.000297133}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.000297133}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.000326146}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.000368}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.000326146}, {"name": "Zinc II", "categories": ["water"], "amount": 0.000326146}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.44e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.7856e-08}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.119496e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.43238e-10}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.880061599999999e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.880061599999999e-08}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.342038e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.66747e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.4114e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.4114e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 5.3951e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 5.0815e-12}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air"], "amount": 6.27268e-09}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 6.27268e-09}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 1.72521e-11}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water"], "amount": 7.9038e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.782e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "total: human health no LT", "human health no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 2.495e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00440673}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376575}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141216}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176269}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176269}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 2.36e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.28e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 0.000165}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 5.26e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 5.26e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.139e-06}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 6.92e-06}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 6.45e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 4.09e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137924}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137924}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0001721}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.9e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.84e-06}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 6.75e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 5.1e-11}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.000151}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.317e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.317e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.543e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water"], "amount": 1.0133e-06}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.0088}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.0088}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.00235}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 0.0149}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.00734}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 6.87e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1.25e-11}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3745}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3745}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.2494}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.2494}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.10574}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.9866}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.9866}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.9866}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.0786}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.484}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.0786}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.0786}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-05}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.206e-06}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 3.106e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.5e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.5e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.5e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.00479}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.00228}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.00481}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.00481}, {"name": "Barium II", "categories": ["soil"], "amount": 0.00481}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 0.0073}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water"], "amount": 0.00529}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.67e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.67e-07}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.640000000000001e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.546e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.2386e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.536e-07}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.97e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.5207e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.434e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0003369}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0003369}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.004116}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0063691}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0063691}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146889}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146889}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 4.17e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.6e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.6e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.6e-05}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.018e-05}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.69e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.018e-05}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.018e-05}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.27e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.76e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.66e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.48e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.64e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.63e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000449}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000449}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 6.234e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.234e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.034769}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.034769}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.02543}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.02543}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.07182}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.0033118}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.0033118}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.0033118}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.0021029}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.016762}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.0021029}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.0021029}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 6.62e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.21e-07}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 8.15e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water"], "amount": 1.4e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.498e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.838e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.784e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.279e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.279e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 3.82e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water"], "amount": 1.78e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.74e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.169e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.54e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.336e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.336e-05}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.59e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 5.780000000000001e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.096e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.125e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.673e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9.679999999999999e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.602e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.602e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 9.69e-08}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 9.69e-08}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.89e-08}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.04e-07}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water"], "amount": 1.12e-08}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47136}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47136}, {"name": "Chromium VI", "categories": ["air"], "amount": 2.21244}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 2.21244}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.610321}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.660878}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.660878}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.660878}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.820962}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.22223}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.820962}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.820962}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 3.43e-11}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 3.3e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 3.7e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 2.53e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2.53e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.9e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["soil"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.72e-05}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water"], "amount": 5.54e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 4.83e-08}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0008}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.75e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.92e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.92e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.748e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 4.62e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002871}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.738e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.738e-07}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.11e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.63e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.85e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010078}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010078}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.0010078}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.0010078}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 331}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 331}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 77.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 263}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 755}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.98e-05}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0027202428}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0027202428}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0005490699}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0005490699}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.72e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.0114}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.89e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.89e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.01874161}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.01874161}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.00180181}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.00180181}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000287}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.034e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.034e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.16e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044477}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044477}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.044477}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.044477}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0042404}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0042404}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.0042404}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.0042404}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.000180142}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.000180142}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011268}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011268}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0011268}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0011268}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.107764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.107764}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.0001115}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0001705}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.223}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.00683}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.57e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.35e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 7.83e-06}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000172}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.11e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 4.14e-05}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.1509e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.57e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.412e-09}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.00032309}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00032309}, {"name": "Furfural", "categories": ["air"], "amount": 4.593e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.5e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.5e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.1144e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8881e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00125}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.4e-05}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 8.98e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 8.98e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.527e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.077e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.03142e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.03142e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 5.67e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 5.77e-13}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water"], "amount": 2.17e-06}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 4.2e-10}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 7.9e-12}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 8.019999999999999e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.019999999999999e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.009899}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.009899}, {"name": "Lead II", "categories": ["air"], "amount": 0.007338000000000001}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.007338000000000001}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0013057}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0019028}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0019028}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0019028}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.00039878}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.0046154}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.00039878}, {"name": "Lead II", "categories": ["water"], "amount": 0.00039878}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 1.27e-09}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.0001545}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.339e-06}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 2.67e-10}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.404}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.404}, {"name": "Mercury II", "categories": ["air"], "amount": 0.2973}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.2973}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.015644}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.07251}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.07251}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.07251}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.07014}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.7272}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.07014}, {"name": "Mercury II", "categories": ["water"], "amount": 0.07014}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00123793}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00123793}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01427}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01427}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.01427}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.01427}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03809999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03809999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.03809999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.03809999999999999}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 4.09e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 4.09e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0037536365}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0037536365}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.27399e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.27399e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.057e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.239e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.03509209999999999}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.03509209999999999}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000308}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.00142}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.12e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.95e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.44233e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.44233e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.95e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.006316}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.006316}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.0008010000000000001}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.0014}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.138}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.01224764}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.01224764}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.0708}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 7.67e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.00114}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.000714}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.000258}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air"], "amount": 5.274499999999999e-07}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 5.274499999999999e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 5.7386e-08}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.8356e-07}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.049e-05}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3.235e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0039415}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0039415}, {"name": "Nickel II", "categories": ["air"], "amount": 0.0030497}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.0030497}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.0007072300000000001}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.0011956}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.0011956}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.0011956}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 0.000839}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 0.0040124}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.000839}, {"name": "Nickel II", "categories": ["water"], "amount": 0.000839}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.0973e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.00010839}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 5.14e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6.06e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.011e-05}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.1e-13}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.11e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.00011337}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.00011337}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 2.662e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.209e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.16}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 2.905e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 2.329e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000138}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.843e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.623e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.46e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 6.9e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1.1176e-06}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 5.6e-08}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 6.23e-08}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 1.27e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.017}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.685e-05}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 9.818e-07}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.200000000000001e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.58e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 6.54e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 4.37e-07}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water"], "amount": 1.08e-10}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 2.03e-11}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 1.53e-11}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 3.3e-12}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air"], "amount": 0.0211}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0211}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0424}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.00347}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.00347}, {"name": "Silver I", "categories": ["soil"], "amount": 0.00347}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 0.00771}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water"], "amount": 0.000921}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 4.2e-10}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 6.37e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water"], "amount": 3.95e-10}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.345e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.3781e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000182}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.43}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000145}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 1.53e-12}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 1.53e-12}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water"], "amount": 4.33e-10}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.43e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-06}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air"], "amount": 0.249}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.249}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.107}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.235}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.235}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.235}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.422}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water"], "amount": 0.26}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 3.82e-08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air"], "amount": 3.854e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.854e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 5.33e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water"], "amount": 2.381e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.01e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.85e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.688e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.47e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.18e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.18e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.69e-08}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water", "ocean"], "amount": 1.17e-11}, {"name": "Uranium alpha", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water"], "amount": 1.9e-09}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 1.9e-11}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water"], "amount": 2.03e-09}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 2.84e-11}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 1.17e-11}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water"], "amount": 1.9e-09}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air"], "amount": 0.0141}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 0.0141}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.00208}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 0.0253}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.0148}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 2.22e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 1.2e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air"], "amount": 4.277e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 4.277e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 5.036e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water"], "amount": 2.342e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air"], "amount": 0.449}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.449}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0777}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.547}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.547}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.547}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.677}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water"], "amount": 0.602}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 7.52e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.159e-06}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.0806e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0806e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.341e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.1816e-07}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (E) no LT", "total: natural resources no LT", "natural resources no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.132}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0303}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00527}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 17.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.74}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0267}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0705}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0025}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00241}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0113}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00356}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 73.4}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0443}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000654}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 22.3}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.07}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.0341}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00212}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00133}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 3.07}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.099}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0202}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00874}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 278}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.83}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.918}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1.35e-08}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "acidification: terrestrial"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.72e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.17e-07}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.63e-08}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.38e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "climate change: freshwater ecosystems"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 6.82e-13}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-13}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-13}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 6.82e-13}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 6.82e-13}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 6.82e-13}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 6.82e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 1.87e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 5.38e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.38e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.38e-11}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 5.38e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 5.38e-11}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.48e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.48e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.83e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.83e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 6.23e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 9.61e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 9.61e-10}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 8.93e-11}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 8.93e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 1.57e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 1.57e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 1.57e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.03e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.03e-13}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 2.38e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2.38e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2.38e-09}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2.27e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.27e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.27e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.27e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.27e-10}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 9.06e-12}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 9.06e-12}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 6.01e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.01e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.01e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 6.01e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 6.01e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 5.85e-09}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.85e-09}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.85e-09}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 5.85e-09}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 5.85e-09}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 1.21e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.21e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.21e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3.73e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.73e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.73e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3.73e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3.73e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.34e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.34e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.69e-13}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.69e-13}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 9.15e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.15e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.15e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 9.15e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 9.15e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.02e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.02e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 8.65e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.65e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.65e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 8.65e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 8.65e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.02e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.02e-12}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1.85e-09}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1.85e-09}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 1.68e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1.68e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1.68e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 7.72e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.72e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.72e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 7.72e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 7.72e-11}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 3.34e-12}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.34e-12}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-12}, {"name": "Methane, fossil", "categories": ["air"], "amount": 3.34e-12}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 3.34e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 3.25e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.25e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.25e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 3.25e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 3.25e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.39e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.39e-12}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 3.25e-12}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.25e-12}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.25e-12}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 3.25e-12}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 3.25e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2.02e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2.02e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7.51e-09}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-09}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-09}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7.51e-09}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7.51e-09}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5.97e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5.97e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 3.86e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3.86e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3.86e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 8.74e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74e-09}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 8.74e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 8.74e-09}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 8.76e-09}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 2.34e-08}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 2.34e-08}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "climate change: terrestrial ecosystems"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2.5e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.5e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.5e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 2.5e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 2.5e-08}, {"name": "Chloroform", "categories": ["air"], "amount": 6.84e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 6.84e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 1.97e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.97e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97e-06}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.97e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.97e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 5.44e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.44e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 6.7e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 6.7e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.52e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 3.52e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 3.27e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 3.27e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 5.75e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 5.75e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 5.75e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.76e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3.76e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8.73e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.73e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.73e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8.73e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8.73e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 8.31e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.31e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.31e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 8.31e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 8.31e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.32e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 3.32e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2.2e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2.2e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2.2e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.000214}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000214}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000214}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.000214}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.000214}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.000445}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000445}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000445}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.000445}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.000445}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1.37e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.37e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.37e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 4.93e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 4.93e-08}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.85e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 9.85e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 7.33e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.33e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.33e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 7.33e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 7.33e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 3.36e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.36e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.36e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 3.36e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 3.36e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 7.4e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 7.4e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.000317}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000317}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000317}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.000317}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.000317}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.73e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.73e-08}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 6.77e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 6.77e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 6.16e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.16e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.16e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 6.16e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 6.16e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2.83e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.83e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.83e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.83e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.83e-06}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.22e-07}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22e-07}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-07}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.22e-07}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.22e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.19e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 1.19e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.11e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.11e-08}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.19e-07}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-07}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-07}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1.19e-07}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 7.4e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 7.4e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.000275}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000275}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000275}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.000275}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.000275}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2.19e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2.19e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.000142}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000142}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000142}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.000142}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.000142}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.00032}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00032}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00032}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.00032}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00032}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.000321}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 0.000859}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000859}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000859}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.000859}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.000859}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "ecotoxicity: freshwater"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 3.63e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 5.81e-10}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.73e-15}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 2.86e-11}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-10}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.5e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.33e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.82e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.82e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09e-11}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.4e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.4e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09e-11}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1.27e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.4e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.51e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.97e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.7e-15}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.73e-11}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 4.27e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 4.27e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.07e-15}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.32e-12}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 2.57e-09}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.27e-14}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.38e-20}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.54e-11}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.77e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-11}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.8e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.96e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.19e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.19e-10}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.93e-14}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1e-10}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-13}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.05e-18}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.18e-10}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.21e-15}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.51e-12}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.03e-14}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 6.07e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 6.26e-13}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 1.96e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.54e-09}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.35e-18}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.17e-11}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1.64e-11}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1.64e-11}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.16e-13}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.06e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-09}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 7.92e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 5.28e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.89e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.88e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.02e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 7.64e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.75e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.43e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.74e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.47e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.33e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.37e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 9.34e-11}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.46e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 3.31e-08}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.31e-08}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.31e-08}, {"name": "Antimony ion", "categories": ["air"], "amount": 8.84e-08}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 8.84e-08}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 6.85e-08}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 2.13e-07}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 2.13e-07}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.13e-07}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 4.57e-26}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.36e-07}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 3.86e-09}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-09}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-09}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.47e-08}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.47e-08}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 3.98e-09}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 3.92e-08}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 3.92e-08}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.92e-08}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 6.69e-27}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.32e-08}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.44e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 5.93e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.25e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.18e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.62e-07}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.38e-10}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.89e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.09e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.09e-07}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.37e-10}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-10}, {"name": "Barium II", "categories": ["air"], "amount": 7.71e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 7.71e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8.16e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.61e-27}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water"], "amount": 1.94e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.59e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.59e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14e-09}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 9.99e-11}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.81e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.73e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.73e-10}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1.44e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.11e-06}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.17e-10}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.19e-14}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.03e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.2e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.78e-15}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.04e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.71e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 4.79e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.79e-11}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.06e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.34e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.34e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.42e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.35e-11}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 2.9e-15}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.98e-10}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 3.14e-09}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-09}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-09}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.31e-08}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.31e-08}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.38e-09}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.54e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.54e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.54e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.62e-27}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.89e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.6e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.97e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.48e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 3.54e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.67e-08}, {"name": "Bifenthrin", "categories": ["air"], "amount": 2.8e-08}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.7e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.46e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.45e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.45e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.12e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.31e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.06e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 6.95e-09}, {"name": "Bromopropane", "categories": ["air"], "amount": 2.52e-14}, {"name": "Bromopropane", "categories": ["water"], "amount": 8.96e-11}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.16e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.16e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.24e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.12e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.52e-09}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 2.9e-11}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.33e-15}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.27e-11}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.04e-14}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.36e-11}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-09}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.08e-07}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 1.38e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38e-09}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38e-09}, {"name": "Cadmium II", "categories": ["air"], "amount": 4.2e-09}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 4.2e-09}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 2.38e-09}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.05e-08}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.05e-08}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.05e-08}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.41e-28}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.17e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.79e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-09}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.36e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.06e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.06e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-09}, {"name": "Carbendazim", "categories": ["air"], "amount": 4.88e-09}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.14e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.83e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.83e-08}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.43e-13}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.43e-13}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 6.9e-14}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.42e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.88e-10}, {"name": "Carboxin", "categories": ["air"], "amount": 2.92e-09}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.59e-09}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 9.59e-09}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Carboxin", "categories": ["water"], "amount": 1.81e-08}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 4.4e-19}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.59e-11}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.41e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 6.3e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 5e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 2.87e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 2.87e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 2.87e-06}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 6.75e-21}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.51e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.54e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.75e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 4.41e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.72e-10}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 3.2e-11}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1.15e-09}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.15e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 2.02e-19}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 6.26e-09}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.92e-14}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.13e-10}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.27e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 5.59e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 5.59e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.25e-13}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.24e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.84e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.1e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.68e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 4.68e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.29e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.24e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.02e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.02e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.35e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.6e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 2.38e-10}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-10}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-10}, {"name": "Chromium III", "categories": ["air"], "amount": 6.08e-10}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 6.08e-10}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.21e-10}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.44e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.44e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.44e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.87e-29}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.6e-09}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 8.96e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.96e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.96e-09}, {"name": "Chromium VI", "categories": ["air"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 5.42e-08}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 5.42e-08}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.42e-08}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 2.37e-26}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 6.02e-08}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.76e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.6e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.84e-10}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["air"], "amount": 1.51e-09}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1.51e-09}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 4.44e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 3.99e-09}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 3.99e-09}, {"name": "Cobalt II", "categories": ["soil"], "amount": 3.99e-09}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 9.43e-29}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.4e-09}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1.01e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-08}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-08}, {"name": "Copper ion", "categories": ["air"], "amount": 3.84e-08}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.84e-08}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.06e-08}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.02e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.02e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.02e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.88e-27}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1.12e-07}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 6.36e-15}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.88e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.15e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 5.06e-17}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.8e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 8.95e-18}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.34e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.51e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.4e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 5.84e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.4e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.4e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 8.9e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.11e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.04e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.72e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Decanoic acid", "categories": ["water"], "amount": 2.11e-09}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 4.1e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 3.72e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 7.76e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.39e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.63e-11}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.39e-10}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.14e-08}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.06e-11}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.93e-09}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-10}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.62e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 9.42e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.19e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.97e-11}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.63e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.38e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.38e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 6.55e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 4.01e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.96e-10}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.11e-10}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 7.06e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.09e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.09e-15}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 3.34e-15}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.21e-10}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.5e-13}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.5e-13}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.57e-19}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.88e-12}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.92e-09}, {"name": "Difenoconazole", "categories": ["air"], "amount": 1.49e-08}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.72e-09}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 5.46e-08}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 1.62e-07}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1.62e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.08e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.39e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.38e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.38e-06}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.08e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 2.72e-14}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.33e-10}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 4.26e-10}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.34e-09}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.97e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.69e-08}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 6.14e-10}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.52e-14}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.77e-10}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.18e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.21e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1.52e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.52e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1.68e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1.68e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 6.92e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 3.32e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 3.32e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 3.32e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 4.57e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.21e-05}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 2.72e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-10}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.18e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.36e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.05e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.36e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.36e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.38e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.76e-09}, {"name": "Diuron", "categories": ["air"], "amount": 2.45e-08}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.05e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.82e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.55e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.56e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.5e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.8e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.75e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.95e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.24e-12}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 9.24e-12}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 5.09e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49e-09}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.74e-09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 2.85e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 5.82e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.82e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 6.95e-07}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air"], "amount": 3.92e-13}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-13}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.14e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.95e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.89e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 3.85e-11}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 3.59e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.47e-09}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.56e-15}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.37e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.26e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.28e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.28e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.55e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.11e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.02e-14}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.14e-11}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air"], "amount": 2.81e-11}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.81e-11}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 1.58e-15}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water"], "amount": 1.4e-10}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 5.71e-11}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 5.71e-11}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 3.43e-18}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.96e-10}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.23e-13}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 3.35e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.87e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.51e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 5.25e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.65e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.18e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 6.95e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.2e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.03e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.44e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.43e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.56e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.21e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.11e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.11e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.77e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.01e-07}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.3e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.17e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.57e-06}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 5.55e-09}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-09}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 6.47e-09}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 4.85e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.91e-07}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.91e-07}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-08}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2.84e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8.46e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 6.05e-10}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 8.17e-12}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.95e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.85e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.14e-10}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.15e-08}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 3.25e-14}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.31e-10}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.07e-19}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.93e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.27e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.93e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air"], "amount": 9.02e-16}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 9.02e-16}, {"name": "Furfural", "categories": ["air"], "amount": 4.88e-12}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.44e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 4.09e-10}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.66e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1.98e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.23e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.23e-08}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air"], "amount": 4.54e-18}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 4.54e-18}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 7.5e-09}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.13e-18}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.81e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.04e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.21e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.57e-11}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.49e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.04e-15}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 4.64e-15}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.08e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.52e-13}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.57e-09}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.32e-09}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.24e-09}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.07e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.83e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.37e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.37e-09}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.98e-09}, {"name": "Indoxacarb", "categories": ["air"], "amount": 8.21e-09}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2.88e-09}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2.36e-08}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.43e-09}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air"], "amount": 1.19e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.19e-17}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air"], "amount": 2.6e-11}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 2.6e-11}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 7.25e-15}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water"], "amount": 1.22e-10}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.38e-09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.22e-08}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.79e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 2.94e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.35e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.35e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.35e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.03e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.01e-09}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 3.22e-11}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-11}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-11}, {"name": "Lead II", "categories": ["air"], "amount": 1.42e-10}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 1.42e-10}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.64e-11}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 3.88e-10}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 3.88e-10}, {"name": "Lead II", "categories": ["soil"], "amount": 3.88e-10}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 4.29e-31}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water"], "amount": 4.21e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.74e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.71e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.45e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-11}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.21e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.14e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.14e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.32e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.17e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.17e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.43e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.03e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.14e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-09}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.01e-08}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.41e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.94e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.42e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.42e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.61e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.34e-10}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 6.27e-16}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2.28e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-09}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-09}, {"name": "Mercury II", "categories": ["air"], "amount": 1.19e-08}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.19e-08}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 7.72e-10}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 3.27e-08}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 3.27e-08}, {"name": "Mercury II", "categories": ["soil"], "amount": 3.27e-08}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.25e-29}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 3.46e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.03e-10}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 1.18e-10}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 4.18e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.38e-09}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2.32e-09}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2.32e-09}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 4.74e-11}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.51e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.78e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 8.99e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.91e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.26e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.03e-11}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.03e-14}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.01e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3.71e-10}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.74e-15}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.42e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.71e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.95e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35e-09}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.98e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.46e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.58e-10}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.85e-09}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.5e-08}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 7.69e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 5.46e-08}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 1.68e-07}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 1.68e-07}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.64e-13}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.64e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.59e-14}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.96e-11}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 2.54e-13}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.37e-12}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air"], "amount": 5.42e-12}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 5.42e-12}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.4e-09}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.29e-15}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.03e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.51e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.02e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.54e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.06e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.03e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 5.37e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.62e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.08e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.52e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.52e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.71e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.24e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 4.25e-11}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.25e-11}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.25e-11}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.09e-10}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.09e-10}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 9.29e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.57e-10}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.57e-10}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.57e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.01e-29}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.85e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 9.34e-10}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 9.11e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.16e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 9.47e-10}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.71e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 3.27e-09}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.27e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.27e-09}, {"name": "Nickel II", "categories": ["air"], "amount": 1.12e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.12e-08}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 4.58e-09}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.89e-08}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.89e-08}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.89e-08}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.18e-27}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 3.2e-08}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.68e-11}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 2.28e-10}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 8.86e-10}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.3e-09}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.3e-09}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 9.4e-13}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.28e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.27e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.08e-11}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 8.95e-10}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.46e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.06e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 2.29e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 6.47e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.17e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.37e-12}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.04e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.94e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.65e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.67e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.27e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.81e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.83e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.22e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.22e-07}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air"], "amount": 4.37e-15}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.37e-15}, {"name": "Pentane", "categories": ["water"], "amount": 4.99e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.24e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.53e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.99e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 9.47e-11}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.96e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.4e-10}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 8.58e-15}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.74e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 9.42e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 9.42e-11}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.33e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.33e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.84e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.14e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.17e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.31e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.21e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 3.75e-13}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.09e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.59e-13}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.81e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 2.65e-14}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 4.23e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.02e-15}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.65e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.04e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.67e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1.36e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1.36e-10}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.21e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 9.19e-09}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 3.76e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 2.98e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 9.74e-09}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.24e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4e-11}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.1e-11}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air"], "amount": 1.22e-13}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.22e-13}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 3.55e-14}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water"], "amount": 7.1e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 9.98e-10}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air"], "amount": 8.13e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 8.13e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.67e-15}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.54e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.48e-09}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.3e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.19e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.33e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.1e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.21e-08}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 9.19e-18}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09e-10}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air"], "amount": 1.51e-11}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 1.51e-11}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.29e-15}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water"], "amount": 8.05e-11}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 4.53e-13}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air"], "amount": 7.69e-13}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 7.69e-13}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.49e-13}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.9e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.73e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 8.18e-10}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.26e-06}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.7e-07}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.49e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5.6e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.65e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 3.12e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.97e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.63e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.88e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.88e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.26e-10}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.1e-08}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2.69e-09}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 1.22e-09}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22e-09}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-09}, {"name": "Selenium IV", "categories": ["air"], "amount": 3.8e-09}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 3.8e-09}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.02e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 9.61e-09}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 9.61e-09}, {"name": "Selenium IV", "categories": ["soil"], "amount": 9.61e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.06e-28}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.07e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.86e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.15e-09}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 3.23e-08}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.23e-08}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.23e-08}, {"name": "Silver I", "categories": ["air"], "amount": 1.16e-07}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 3.98e-08}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 3.05e-07}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 3.05e-07}, {"name": "Silver I", "categories": ["soil"], "amount": 3.05e-07}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.71e-27}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water"], "amount": 3.37e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-09}, {"name": "Simazine", "categories": ["air"], "amount": 8.25e-09}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.93e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.3e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.01e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.01e-08}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.1e-12}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 2.89e-35}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water"], "amount": 5.71e-12}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.68e-15}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75e-10}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.5e-08}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 9.93e-08}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.98e-10}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.98e-10}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.06e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.06e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 9.94e-08}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-09}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.27e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.07e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.81e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7e-09}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-08}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.02e-08}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.72e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.72e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.72e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8e-08}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.59e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.51e-08}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 4.76e-07}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 1.63e-06}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.3e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.05e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 2.72e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 9.7e-14}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.52e-10}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 6.32e-09}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.32e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.32e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 1.46e-08}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1.46e-08}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.52e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 2.78e-26}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 3.68e-08}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 3.74e-10}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-10}, {"name": "Thiabendazole", "categories": ["air"], "amount": 9.79e-10}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.12e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.59e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 8.57e-10}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 6.48e-18}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water"], "amount": 6.28e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 8.78e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.5e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.02e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-10}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.02e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.22e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air"], "amount": 4.11e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.87e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.25e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.25e-07}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 2.57e-10}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.57e-10}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-10}, {"name": "Tin ion", "categories": ["air"], "amount": 1.11e-09}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.11e-09}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1.48e-10}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 3.04e-09}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 3.04e-09}, {"name": "Tin ion", "categories": ["soil"], "amount": 3.04e-09}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 2.45e-29}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 3.32e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 3.28e-15}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.67e-11}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1.07e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1.07e-13}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 4.93e-14}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.4e-10}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 2.54e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.19e-10}, {"name": "Triallate", "categories": ["air"], "amount": 1.14e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.15e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.04e-08}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 5.15e-08}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.34e-07}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.05e-08}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.13e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.52e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.44e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 7.67e-15}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.18e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.67e-09}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 3.41e-20}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.23e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.36e-09}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 3.24e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 1.76e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 9.83e-06}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.54e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.54e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-11}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.05e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.51e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.46e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.46e-08}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.69e-10}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 3.99e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.17e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.18e-20}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.22e-11}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.12e-11}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 1.24e-08}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-08}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-08}, {"name": "Vanadium V", "categories": ["air"], "amount": 4.3e-08}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 4.3e-08}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7e-08}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.12e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.12e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.12e-07}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 5.44e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.24e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 3.79e-10}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 2.18e-15}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 1.2e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-08}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-08}, {"name": "Zinc II", "categories": ["air"], "amount": 4.94e-08}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4.94e-08}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 9.24e-09}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.33e-07}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.33e-07}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.33e-07}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.48e-25}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.46e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.26e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.67e-08}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.06e-15}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.42e-10}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 7.38e-15}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.65e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 8.94e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.94e-15}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 2.51e-15}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 4.65e-12}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1.68e-10}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1.68e-10}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 3.21e-14}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water"], "amount": 7.78e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 9.62e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "ecotoxicity: marine"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 8.73e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.48e-11}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.69e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water"], "amount": 1.32e-13}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52e-11}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.09e-12}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.52e-11}, {"name": "2,4-D", "categories": ["water"], "amount": 1.52e-11}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46e-12}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 9.27e-12}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 9.27e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 6.63e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 9.27e-12}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 6.33e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.48e-11}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.48e-11}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 6.47e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.38e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.38e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 5.67e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.51e-13}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.67e-14}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.3e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.3e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.05e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.14e-14}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.49e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.3e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.73e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.73e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.35e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.63e-13}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.46e-13}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.1e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.1e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.22e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6.61e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68e-12}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 7.35e-13}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.15e-12}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 5.17e-12}, {"name": "Acephate", "categories": ["water"], "amount": 5.17e-12}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 5.38e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 7.52e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 9.91e-13}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-14}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.08e-15}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.77e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water"], "amount": 2.5e-13}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air"], "amount": 6.25e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 6.25e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 9.39e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water"], "amount": 5.28e-14}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.07e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.51e-13}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 1.59e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 8.95e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.64e-11}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["water"], "amount": 3.41e-10}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water"], "amount": 1.95e-13}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air"], "amount": 3.57e-13}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 3.57e-13}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.67e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.67e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 2.67e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 5.46e-12}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.09e-10}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2.05e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-12}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.47e-10}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.85e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Allyl chloride", "categories": ["water"], "amount": 5.74e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 5.21e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 3.19e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 1.71e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 3.08e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.97e-10}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air"], "amount": 1.12e-13}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.12e-13}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.46e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water"], "amount": 2.7e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 4.88e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.22e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water"], "amount": 3.04e-09}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 2.06e-12}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 9.03e-05}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.03e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.03e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 8.37e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 8.37e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.22e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 6.9e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 6.9e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 6.9e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 7.66e-05}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 7.66e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 0.00016}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 7.66e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 7.66e-05}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.96e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.79e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.79e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.43e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.41e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.41e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.41e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.56e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.64e-05}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.56e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.56e-05}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.63e-12}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.3e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.44e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Atrazine", "categories": ["water"], "amount": 1.56e-09}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.94e-12}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 1.5e-11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.37e-09}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3e-11}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.38e-10}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.36e-09}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.36e-09}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1.89e-06}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.89e-06}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.89e-06}, {"name": "Barium II", "categories": ["air"], "amount": 1.91e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.91e-06}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9.17e-07}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.96e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.96e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 1.96e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.18e-06}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 2.18e-06}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.03e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.18e-06}, {"name": "Barium II", "categories": ["water"], "amount": 2.18e-06}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.65e-13}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 3.11e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 4.09e-12}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 1.38e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.51e-12}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 6.1e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.59e-08}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.15e-12}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.34e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water"], "amount": 5.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.73e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 3.96e-12}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.79e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.79e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 5.91e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.16e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.26e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 2.3e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.83e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.83e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 1.28e-09}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 1.28e-09}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 1.23e-13}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.52e-13}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.26e-14}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.38e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 7.34e-13}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 9.87e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.87e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.87e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 7.65e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 7.65e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.79e-07}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.65e-06}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.65e-06}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.65e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.91e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 2.91e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.89e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.91e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 2.91e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.24e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 6.3e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4.36e-07}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4.36e-07}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.34e-11}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.65e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.54e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.89e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 4.59e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2.62e-07}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2.62e-07}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.61e-10}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 7.79e-12}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 1.73e-13}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 2.01e-10}, {"name": "Bromopropane", "categories": ["air"], "amount": 1.45e-13}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.71e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.65e-10}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.7e-10}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.7e-10}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.41e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.13e-11}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 5.24e-13}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.1e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water"], "amount": 5.85e-14}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 1.9e-12}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.1e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water"], "amount": 3.2e-13}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.77e-10}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 1.16e-09}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 2.48e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.48e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 1.86e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1.86e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.07e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.74e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.74e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.74e-07}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 5.25e-07}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 5.25e-07}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 4.85e-06}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 5.25e-07}, {"name": "Cadmium II", "categories": ["water"], "amount": 5.25e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-10}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 5.38e-11}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.74e-10}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.74e-10}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36e-10}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.18e-10}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.62e-11}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.53e-10}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.67e-10}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.67e-10}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.1e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.77e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.44e-11}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.59e-11}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-10}, {"name": "Carboxin", "categories": ["air"], "amount": 1.06e-10}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.33e-11}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 8.02e-11}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.51e-10}, {"name": "Carboxin", "categories": ["water"], "amount": 1.51e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.88e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.4e-13}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.89e-09}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.46e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 8.34e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 8.34e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 8.34e-08}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water"], "amount": 5.42e-10}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-11}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.34e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.08e-10}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.11e-12}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.68e-13}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 3.39e-11}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 3.39e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 1.01e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 2.25e-11}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.85e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 4.92e-12}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.07e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1.3e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.26e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 6.01e-12}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.95e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.91e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 8.48e-09}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.13e-08}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.03e-08}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.03e-08}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.1e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.53e-08}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2.82e-07}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2.82e-07}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 5.04e-10}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 9.52e-11}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 8.39e-12}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 3.14e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 2.33e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.33e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.78e-08}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.92e-08}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.92e-08}, {"name": "Chromium III", "categories": ["soil"], "amount": 4.92e-08}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 5.46e-08}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 5.46e-08}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 6.12e-07}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 5.46e-08}, {"name": "Chromium III", "categories": ["water"], "amount": 5.46e-08}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 4.3e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 3.88e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3.88e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.06e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.92e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.92e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.92e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.25e-05}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 3.25e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.64e-05}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.25e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.25e-05}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.02e-10}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.29e-12}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 3.43e-12}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.06e-12}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 1.01e-06}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 7.79e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 7.79e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.57e-07}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.57e-07}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.57e-07}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.84e-07}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 2.84e-07}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.96e-06}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.84e-07}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.84e-07}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 2.41e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.41e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.41e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.84e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.84e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.84e-07}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.61e-06}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.61e-06}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.61e-06}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.19e-06}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 6.19e-06}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.69e-05}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.19e-06}, {"name": "Copper ion", "categories": ["water"], "amount": 6.19e-06}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air"], "amount": 6.61e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 6.61e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.48e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water"], "amount": 1.1e-12}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.49e-10}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.6e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.91e-14}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.27e-17}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.63e-13}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.58e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 5.68e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.87e-14}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 2.43e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 1.3e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.75e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.12e-10}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.15e-12}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 5.21e-11}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.34e-13}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-11}, {"name": "Decanoic acid", "categories": ["water"], "amount": 4.49e-12}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 1.19e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 8.94e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 8.47e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.54e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 8.19e-13}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 4.74e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.32e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5.5e-11}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-11}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.91e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.36e-11}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.36e-11}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 3.96e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.62e-10}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-12}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 4.71e-13}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 3.66e-12}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 3.66e-12}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.28e-10}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.87e-10}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 8.19e-12}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.15e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 2.35e-13}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 6.36e-12}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.39e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.39e-15}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air"], "amount": 1.88e-12}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.88e-12}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.21e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.16e-12}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.53e-15}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.53e-15}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.82e-14}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4e-15}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-09}, {"name": "Difenoconazole", "categories": ["air"], "amount": 2.27e-09}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2.24e-10}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 1.59e-09}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 4.71e-09}, {"name": "Difenoconazole", "categories": ["water"], "amount": 4.71e-09}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.74e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.15e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 4.03e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.8e-08}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.8e-08}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.71e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 9.13e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 6.62e-13}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.11e-11}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 4.03e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.74e-11}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.43e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 9.68e-11}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 7.7e-12}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air"], "amount": 4e-12}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 4e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.1e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 2.44e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 6.48e-13}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 6.91e-11}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 4.81e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.81e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.81e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 4.25e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 4.25e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 6.24e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1.01e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1.01e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1.01e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.44e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 1.44e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.42e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.44e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.44e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 5.94e-13}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 5.32e-11}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-11}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3.32e-11}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 7.82e-12}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 5.06e-11}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.14e-10}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 4.96e-11}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.99e-11}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-09}, {"name": "Diuron", "categories": ["air"], "amount": 1.08e-09}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 8.82e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.7e-10}, {"name": "Diuron", "categories": ["water"], "amount": 1.29e-09}, {"name": "Dodecanol", "categories": ["water"], "amount": 9.08e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.18e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.06e-12}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 4.7e-13}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2.75e-12}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2.03e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 4.15e-13}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.37e-11}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4e-10}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.45e-10}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.43e-10}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 8.35e-10}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 1.69e-09}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1.69e-09}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.88e-07}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.32e-08}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.19e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.59e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.59e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.86e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.86e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 6.47e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.94e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.15e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 8.08e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 9.46e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water"], "amount": 2.36e-14}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-12}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.72e-13}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.91e-12}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.91e-12}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 7.22e-12}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.03e-12}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 2.75e-13}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.75e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 9.26e-13}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 2.77e-13}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air"], "amount": 8.7e-13}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 8.7e-13}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.27e-12}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water"], "amount": 5.04e-13}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.56e-12}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 1.56e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1.06e-12}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.4e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.87e-12}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 4.03e-11}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 3.79e-11}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.28e-09}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 4.39e-12}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.09e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.8200000000000003e-11}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 6.62e-11}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.48e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.36e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.33e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.38e-11}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.56e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.71e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.71e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.89e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.48e-08}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.51e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 4.56e-08}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 1.71e-09}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-09}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.34e-09}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 8.13e-11}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 6.09e-10}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 2.4e-09}, {"name": "Fludioxonil", "categories": ["water"], "amount": 2.4e-09}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.31e-09}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.46e-10}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.07e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.53e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 6.08e-09}, {"name": "Fluorene", "categories": ["air"], "amount": 1.72e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 3.45e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 9.7e-11}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.42e-12}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.07e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.56e-10}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.46e-10}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.62e-12}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.62e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.09e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.48e-12}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.9e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water"], "amount": 1.26e-13}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 2.49e-12}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.17e-12}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air"], "amount": 2.67e-15}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.67e-15}, {"name": "Furfural", "categories": ["air"], "amount": 8.15e-13}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 7.63e-13}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.82e-11}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.53e-11}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 7.63e-13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.07e-11}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.69e-12}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 8.77e-13}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 5.97e-12}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 5.97e-12}, {"name": "Glyphosate", "categories": ["water"], "amount": 5.97e-12}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 3.1e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.47e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.47e-10}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air"], "amount": 1.05e-17}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.05e-17}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 8.77e-11}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.6e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water"], "amount": 1.7e-13}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 2.54e-11}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.94e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.42e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.06e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.38e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.8e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 4.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 4.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.11e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 3.89e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 1.56e-14}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.98e-11}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 5.41e-11}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5.81e-11}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-11}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.85e-11}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.05e-11}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 7.98e-11}, {"name": "Imidacloprid", "categories": ["water"], "amount": 7.98e-11}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-09}, {"name": "Indoxacarb", "categories": ["air"], "amount": 2.9e-09}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 8.8e-11}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 6.91e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 3.55e-11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.08e-11}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air"], "amount": 2.94e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-17}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air"], "amount": 6.76e-13}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 6.76e-13}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.97e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water"], "amount": 4.39e-13}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 4.26e-11}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.87e-10}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.98e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5.81e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 1.13e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 1.13e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 1.13e-06}, {"name": "Lauric acid", "categories": ["air"], "amount": 1.94e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 2.15e-12}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 8e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8e-08}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-08}, {"name": "Lead II", "categories": ["air"], "amount": 5.84e-08}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 5.84e-08}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.15e-10}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 9.81e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 9.81e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 9.81e-09}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.07e-08}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 1.07e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.57e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.07e-08}, {"name": "Lead II", "categories": ["water"], "amount": 1.07e-08}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.14e-12}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.37e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 8.13e-12}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.61e-12}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 4.33e-13}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.08e-12}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.08e-12}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-11}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.1e-12}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 3.49e-11}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 3.49e-11}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.15e-11}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 7.31e-13}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 7.68e-14}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.08e-10}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.94e-10}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.19e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.29e-10}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.53e-10}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.53e-10}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.36e-11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 6.97e-12}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 8.91e-13}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.33e-18}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 7.02e-06}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.02e-06}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.02e-06}, {"name": "Mercury II", "categories": ["air"], "amount": 5.1e-06}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 5.1e-06}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.3e-08}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 9.74e-07}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 9.74e-07}, {"name": "Mercury II", "categories": ["soil"], "amount": 9.74e-07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.03e-06}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 1.03e-06}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.31e-05}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.03e-06}, {"name": "Mercury II", "categories": ["water"], "amount": 1.03e-06}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.75e-12}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 1.55e-11}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 1.29e-11}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.05e-12}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.16e-11}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 1.94e-11}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1.94e-11}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 6.97e-13}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5.6e-11}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 5.04e-13}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.9e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 6.52e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 3.23e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.55e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.55e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.23e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.23e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 8.7e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.86e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.86e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5.64e-11}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 7.49e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water"], "amount": 2.34e-14}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 4.81e-11}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-10}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 2.15e-11}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.19e-10}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Methomyl", "categories": ["water"], "amount": 1.96e-10}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 1.82e-11}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-09}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.34e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 9.64e-11}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.85e-10}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 2.11e-09}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.11e-09}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air"], "amount": 8.79e-13}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.79e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 1.67e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water"], "amount": 8.04e-13}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.31e-12}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 4.14e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.04e-12}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.58e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 7.58e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.03e-14}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.17e-13}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.17e-13}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.02e-11}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.28e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water"], "amount": 7.29e-13}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-10}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.4e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.28e-09}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.28e-09}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.28e-09}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.35e-10}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 8.88e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.63e-10}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-08}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 3.05e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.53e-09}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.61e-08}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 4.42e-08}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 4.42e-08}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.77e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.6e-12}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 8.98e-08}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 7.24e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 7.24e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.33e-08}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.33e-08}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.33e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 3.7e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 3.7e-08}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.69e-07}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 3.7e-08}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 3.7e-08}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 7.82e-12}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 7.19e-13}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 8.98e-12}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 7.74e-12}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 8.13e-10}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.15e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.15e-11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 7.93e-12}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.23e-10}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 7.26e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.26e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.26e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 5.76e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.76e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.4e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.4e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.4e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.66e-06}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2.66e-06}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.66e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 2.66e-06}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-11}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.16e-11}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 2.04e-12}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.63e-11}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.63e-11}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.24e-11}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-14}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.35e-11}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 9.69e-12}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 3.72e-13}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5.1e-11}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 7.59e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 7.89e-11}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 3.93e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.99e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.99e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.67e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.16e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.11e-10}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7.51e-14}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.59e-10}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.06e-12}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.58e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.78e-11}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air"], "amount": 1.2e-14}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.2e-14}, {"name": "Pentane", "categories": ["water"], "amount": 8.58e-12}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.92e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 3.01e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.6e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.72e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.19e-12}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air"], "amount": 8.91e-13}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.91e-13}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.16e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water"], "amount": 2.49e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.14e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.22e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.22e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 9.12e-10}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 4.91e-11}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.04e-10}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.17e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.26e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.05e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 4.39e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.97e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.59e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.4e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 3.38e-12}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 6.31e-12}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.92e-11}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.98e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.44e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 1.84e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1.76e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1.76e-09}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.13e-09}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.72e-10}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.69e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 4.1e-09}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.25e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.89e-11}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 1.75e-13}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air"], "amount": 2.52e-13}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.52e-13}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 5.18e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water"], "amount": 5.62e-13}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.26e-11}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air"], "amount": 5.95e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.95e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.99e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water"], "amount": 5.78e-14}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 8.13e-11}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 7.92e-12}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 5.08e-13}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-10}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.94e-11}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.38e-10}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.53e-10}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.53e-10}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.53e-10}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.32e-13}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air"], "amount": 4.83e-13}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.83e-13}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.3e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water"], "amount": 2.9e-13}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 1.05e-15}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.15e-12}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.15e-12}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 3.86e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.94e-12}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 4.88e-11}, {"name": "Pyrene", "categories": ["air"], "amount": 2.25e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.64e-08}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.49e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.09e-13}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.95e-11}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 3.96e-12}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.97e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.39e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.57e-10}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.45e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2.38e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2.38e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.05e-12}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 5.99e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.41e-10}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.38e-11}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 2.47e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 1.96e-06}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.96e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.73e-07}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 8.22e-07}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 8.22e-07}, {"name": "Selenium IV", "categories": ["soil"], "amount": 8.22e-07}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 9.11e-07}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 9.11e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.73e-06}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 9.11e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.11e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.56e-12}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 4.31e-11}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 6.84e-05}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.84e-05}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.84e-05}, {"name": "Silver I", "categories": ["air"], "amount": 5.11e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 5.11e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.21e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.21e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 1.21e-05}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.34e-05}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 1.34e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 0.000134}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.34e-05}, {"name": "Silver I", "categories": ["water"], "amount": 1.34e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-10}, {"name": "Simazine", "categories": ["air"], "amount": 3.63e-10}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.96e-11}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.88e-10}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 5.02e-10}, {"name": "Simazine", "categories": ["water"], "amount": 5.02e-10}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air"], "amount": 2.65e-14}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2.65e-14}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 8.56e-14}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water"], "amount": 1.21e-14}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.34e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air"], "amount": 9.96e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.96e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.5e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water"], "amount": 7.56e-13}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.09e-10}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 5.56e-12}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 5.56e-12}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 5.23e-13}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.81e-12}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 3.81e-12}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.34e-10}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-10}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.6e-11}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.14e-10}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.53e-10}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-09}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 2.01e-09}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.32e-09}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.27e-09}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.27e-09}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.66e-08}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2.35e-08}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.89e-09}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 4.74e-08}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 7.77e-12}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.68e-10}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.8e-11}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.06e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.84e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.84e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.5e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.26e-11}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 4.94e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.94e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.94e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 4.81e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 4.81e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2.07e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 4.53e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 4.53e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 4.53e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 5.03e-05}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 5.03e-05}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 8.21e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 5.03e-05}, {"name": "Thallium I", "categories": ["water"], "amount": 5.03e-05}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 6.05e-11}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.05e-11}, {"name": "Thiabendazole", "categories": ["air"], "amount": 5.14e-11}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.29e-11}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.76e-11}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.76e-11}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 7.16e-12}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.72e-11}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.02e-10}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water"], "amount": 2.26e-11}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-10}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.23e-10}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.96e-10}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.96e-10}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.55e-11}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 6.88e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 9.06e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.31e-10}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.31e-10}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.6e-09}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-09}, {"name": "Thiram", "categories": ["air"], "amount": 9.6e-10}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.45e-11}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.16e-10}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.73e-09}, {"name": "Thiram", "categories": ["water"], "amount": 2.73e-09}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 6.78e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.78e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.78e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 5.09e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 5.09e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 6.31e-09}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1.29e-07}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1.29e-07}, {"name": "Tin ion", "categories": ["soil"], "amount": 1.29e-07}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1.41e-07}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.32e-06}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Tin ion", "categories": ["water"], "amount": 1.41e-07}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air"], "amount": 3.47e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.47e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 8.99e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water"], "amount": 2.9e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.27e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.27e-13}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 3.49e-11}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.94e-12}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.48e-10}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.45e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.51e-11}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 2.33e-10}, {"name": "Triallate", "categories": ["air"], "amount": 1.05e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.43e-11}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.13e-10}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.66e-09}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 9.93e-09}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 9.31e-09}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.01e-09}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.42e-08}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.38e-12}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 6.82e-11}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.14e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.71e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.67e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.35e-11}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 3.54e-09}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.32e-15}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47e-07}, {"name": "Triflumuron", "categories": ["air"], "amount": 2.5e-07}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 5.36e-08}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 2.87e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 4.48e-07}, {"name": "Triflumuron", "categories": ["water"], "amount": 4.48e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.45e-11}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.03e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.84e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.84e-10}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.16e-11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.59e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water"], "amount": 7.98e-14}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 5.95e-13}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 9.24e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.24e-05}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.24e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.05e-05}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.05e-05}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.31e-05}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 8.6e-05}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 8.6e-05}, {"name": "Vanadium V", "categories": ["soil"], "amount": 8.6e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 9.52e-05}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 9.52e-05}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 0.000165}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 9.52e-05}, {"name": "Vanadium V", "categories": ["water"], "amount": 9.52e-05}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.91e-12}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air"], "amount": 1.73e-14}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.73e-14}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.78e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water"], "amount": 3.07e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.000212}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000212}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000212}, {"name": "Zinc II", "categories": ["air"], "amount": 0.000238}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.000238}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.06e-05}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.000297}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.000297}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.000297}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.000326}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.000326}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.000368}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.000326}, {"name": "Zinc II", "categories": ["water"], "amount": 0.000326}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.9e-11}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.08e-10}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.11e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 9.34e-13}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.87e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.87e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.32e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.04e-12}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.22e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.22e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 4.23e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 4.35e-14}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air"], "amount": 4.68e-12}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 4.68e-12}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 1.26e-11}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 2.8e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 6.07e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "ecotoxicity: terrestrial"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.14e-12}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.01e-11}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.07e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water"], "amount": 7.92e-12}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.74e-13}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.35e-14}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 6.16e-15}, {"name": "2,4-D", "categories": ["water"], "amount": 6.16e-15}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.1e-18}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 5.32e-20}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 3.8e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.1e-18}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 5.42e-13}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 5.42e-13}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 2.55e-12}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.75e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.1e-12}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.15e-14}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.21e-14}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.14e-13}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.9e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 8.21e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.96e-18}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.1e-15}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.69e-12}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 7.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.84e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.27e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 2.66e-14}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.6e-15}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 9.01e-16}, {"name": "Acephate", "categories": ["water"], "amount": 9.01e-16}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.44e-13}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 3.86e-12}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.04e-11}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.72e-13}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.86e-16}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water"], "amount": 7.63e-14}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 5.07e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water"], "amount": 2.69e-13}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 6.94e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 3.48e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 4.22e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 1.78e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-09}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.45e-16}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water"], "amount": 4.85e-14}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.21e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.21e-10}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 9.88e-12}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.57e-11}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.84e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 8.32e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.32e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.32e-09}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 1.66e-09}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.97e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 7.19e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.3e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.35e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 4.14e-08}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 6.71e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 9.75e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.62e-11}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 4.67e-13}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water"], "amount": 7.09e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 3.97e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.28e-10}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water"], "amount": 8.11e-10}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 7.65e-06}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65e-06}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65e-06}, {"name": "Antimony ion", "categories": ["air"], "amount": 5.29e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 5.29e-06}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.52e-24}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 4.72e-24}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 4.72e-24}, {"name": "Antimony ion", "categories": ["soil"], "amount": 4.72e-24}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 5.24e-24}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 5.24e-24}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.06e-23}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 5.24e-24}, {"name": "Antimony ion", "categories": ["water"], "amount": 5.24e-24}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.63e-06}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-06}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-06}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.13e-06}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.13e-06}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.15e-25}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.13e-24}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.13e-24}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.13e-24}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.24e-24}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.24e-24}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.83e-24}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.24e-24}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.24e-24}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.98e-13}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.59e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 1.64e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water"], "amount": 1.15e-10}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 6.3e-13}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 7.63e-16}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.98e-09}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 5.77e-16}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.64e-15}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.56e-15}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.94e-16}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.94e-16}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 4.01e-08}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.01e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.01e-08}, {"name": "Barium II", "categories": ["air"], "amount": 2.78e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.78e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 5.86e-26}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.25e-25}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.25e-25}, {"name": "Barium II", "categories": ["soil"], "amount": 1.25e-25}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.39e-25}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.39e-25}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.92e-25}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.39e-25}, {"name": "Barium II", "categories": ["water"], "amount": 1.39e-25}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.96e-18}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 5.88e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.19e-15}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 7.42e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.28e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.08e-13}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.08e-13}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 3.94e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 2.13e-09}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 6.63e-12}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 4.87e-13}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water"], "amount": 9.79e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.05e-11}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.47e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.85e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 5.52e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 8.95e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.95e-10}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 8.7e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 5.07e-12}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 5.07e-12}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 9.12e-14}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 2.15e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.06e-14}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 5.44e-13}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 5.84e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.84e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.84e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 4.04e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 4.04e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.27e-26}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 4.86e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 4.86e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 4.86e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 5.32e-25}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 5.32e-25}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.02e-24}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 5.32e-25}, {"name": "Beryllium II", "categories": ["water"], "amount": 5.32e-25}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.14e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 3.51e-09}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 3.51e-09}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.12e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.49e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.53e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 2.59e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 9.13e-09}, {"name": "Bifenthrin", "categories": ["water"], "amount": 9.13e-09}, {"name": "Bisphenol A", "categories": ["water"], "amount": 7.3e-14}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.14e-16}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 8.57e-18}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.09e-13}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.79e-13}, {"name": "Bromopropane", "categories": ["water"], "amount": 8.91e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.31e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 3.77e-14}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 7.59e-15}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 7.59e-15}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 9.83e-12}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 1.71e-14}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water"], "amount": 2.12e-13}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 3.66e-13}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.01e-13}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water"], "amount": 4.2e-12}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.31e-08}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.43e-09}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 3.41e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 2.36e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 2.36e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.48e-27}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.21e-26}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.21e-26}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.21e-26}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 4.66e-26}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 4.66e-26}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.49e-25}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 4.66e-26}, {"name": "Cadmium II", "categories": ["water"], "amount": 4.66e-26}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.7e-12}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.58e-11}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.58e-11}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.48e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.57e-12}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 9.95e-13}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.75e-13}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.75e-13}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 9.72e-12}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 8.54e-11}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.87e-08}, {"name": "Carboxin", "categories": ["air"], "amount": 3.36e-08}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 7.59e-12}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 5.26e-12}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 2.76e-12}, {"name": "Carboxin", "categories": ["water"], "amount": 2.76e-12}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.12e-17}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.81e-14}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 2.3e-09}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 2.27e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 1.4e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 1.4e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 1.4e-09}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.98e-18}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water"], "amount": 3.72e-17}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 3.76e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 7.06e-12}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 1e-16}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 7.3e-08}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.3e-08}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 4.2e-17}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 7.75e-15}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.5e-12}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 5.27e-12}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.76e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 6.35e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 6.35e-10}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 4.71e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 7.83e-11}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.49e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.06e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.11e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.01e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1.01e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.88e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 8.96e-09}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 3.18e-08}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 3.18e-08}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.86e-09}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 8.15e-17}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 7.44e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.44e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.44e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 5.15e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5.15e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 2.21e-27}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6.11e-27}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6.11e-27}, {"name": "Chromium III", "categories": ["soil"], "amount": 6.11e-27}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 6.78e-27}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 6.78e-27}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.84e-26}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 6.78e-27}, {"name": "Chromium III", "categories": ["water"], "amount": 6.78e-27}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 2.52e-06}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.74e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.74e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 9.44e-25}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.61e-24}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.61e-24}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.61e-24}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.9e-24}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 2.9e-24}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.67e-24}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.9e-24}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.9e-24}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.51e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 3.75e-13}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 7.27e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 5.04e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 5.04e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.91e-27}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.61e-26}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.61e-26}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.61e-26}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.88e-26}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 2.88e-26}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.71e-25}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.88e-26}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.88e-26}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 2.14e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.48e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.48e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.96e-26}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.72e-25}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.72e-25}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.72e-25}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.32e-25}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 6.32e-25}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4e-24}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.32e-25}, {"name": "Copper ion", "categories": ["water"], "amount": 6.32e-25}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.57e-13}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water"], "amount": 5.31e-13}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 3.89e-12}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 2.31e-15}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water"], "amount": 7.36e-15}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.25e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.73e-16}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.98e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 1.55e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.7e-19}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.05e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 3.23e-08}, {"name": "Cypermethrin", "categories": ["water"], "amount": 3.23e-08}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.9e-12}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.33e-16}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.78e-10}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 5.78e-14}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-12}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1.3e-13}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 2.23e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1.68e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.57e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.22e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1.04e-22}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 8.6e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 3.11e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 3.27e-11}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.43e-14}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 7.38e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.64e-16}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.64e-16}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.21e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3e-09}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 7.92e-15}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.91e-17}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.91e-17}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 3.71e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6.94e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1.05e-11}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 6.77e-17}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 3.98e-11}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.73e-14}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.73e-14}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.22e-13}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water"], "amount": 8.74e-13}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.1e-11}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.48e-17}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.7e-15}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.33e-07}, {"name": "Difenoconazole", "categories": ["air"], "amount": 1.89e-07}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 8.15e-13}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 7.46e-13}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 5.73e-13}, {"name": "Difenoconazole", "categories": ["water"], "amount": 5.73e-13}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.57e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.41e-08}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.19e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 7.89e-09}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.89e-09}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 8.45e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 7.8e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 3.44e-12}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 9.29e-11}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.15e-07}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.68e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 8.57e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.64e-12}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 1.77e-12}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 3.84e-12}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 7.98e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3e-11}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1.84e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1.62e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1.62e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 2.36e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 3.76e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 3.76e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 3.76e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 2.39e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 2.39e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 5.52e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 2.39e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 2.39e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.47e-14}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 4.83e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.94e-17}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.52e-18}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 7.52e-18}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.3e-12}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.26e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.33e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 5.23e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4.31e-11}, {"name": "Diuron", "categories": ["water"], "amount": 2.9100000000000002e-11}, {"name": "Dodecanol", "categories": ["water"], "amount": 8.69e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.45e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 7.83e-16}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.49e-19}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 5.34e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.17e-21}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.82e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.65e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.69e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 1.23e-09}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.71e-10}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.71e-10}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.29e-07}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air"], "amount": 5.06e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 5.06e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.27e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.06e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.06e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.1e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.41e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.49e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.05e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.14e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water"], "amount": 2.99e-13}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 6.4e-17}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.88e-22}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.88e-22}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.45e-11}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 1.64e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1.73e-08}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.17e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.63e-12}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air"], "amount": 1.92e-09}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.92e-09}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 3.52e-13}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water"], "amount": 7.3e-13}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 1.23e-15}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.57e-15}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 5.19e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.79e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.71e-16}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 7.57e-18}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 2.02e-12}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 7.27e-09}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 5.54e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.51e-12}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.09e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.28e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.65e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.31e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.77e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.98e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 3.06e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.65e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1.41e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.3e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.03e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.03e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.03e-08}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 1.44e-07}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 9.95e-08}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.21e-11}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 1.31e-11}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.65e-11}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.65e-11}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.08e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 4.43e-09}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.61e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.13e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 9.13e-10}, {"name": "Fluorene", "categories": ["air"], "amount": 2.07e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.37e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 2.35e-17}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.19e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.94e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.62e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 5.77e-13}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.01e-11}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 5.22e-17}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water"], "amount": 1.04e-14}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.58e-20}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 7.07e-14}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.07e-12}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air"], "amount": 2.79e-14}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.79e-14}, {"name": "Furfural", "categories": ["air"], "amount": 1.81e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 8.38e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.53e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.44e-21}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.99e-16}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.73e-22}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.26e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 9.11e-14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 9.11e-14}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.36e-16}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-16}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 2.92e-09}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.98e-16}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water"], "amount": 2.21e-15}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.23e-14}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.86e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.18e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.55e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 9.06e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.42e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.42e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.63e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 4.41e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.03e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.03e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 8.95e-15}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.49e-11}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.79e-15}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4.92e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 6.83e-17}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 7.03e-21}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.26e-21}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.26e-21}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.79e-08}, {"name": "Indoxacarb", "categories": ["air"], "amount": 6.86e-08}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.13e-10}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 1.14e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.44e-12}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 4.29e-16}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.29e-16}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1e-09}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1e-09}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.95e-12}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 2.28e-12}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.3e-10}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.56e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.28e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.43e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 2.13e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 2.13e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2.13e-07}, {"name": "Lauric acid", "categories": ["air"], "amount": 9.87e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.76e-14}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 7.66e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.66e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Lead II", "categories": ["air"], "amount": 5.3e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 5.3e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.72e-29}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.78e-28}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.78e-28}, {"name": "Lead II", "categories": ["soil"], "amount": 8.78e-28}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 9.54e-28}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 9.54e-28}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.02e-26}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 9.54e-28}, {"name": "Lead II", "categories": ["water"], "amount": 9.54e-28}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 4.48e-18}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5.81e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.33e-18}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.14e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 7.51e-16}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.25e-16}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.25e-16}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 6.71e-15}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.01e-14}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.01e-14}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.35e-21}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.48e-16}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.17e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 9.63e-15}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.09e-16}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.08e-16}, {"name": "Mancozeb", "categories": ["water"], "amount": 1.08e-16}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 9.9e-15}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.72e-13}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 8.33e-15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 2.1e-24}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2.49e-05}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 1.7e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.7e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.86e-27}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 7.89e-26}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 7.89e-26}, {"name": "Mercury II", "categories": ["soil"], "amount": 7.89e-26}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 8.34e-26}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 8.34e-26}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.88e-25}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 8.34e-26}, {"name": "Mercury II", "categories": ["water"], "amount": 8.34e-26}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 8e-09}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-09}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 5.19e-09}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.6e-11}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 9.35e-12}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 3.96e-12}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 5.19e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 3.14e-15}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 2.18e-15}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.3e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.08e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.5e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.5e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 5.61e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.14e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 4.74e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 4.74e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.19e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.61e-11}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 3.48e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water"], "amount": 4.81e-13}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.36e-10}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 4.81e-12}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.35e-12}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water"], "amount": 7.73e-13}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 6.18e-11}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.46e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6.81e-13}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.56e-13}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 5.89e-13}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 5.89e-13}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.6e-11}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.37e-11}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.4e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.19e-11}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.27e-13}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.36e-10}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.36e-10}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.45e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.61e-10}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 8.27e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.1e-10}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.79e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.29e-10}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.66e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 9.76e-12}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.02e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 7.39e-16}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.2e-16}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2e-16}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 2.59e-08}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.59e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.59e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.79e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.79e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 9.47e-28}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.62e-27}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.62e-27}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.62e-27}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.91e-27}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.91e-27}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.22e-26}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.91e-27}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.91e-27}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1.6e-13}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 6.87e-14}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 2.62e-11}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 9.13e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 6.66e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.1e-11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.88e-12}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 6.91e-09}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 3.33e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.33e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.3e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 2.3e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.71e-26}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.34e-25}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.34e-25}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.34e-25}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.59e-25}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2.59e-25}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.2e-24}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.59e-25}, {"name": "Nickel II", "categories": ["water"], "amount": 2.59e-25}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-09}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 6.05e-09}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 8.3e-19}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 3.78e-19}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.25e-19}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.25e-19}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.39e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.69e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 5.35e-14}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 2.47e-10}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 6.63e-16}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 9.69e-15}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.94e-10}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1.52e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 1.1e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.84e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.34e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.54e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.81e-11}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.35e-19}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.15e-09}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 2.05e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 7.34e-16}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 7.89e-10}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 7.89e-10}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air"], "amount": 2.36e-13}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-13}, {"name": "Pentane", "categories": ["water"], "amount": 2.23e-13}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.32e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.57e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.22e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 6.3e-14}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water"], "amount": 1.12e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.48e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.48e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.82e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.82e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.32e-12}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.55e-12}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.38e-10}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.1e-09}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.74e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.13e-12}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 3.24e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.87e-12}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.22e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 4.56e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 8.37e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-14}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.04e-13}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.73e-15}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 8.88e-10}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 4.31e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 5.75e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 8.81e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 8.81e-10}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 7.27e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 6.22e-10}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 7.72e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.92e-08}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 4.29e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 4.49e-16}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 4.62e-17}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air"], "amount": 7.09e-12}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 7.09e-12}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 2.39e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water"], "amount": 1e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.86e-11}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.42e-14}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water"], "amount": 3.44e-13}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.32e-14}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.61e-11}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.31e-11}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 6.11e-12}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 2.7e-12}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.55e-12}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.19e-15}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.33e-13}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air"], "amount": 5.86e-10}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 5.86e-10}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.76e-13}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water"], "amount": 3.65e-13}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 3.72e-14}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.36e-11}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.36e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.67e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.98e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Pyrene", "categories": ["air"], "amount": 1.38e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 2.64e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 4.89e-15}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1.36e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 7.6e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 3.04e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.06e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.06e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.09e-15}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 4.66e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3.04e-10}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.01e-14}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 1.1e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.64e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 7.64e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.52e-26}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 7.22e-26}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 7.22e-26}, {"name": "Selenium IV", "categories": ["soil"], "amount": 7.22e-26}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 8e-26}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 8e-26}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 3.68e-25}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 8e-26}, {"name": "Selenium IV", "categories": ["water"], "amount": 8e-26}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.77e-13}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.59e-13}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.000119}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000119}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000119}, {"name": "Silver I", "categories": ["air"], "amount": 8.19e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 8.19e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.47e-25}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.13e-24}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.13e-24}, {"name": "Silver I", "categories": ["soil"], "amount": 1.13e-24}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.24e-24}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 1.24e-24}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 9.91e-24}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.24e-24}, {"name": "Silver I", "categories": ["water"], "amount": 1.24e-24}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.07e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.91e-11}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.48e-11}, {"name": "Simazine", "categories": ["water"], "amount": 3.48e-11}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.76e-10}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.76e-10}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.5e-32}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water"], "amount": 3.19e-32}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 8.8e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 4.77e-14}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water"], "amount": 1.58e-13}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 9.02e-14}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.43e-08}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.7e-08}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.7e-08}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 7.38e-15}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.96e-21}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.96e-21}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.68e-11}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.03e-12}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.01e-12}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water"], "amount": 9.55e-13}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 8.65e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 8.7e-11}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.36e-11}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.43e-11}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.43e-11}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-06}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.54e-06}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 9.93e-11}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 8.97e-11}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 6.71e-14}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 3.26e-09}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 5.45e-10}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.57e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-12}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 1.03e-06}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-06}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-06}, {"name": "Thallium I", "categories": ["air"], "amount": 7.15e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 7.15e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.16e-24}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.53e-24}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.53e-24}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.53e-24}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.82e-24}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 2.82e-24}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.55e-24}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.82e-24}, {"name": "Thallium I", "categories": ["water"], "amount": 2.82e-24}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.24e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 4.04e-14}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.18e-14}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.18e-14}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 7.08e-15}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 5.59e-10}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.31e-15}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water"], "amount": 2.43e-13}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 1.11e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.34e-09}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.34e-09}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.16e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 8.34e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.68e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.22e-11}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.22e-11}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air"], "amount": 6.43e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 3.45e-12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.84e-12}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.09e-11}, {"name": "Thiram", "categories": ["water"], "amount": 2.09e-11}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 9.85e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.85e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.85e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 6.82e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 6.82e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 5.57e-28}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.24e-26}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1.24e-26}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 9.38e-26}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.24e-26}, {"name": "Tin ion", "categories": ["water"], "amount": 1.24e-26}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.06e-13}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water"], "amount": 3.43e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.83e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.83e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.32e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.82e-12}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 9.93e-09}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2.06e-10}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.77e-14}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.19e-09}, {"name": "Triallate", "categories": ["air"], "amount": 5.36e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.14e-10}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.07e-10}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 8.53e-13}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 2.11e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.73e-06}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.55e-14}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.1e-14}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.64e-14}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.82e-13}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.03e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.02e-11}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.09e-17}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 2.05e-16}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.67e-05}, {"name": "Triflumuron", "categories": ["air"], "amount": 5.52e-05}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 9.58e-07}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 6.68e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.3e-07}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.29e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.5e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.63e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.63e-10}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.01e-15}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.13e-13}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 7.82e-18}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water"], "amount": 1.47e-16}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 2.26e-15}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 3.33e-06}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.33e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.3e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.3e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.16e-24}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 7.67e-24}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 7.67e-24}, {"name": "Vanadium V", "categories": ["soil"], "amount": 7.67e-24}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 8.48e-24}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 8.48e-24}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.45e-23}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 8.48e-24}, {"name": "Vanadium V", "categories": ["water"], "amount": 8.48e-24}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.67e-11}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 6.28e-14}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water"], "amount": 2.09e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 2.41e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.41e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.41e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 1.66e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1.66e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.66e-24}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.41e-23}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.41e-23}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.41e-23}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.64e-23}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 2.64e-23}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.98e-23}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.64e-23}, {"name": "Zinc II", "categories": ["water"], "amount": 2.64e-23}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 8.48e-10}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 9.19e-14}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.04e-13}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 2.13e-13}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water"], "amount": 7.07e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.14e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 3.88e-13}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air"], "amount": 6.1e-09}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 6.1e-09}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 4.62e-12}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 9.58e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2.13e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "eutrophication: freshwater"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "eutrophication: marine"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "land use"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "photochemical oxidant formation: terrestrial ecosystems"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.71e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.71e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.92e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.15e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.15e-08}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.79e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.79e-09}, {"name": "Acetone", "categories": ["air"], "amount": 4.52e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.52e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.07e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.07e-08}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.62e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.43e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.43e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.54e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air"], "amount": 3.92e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.96e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.96e-08}, {"name": "Cumene", "categories": ["air"], "amount": 2.41e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.11e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.47e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -7.54e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -7.54e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56e-08}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43e-08}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.47e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Formic acid", "categories": ["air"], "amount": 2.26e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Heptane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Hexane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-09}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 8.6e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.6e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 7.54e-10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Methanol", "categories": ["air"], "amount": 9.8e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.97e-07}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.29e-07}, {"name": "Pentane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Phenol", "categories": ["air"], "amount": -3.77e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.77e-09}, {"name": "Propanal", "categories": ["air"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanol", "categories": ["air"], "amount": 3.62e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propionic acid", "categories": ["air"], "amount": 9.8e-09}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Styrene", "categories": ["air"], "amount": 3.77e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77e-09}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.54e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Toluene", "categories": ["air"], "amount": 3.32e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48e-08}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "water use: aquatic ecosystems"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "ecosystem quality", "water use: terrestrial ecosystems"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1.35e-08}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "human health", "climate change: human health"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 1.25e-05}, {"name": "Chloroform", "categories": ["air"], "amount": 3.42e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.42e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.000985}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000985}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000985}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.000985}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.000985}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.00272}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.00272}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000335}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000335}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.0114}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.0176}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.0176}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.00164}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.00164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000287}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.88e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.88e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.0437}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.00416}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00416}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00416}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.00416}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.00416}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.000166}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.000166}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.0011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0011}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.107}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.107}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.107}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.223}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.00683}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.46e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.46e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 4.93e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 4.93e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.00367}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00367}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00367}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00367}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00367}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.0168}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0168}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0168}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.0168}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.0168}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0037}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0037}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.87e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.87e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0339}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0339}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000308}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.00142}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.12e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.95e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.55e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.55e-05}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.95e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.0037}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.0037}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.138}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.0109}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.0708}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.16}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.43}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "human health", "human toxicity: carcinogenic"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 2.16e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-06}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 5.75e-06}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 2.16e-07}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Acephate", "categories": ["water"], "amount": 2.69e-07}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 0.000165}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.23e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 7.17e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.83e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 9.87e-05}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air"], "amount": 1.07e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.07e-07}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.23e-10}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water"], "amount": 8.03e-08}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.0745}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0745}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0745}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0694}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0694}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.00574}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0536}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0536}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0536}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0586}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.0586}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0586}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0586}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-05}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 9.48e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.44e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 5.11e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 5.11e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 5.11e-06}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.54e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.54e-07}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 3.56e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.24e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.17e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.24e-07}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 4.82e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.43e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.19e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.000312}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000312}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00381}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 7.91e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.91e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.91e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.000889}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.000889}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.18e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.02e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.02e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.02e-05}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.88e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 2.88e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.61e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.88e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 2.88e-06}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 4.42e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 4.42e-06}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.000569}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000569}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000569}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00103}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.00103}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.00112}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 5.18e-05}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 5.18e-05}, {"name": "Cadmium II", "categories": ["soil"], "amount": 5.18e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 3.29e-05}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 3.29e-05}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.000262}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 3.29e-05}, {"name": "Cadmium II", "categories": ["water"], "amount": 3.29e-05}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 7.18e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.27e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.09e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.09e-05}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 9.73e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 4.29e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.23e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.86e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.65e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 7.03e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.2e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 3.22e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 3.22e-07}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 2.47}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47}, {"name": "Chromium VI", "categories": ["air"], "amount": 2.21}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 2.21}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.61}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.66}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.66}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.66}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.82}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 1.82}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.22}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.82}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.82}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0008}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.64e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 9.01e-05}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.11e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.63e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 331}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 331}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 77.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 263}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 755}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.33e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 2.24e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 2.24e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.68e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.68e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 8.1e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 8.1e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.16e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 7.42e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 7.42e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 2.92e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.45e-05}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 4.32e-06}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000172}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.11e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 4.14e-05}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.08e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4.55e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.12e-09}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.000315}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.000315}, {"name": "Furfural", "categories": ["air"], "amount": 9.63e-07}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air"], "amount": 1.6e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.6e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 3.44e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water"], "amount": 8.81e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.4e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 5.71e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 5.71e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.77e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.84e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 7.54e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 7.54e-06}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 4.26e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.26e-07}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.000119}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000119}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000119}, {"name": "Lead II", "categories": ["air"], "amount": 8.8e-05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 8.8e-05}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.57e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.28e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.28e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 2.28e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.78e-06}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 4.78e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 5.54e-05}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.78e-06}, {"name": "Lead II", "categories": ["water"], "amount": 4.78e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 4.15e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.37e-07}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.014}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0103}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0103}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.000544}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.00251}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.00251}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.00251}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.00244}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.00244}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0252}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.00244}, {"name": "Mercury II", "categories": ["water"], "amount": 0.00244}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 4.09e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 4.09e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.93e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.29e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000848}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000848}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000448}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000782}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.25e-06}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.87e-07}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.87e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 5.69e-08}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.82e-07}, {"name": "Naphthalene", "categories": ["air"], "amount": 7.98e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3e-06}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.00389}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00389}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00389}, {"name": "Nickel II", "categories": ["air"], "amount": 0.00301}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.00301}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.000698}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.00118}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.00118}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.00118}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 0.000828}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 0.000828}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 0.00396}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.000828}, {"name": "Nickel II", "categories": ["water"], "amount": 0.000828}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.82e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.000112}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.000112}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 2.27e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.97e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.92e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.54e-05}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.12e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.21e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.61e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.017}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.17e-05}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.94e-07}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.95e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.21e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.21e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3.16e-07}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.24e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.33e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.73e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.77e-06}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air"], "amount": 4.44e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 4.44e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.13e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water"], "amount": 7.51e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.08e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.35e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1.26e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.26e-05}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air"], "amount": 6.77e-08}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.77e-08}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 8.86e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water"], "amount": 7.62e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.64e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 7.99e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.04e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.04e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.2e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.12e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "human health", "human toxicity: non-carcinogenic"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 3.35e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0044}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.28e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 2e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.22e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.09e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.66e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.66e-07}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 7.34e-05}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.9e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.84e-06}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.42e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water"], "amount": 9.33e-07}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.0088}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.0088}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.00235}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 0.0149}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.00734}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.18}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.1}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.933}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.933}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.933}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.02}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.02}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.35}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.02}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.02}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 1.39e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.00479}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.00228}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.00481}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.00481}, {"name": "Barium II", "categories": ["soil"], "amount": 0.00481}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 0.0073}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water"], "amount": 0.00529}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.08e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3.06e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.86e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 2.96e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.15e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.07e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.44e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000306}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.00629}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00629}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00629}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.99e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.58e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.58e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.58e-05}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 7.3e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 7.3e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 4.08e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 7.3e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 7.3e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.27e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.76e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.66e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.48e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.64e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.63e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000449}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000449}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.52e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.52e-06}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.0342}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0342}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0342}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0244}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0244}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.0707}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00326}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00326}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.00326}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00207}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 0.00207}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.0165}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00207}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00207}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.64e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.89e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.89e-06}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.74e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.96e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 2.25e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.36e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.92e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.86e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.48e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.28e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.28e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 9.69e-08}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 9.69e-08}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.89e-08}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.04e-07}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water"], "amount": 1.12e-08}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.00136}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00136}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00136}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00244}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00244}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.000321}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.000878}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.000878}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.000878}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.000962}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 0.000962}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.00223}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.000962}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.000962}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 2.53e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2.53e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.9e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["soil"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.72e-05}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water"], "amount": 5.54e-06}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.75e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.92e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.92e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 6.38e-08}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 5.86e-06}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.98e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000197}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2.18e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.18e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.85e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.28e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 6.5e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.88e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.88e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.32e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.32e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.72e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1.61e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1.61e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.000126}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.57e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.35e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.51e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 7.09e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.02e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air"], "amount": 8.09e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 8.09e-06}, {"name": "Furfural", "categories": ["air"], "amount": 3.63e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.04e-05}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00125}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.57e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 9.28e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 9.28e-06}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.00978}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00978}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00978}, {"name": "Lead II", "categories": ["air"], "amount": 0.00725}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00725}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.00129}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.00188}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.00188}, {"name": "Lead II", "categories": ["soil"], "amount": 0.00188}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.000394}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.000394}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.00456}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.000394}, {"name": "Lead II", "categories": ["water"], "amount": 0.000394}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.000113}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.02e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.39}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39}, {"name": "Mercury II", "categories": ["air"], "amount": 0.287}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.287}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0151}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.07}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.07}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0677}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.0677}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.702}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0677}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0677}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000349}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 3.65e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 3.65e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 7.64e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.61e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 9.21e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 9.21e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.12e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.12e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000668}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000668}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000353}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000618}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 7.64e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 7.64e-06}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.42e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.00114}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.000714}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.000258}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 4.86e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.56e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.51e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.35e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 5.15e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.15e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.15e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 3.97e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.97e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 9.23e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.56e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.56e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.56e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1e-05}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 1.1e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 5.24e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 1.1e-05}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.74e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 3.24e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.11e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.92e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.39e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 9.85e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.89e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000138}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 7.23e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.13e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.72e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 5.29e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 9.76e-08}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 5.15e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.78e-08}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 6.25e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 3.37e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.33e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.21e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air"], "amount": 0.0211}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0211}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0424}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.00347}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.00347}, {"name": "Silver I", "categories": ["soil"], "amount": 0.00347}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 0.00771}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water"], "amount": 0.000921}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.05e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water"], "amount": 4.81e-09}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.43e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 2.71e-06}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air"], "amount": 0.249}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.249}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.107}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.235}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.235}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.235}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.422}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water"], "amount": 0.26}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.2e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.63e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 3.51e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.01e-05}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 3.6e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.18e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.12e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.92e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.92e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.69e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air"], "amount": 0.0141}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 0.0141}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.00208}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 0.0253}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.0148}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4.15e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.58e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air"], "amount": 0.449}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.449}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0777}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.547}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.547}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.547}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.677}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water"], "amount": 0.602}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.88e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.36e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.41e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.16e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "human health", "ionising radiation"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 6.45e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 4.09e-11}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 6.75e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 5.1e-11}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 6.87e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1.25e-11}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 6.62e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.21e-07}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 8.15e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water"], "amount": 1.4e-07}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 3.82e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water"], "amount": 1.78e-10}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 3.43e-11}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 3.3e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 3.7e-08}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 4.83e-08}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 5.67e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 5.77e-13}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water"], "amount": 2.17e-06}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 4.2e-10}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 7.9e-12}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 1.27e-09}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 2.67e-10}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.1e-13}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 5.6e-08}, {"name": "Plutonium-alpha", "categories": ["air", "low population density, long-term"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 6.23e-08}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 1.27e-09}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "ground-, long-term"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water"], "amount": 1.08e-10}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 2.03e-11}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 1.53e-11}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 3.3e-12}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 4.2e-10}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 6.37e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water"], "amount": 3.95e-10}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 1.53e-12}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 1.53e-12}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water"], "amount": 4.33e-10}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 3.82e-08}, {"name": "Uranium alpha", "categories": ["air", "low population density, long-term"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water", "ground-, long-term"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water", "ocean"], "amount": 1.17e-11}, {"name": "Uranium alpha", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water"], "amount": 1.9e-09}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water", "ground-, long-term"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 1.9e-11}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water"], "amount": 2.03e-09}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water", "ground-, long-term"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 2.84e-11}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water", "ground-, long-term"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 1.17e-11}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water"], "amount": 1.9e-09}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 1.2e-13}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "human health", "ozone depletion"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 2.28e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-05}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.28e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.28e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000214}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000214}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.00114}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.000161}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.000777}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000777}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000777}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.000777}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.000777}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 8.04e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.04e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.04e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 8.04e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 8.04e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.34e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.34e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2.68e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.68e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.68e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2.68e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2.68e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.000764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.000764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.000764}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 8.87e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 8.87e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000884}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000884}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.0106}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0106}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0106}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.0106}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.0106}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.0213}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0213}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0213}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.0213}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.0213}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5.36e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5.36e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0011}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0011}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.68e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.68e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.0011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.0011}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.00134}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.00134}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "human health", "particulate matter formation"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.000151}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.03e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.000107}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 6.92e-05}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000182}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000145}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "human health", "photochemical oxidant formation: human health"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.72e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.82e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.82e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air"], "amount": 1.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.98e-08}, {"name": "Acrolein", "categories": ["air"], "amount": 1.78e-07}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.78e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -6.27e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -6.27e-08}, {"name": "Benzene", "categories": ["air"], "amount": 3.3e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.52e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 2.94e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-07}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air"], "amount": 1.72e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cumene", "categories": ["air"], "amount": 1.06e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 9.24e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.52e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -3.3e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -3.3e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 6.27e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 6.27e-08}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.22e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.22e-07}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.52e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.48e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.48e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.42e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.42e-08}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.3e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Methanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.06e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.63e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.63e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 6.73e-07}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.39e-06}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 9.1e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Phenol", "categories": ["air"], "amount": -1.65e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -1.65e-08}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Styrene", "categories": ["air"], "amount": 1.65e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.3e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 9.57e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.57e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "human health", "water use: human health"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 2.22e-06}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "natural resources", "energy resources: non-renewable, fossil"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.0341}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "natural resources", "material resources: metals/minerals"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.132}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0303}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00527}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 17.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.74}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0267}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0705}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0025}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00241}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0113}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00356}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 73.4}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0443}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000654}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 22.3}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.07}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00212}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00133}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 3.07}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.099}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0202}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00874}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 278}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.83}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.918}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "total: ecosystem quality", "ecosystem quality"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.680299999999999e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 6.158999999999999e-10}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.48373e-12}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.6652e-11}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83562e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.52564e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.3411235e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.83520616e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.83520616e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7236e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.083400011e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.492700000532001e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.492700000532001e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7236e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 5.1363e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.083400011e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.492700000532001e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.522999999999999e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.6019e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.995342e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.995342e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.80725e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.7113922e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.7113922e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.5517e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.6551e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.01482e-11}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36004267e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36004267e-08}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.2917e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.5654e-12}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 2.9949e-09}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 2.1337e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.9679973e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.9679973e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.350059938e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.55641e-11}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1.16136e-10}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.311e-11}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.311e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.22876e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.8545e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.320779999999999e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.87616e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.001556000000001e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.24170901e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.24170901e-10}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.1503717e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.1503717e-08}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 8.5333e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04851e-10}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05858e-11}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 4.5908e-13}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.77038805e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.183263e-10}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air"], "amount": 4.5204406e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.5204406e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.4881e-13}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.8318e-12}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.1213e-12}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.801e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 5.8726e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 3.8295e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.7464e-09}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["water"], "amount": 5.3361e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37024635e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.194350000000001e-11}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.37757e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.37757e-10}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.232e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.232e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 3.6996e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.4716e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.783900000000001e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9.863e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.630105e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.630105e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.8867e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 1.347e-09}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 4.0935e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15771e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.647e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.428e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.273e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.093999999999999e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.925140000000001e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.5279e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.3014e-09}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.82132e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air"], "amount": 9.982e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 9.982e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.50817e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.4279e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.022e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.26214e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.49851e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.7676e-10}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 9.79831e-05}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.79831e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.79831e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 8.90784e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 8.90784e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.22685e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 6.9213e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 6.9213e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 6.9213e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 7.683600000000001e-05}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 7.683600000000001e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 0.00016}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 7.683600000000001e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 7.683600000000001e-05}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 2.123386e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.123386e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.123386e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.90447e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.90447e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.43398e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.41392e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.41392e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.41392e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.56432e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.56432e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.64e-05}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.56432e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.56432e-05}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.17828e-10}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1346e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.0689e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.0208e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.26675e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.26675e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.26675e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.1857e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.330007629999999e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.6535e-07}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.39150577e-10}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.698e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.42000164e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.913800156e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.10360000694e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.10360000694e-07}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1.930437e-06}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.930437e-06}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.930437e-06}, {"name": "Barium II", "categories": ["air"], "amount": 1.938571e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.938571e-06}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9.178159999999999e-07}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.96175e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.96175e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 1.96175e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.18194e-06}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 2.18194e-06}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.03e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.18194e-06}, {"name": "Barium II", "categories": ["water"], "amount": 2.18194e-06}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.606500196e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 2.489e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14409719e-09}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 1.087e-10}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2491e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.9148e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.772679999999999e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.772679999999999e-10}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1.148e-08}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.12803e-06}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.2778e-10}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.8389e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.178899999999999e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.053e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47005026e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47005026e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.875178e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.05076e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.6023e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.6023e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.8812e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 3.2029e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.2029e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.377e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.994e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3.994e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.468506999999999e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.468506999999999e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.44142e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.4232e-11}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 5.1476e-12}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.4135e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.99278e-10}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 1.571314e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.571314e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.571314e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.17031e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.17031e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.8138e-07}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.6854e-06}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.6854e-06}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.6854e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.9489e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 2.9489e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.89e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.9489e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 2.9489e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.594e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.834e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.0444e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.523951e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.523951e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 4.794e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.587e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 3.31e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 1.512e-08}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 7.178e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.72113e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.72113e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.1461073e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.38790514e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.077300857e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 7.151109e-09}, {"name": "Bromopropane", "categories": ["air"], "amount": 1.1492e-12}, {"name": "Bromopropane", "categories": ["water"], "amount": 9.086200000000001e-11}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.465e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.907349999999999e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.24030377e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.1697000759e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.1697000759e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 5.120000000000001e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.2437e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.5907e-09}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.9354e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.3043e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.29705e-11}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 2.29266e-10}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.921400000000001e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.812e-11}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5287e-08}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.1259e-07}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 5.891379999999999e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.891379999999999e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.891379999999999e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 4.2242e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 4.2242e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.0938e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.845e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.845e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.845e-07}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 5.367e-07}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 5.367e-07}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 4.85e-06}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 5.367e-07}, {"name": "Cadmium II", "categories": ["water"], "amount": 5.367e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.81297e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.11696e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.5588e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.133979999999999e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.133979999999999e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19026e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.9898e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.16777e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.8453995e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2267475e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2267475e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9602e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.2783e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 2.5000682e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.5000682e-08}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.6843e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.6843e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.0889e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.6612e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.5213e-09}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9713e-08}, {"name": "Carboxin", "categories": ["air"], "amount": 3.6626e-08}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.61089e-09}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 9.67546e-09}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.825376e-08}, {"name": "Carboxin", "categories": ["water"], "amount": 1.825376e-08}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.8809164e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.60581e-11}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9851e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 6.719e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 5.1687e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 2.9548e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 2.9548e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 2.9548e-06}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44000000198675e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.515420000372e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.9074e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.811e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.390799999999999e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.8217e-10}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 3.22681e-11}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 7.41839e-08}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.41839e-08}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 1.01000042202e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 6.28250775e-09}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air"], "amount": 6.8412273e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 6.8412273e-08}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.10592e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.2319e-10}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 9.1e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 7.039e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 7.039e-10}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.7535e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.32431e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.862e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.846e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.3288e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.323e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 5.893e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 5.893e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.97e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.588e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.28426e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.05138e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.05138e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.6864e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.6952000815e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.01023e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.058238e-06}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.058238e-06}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.058238e-06}, {"name": "Chromium III", "categories": ["air"], "amount": 7.48608e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.48608e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.8321e-08}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.064e-08}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.064e-08}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.064e-08}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 5.62e-08}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 5.62e-08}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 6.12e-07}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 5.62e-08}, {"name": "Chromium III", "categories": ["water"], "amount": 5.62e-08}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 4.552896000000001e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.552896000000001e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.552896000000001e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.05629e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 4.05629e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.06196e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.92542e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.92542e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.92542e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.25602e-05}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 3.25602e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.64e-05}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.25602e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.25602e-05}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.0517e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 6.9229e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 5.144300000000001e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.88435e-10}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 1.737403e-06}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.737403e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.737403e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 1.28451e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1.28451e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.9144e-08}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.6099e-07}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.6099e-07}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.6099e-07}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.884e-07}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 2.884e-07}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.96e-06}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.884e-07}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.884e-07}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 4.55101e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.55101e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.55101e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 3.32384e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.32384e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.946e-07}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.712e-06}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.712e-06}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.712e-06}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.302e-06}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 6.302e-06}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.69e-05}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.302e-06}, {"name": "Copper ion", "categories": ["water"], "amount": 6.302e-06}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air"], "amount": 2.41005783e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41005783e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.496336e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.89631e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.30289e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.6023606e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.810646e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.6665e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.3763373e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5.07e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.0723e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.42870047e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.036e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 6.188000000000001e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.53323e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.53323e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4299e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.0219e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.16150233e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.970099999999999e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.73918e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.54408e-09}, {"name": "Decanoic acid", "categories": ["water"], "amount": 2.11462e-09}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 3.83e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 2.946e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 3.193e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.507600000000001e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.7119000000104e-11}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.5234e-10}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.1811e-08}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.753e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.985034300000001e-09}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73316e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.3729e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.633600264e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.633600264e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 5.548e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3362e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.243e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.677892000000001e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.416600291e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.416600291e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.4928e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.129e-09}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.1337e-08}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.29869e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 3.056e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.112350677e-10}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 7.5216e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.470005178e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.470005178e-08}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.17928e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.17928e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.635339999999999e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.23034e-10}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.125253e-11}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.125253e-11}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.8284957e-14}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.8857e-12}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4135e-07}, {"name": "Difenoconazole", "categories": ["air"], "amount": 2.0617e-07}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.944815e-09}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 5.6190746e-08}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 1.66710573e-07}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1.66710573e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7484e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.2825e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.4422e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.48589e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.48589e-06}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 2.096e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 9.9372e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.37102e-10}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.594e-09}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.154663e-07}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.91574e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 4.07e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.699944e-08}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 6.2347e-10}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.025e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.025e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.48552e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.874200000000001e-10}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 1.9700538e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9700538e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9700538e-06}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.9700538e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.9700538e-06}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.244924e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.3321e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 2.3362e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3362e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3362e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 2.0618e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 2.0618e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 3.0532e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 5.102e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 5.102e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 5.102e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.593e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 1.593e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.97657e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.593e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.593e-05}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.656187e-10}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 1.09252e-08}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09252e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 6.0432e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.438200645e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.1006000494e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.371400000752e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.371400000752e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.7426e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.4012e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3505e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.5858e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.06405e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.88131e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.563191e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.57777e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.486299999999999e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.530607829999999e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21470000249e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 9.755e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3.039e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.9541500000117e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.7474e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.7474e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 7.047e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2333e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.5985e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.402999999999999e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 3.0565e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.056100000000001e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.056100000000001e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8228e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8.372e-07}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air"], "amount": 6.642e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 6.642e-12}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 5.440147999999999e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.440147999999999e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 6.692738872000001e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 6.692738872000001e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.99014e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 2.2800623e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.5485e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.5485e-11}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.5200961e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 3.5200961e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 3.2700893e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 3.2700893e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 5.750157e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.750157e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.750157e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 5.750157e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 5.750157e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.766732e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3.766732e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 8.6189e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8.730238e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.730238e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.730238e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8.730238e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8.730238e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 8.310227e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.310227e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.310227e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 8.310227e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 8.310227e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.3200906e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 3.3200906e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2.2000601e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2000601e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2000601e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2.2000601e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2.2000601e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.00021400585}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00021400585}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00021400585}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.00021400585}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.00021400585}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.30259e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.483e-09}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.0004450121}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0004450121}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0004450121}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.0004450121}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.0004450121}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1.3700373e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3700373e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3700373e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3700373e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3700373e-05}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.1756e-13}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.6926e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16852e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.2872064e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.29910000000288e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.29910000000288e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.7672e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 5.7903e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.50894e-08}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43055768e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43055768e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.1162e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.6307e-11}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air"], "amount": 1.94897e-09}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.94897e-09}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.62358e-12}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water"], "amount": 1.41234e-10}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.26866e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.26866e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78123343e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.9706257e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.713000000000001e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 5.327e-11}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 3.4403e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.547900471e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.528000000757e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 5.3141e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.4086e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.2763e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 7.01371e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.3682e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 7.599999999999999e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2464e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.539800000000001e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.956e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.7608e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.2454e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.2177e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.2177e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.8758e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 8.938000000000001e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.451e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.6259e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.6259e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.6259e-06}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 1.5126e-07}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5126e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.1734e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 6.5634e-09}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 4.91221e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.934165e-07}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.934165e-07}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2711e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 3.3676e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.027999999999999e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 3.265e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.35993e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 4.607e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 5.0082e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 5.117e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.154200235e-10}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.6626e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.16056e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.606e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.483852e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.483852e-08}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.15095e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.4358e-10}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.900524070000001e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.943639999999999e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.314100085799999e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.955606999999999e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4224e-10}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air"], "amount": 3.1472e-14}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 3.1472e-14}, {"name": "Furfural", "categories": ["air"], "amount": 1.86695e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.127630000202e-10}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 8.542199999999999e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.9543e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.127630000202e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.98070000000144e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.732769e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.44877699e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.665970000000373e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.665970000000373e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.665970000000373e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8926e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.489e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.29470911e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.29470911e-08}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.640000025104e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.640000025104e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 1.05077e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.60050713e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.827221e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.0654423e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.0826e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.249e-08}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.2557e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 8.063800000000001e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.809164e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39003934e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39003934e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.126764e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.483915199999999e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.483915199999999e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.34455e-12}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.6047e-09}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.37410479e-09}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 6.04271e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04271e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.049849999999999e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.184000683e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.89050000000703e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.44980000000226e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.44980000000226e-09}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.541e-08}, {"name": "Indoxacarb", "categories": ["air"], "amount": 7.971e-08}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 3.081e-09}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2.4405e-08}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.275617e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.46424e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 8.600000047030001e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.600000047030001e-08}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1.026676e-09}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1.026676e-09}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 3.16725e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water"], "amount": 1.24899e-10}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.40115e-09}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.42488e-09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.2617e-08}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.736e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.605e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 4.164e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.4843e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.4843e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.4843e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 1.784e-11}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.0121676e-09}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 8.460321999999999e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.460321999999999e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.460321999999999e-07}, {"name": "Lead II", "categories": ["air"], "amount": 5.885420000000001e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 5.885420000000001e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.314e-10}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 1.0198e-08}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 1.0198e-08}, {"name": "Lead II", "categories": ["soil"], "amount": 1.0198e-08}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.1121e-08}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 1.1121e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.57e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.1121e-08}, {"name": "Lead II", "categories": ["water"], "amount": 1.1121e-08}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.7714000448e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 8.89e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.5313000233e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.213709999999999e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.21433751e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.144080125e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.144080125e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2503e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.3310671e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.204910100000001e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.204910100000001e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.951499999999999e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.0373100000135e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.1477148e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.10228e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.27494e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.47190963e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.972900040900001e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.4653000108e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.4653000108e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.6736099e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.41742e-10}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 1.0789933e-10}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 6.303300021e-16}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 3.192228e-05}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.192228e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.192228e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 2.21119e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 2.21119e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.3772e-08}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0067e-06}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0067e-06}, {"name": "Mercury II", "categories": ["soil"], "amount": 1.0067e-06}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.0646e-06}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 1.0646e-06}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.31e-05}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.0646e-06}, {"name": "Mercury II", "categories": ["water"], "amount": 1.0646e-06}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.8765e-10}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 8.133500000000001e-09}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.133500000000001e-09}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 5.6209e-09}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.5905e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.40095e-09}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2.34336e-09}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2.34336e-09}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 5.67097e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.565600314e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4050618e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.552e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.885999999999999e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 9.035899999999999e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.982679e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 9.982679e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 7.3302e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3302e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3302e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 7.3302e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 7.3302e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 3.3600915e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3600915e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3600915e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 3.3600915e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 3.3600915e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 7.400202e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 7.400202e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.00031700865}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00031700865}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00031700865}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.00031700865}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.00031700865}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.956307e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.956307e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 4.0236e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.231e-11}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 6.770185e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 6.770185e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 6.160168e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.160168e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.160168e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 6.160168e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 6.160168e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2.8300772e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8300772e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8300772e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.8300772e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.8300772e-06}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.2200334e-07}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2200334e-07}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2200334e-07}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.2200334e-07}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.2200334e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.1900325e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1900325e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1900325e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 1.1900325e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.1900325e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.18562603e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.18562603e-08}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.1900325e-07}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1900325e-07}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1900325e-07}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1.1900325e-07}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.1900325e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 7.400275968e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 7.400275968e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.04391e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.435e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.00027500751}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00027500751}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00027500751}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.00027500751}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.00027500751}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 2.1900597e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 2.1900597e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.00014200386}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00014200386}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00014200386}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.00014200386}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.00014200386}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.1144e-13}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.9244e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.894100000000001e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 2.0765e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74674e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 6.00631e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.322135e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.479677299999999e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.479677299999999e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.479677299999999e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.38e-10}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8735e-07}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.6234e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 7.787081e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 5.5285656e-08}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 1.70110589e-07}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 1.70110589e-07}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.297143e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.297143e-09}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.1759e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 3.4104e-11}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.8277e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.8277e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 5.5654e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.5594e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41003796e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41003796e-08}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.6673e-12}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.416369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.416369999999999e-10}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.142e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.9012e-09}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.47429e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.06189e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.3719e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9329e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.8029e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3719e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.03409e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.03409e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.03409e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63375e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.07254e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.0387276e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26365e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.07675e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.6653000124e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.106100000739e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.56420000032e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.56420000032e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.767999999999999e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 5.336e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1.157425e-07}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.157425e-07}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.157425e-07}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 9.0409e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 9.0409e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.21929e-08}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.3557e-08}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.3557e-08}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.3557e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 3.7285e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 3.7285e-08}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.69e-07}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 3.7285e-08}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 3.7285e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17798e-09}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2.007877e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.25798e-09}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 9.4494e-10}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.3103e-08}, {"name": "Naphthalene", "categories": ["air"], "amount": 9.302e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.6425e-09}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 9.5681e-10}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.4533e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 1.059327e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.059327e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.059327e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 8.0712e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 8.0712e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.8558e-07}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.4289e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.4289e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.4289e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.692e-06}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2.692e-06}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.692e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 2.692e-06}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4485e-09}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 6.2896e-09}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1.6504000083e-10}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 8.971000003780001e-10}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.316300000125e-09}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.316300000125e-09}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitric oxide", "categories": ["air"], "amount": 3.14e-07}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.884e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 7.094000000000001e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.00032000874}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00032000874}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00032000874}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.00032000874}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00032000874}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 2.053e-07}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 3.436e-09}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.08772e-11}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.1555e-09}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 7.78690663e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.498169e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.305e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11911e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 4.179e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 9.703e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.409e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.409e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.171e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.17877e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.189100000000001e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.956e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 9.015100535000001e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.0009e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.975e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.28060734e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.429e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.1088e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.24349e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.24349e-07}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air"], "amount": 3.020025237e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.020025237e-08}, {"name": "Pentane", "categories": ["water"], "amount": 4.998803000000001e-09}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.00032100876}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.017e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.002e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 2.0333e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 8.117e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.0794e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.461900645e-10}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air"], "amount": -3.749579e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.749579e-09}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.167158e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.7761e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 3.562e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 3.562e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.472000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.472000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.95232e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.231355e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.757099999999999e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.6404e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 8.9875e-08}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.19505e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.0975e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.12529e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.82659e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.15565e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 5.0829e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.402442000000001e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.68484e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.1031573e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.5872e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.2429e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.6319e-08}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 2.898e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.898e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.898e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 2.777e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 2.777e-09}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.4957e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.0084e-08}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.317e-10}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.413e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.0294e-08}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.3839e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 2.2356e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4117449e-11}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.11750462e-11}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air"], "amount": 5.4307464e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.4307464e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 7.6055e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water"], "amount": 8.1562e-11}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.0292e-09}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air"], "amount": 3.62007158e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62007158e-08}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 2.3687e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.9418e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.561343199999999e-09}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.6402e-10}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.32608e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8246e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.36551e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.11407e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.275855e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.275855e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.275855e-08}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63119919e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09465e-10}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air"], "amount": 6.01583e-10}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 6.01583e-10}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.47729e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water"], "amount": 8.115500000000002e-11}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 4.9125e-13}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.6519e-11}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.6519e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.679e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 7.074e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.3538e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.9068e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 4.448e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.278e-06}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.7413e-07}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.389e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.389e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.511389e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.0395e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.8366e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.887e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.211e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.2767e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.6849e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.9144e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.9144e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.2705209e-10}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.167e-09}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.1445e-08}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2.8868e-09}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.85901e-11}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 3.57122e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57122e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57122e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 2.7278e-06}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 2.7278e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.7502e-07}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 8.316100000000001e-07}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 8.316100000000001e-07}, {"name": "Selenium IV", "categories": ["soil"], "amount": 8.316100000000001e-07}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 9.217e-07}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 9.217e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.73e-06}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 9.217e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.217e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.904e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.88237e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.193859000000001e-09}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.0001874323}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001874323}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001874323}, {"name": "Silver I", "categories": ["air"], "amount": 0.000133116}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.000133116}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.6198e-06}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.2405e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.2405e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 1.2405e-05}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.3737e-05}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 1.3737e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 0.000134}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.3737e-05}, {"name": "Silver I", "categories": ["water"], "amount": 1.3737e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55942e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.15613e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.0866e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.33571e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.06368e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.06368e-08}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.771265e-10}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.771265e-10}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 8.56e-14}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water"], "amount": 5.7221e-12}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.5114e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air"], "amount": 3.77007198e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77007198e-09}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.505038e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75914e-10}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.52090902e-08}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.14369e-07}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 0.0008590233999999999}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0008590233999999999}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0008590233999999999}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.0008590233999999999}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0008590233999999999}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.5520356e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.5520356e-07}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.4553038e-10}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.06381000000196e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.06381000000196e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1.003208e-07}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3431e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.28703e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.185009999999999e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.8453955e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7556e-09}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14932e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9.172099999999999e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.7515e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.593736e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.742943e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.742943e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1146e-06}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.7225e-06}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.709199999999999e-08}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 4.898993e-07}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 1.6774897e-06}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.378371e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.4728e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.303e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.7316e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.687849999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.687849999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.53667e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.7108e-10}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 5.043632000000001e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.043632000000001e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.043632000000001e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 4.88296e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 4.88296e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2.07152e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 4.53331e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 4.53331e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 4.53331e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 5.03368e-05}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 5.03368e-05}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 8.21e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 5.03368e-05}, {"name": "Thallium I", "categories": ["water"], "amount": 5.03368e-05}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1.58345e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58345e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.34304e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.138841e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.6029404e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05376318e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05376318e-08}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 8.6416708e-10}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.0562e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.0200131648e-10}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water"], "amount": 6.302843e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8483e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.2836e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.6623e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.11236e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.11236e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03395e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.36888e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.4302e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.3474e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.06432e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.06432e-08}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.531e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.531e-08}, {"name": "Thiram", "categories": ["air"], "amount": 1.15e-08}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.89795e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.391784e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.277509e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.277509e-07}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 1.663257e-06}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.663257e-06}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.663257e-06}, {"name": "Tin ion", "categories": ["air"], "amount": 1.19211e-06}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.19211e-06}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 6.458e-09}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1.3204e-07}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1.3204e-07}, {"name": "Tin ion", "categories": ["soil"], "amount": 1.3204e-07}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.4432e-07}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1.4432e-07}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.32e-06}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.4432e-07}, {"name": "Tin ion", "categories": ["water"], "amount": 1.4432e-07}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.32003648e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32003648e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.099279999999999e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.7333e-11}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.764e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.764e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 3.62693e-11}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.4476e-10}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 3.5878e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 5.11706e-07}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2151177e-09}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.542e-09}, {"name": "Triallate", "categories": ["air"], "amount": 7.55e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.4183e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.202e-08}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.29660853e-07}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 2.17143e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.87331e-06}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.15100855e-08}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.144200041e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.7988e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.508216400000001e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19007233e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19007233e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.738967e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.1927e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.7237e-09}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.9184e-07}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49109341e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.26525e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.895e-09}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7987e-05}, {"name": "Triflumuron", "categories": ["air"], "amount": 5.869e-05}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 2.7716e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 1.0785e-05}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.5978e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.5978e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.932e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 4.985e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.763e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.5447e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.5447e-08}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.8260301e-10}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 4.10713e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.2304e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.590078418e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.2279947e-11}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.179726e-11}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 9.57424e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.57424e-05}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.57424e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.2843e-05}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.2843e-05}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.3117e-05}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 8.6112e-05}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 8.6112e-05}, {"name": "Vanadium V", "categories": ["soil"], "amount": 8.6112e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 9.5324e-05}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 9.5324e-05}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 0.000165}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 9.5324e-05}, {"name": "Vanadium V", "categories": ["water"], "amount": 9.5324e-05}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.1061e-10}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.81e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.81e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.84498e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08516e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.036e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.000214422}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000214422}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000214422}, {"name": "Zinc II", "categories": ["air"], "amount": 0.0002397094}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.0002397094}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.060924e-05}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.000297133}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.000297133}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.000297133}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.000326146}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.000326146}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.000368}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.000326146}, {"name": "Zinc II", "categories": ["water"], "amount": 0.000326146}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.44e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.7856e-08}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.119496e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.43238e-10}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.880061599999999e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.880061599999999e-08}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.342038e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.66747e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.4114e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.4114e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 5.3951e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 5.0815e-12}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air"], "amount": 6.27268e-09}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 6.27268e-09}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 1.72521e-11}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water"], "amount": 7.9038e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.782e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "total: human health", "human health"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 2.495e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00440673}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376575}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141216}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176269}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176269}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 2.36e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.28e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 0.000165}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.07e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 5.26e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 5.26e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.139e-06}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 6.92e-06}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.82e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 6.45e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 4.09e-11}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 4.09e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137924}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137924}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0001721}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.9e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.84e-06}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 7.77e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 6.75e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 5.1e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 5.1e-11}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.000151}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.317e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.317e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.543e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water"], "amount": 1.0133e-06}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00969}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.0088}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.0088}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.00235}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.00693}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 0.0149}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.00734}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.00734}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 6.87e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 6.87e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1.25e-11}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.3745}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3745}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3745}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.2494}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.2494}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.10574}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.9866}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.9866}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.9866}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.0786}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.0786}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.484}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.0786}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.0786}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-05}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.206e-06}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 3.106e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.5e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.5e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.5e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air"], "amount": 0.00479}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.00479}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.00228}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.00481}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.00481}, {"name": "Barium II", "categories": ["soil"], "amount": 0.00481}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 0.0073}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 0.00529}, {"name": "Barium II", "categories": ["water"], "amount": 0.00529}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.67e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.67e-07}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.640000000000001e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.546e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.2386e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.536e-07}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.97e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.5207e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.434e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0003369}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0003369}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.004116}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.0063691}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0063691}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0063691}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146889}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146889}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 4.17e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.6e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.6e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.6e-05}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.018e-05}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.018e-05}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.69e-05}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.018e-05}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.018e-05}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.27e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.76e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.66e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.48e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.64e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.63e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000449}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000449}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 6.234e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.234e-06}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.034769}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.034769}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.034769}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.02543}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.02543}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.07182}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.0033118}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.0033118}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.0033118}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.0021029}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 0.0021029}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.016762}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.0021029}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.0021029}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 6.62e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1.21e-07}, {"name": "Caesium-134", "categories": ["water"], "amount": 1.21e-07}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 2.3e-08}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 8.15e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 1.4e-07}, {"name": "Caesium-137", "categories": ["water"], "amount": 1.4e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.498e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.838e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.784e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.279e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.279e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1.25e-05}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.25e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 1.81e-07}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 3.82e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 1.78e-10}, {"name": "Carbon-14", "categories": ["water"], "amount": 1.78e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.74e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.169e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.54e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.336e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.336e-05}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.59e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 5.780000000000001e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.096e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.125e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.673e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9.679999999999999e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.602e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.602e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 9.69e-08}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 9.69e-08}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.89e-08}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.99e-08}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.04e-07}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.12e-08}, {"name": "Chromium III", "categories": ["water"], "amount": 1.12e-08}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 2.47136}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47136}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47136}, {"name": "Chromium VI", "categories": ["air"], "amount": 2.21244}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 2.21244}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.610321}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.660878}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.660878}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.660878}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.820962}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 1.820962}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.22223}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.820962}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.820962}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 3.57e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 3.43e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 3.43e-11}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1.4e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 3.3e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 3.7e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 3.7e-08}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 2.53e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2.53e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.9e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["soil"], "amount": 7.14e-06}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.72e-05}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 5.54e-06}, {"name": "Copper ion", "categories": ["water"], "amount": 5.54e-06}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 4.83e-08}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0008}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.75e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.92e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.92e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.748e-07}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 5.86e-06}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 4.62e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002871}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.738e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.738e-07}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.11e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.63e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.85e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.28e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.0010078}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010078}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010078}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.0010078}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.0010078}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 359}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 331}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 331}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 77.1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 91.4}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 263}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 755}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 755}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.98e-05}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0027202428}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0027202428}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0005490699}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0005490699}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.72e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.0114}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.0114}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.89e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.89e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.01874161}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.01874161}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.00180181}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.00180181}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000287}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000287}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.034e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.034e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.16e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.044477}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044477}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044477}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.044477}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.044477}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.0042404}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0042404}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0042404}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.0042404}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.0042404}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.000180142}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.000180142}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.0011268}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011268}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011268}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0011268}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0011268}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.107764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.107764}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.107764}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.0001115}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0001705}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.223}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.223}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.00683}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.00683}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.57e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.35e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.35e-09}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 7.83e-06}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000172}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.11e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 4.14e-05}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.1509e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.57e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.412e-09}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.00032309}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00032309}, {"name": "Furfural", "categories": ["air"], "amount": 4.593e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.04e-05}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.5e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.5e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.1144e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8881e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00125}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.4e-05}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 8.98e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 8.98e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.527e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.077e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.03142e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.03142e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1.2e-11}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 5.67e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 5.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 5.77e-13}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 2.9e-06}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 2.17e-06}, {"name": "Iodine-129", "categories": ["water"], "amount": 2.17e-06}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 1.27e-10}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 4.2e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 4.2e-10}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 7.9e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 7.9e-12}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 8.019999999999999e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.019999999999999e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air"], "amount": 1.19e-13}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.009899}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.009899}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.009899}, {"name": "Lead II", "categories": ["air"], "amount": 0.007338000000000001}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.007338000000000001}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0013057}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0019028}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0019028}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0019028}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.00039878}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.00039878}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.0046154}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.00039878}, {"name": "Lead II", "categories": ["water"], "amount": 0.00039878}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air"], "amount": 1.27e-09}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 1.27e-09}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.0001545}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.339e-06}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 2.67e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 2.67e-10}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.404}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.404}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.404}, {"name": "Mercury II", "categories": ["air"], "amount": 0.2973}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.2973}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.015644}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.07251}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.07251}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.07251}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.07014}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.07014}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.7272}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.07014}, {"name": "Mercury II", "categories": ["water"], "amount": 0.07014}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00123793}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00123793}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.01427}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01427}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01427}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.01427}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.01427}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.03809999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03809999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03809999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.03809999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.03809999999999999}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 4.09e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 4.09e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0037536365}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0037536365}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.159}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.27399e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.27399e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.057e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.239e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.17e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.03509209999999999}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.03509209999999999}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000308}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000308}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.00142}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.00142}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air"], "amount": 6.12e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.12e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 5.95e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.95e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.44233e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.44233e-05}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 5.95e-05}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.95e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.006316}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.006316}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.0008010000000000001}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.0014}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.138}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.138}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.55e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.01224764}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.01224764}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.0708}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.0708}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 7.67e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00149}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.00114}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.000714}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.000431}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.000258}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.000258}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air"], "amount": 5.274499999999999e-07}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 5.274499999999999e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 5.7386e-08}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.8356e-07}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.049e-05}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3.235e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.0039415}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0039415}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0039415}, {"name": "Nickel II", "categories": ["air"], "amount": 0.0030497}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.0030497}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.0007072300000000001}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.0011956}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.0011956}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.0011956}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 0.000839}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 0.000839}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 0.0040124}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.000839}, {"name": "Nickel II", "categories": ["water"], "amount": 0.000839}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.0973e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.00010839}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 5.14e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6.06e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.16}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.011e-05}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1.1e-13}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.1e-13}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.11e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.00011337}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.00011337}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 2.662e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.209e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.16}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 2.905e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 2.329e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000138}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.843e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.623e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.46e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 6.9e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1.1176e-06}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air"], "amount": 5.6e-08}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 5.6e-08}, {"name": "Plutonium-alpha", "categories": ["air", "low population density, long-term"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 7e-08}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 6.23e-08}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air"], "amount": 1.27e-09}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 1.27e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.017}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.685e-05}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 9.818e-07}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.200000000000001e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.58e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 6.54e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 4.37e-07}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 7.63e-10}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "ground-, long-term"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Radium-226", "categories": ["water"], "amount": 1.08e-10}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air"], "amount": 2.03e-11}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 2.03e-11}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 1.4e-09}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 1.53e-11}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 3.3e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 3.3e-12}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0294}, {"name": "Silver I", "categories": ["air"], "amount": 0.0211}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0211}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0424}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.00347}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.00347}, {"name": "Silver I", "categories": ["soil"], "amount": 0.00347}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 0.00771}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000921}, {"name": "Silver I", "categories": ["water"], "amount": 0.000921}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 4.2e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 4.2e-10}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 3.43e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 6.37e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 3.95e-10}, {"name": "Strontium-90", "categories": ["water"], "amount": 3.95e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.345e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.3781e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000182}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.43}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.43}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000145}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 1.53e-12}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 4.33e-10}, {"name": "Technetium-99", "categories": ["water"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 1.53e-12}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 4.33e-10}, {"name": "Technetium-99m", "categories": ["water"], "amount": 4.33e-10}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.43e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-06}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.255}, {"name": "Thallium I", "categories": ["air"], "amount": 0.249}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.249}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.107}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.235}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.235}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.235}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.422}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.26}, {"name": "Thallium I", "categories": ["water"], "amount": 0.26}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air"], "amount": 3.82e-08}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 3.82e-08}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air"], "amount": 3.854e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.854e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 5.33e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water"], "amount": 2.381e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 3.51e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.01e-05}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 3.6e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.85e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.688e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.47e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.18e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.18e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.69e-08}, {"name": "Uranium alpha", "categories": ["air", "low population density, long-term"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 6.87e-09}, {"name": "Uranium alpha", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water", "ground-, long-term"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water", "ocean"], "amount": 1.17e-11}, {"name": "Uranium alpha", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium alpha", "categories": ["water"], "amount": 1.9e-09}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 8.15e-08}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water", "ground-, long-term"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 1.9e-11}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 2.03e-09}, {"name": "Uranium-234", "categories": ["water"], "amount": 2.03e-09}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1.78e-08}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water", "ground-, long-term"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 2.84e-11}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium-235", "categories": ["water"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 6.87e-09}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water", "ground-, long-term"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 1.17e-11}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 1.9e-09}, {"name": "Uranium-238", "categories": ["water"], "amount": 1.9e-09}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0144}, {"name": "Vanadium V", "categories": ["air"], "amount": 0.0141}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 0.0141}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.00208}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.0134}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 0.0253}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.0148}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.0148}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 2.22e-06}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air"], "amount": 1.2e-13}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 1.2e-13}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air"], "amount": 4.277e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 4.277e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 5.036e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water"], "amount": 2.342e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.404}, {"name": "Zinc II", "categories": ["air"], "amount": 0.449}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.449}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0777}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.547}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.547}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.547}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.677}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.602}, {"name": "Zinc II", "categories": ["water"], "amount": 0.602}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 7.52e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.159e-06}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.0806e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0806e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.341e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.1816e-07}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (E)", "total: natural resources", "natural resources"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.132}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0303}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00527}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 17.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.74}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0267}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0705}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0025}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00241}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0113}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00356}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 73.4}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0443}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000654}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 22.3}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.07}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.0341}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00212}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00133}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 3.07}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.099}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0202}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00874}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 278}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.83}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.918}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1.35e-08}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "acidification: terrestrial no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.72e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.17e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.63e-08}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.38e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "climate change: freshwater ecosystems no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 7.65e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 7.65e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 7.65e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 7.65e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 7.65e-14}, {"name": "Chloroform", "categories": ["air"], "amount": 1.53e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.53e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-11}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.28e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.28e-11}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.18e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.18e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.48e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.48e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5.04e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.04e-10}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 7.18e-11}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 7.18e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.28e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 1.28e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 1.28e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 7.65e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.65e-14}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.36e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.36e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 7.36e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 7.36e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1.79e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1.79e-10}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 7.34e-12}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 7.34e-12}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.86e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.86e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 4.86e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 4.86e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.51e-10}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.51e-10}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 6.51e-10}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 6.51e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.44e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 9.44e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 9.44e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.82e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 2.82e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 2.82e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.06e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.06e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.3e-13}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.3e-13}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1.58e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1.58e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.47e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5.47e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5.47e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.61e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.61e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1.18e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1.18e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.42e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.42e-13}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8.83e-10}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8.83e-10}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1.37e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1.37e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.25e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.25e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 6.25e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 6.25e-11}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.75e-12}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.75e-12}, {"name": "Methane, fossil", "categories": ["air"], "amount": 2.75e-12}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.75e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 2.6e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.6e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.15e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.15e-12}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-12}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-12}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 2.6e-12}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.6e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.54e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.54e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5.62e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5.62e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.09e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4.09e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 1.06e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 1.06e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-09}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 1.37e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.37e-09}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 7.26e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2e-09}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 2e-09}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 2e-09}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 2e-09}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "climate change: terrestrial ecosystems no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.8e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.8e-09}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 2.8e-09}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 2.8e-09}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 2.8e-09}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 2.8e-09}, {"name": "Chloroform", "categories": ["air"], "amount": 5.6e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.34e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.34e-07}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 8.34e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 8.34e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.34e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.34e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.4e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.4e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1.84e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1.84e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2.63e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2.63e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 4.68e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 4.68e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.8e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.8e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2.69e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2.69e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.57e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.57e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 6.57e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 6.57e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 2.69e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 2.69e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.78e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.78e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 2.38e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 2.38e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 3.46e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 3.46e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.03e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.03e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 3.86e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 3.86e-08}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.4e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.4e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 5.8e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 5.8e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5.9e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5.9e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.33e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.33e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 4.33e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 4.33e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.08e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.08e-08}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3.23e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.01e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 5.01e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 5.01e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.29e-06}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-07}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-07}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.01e-07}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.01e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 9.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.52e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 4.2e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 4.2e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 9.52e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 9.52e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.65e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.65e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 2.06e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 2.06e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.5e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.5e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.88e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.88e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3.88e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3.88e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.01e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01e-05}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 5.01e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 5.01e-05}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 2.66e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-05}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 7.3e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 7.3e-05}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "ecotoxicity: freshwater no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 3.63e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 5.81e-10}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.73e-15}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 2.86e-11}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-10}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.5e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.33e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.82e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.82e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09e-11}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.4e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.4e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09e-11}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1.27e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.4e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.51e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.97e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.7e-15}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.73e-11}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 4.27e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 4.27e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.07e-15}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.32e-12}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 2.57e-09}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.27e-14}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.38e-20}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.54e-11}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.77e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-11}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.8e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.96e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.19e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.19e-10}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.93e-14}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1e-10}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-13}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.05e-18}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.18e-10}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.21e-15}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.51e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.03e-14}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 6.07e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 6.26e-13}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 1.96e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.54e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.35e-18}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.17e-11}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1.64e-11}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1.64e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.16e-13}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.06e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-09}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 7.92e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 5.28e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.89e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.88e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.02e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 7.64e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.75e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.43e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.74e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.47e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.33e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.37e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 9.34e-11}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.46e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-08}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-08}, {"name": "Antimony ion", "categories": ["air"], "amount": 3.14e-08}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3.14e-08}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 6.4e-08}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 6.4e-08}, {"name": "Antimony ion", "categories": ["soil"], "amount": 6.4e-08}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.52e-28}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.36e-07}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38e-09}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38e-09}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.46e-09}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.46e-09}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 8.72e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.64e-09}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.64e-09}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.64e-09}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1.49e-29}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.32e-08}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.44e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 5.93e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.25e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.18e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.62e-07}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.38e-10}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.89e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.09e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.09e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.35e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35e-10}, {"name": "Barium II", "categories": ["air"], "amount": 7.69e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 7.69e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8.16e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.18e-30}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water"], "amount": 1.94e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.59e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.59e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14e-09}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 9.99e-11}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.81e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.73e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.73e-10}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1.44e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.11e-06}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.17e-10}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.19e-14}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.03e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.2e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.78e-15}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.04e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.71e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 4.79e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.79e-11}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.06e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.34e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.34e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.42e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.35e-11}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 2.9e-15}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.98e-10}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.05e-09}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.05e-09}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 4.71e-10}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 8.51e-10}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 8.51e-10}, {"name": "Beryllium II", "categories": ["soil"], "amount": 8.51e-10}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.99e-29}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.89e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.6e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.97e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.48e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 3.54e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.67e-08}, {"name": "Bifenthrin", "categories": ["air"], "amount": 2.8e-08}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.7e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.46e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.45e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.45e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.12e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.31e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.06e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 6.95e-09}, {"name": "Bromopropane", "categories": ["air"], "amount": 2.52e-14}, {"name": "Bromopropane", "categories": ["water"], "amount": 8.96e-11}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.16e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.16e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.24e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.12e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.52e-09}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 2.9e-11}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.33e-15}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.27e-11}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.04e-14}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.36e-11}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-09}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.08e-07}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4e-10}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4e-10}, {"name": "Cadmium II", "categories": ["air"], "amount": 8.1e-10}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 8.1e-10}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.21e-10}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.42e-09}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.42e-09}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.42e-09}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3e-30}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.17e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.79e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-09}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.36e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.06e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.06e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-09}, {"name": "Carbendazim", "categories": ["air"], "amount": 4.88e-09}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.14e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.83e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.83e-08}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.43e-13}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.43e-13}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 6.9e-14}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.42e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.88e-10}, {"name": "Carboxin", "categories": ["air"], "amount": 2.92e-09}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.59e-09}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 9.59e-09}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Carboxin", "categories": ["water"], "amount": 1.81e-08}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 4.4e-19}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.59e-11}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.41e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 6.3e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 5e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 2.87e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 2.87e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 2.87e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 6.75e-21}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.51e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.54e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.75e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 4.41e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.72e-10}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 3.2e-11}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1.15e-09}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.15e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 2.02e-19}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 6.26e-09}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.92e-14}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.13e-10}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.27e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 5.59e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 5.59e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.25e-13}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.24e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.84e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.1e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.68e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 4.68e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.29e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.24e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.02e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.02e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.35e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.6e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-10}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-10}, {"name": "Chromium III", "categories": ["air"], "amount": 2.8e-10}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.8e-10}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 2.91e-10}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.93e-10}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.93e-10}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.93e-10}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 7.41e-31}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.6e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.37e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.37e-09}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.08e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.08e-08}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.12e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.14e-29}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 6.02e-08}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.76e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.6e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.84e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43e-10}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43e-10}, {"name": "Cobalt II", "categories": ["air"], "amount": 1.56e-10}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1.56e-10}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 9.73e-11}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.84e-10}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.84e-10}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.84e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.29e-30}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.4e-09}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.59e-09}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59e-09}, {"name": "Copper ion", "categories": ["air"], "amount": 3.81e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.81e-09}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.29e-09}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.29e-09}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.29e-09}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.01e-29}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1.12e-07}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 6.36e-15}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.88e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.15e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 5.06e-17}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.8e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 8.95e-18}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.34e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.51e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.4e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 5.84e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.4e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.4e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 8.9e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.11e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.04e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.72e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Decanoic acid", "categories": ["water"], "amount": 2.11e-09}, {"name": "Deltamethrin", "categories": ["air"], "amount": 3.72e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 7.76e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.39e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.63e-11}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.39e-10}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.14e-08}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.06e-11}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.93e-09}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-10}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.62e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 9.42e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.19e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.97e-11}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.63e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.38e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.38e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 6.55e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 4.01e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.96e-10}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.11e-10}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 7.06e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.09e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.09e-15}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 3.34e-15}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.21e-10}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.5e-13}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.5e-13}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.57e-19}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.88e-12}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.92e-09}, {"name": "Difenoconazole", "categories": ["air"], "amount": 1.49e-08}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.72e-09}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 5.46e-08}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 1.62e-07}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1.62e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.08e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.39e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.38e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.38e-06}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.08e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 2.72e-14}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.33e-10}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.34e-09}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.97e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.69e-08}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 6.14e-10}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.52e-14}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.77e-10}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.18e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.21e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1.16e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 2.59e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 9.03e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 9.03e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 9.03e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 3.46e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.21e-05}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-10}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.18e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.36e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.05e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.36e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.36e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.38e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.76e-09}, {"name": "Diuron", "categories": ["air"], "amount": 2.45e-08}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.05e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.82e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.55e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.56e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.5e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.8e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.75e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.95e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.24e-12}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 9.24e-12}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 5.09e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49e-09}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.74e-09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 2.85e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 5.82e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.82e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 6.95e-07}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air"], "amount": 3.92e-13}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-13}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.14e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.95e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.89e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 3.85e-11}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 3.59e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.47e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.56e-15}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.37e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.26e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.28e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.28e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.55e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.11e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.02e-14}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.14e-11}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air"], "amount": 2.81e-11}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.81e-11}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 1.58e-15}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water"], "amount": 1.4e-10}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 5.71e-11}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 5.71e-11}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 3.43e-18}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.96e-10}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.23e-13}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 3.35e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.87e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.51e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 5.25e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.65e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.18e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 6.95e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.2e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.03e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.44e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.43e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.56e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.21e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.11e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.11e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.77e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.01e-07}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.3e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.17e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.57e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-09}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 6.47e-09}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 4.85e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.91e-07}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.91e-07}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-08}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2.84e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8.46e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 6.05e-10}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 8.17e-12}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.95e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.85e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.14e-10}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.15e-08}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 3.25e-14}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.31e-10}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.07e-19}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.93e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.27e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.93e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air"], "amount": 9.02e-16}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 9.02e-16}, {"name": "Furfural", "categories": ["air"], "amount": 4.88e-12}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 4.09e-10}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.66e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1.98e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.23e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.23e-08}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air"], "amount": 4.54e-18}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 4.54e-18}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 7.5e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.13e-18}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.81e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.04e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.21e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.57e-11}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.49e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.04e-15}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 4.64e-15}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.08e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.52e-13}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.57e-09}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.32e-09}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.24e-09}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.07e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.83e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.37e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.37e-09}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.98e-09}, {"name": "Indoxacarb", "categories": ["air"], "amount": 8.21e-09}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2.88e-09}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2.36e-08}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.43e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air"], "amount": 1.19e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.19e-17}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air"], "amount": 2.6e-11}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 2.6e-11}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 7.25e-15}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water"], "amount": 1.22e-10}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.38e-09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.22e-08}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.79e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 2.94e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.35e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.35e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.35e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.03e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.01e-09}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-11}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-11}, {"name": "Lead II", "categories": ["air"], "amount": 9.58e-12}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 9.58e-12}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.05e-12}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 5.13e-12}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 5.13e-12}, {"name": "Lead II", "categories": ["soil"], "amount": 5.13e-12}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.59e-32}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water"], "amount": 4.21e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.74e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.71e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.45e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-11}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.21e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.14e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.14e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.32e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.17e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.17e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.43e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.03e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.14e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-09}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.01e-08}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.41e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.94e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.42e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.42e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.61e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.34e-10}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 6.27e-16}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.33e-10}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.33e-10}, {"name": "Mercury II", "categories": ["air"], "amount": 7e-10}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 7e-10}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.38e-10}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.99e-10}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.99e-10}, {"name": "Mercury II", "categories": ["soil"], "amount": 1.99e-10}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.71e-30}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 3.46e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.03e-10}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 4.18e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.38e-09}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2.32e-09}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2.32e-09}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 4.74e-11}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.51e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.78e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 8.99e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.91e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.26e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.03e-11}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.03e-14}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.01e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3.71e-10}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.74e-15}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.42e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.71e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.95e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35e-09}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.98e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.46e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.58e-10}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.85e-09}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.5e-08}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 7.69e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 5.46e-08}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 1.68e-07}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 1.68e-07}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.64e-13}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.64e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.59e-14}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.96e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 2.54e-13}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.37e-12}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air"], "amount": 5.42e-12}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 5.42e-12}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.4e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.29e-15}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.03e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.51e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.02e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.54e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.06e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.03e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 5.37e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.62e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.08e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.52e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.52e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.71e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.24e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-11}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-11}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 5.03e-11}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 5.03e-11}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 5.23e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.07e-10}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.07e-10}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.07e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.14e-31}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.85e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 9.34e-10}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 9.11e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.16e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 9.47e-10}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.71e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-09}, {"name": "Nickel II", "categories": ["air"], "amount": 1.5e-09}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.5e-09}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.14e-09}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.2e-09}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.2e-09}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.2e-09}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.19e-29}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 3.2e-08}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.68e-11}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 2.28e-10}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 8.86e-10}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.3e-09}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.3e-09}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 9.4e-13}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.28e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.27e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.08e-11}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 8.95e-10}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.46e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.06e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 2.29e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 6.47e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.17e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.37e-12}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.04e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.94e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.65e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.67e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.27e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.81e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.83e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.22e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.22e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air"], "amount": 4.37e-15}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.37e-15}, {"name": "Pentane", "categories": ["water"], "amount": 4.99e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.24e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.53e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.99e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 9.47e-11}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.96e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.4e-10}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 8.58e-15}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.74e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 9.42e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 9.42e-11}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.33e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.33e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.84e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.14e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.17e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.31e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.21e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 3.75e-13}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.09e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.59e-13}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.81e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 2.65e-14}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 4.23e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.02e-15}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.65e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.04e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.67e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1.36e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1.36e-10}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.21e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 9.19e-09}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 3.76e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 2.98e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 9.74e-09}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.24e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4e-11}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.1e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air"], "amount": 1.22e-13}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.22e-13}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 3.55e-14}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water"], "amount": 7.1e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 9.98e-10}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air"], "amount": 8.13e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 8.13e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.67e-15}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.54e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.48e-09}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.3e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.19e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.33e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.1e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.21e-08}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 9.19e-18}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09e-10}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air"], "amount": 1.51e-11}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 1.51e-11}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.29e-15}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water"], "amount": 8.05e-11}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 4.53e-13}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air"], "amount": 7.69e-13}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 7.69e-13}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.49e-13}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.9e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.73e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 8.18e-10}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.26e-06}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.7e-07}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.49e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5.6e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.65e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 3.12e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.97e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.63e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.88e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.88e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.26e-10}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.1e-08}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2.69e-09}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68e-10}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68e-10}, {"name": "Selenium IV", "categories": ["air"], "amount": 6.77e-10}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 6.77e-10}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 5.86e-10}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.15e-09}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.15e-09}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.15e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.16e-30}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.07e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.86e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.15e-09}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15e-08}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-08}, {"name": "Silver I", "categories": ["air"], "amount": 1.33e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 1.33e-08}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 9.1e-09}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.74e-08}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.74e-08}, {"name": "Silver I", "categories": ["soil"], "amount": 1.74e-08}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 6.14e-29}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water"], "amount": 3.37e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-09}, {"name": "Simazine", "categories": ["air"], "amount": 8.25e-09}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.93e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.3e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.01e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.01e-08}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.1e-12}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 2.89e-35}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water"], "amount": 5.71e-12}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.68e-15}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75e-10}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.5e-08}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 9.93e-08}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.98e-10}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.98e-10}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.06e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.06e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 9.94e-08}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-09}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.27e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.07e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.81e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7e-09}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-08}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.02e-08}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.72e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.72e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.72e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8e-08}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.59e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.51e-08}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 4.76e-07}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 1.63e-06}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.3e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.05e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 2.72e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 9.7e-14}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.52e-10}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.28e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.28e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 1.45e-08}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1.45e-08}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.52e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.91e-29}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 3.68e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-10}, {"name": "Thiabendazole", "categories": ["air"], "amount": 9.79e-10}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.12e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.59e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 8.57e-10}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 6.48e-18}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water"], "amount": 6.28e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 8.78e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.5e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.02e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-10}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.02e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.22e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air"], "amount": 4.11e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.87e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.25e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.25e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.24e-11}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.24e-11}, {"name": "Tin ion", "categories": ["air"], "amount": 7.88e-11}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 7.88e-11}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 2.8e-11}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 4.84e-11}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 4.84e-11}, {"name": "Tin ion", "categories": ["soil"], "amount": 4.84e-11}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 5.36e-31}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 3.32e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 3.28e-15}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.67e-11}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1.07e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1.07e-13}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 4.93e-14}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.4e-10}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 2.54e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Triallate", "categories": ["air"], "amount": 1.14e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.15e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.04e-08}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.34e-07}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.05e-08}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.13e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.52e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.44e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 7.67e-15}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.18e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.67e-09}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 3.41e-20}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.23e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.36e-09}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 3.24e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 1.76e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 9.83e-06}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.54e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.54e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-11}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.05e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.51e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.46e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.46e-08}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.69e-10}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 3.99e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.17e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.18e-20}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.22e-11}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.12e-11}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.58e-09}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.58e-09}, {"name": "Vanadium V", "categories": ["air"], "amount": 5.72e-09}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 5.72e-09}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4.28e-09}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 8.28e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 8.28e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 8.28e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 5.7e-29}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.24e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 3.79e-10}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 2.18e-15}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.37e-09}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.37e-09}, {"name": "Zinc II", "categories": ["air"], "amount": 4.12e-09}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4.12e-09}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.96e-09}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 3.57e-09}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 3.57e-09}, {"name": "Zinc II", "categories": ["soil"], "amount": 3.57e-09}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 5.19e-29}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.46e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.26e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.67e-08}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.06e-15}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.42e-10}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 7.38e-15}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.65e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 8.94e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.94e-15}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 2.51e-15}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 4.65e-12}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1.68e-10}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1.68e-10}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 3.21e-14}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water"], "amount": 7.78e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 9.62e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "ecotoxicity: marine no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 8.73e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.48e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.69e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water"], "amount": 1.32e-13}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52e-11}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.09e-12}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.52e-11}, {"name": "2,4-D", "categories": ["water"], "amount": 1.52e-11}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46e-12}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 9.27e-12}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 9.27e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 6.63e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 9.27e-12}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 6.33e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.48e-11}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.48e-11}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 6.47e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.38e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.38e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 5.67e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.51e-13}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.67e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.3e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.3e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.05e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.14e-14}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.49e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.3e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.73e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.73e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.35e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.63e-13}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.46e-13}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.1e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.1e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.22e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6.61e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68e-12}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 7.35e-13}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.15e-12}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 5.17e-12}, {"name": "Acephate", "categories": ["water"], "amount": 5.17e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 5.38e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 7.52e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 9.91e-13}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-14}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.08e-15}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.77e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water"], "amount": 2.5e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air"], "amount": 6.25e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 6.25e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 9.39e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water"], "amount": 5.28e-14}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.07e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.51e-13}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 1.59e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 8.95e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.64e-11}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["water"], "amount": 3.41e-10}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water"], "amount": 1.95e-13}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air"], "amount": 3.57e-13}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 3.57e-13}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.67e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.67e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 2.67e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 5.46e-12}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.09e-10}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2.05e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-12}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.47e-10}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.85e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Allyl chloride", "categories": ["water"], "amount": 5.74e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 5.21e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 3.19e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 1.71e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 3.08e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.97e-10}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air"], "amount": 1.12e-13}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.12e-13}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.46e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water"], "amount": 2.7e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 4.88e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.22e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water"], "amount": 3.04e-09}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 2.06e-12}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "Antimony ion", "categories": ["air"], "amount": 3.79e-08}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3.79e-08}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 4.09e-09}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 8.01e-09}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 8.01e-09}, {"name": "Antimony ion", "categories": ["soil"], "amount": 8.01e-09}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 4.83e-08}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.05e-07}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 4.83e-08}, {"name": "Antimony ion", "categories": ["water"], "amount": 4.83e-08}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05e-08}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05e-08}, {"name": "Arsenic ion", "categories": ["air"], "amount": 7.34e-09}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 7.34e-09}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.1e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 2.03e-10}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 2.03e-10}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 2.03e-10}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 9.06e-09}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.23e-08}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 9.06e-09}, {"name": "Arsenic ion", "categories": ["water"], "amount": 9.06e-09}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.63e-12}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.3e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.44e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Atrazine", "categories": ["water"], "amount": 1.56e-09}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.94e-12}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 1.5e-11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.37e-09}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3e-11}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.38e-10}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.36e-09}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.36e-09}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-10}, {"name": "Barium II", "categories": ["air"], "amount": 3.56e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 3.56e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.71e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 3.64e-10}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 3.64e-10}, {"name": "Barium II", "categories": ["soil"], "amount": 3.64e-10}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 4.12e-10}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 5.89e-10}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 4.12e-10}, {"name": "Barium II", "categories": ["water"], "amount": 4.12e-10}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.65e-13}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 3.11e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 4.09e-12}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 1.38e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.51e-12}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 6.1e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.59e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.15e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.34e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water"], "amount": 5.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.73e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 3.96e-12}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.79e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.79e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 5.91e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.16e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.26e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 2.3e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.83e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.83e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 1.28e-09}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 1.28e-09}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 1.23e-13}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.52e-13}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.26e-14}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.38e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 7.34e-13}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49e-08}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49e-08}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.73e-08}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.73e-08}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 5.41e-11}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 9.51e-11}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 9.51e-11}, {"name": "Beryllium II", "categories": ["soil"], "amount": 9.51e-11}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 7.56e-09}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.27e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 7.56e-09}, {"name": "Beryllium II", "categories": ["water"], "amount": 7.56e-09}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.24e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 6.3e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4.36e-07}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4.36e-07}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.34e-11}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.65e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.54e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.88e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 4.59e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2.62e-07}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2.62e-07}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.61e-10}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 7.79e-12}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 1.73e-13}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 2.01e-10}, {"name": "Bromopropane", "categories": ["air"], "amount": 1.45e-13}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.71e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.65e-10}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.7e-10}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.7e-10}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.41e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.13e-11}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 5.24e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.1e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water"], "amount": 5.85e-14}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 1.9e-12}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.1e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water"], "amount": 3.2e-13}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.77e-10}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 1.16e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.57e-09}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.57e-09}, {"name": "Cadmium II", "categories": ["air"], "amount": 6.67e-09}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 6.67e-09}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.47e-11}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.43e-10}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.43e-10}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.43e-10}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2.06e-09}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.05e-08}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2.06e-09}, {"name": "Cadmium II", "categories": ["water"], "amount": 2.06e-09}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-10}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 5.38e-11}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.74e-10}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.74e-10}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36e-10}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.18e-10}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.62e-11}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.53e-10}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.67e-10}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.67e-10}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.1e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.77e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.44e-11}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.59e-11}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-10}, {"name": "Carboxin", "categories": ["air"], "amount": 1.06e-10}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.33e-11}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 8.02e-11}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.51e-10}, {"name": "Carboxin", "categories": ["water"], "amount": 1.51e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.88e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.4e-13}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.89e-09}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.46e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 8.34e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 8.34e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 8.34e-08}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water"], "amount": 5.42e-10}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-11}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.34e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.08e-10}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.11e-12}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.68e-13}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 3.39e-11}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 3.39e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 1.01e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 2.25e-11}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.85e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 4.92e-12}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.07e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1.3e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.26e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 6.01e-12}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.95e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.91e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 8.48e-09}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.13e-08}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.03e-08}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.03e-08}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.1e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.53e-08}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2.81e-07}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2.81e-07}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 5.04e-10}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 9.52e-11}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 8.39e-12}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-09}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 1.05e-09}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 1.05e-09}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 2.9e-11}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.7e-11}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.7e-11}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.7e-11}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.59e-10}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.15e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.59e-10}, {"name": "Chromium III", "categories": ["water"], "amount": 2.59e-10}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67e-08}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67e-08}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.26e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.26e-08}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.64e-09}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 3.25e-09}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 3.25e-09}, {"name": "Chromium VI", "categories": ["soil"], "amount": 3.25e-09}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.37e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.38e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.37e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.37e-08}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.02e-10}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.29e-12}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 3.43e-12}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.06e-12}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-09}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-09}, {"name": "Cobalt II", "categories": ["air"], "amount": 1.98e-09}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1.98e-09}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1.07e-11}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.97e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.97e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.97e-11}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 8.24e-10}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.12e-09}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 8.24e-10}, {"name": "Cobalt II", "categories": ["water"], "amount": 8.24e-10}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.69e-08}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.69e-08}, {"name": "Copper ion", "categories": ["air"], "amount": 5.33e-08}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 5.33e-08}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.4e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.4e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.4e-10}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.03e-08}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.65e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.03e-08}, {"name": "Copper ion", "categories": ["water"], "amount": 2.03e-08}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air"], "amount": 6.61e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 6.61e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.48e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water"], "amount": 1.1e-12}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.49e-10}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.6e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.91e-14}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.27e-17}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.63e-13}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.58e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 5.68e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.87e-14}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 2.43e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 1.3e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.75e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.12e-10}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.15e-12}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 5.21e-11}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.34e-13}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-11}, {"name": "Decanoic acid", "categories": ["water"], "amount": 4.49e-12}, {"name": "Deltamethrin", "categories": ["air"], "amount": 8.94e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 8.47e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.54e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 8.19e-13}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 4.74e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.32e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5.5e-11}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-11}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.91e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.36e-11}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.36e-11}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 3.96e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.62e-10}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-12}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 4.71e-13}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 3.66e-12}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 3.66e-12}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.28e-10}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.87e-10}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 8.19e-12}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.13e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 2.35e-13}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 6.36e-12}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.39e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.39e-15}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air"], "amount": 1.88e-12}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.88e-12}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.21e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.16e-12}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.53e-15}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.53e-15}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.82e-14}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4e-15}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-09}, {"name": "Difenoconazole", "categories": ["air"], "amount": 2.27e-09}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2.24e-10}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 1.59e-09}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 4.71e-09}, {"name": "Difenoconazole", "categories": ["water"], "amount": 4.71e-09}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.74e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.15e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 4.03e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.8e-08}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.8e-08}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.71e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 9.13e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 6.62e-13}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.11e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.74e-11}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.43e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 9.68e-11}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 7.7e-12}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air"], "amount": 4e-12}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 4e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.1e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 2.44e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 6.48e-13}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 6.91e-11}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 3.72e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 3.72e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1.79e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1.97e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1.97e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1.97e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.28e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.31e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.28e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.28e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 5.94e-13}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-11}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3.32e-11}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 7.82e-12}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 5.06e-11}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.14e-10}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 4.96e-11}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.99e-11}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-09}, {"name": "Diuron", "categories": ["air"], "amount": 1.08e-09}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 8.82e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.7e-10}, {"name": "Diuron", "categories": ["water"], "amount": 1.29e-09}, {"name": "Dodecanol", "categories": ["water"], "amount": 9.08e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.18e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.06e-12}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 4.7e-13}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2.75e-12}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2.03e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 4.15e-13}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.37e-11}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4e-10}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.45e-10}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.43e-10}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 8.35e-10}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 1.69e-09}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1.69e-09}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.88e-07}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.32e-08}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.19e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.59e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.59e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.86e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.86e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 6.47e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.94e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.15e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 8.08e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 9.46e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water"], "amount": 2.36e-14}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-12}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.72e-13}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.91e-12}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.91e-12}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 7.22e-12}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.03e-12}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 2.75e-13}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.75e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 9.26e-13}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 2.77e-13}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air"], "amount": 8.7e-13}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 8.7e-13}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.27e-12}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water"], "amount": 5.04e-13}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.56e-12}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 1.56e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1.06e-12}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.4e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.87e-12}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 4.03e-11}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 3.79e-11}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.28e-09}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 4.39e-12}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.09e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.8200000000000003e-11}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 6.62e-11}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.48e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.36e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.33e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.38e-11}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.56e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.71e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.71e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.89e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.48e-08}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.51e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 4.56e-08}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-09}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.34e-09}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 8.13e-11}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 6.09e-10}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 2.4e-09}, {"name": "Fludioxonil", "categories": ["water"], "amount": 2.4e-09}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.31e-09}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.46e-10}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.07e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.53e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 6.08e-09}, {"name": "Fluorene", "categories": ["air"], "amount": 1.72e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 3.45e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 9.7e-11}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.42e-12}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.07e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.56e-10}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.46e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.62e-12}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.62e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.09e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.48e-12}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.9e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water"], "amount": 1.26e-13}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 2.49e-12}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.17e-12}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air"], "amount": 2.67e-15}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.67e-15}, {"name": "Furfural", "categories": ["air"], "amount": 8.15e-13}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 7.63e-13}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.53e-11}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 7.63e-13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.07e-11}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.69e-12}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 8.77e-13}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 5.97e-12}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 5.97e-12}, {"name": "Glyphosate", "categories": ["water"], "amount": 5.97e-12}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 3.1e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.47e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.47e-10}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air"], "amount": 1.05e-17}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.05e-17}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 8.77e-11}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.6e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water"], "amount": 1.7e-13}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 2.54e-11}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.94e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.39e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.06e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.38e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.8e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 4.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 4.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.11e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 3.89e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 1.56e-14}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.98e-11}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 5.41e-11}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-11}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.85e-11}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.05e-11}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 7.98e-11}, {"name": "Imidacloprid", "categories": ["water"], "amount": 7.98e-11}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-09}, {"name": "Indoxacarb", "categories": ["air"], "amount": 2.9e-09}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 8.8e-11}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 6.91e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 3.55e-11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.08e-11}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air"], "amount": 2.94e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-17}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air"], "amount": 6.76e-13}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 6.76e-13}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.97e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water"], "amount": 4.39e-13}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 4.26e-11}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.87e-10}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.98e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5.81e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 1.13e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 1.13e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 1.13e-06}, {"name": "Lauric acid", "categories": ["air"], "amount": 1.94e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 2.15e-12}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.63e-10}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-10}, {"name": "Lead II", "categories": ["air"], "amount": 3.21e-10}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 3.21e-10}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 2.5e-13}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 4.09e-13}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 4.09e-13}, {"name": "Lead II", "categories": ["soil"], "amount": 4.09e-13}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 6.23e-11}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 6.23e-11}, {"name": "Lead II", "categories": ["water"], "amount": 6.23e-11}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.14e-12}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.37e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 8.13e-12}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.61e-12}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 4.33e-13}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.08e-12}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.08e-12}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-11}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.1e-12}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 3.49e-11}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 3.49e-11}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.15e-11}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 7.31e-13}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 7.68e-14}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.08e-10}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.94e-10}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.19e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.29e-10}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.53e-10}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.53e-10}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.36e-11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 6.97e-12}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 8.91e-13}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.33e-18}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-08}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-08}, {"name": "Mercury II", "categories": ["air"], "amount": 2.52e-08}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 2.52e-08}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.21e-11}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.69e-11}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.69e-11}, {"name": "Mercury II", "categories": ["soil"], "amount": 1.69e-11}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 5.4e-09}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.44e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 5.4e-09}, {"name": "Mercury II", "categories": ["water"], "amount": 5.4e-09}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.75e-12}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 1.29e-11}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.05e-12}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.16e-11}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 1.94e-11}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1.94e-11}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 6.97e-13}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5.6e-11}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 5.04e-13}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.9e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 6.52e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 3.23e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.55e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.55e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.23e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.23e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 8.7e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.86e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.86e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5.64e-11}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 7.49e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water"], "amount": 2.34e-14}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 4.81e-11}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-10}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 2.15e-11}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.19e-10}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Methomyl", "categories": ["water"], "amount": 1.96e-10}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 1.82e-11}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-09}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.34e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 9.64e-11}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.85e-10}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 2.11e-09}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.11e-09}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air"], "amount": 8.79e-13}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.79e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 1.67e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water"], "amount": 8.04e-13}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.31e-12}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 4.14e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.04e-12}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.58e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 7.58e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.03e-14}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.17e-13}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.17e-13}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.02e-11}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.28e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water"], "amount": 7.29e-13}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-10}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.4e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.28e-09}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.28e-09}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.28e-09}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.35e-10}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 8.88e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.63e-10}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-08}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 3.05e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.53e-09}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.61e-08}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 4.42e-08}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 4.42e-08}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.77e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.6e-12}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-10}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 9.93e-11}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 9.93e-11}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 6.92e-12}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.37e-11}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.37e-11}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.37e-11}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 5.87e-11}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.87e-10}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 5.87e-11}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.87e-11}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 7.82e-12}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 7.19e-13}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 8.98e-12}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 7.74e-12}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 8.13e-10}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.15e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.15e-11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 7.93e-12}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.23e-10}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-08}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-08}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1e-08}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.41e-10}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.41e-10}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.41e-10}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6e-09}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.37e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6e-09}, {"name": "Nickel II", "categories": ["water"], "amount": 6e-09}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-11}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.16e-11}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 2.04e-12}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.63e-11}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.63e-11}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.24e-11}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-14}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.35e-11}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 9.69e-12}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 3.72e-13}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5.1e-11}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 7.59e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 7.89e-11}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 3.93e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.99e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.99e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.67e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.16e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.11e-10}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7.51e-14}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.59e-10}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.06e-12}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.58e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.78e-11}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air"], "amount": 1.2e-14}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.2e-14}, {"name": "Pentane", "categories": ["water"], "amount": 8.58e-12}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.92e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 3.01e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.6e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.72e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.19e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air"], "amount": 8.91e-13}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.91e-13}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.16e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water"], "amount": 2.49e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.14e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.22e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.22e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 9.12e-10}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 4.91e-11}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.04e-10}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.17e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.26e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.05e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 4.39e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.97e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.59e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.4e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 3.38e-12}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 6.31e-12}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.92e-11}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.98e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.44e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.83e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1.76e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1.76e-09}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.13e-09}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.72e-10}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.69e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 4.1e-09}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.25e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.89e-11}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 1.75e-13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air"], "amount": 2.52e-13}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.52e-13}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 5.18e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water"], "amount": 5.62e-13}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.26e-11}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air"], "amount": 5.95e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.95e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.99e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water"], "amount": 5.78e-14}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 8.13e-11}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 7.92e-12}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 5.08e-13}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-10}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.94e-11}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.38e-10}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.53e-10}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.53e-10}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.53e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.32e-13}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air"], "amount": 4.83e-13}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.83e-13}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.3e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water"], "amount": 2.9e-13}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 1.05e-15}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.15e-12}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.15e-12}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 3.86e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.94e-12}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 4.88e-11}, {"name": "Pyrene", "categories": ["air"], "amount": 2.25e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.64e-08}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.49e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.09e-13}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.95e-11}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 3.96e-12}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.97e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.39e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.57e-10}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.45e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2.38e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2.38e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.05e-12}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 5.99e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.41e-10}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.38e-11}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.23e-09}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-09}, {"name": "Selenium IV", "categories": ["air"], "amount": 3.66e-09}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 3.66e-09}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 6.67e-11}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.27e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.27e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.27e-10}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 2.01e-09}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.12e-08}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 2.01e-09}, {"name": "Selenium IV", "categories": ["water"], "amount": 2.01e-09}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.56e-12}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 4.31e-11}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.89e-07}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.89e-07}, {"name": "Silver I", "categories": ["air"], "amount": 2e-07}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 8.92e-10}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.66e-09}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.66e-09}, {"name": "Silver I", "categories": ["soil"], "amount": 1.66e-09}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 5.74e-08}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 6.22e-07}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 5.74e-08}, {"name": "Silver I", "categories": ["water"], "amount": 5.74e-08}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-10}, {"name": "Simazine", "categories": ["air"], "amount": 3.63e-10}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.96e-11}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.88e-10}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 5.02e-10}, {"name": "Simazine", "categories": ["water"], "amount": 5.02e-10}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air"], "amount": 2.65e-14}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2.65e-14}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 8.56e-14}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water"], "amount": 1.21e-14}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.34e-10}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air"], "amount": 9.96e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.96e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.5e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water"], "amount": 7.56e-13}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.09e-10}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 5.56e-12}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 5.56e-12}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 5.23e-13}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.81e-12}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 3.81e-12}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.34e-10}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-10}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.6e-11}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.14e-10}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.53e-10}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-09}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 2.01e-09}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.32e-09}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.27e-09}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.27e-09}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.66e-08}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2.35e-08}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.89e-09}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 4.74e-08}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 7.77e-12}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.68e-10}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.8e-11}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.06e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.84e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.84e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.5e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.26e-11}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.18e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.18e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 7.74e-09}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 7.74e-09}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 3.16e-09}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 6.75e-09}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 6.75e-09}, {"name": "Thallium I", "categories": ["soil"], "amount": 6.75e-09}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 8.51e-09}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.44e-08}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 8.51e-09}, {"name": "Thallium I", "categories": ["water"], "amount": 8.51e-09}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.05e-11}, {"name": "Thiabendazole", "categories": ["air"], "amount": 5.14e-11}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.29e-11}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.76e-11}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.76e-11}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 7.16e-12}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.72e-11}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.02e-10}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water"], "amount": 2.26e-11}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-10}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.23e-10}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.96e-10}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.96e-10}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.55e-11}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 6.88e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 9.06e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.31e-10}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.31e-10}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-09}, {"name": "Thiram", "categories": ["air"], "amount": 9.6e-10}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.45e-11}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.16e-10}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.73e-09}, {"name": "Thiram", "categories": ["water"], "amount": 2.73e-09}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.68e-09}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.68e-09}, {"name": "Tin ion", "categories": ["air"], "amount": 1.85e-09}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.85e-09}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 2.77e-12}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 4.66e-12}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 4.66e-12}, {"name": "Tin ion", "categories": ["soil"], "amount": 4.66e-12}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 5.7e-10}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 5.78e-09}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 5.7e-10}, {"name": "Tin ion", "categories": ["water"], "amount": 5.7e-10}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air"], "amount": 3.47e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.47e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 8.99e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water"], "amount": 2.9e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.27e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.27e-13}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 3.49e-11}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.94e-12}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.48e-10}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.45e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.51e-11}, {"name": "Triallate", "categories": ["air"], "amount": 1.05e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.43e-11}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.13e-10}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.66e-09}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 9.31e-09}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.01e-09}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.42e-08}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.38e-12}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 6.82e-11}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.14e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.71e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.67e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.35e-11}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 3.54e-09}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.32e-15}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47e-07}, {"name": "Triflumuron", "categories": ["air"], "amount": 2.5e-07}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 5.36e-08}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 2.87e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 4.48e-07}, {"name": "Triflumuron", "categories": ["water"], "amount": 4.48e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.45e-11}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.03e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.84e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.84e-10}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.16e-11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.59e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water"], "amount": 7.98e-14}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 5.95e-13}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29e-08}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-08}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.62e-08}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.62e-08}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 5.57e-10}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.05e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.05e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.05e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 2.65e-08}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 4.77e-08}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 2.65e-08}, {"name": "Vanadium V", "categories": ["water"], "amount": 2.65e-08}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.91e-12}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air"], "amount": 1.73e-14}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.73e-14}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.78e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water"], "amount": 3.07e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74e-08}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-08}, {"name": "Zinc II", "categories": ["air"], "amount": 1.22e-08}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1.22e-08}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.53e-10}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.5e-10}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.5e-10}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.5e-10}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 3.14e-08}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.59e-08}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 3.14e-08}, {"name": "Zinc II", "categories": ["water"], "amount": 3.14e-08}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.9e-11}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.08e-10}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.11e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 9.34e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.87e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.87e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.32e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.04e-12}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.22e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.22e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 4.23e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 4.35e-14}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air"], "amount": 4.68e-12}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 4.68e-12}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 1.26e-11}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 2.8e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 6.06e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "ecotoxicity: terrestrial no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.14e-12}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.01e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.07e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water"], "amount": 7.92e-12}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.74e-13}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.35e-14}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 6.16e-15}, {"name": "2,4-D", "categories": ["water"], "amount": 6.16e-15}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.1e-18}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 5.32e-20}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 3.8e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.1e-18}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 5.42e-13}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 5.42e-13}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 2.55e-12}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.75e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.1e-12}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.15e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.21e-14}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.14e-13}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.9e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 8.21e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.96e-18}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.1e-15}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.69e-12}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 7.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.84e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.27e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 2.66e-14}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.6e-15}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 9.01e-16}, {"name": "Acephate", "categories": ["water"], "amount": 9.01e-16}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.44e-13}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 3.86e-12}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.04e-11}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.72e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.86e-16}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water"], "amount": 7.63e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 5.07e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water"], "amount": 2.69e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 6.94e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 3.48e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 4.22e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 1.78e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-09}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.45e-16}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water"], "amount": 4.85e-14}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.21e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.21e-10}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 9.88e-12}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.57e-11}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.84e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 8.32e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.32e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.32e-09}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 1.66e-09}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.97e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 7.19e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.3e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.35e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 4.14e-08}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 6.71e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 9.75e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.62e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 4.67e-13}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water"], "amount": 7.09e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 3.97e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.28e-10}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water"], "amount": 8.11e-10}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.09e-06}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.09e-06}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.9100000000000004e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.9100000000000004e-06}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.86e-26}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 3.65e-26}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 3.65e-26}, {"name": "Antimony ion", "categories": ["soil"], "amount": 3.65e-26}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 1.92e-25}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 6.6e-26}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1.92e-25}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.92e-25}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.52e-06}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52e-06}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.05e-06}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.05e-06}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.77e-28}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.06e-27}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.06e-27}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.06e-27}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.13e-26}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1.63e-26}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.13e-26}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.13e-26}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.98e-13}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.59e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 1.64e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water"], "amount": 1.15e-10}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 6.3e-13}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 7.63e-16}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.98e-09}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 5.77e-16}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.64e-15}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.56e-15}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.95e-16}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.95e-16}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.73e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.73e-08}, {"name": "Barium II", "categories": ["air"], "amount": 2.58e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.58e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 6.35e-28}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.36e-27}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.36e-27}, {"name": "Barium II", "categories": ["soil"], "amount": 1.36e-27}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.52e-27}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.42e-28}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.52e-27}, {"name": "Barium II", "categories": ["water"], "amount": 1.52e-27}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.96e-18}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 5.88e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.19e-15}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 7.42e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.28e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.08e-13}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.08e-13}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 3.94e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 2.13e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 6.63e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 4.87e-13}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water"], "amount": 9.79e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.05e-11}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.47e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.85e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 5.52e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 8.95e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.95e-10}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 8.7e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 5.07e-12}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 5.07e-12}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 9.12e-14}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 2.15e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.06e-14}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 5.44e-13}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.42e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.42e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 3.75e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 3.75e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 6.2e-28}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.09e-27}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.09e-27}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.09e-27}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 7.55e-26}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.48e-26}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 7.55e-26}, {"name": "Beryllium II", "categories": ["water"], "amount": 7.55e-26}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.14e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 3.51e-09}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 3.51e-09}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.12e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.49e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.53e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 2.59e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 9.13e-09}, {"name": "Bifenthrin", "categories": ["water"], "amount": 9.13e-09}, {"name": "Bisphenol A", "categories": ["water"], "amount": 7.3e-14}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.14e-16}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 8.57e-18}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.09e-13}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.79e-13}, {"name": "Bromopropane", "categories": ["water"], "amount": 8.91e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.31e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 3.77e-14}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 7.59e-15}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 7.59e-15}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 9.83e-12}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 1.71e-14}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water"], "amount": 2.12e-13}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 3.66e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.01e-13}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water"], "amount": 4.2e-12}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.31e-08}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.43e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.17e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 2.19e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 2.19e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 4.18e-28}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.03e-28}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.03e-28}, {"name": "Cadmium II", "categories": ["soil"], "amount": 8.03e-28}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 9.95e-27}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.86e-26}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9.95e-27}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.95e-27}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.7e-12}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.58e-11}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.58e-11}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.48e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.57e-12}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 9.95e-13}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.75e-13}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.75e-13}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 9.72e-12}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 8.54e-11}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.87e-08}, {"name": "Carboxin", "categories": ["air"], "amount": 3.36e-08}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 7.59e-12}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 5.26e-12}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 2.76e-12}, {"name": "Carboxin", "categories": ["water"], "amount": 2.76e-12}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.12e-17}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.81e-14}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 2.3e-09}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 2.27e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 1.4e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 1.4e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 1.4e-09}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.98e-18}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water"], "amount": 3.72e-17}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 3.76e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 7.06e-12}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 1e-16}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 7.3e-08}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.3e-08}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 4.2e-17}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 7.75e-15}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.5e-12}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 5.27e-12}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.76e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 6.35e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 6.35e-10}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 4.71e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 7.83e-11}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.49e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.06e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.11e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.01e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1.01e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.88e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 8.96e-09}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 3.18e-08}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 3.18e-08}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.86e-09}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 8.15e-17}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.91e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.91e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.78e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4.78e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 2.27e-28}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.49e-28}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.49e-28}, {"name": "Chromium III", "categories": ["soil"], "amount": 4.49e-28}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.76e-27}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 4.05e-27}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.76e-27}, {"name": "Chromium III", "categories": ["water"], "amount": 1.76e-27}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.62e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.62e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 8.97e-27}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.78e-26}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.78e-26}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.78e-26}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 6.56e-26}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 2.77e-26}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 6.56e-26}, {"name": "Chromium VI", "categories": ["water"], "amount": 6.56e-26}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.51e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 3.75e-13}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.75e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.75e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 4.67e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4.67e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6.92e-29}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.28e-28}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.28e-28}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.28e-28}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.61e-27}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.14e-27}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.61e-27}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.61e-27}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.38e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.38e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.57e-27}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 2.9e-27}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 2.9e-27}, {"name": "Copper ion", "categories": ["soil"], "amount": 2.9e-27}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.15e-25}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.68e-25}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.15e-25}, {"name": "Copper ion", "categories": ["water"], "amount": 1.15e-25}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.57e-13}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water"], "amount": 5.31e-13}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 3.89e-12}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 2.31e-15}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water"], "amount": 7.36e-15}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.25e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.73e-16}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.98e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 1.55e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.7e-19}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.05e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 3.23e-08}, {"name": "Cypermethrin", "categories": ["water"], "amount": 3.23e-08}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.9e-12}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.33e-16}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.78e-10}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 5.78e-14}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-12}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1.3e-13}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1.68e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.57e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.22e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1.04e-22}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 8.6e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 3.11e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 3.27e-11}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.43e-14}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 7.38e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.64e-16}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.64e-16}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.21e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3e-09}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 7.92e-15}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.91e-17}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.91e-17}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 3.71e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6.94e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1.05e-11}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 6.77e-17}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 3.98e-11}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.73e-14}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.73e-14}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.22e-13}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water"], "amount": 8.74e-13}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.1e-11}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.48e-17}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.7e-15}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.33e-07}, {"name": "Difenoconazole", "categories": ["air"], "amount": 1.89e-07}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 8.15e-13}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 7.46e-13}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 5.73e-13}, {"name": "Difenoconazole", "categories": ["water"], "amount": 5.73e-13}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.57e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.41e-08}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.19e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 7.89e-09}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.89e-09}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 8.45e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 7.8e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 3.44e-12}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 9.29e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.68e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 8.57e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.64e-12}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 1.77e-12}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 3.84e-12}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 7.98e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3e-11}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.16e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.16e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 4.48e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 4.48e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1.62e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1.74e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1.74e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1.74e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 6.04e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.19e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 6.04e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 6.04e-07}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.47e-14}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 4.83e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.94e-17}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.52e-18}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 7.52e-18}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.3e-12}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.26e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.33e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 5.23e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4.31e-11}, {"name": "Diuron", "categories": ["water"], "amount": 2.9100000000000002e-11}, {"name": "Dodecanol", "categories": ["water"], "amount": 8.69e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.45e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 7.83e-16}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.49e-19}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 5.34e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.17e-21}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.82e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.65e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.69e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 1.23e-09}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.71e-10}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.71e-10}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.29e-07}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air"], "amount": 5.06e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 5.06e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.27e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.06e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.06e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.1e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.41e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.49e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.05e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.14e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water"], "amount": 2.99e-13}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 6.4e-17}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.88e-22}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.88e-22}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.45e-11}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 1.64e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1.73e-08}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.17e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.63e-12}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air"], "amount": 1.92e-09}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.92e-09}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 3.52e-13}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water"], "amount": 7.3e-13}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 1.23e-15}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.57e-15}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 5.19e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.79e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.71e-16}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 7.57e-18}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 2.02e-12}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 7.27e-09}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 5.54e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.51e-12}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.09e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.28e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.65e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.31e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.77e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.98e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 3.06e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.65e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1.41e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.3e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.03e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.03e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.03e-08}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 9.95e-08}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.21e-11}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 1.31e-11}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.65e-11}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.65e-11}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.08e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 4.43e-09}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.61e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.13e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 9.13e-10}, {"name": "Fluorene", "categories": ["air"], "amount": 2.07e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.37e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 2.35e-17}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.19e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.94e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.62e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 5.77e-13}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.01e-11}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 5.22e-17}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water"], "amount": 1.04e-14}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.58e-20}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 7.07e-14}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.07e-12}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air"], "amount": 2.79e-14}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.79e-14}, {"name": "Furfural", "categories": ["air"], "amount": 1.81e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.53e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.44e-21}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.99e-16}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.73e-22}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.26e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 9.11e-14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 9.11e-14}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.36e-16}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-16}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 2.92e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.98e-16}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water"], "amount": 2.21e-15}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.23e-14}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.86e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.18e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.55e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 9.06e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.42e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.42e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.63e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 4.41e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.03e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.03e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 8.95e-15}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.49e-11}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.79e-15}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4.92e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 6.83e-17}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 7.03e-21}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.26e-21}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.26e-21}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.79e-08}, {"name": "Indoxacarb", "categories": ["air"], "amount": 6.86e-08}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.13e-10}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 1.14e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.44e-12}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 4.29e-16}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.29e-16}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1e-09}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1e-09}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.95e-12}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 2.28e-12}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.3e-10}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.56e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.28e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.43e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 2.13e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 2.13e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2.13e-07}, {"name": "Lauric acid", "categories": ["air"], "amount": 9.87e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.76e-14}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-07}, {"name": "Lead II", "categories": ["air"], "amount": 4.92e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.92e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.4e-30}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.31e-30}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.31e-30}, {"name": "Lead II", "categories": ["soil"], "amount": 2.31e-30}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2.95e-28}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.45e-28}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2.95e-28}, {"name": "Lead II", "categories": ["water"], "amount": 2.95e-28}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 4.48e-18}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5.81e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.33e-18}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.14e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 7.51e-16}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.25e-16}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.25e-16}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 6.71e-15}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.01e-14}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.01e-14}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.35e-21}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.48e-16}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.17e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 9.63e-15}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.09e-16}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.08e-16}, {"name": "Mancozeb", "categories": ["water"], "amount": 1.08e-16}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 9.9e-15}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.72e-13}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 8.33e-15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 2.1e-24}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 1.57e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.57e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 6.3e-29}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 8.84e-29}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 8.84e-29}, {"name": "Mercury II", "categories": ["soil"], "amount": 8.84e-29}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2.38e-26}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 6.36e-26}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2.38e-26}, {"name": "Mercury II", "categories": ["water"], "amount": 2.38e-26}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-09}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 5.19e-09}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.6e-11}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 9.35e-12}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 3.96e-12}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 5.19e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 3.14e-15}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 2.18e-15}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.3e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.08e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.5e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.5e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 5.61e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.14e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 4.74e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 4.74e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.19e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.61e-11}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 3.48e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water"], "amount": 4.81e-13}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.36e-10}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 4.81e-12}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.35e-12}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water"], "amount": 7.73e-13}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 6.18e-11}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.46e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6.81e-13}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.56e-13}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 5.89e-13}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 5.89e-13}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.6e-11}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.37e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.4e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.19e-11}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.27e-13}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.36e-10}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.36e-10}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.45e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.61e-10}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 8.27e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.1e-10}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.79e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.29e-10}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.66e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 9.76e-12}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.02e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 7.39e-16}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.2e-16}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2e-16}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.41e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.41e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.66e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.66e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 3.39e-29}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 6.71e-29}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 6.71e-29}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 6.71e-29}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.53e-28}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.14e-28}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.53e-28}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.53e-28}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1.6e-13}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 6.87e-14}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 2.62e-11}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 9.13e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 6.66e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.1e-11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.88e-12}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 6.91e-09}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.13e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 2.13e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 8.13e-28}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.54e-27}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.54e-27}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.54e-27}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.32e-26}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.16e-26}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.32e-26}, {"name": "Nickel II", "categories": ["water"], "amount": 3.32e-26}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-09}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 6.05e-09}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 8.3e-19}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 3.78e-19}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.25e-19}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.25e-19}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.39e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.69e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 5.35e-14}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 2.47e-10}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 6.63e-16}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 9.69e-15}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.94e-10}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1.52e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 1.1e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.84e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.34e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.54e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.81e-11}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.35e-19}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.15e-09}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 2.05e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 7.34e-16}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 7.89e-10}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 7.89e-10}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air"], "amount": 2.36e-13}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-13}, {"name": "Pentane", "categories": ["water"], "amount": 2.23e-13}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.32e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.57e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.22e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 6.3e-14}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water"], "amount": 1.12e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.48e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.48e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.82e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.82e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.32e-12}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.55e-12}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.38e-10}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.1e-09}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.74e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.13e-12}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 3.24e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.87e-12}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.22e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 4.56e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 8.37e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-14}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.04e-13}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.73e-15}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 8.88e-10}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 4.31e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 5.75e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 8.81e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 8.81e-10}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 7.27e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 6.22e-10}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 7.72e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.92e-08}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 4.29e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 4.49e-16}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 4.62e-17}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air"], "amount": 7.09e-12}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 7.09e-12}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 2.39e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water"], "amount": 1e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.86e-11}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.42e-14}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water"], "amount": 3.44e-13}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.32e-14}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.61e-11}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.31e-11}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 6.11e-12}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 2.7e-12}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.55e-12}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.19e-15}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.33e-13}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air"], "amount": 5.86e-10}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 5.86e-10}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.76e-13}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water"], "amount": 3.65e-13}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 3.72e-14}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.36e-11}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.36e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.67e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.98e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Pyrene", "categories": ["air"], "amount": 1.38e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 2.64e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 4.89e-15}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1.36e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 7.6e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 3.04e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.06e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.06e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.09e-15}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 4.66e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3.04e-10}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.01e-14}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.08e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 7.08e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 3.82e-28}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 7.3e-28}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 7.3e-28}, {"name": "Selenium IV", "categories": ["soil"], "amount": 7.3e-28}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1e-26}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 9.44e-27}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1e-26}, {"name": "Selenium IV", "categories": ["water"], "amount": 1e-26}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.77e-13}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.59e-13}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00011}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011}, {"name": "Silver I", "categories": ["air"], "amount": 7.6e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7.6e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 5.28e-27}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 9.84e-27}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 9.84e-27}, {"name": "Silver I", "categories": ["soil"], "amount": 9.84e-27}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 2.91e-25}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 5.95e-25}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 2.91e-25}, {"name": "Silver I", "categories": ["water"], "amount": 2.91e-25}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.07e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.91e-11}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.48e-11}, {"name": "Simazine", "categories": ["water"], "amount": 3.48e-11}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.76e-10}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.76e-10}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.5e-32}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water"], "amount": 3.19e-32}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 8.8e-10}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 4.77e-14}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water"], "amount": 1.58e-13}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 9.02e-14}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.43e-08}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.7e-08}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.7e-08}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 7.38e-15}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.96e-21}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.96e-21}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.68e-11}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.03e-12}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.01e-12}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water"], "amount": 9.55e-13}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 8.65e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 8.7e-11}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.36e-11}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.43e-11}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.43e-11}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-06}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.54e-06}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 9.93e-11}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 8.97e-11}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 6.71e-14}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 3.26e-09}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 5.45e-10}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.57e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-12}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.59e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.59e-07}, {"name": "Thallium I", "categories": ["air"], "amount": 6.63e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 6.63e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.01e-26}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.17e-26}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.17e-26}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.17e-26}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.55e-26}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 7.31e-27}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.55e-26}, {"name": "Thallium I", "categories": ["water"], "amount": 2.55e-26}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.24e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 4.04e-14}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.18e-14}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.18e-14}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 7.08e-15}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 5.59e-10}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.31e-15}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water"], "amount": 2.43e-13}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 1.11e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.34e-09}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.34e-09}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.16e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 8.34e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.68e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.22e-11}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.22e-11}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air"], "amount": 6.43e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 3.45e-12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.84e-12}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.09e-11}, {"name": "Thiram", "categories": ["water"], "amount": 2.09e-11}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.14e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.14e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 6.33e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 6.33e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1.56e-29}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 2.77e-27}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 5.21e-27}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2.77e-27}, {"name": "Tin ion", "categories": ["water"], "amount": 2.77e-27}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.06e-13}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water"], "amount": 3.43e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.83e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.83e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.32e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.82e-12}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 9.93e-09}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2.06e-10}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.77e-14}, {"name": "Triallate", "categories": ["air"], "amount": 5.36e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.14e-10}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.07e-10}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 8.53e-13}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.73e-06}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.55e-14}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.1e-14}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.64e-14}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.82e-13}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.03e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.02e-11}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.09e-17}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 2.05e-16}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.67e-05}, {"name": "Triflumuron", "categories": ["air"], "amount": 5.52e-05}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 9.58e-07}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 6.68e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.3e-07}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.29e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.5e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.63e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.63e-10}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.01e-15}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.13e-13}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 7.82e-18}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water"], "amount": 1.47e-16}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 2.26e-15}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.13e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.13e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 3.26e-27}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 6.14e-27}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 6.14e-27}, {"name": "Vanadium V", "categories": ["soil"], "amount": 6.14e-27}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.35e-25}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.88e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.35e-25}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.35e-25}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.67e-11}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 6.28e-14}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water"], "amount": 2.09e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.23e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.23e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 1.55e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1.55e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.38e-27}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.45e-27}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.45e-27}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.45e-27}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.47e-25}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.64e-26}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.47e-25}, {"name": "Zinc II", "categories": ["water"], "amount": 1.47e-25}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 8.48e-10}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 9.19e-14}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.04e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 2.13e-13}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water"], "amount": 7.07e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.14e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 3.88e-13}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air"], "amount": 6.1e-09}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 6.1e-09}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 4.62e-12}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 9.58e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2.13e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "eutrophication: freshwater no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "eutrophication: marine no LT"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "land use no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "photochemical oxidant formation: terrestrial ecosystems no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.71e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.71e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.92e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.15e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.15e-08}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.79e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.79e-09}, {"name": "Acetone", "categories": ["air"], "amount": 4.52e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.52e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.07e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.07e-08}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.62e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.43e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.43e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.54e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air"], "amount": 3.92e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.96e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.96e-08}, {"name": "Cumene", "categories": ["air"], "amount": 2.41e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.11e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.47e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -7.54e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -7.54e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56e-08}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.47e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Formic acid", "categories": ["air"], "amount": 2.26e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Heptane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Hexane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-09}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 8.6e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.6e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 7.54e-10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Methanol", "categories": ["air"], "amount": 9.8e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.97e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.29e-07}, {"name": "Pentane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Phenol", "categories": ["air"], "amount": -3.77e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.77e-09}, {"name": "Propanal", "categories": ["air"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanol", "categories": ["air"], "amount": 3.62e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propionic acid", "categories": ["air"], "amount": 9.8e-09}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Styrene", "categories": ["air"], "amount": 3.77e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77e-09}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.54e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Toluene", "categories": ["air"], "amount": 3.32e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48e-08}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "water use: aquatic ecosystems no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "ecosystem quality no LT", "water use: terrestrial ecosystems no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1.35e-08}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "human health no LT", "climate change: human health no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 9.28e-07}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 9.28e-07}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 9.28e-07}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 9.28e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 1.86e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.86e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000277}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000277}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.000277}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.000277}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.00144}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.00144}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000179}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.00611}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.00611}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.00087}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.00087}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000155}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 9.28e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00892}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00892}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.00892}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.00892}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00218}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00218}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.00218}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.00218}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 8.91e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 8.91e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000589}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000589}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.000589}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.000589}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0079}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0079}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.0079}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.0079}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.0115}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.00343}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.28e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.28e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.78e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.78e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00192}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00192}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00192}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00192}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00664}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00664}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.00664}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.00664}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.00195}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.00195}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.0143}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.02e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.02e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0107}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0107}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000166}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000758}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 3.34e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 3.16e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.39e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.39e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 3.16e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.00187}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.00187}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.00682}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.00497}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.00497}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.0129}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0166}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.0088}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0242}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "human health no LT", "human toxicity: carcinogenic no LT"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 2.16e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-06}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 5.75e-06}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 2.16e-07}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Acephate", "categories": ["water"], "amount": 2.69e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 0.000165}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.23e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 7.17e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.83e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 9.87e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air"], "amount": 1.07e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.07e-07}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.23e-10}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water"], "amount": 8.03e-08}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00191}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00191}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.00283}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.00283}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.000104}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 6.34e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 6.34e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 6.34e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.00114}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 9.65e-05}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.00114}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.00114}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-05}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 9.48e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.44e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 5.11e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 5.11e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 5.11e-06}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.54e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.54e-07}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 3.56e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.24e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.17e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.24e-07}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 4.82e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.43e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.19e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.000312}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000312}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00381}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.63e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.63e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.000879}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.000879}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.49e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.06e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.06e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.06e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.01e-07}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.51e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.01e-07}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.01e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 4.42e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 4.42e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000209}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000209}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00077}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.00077}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.000366}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 3.79e-06}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 3.79e-06}, {"name": "Cadmium II", "categories": ["soil"], "amount": 3.79e-06}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 4.6e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.41e-06}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 4.6e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 4.6e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 7.18e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.27e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.09e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.09e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 9.73e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 4.29e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.23e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.86e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.65e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 7.03e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.2e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 3.22e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 3.22e-07}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0854}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0854}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.0661}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.0661}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.0146}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.019}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.019}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.019}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.0247}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.00219}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0247}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0247}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0008}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.64e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 9.01e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.11e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.63e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 307}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 307}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 30.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 243}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 751}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.33e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 2.24e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 2.24e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.68e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.68e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 8.1e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 8.1e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.16e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 7.42e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 7.42e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 2.92e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.45e-05}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 4.32e-06}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000172}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.11e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 4.14e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.08e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4.55e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.12e-09}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.000315}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.000315}, {"name": "Furfural", "categories": ["air"], "amount": 9.63e-07}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air"], "amount": 1.6e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.6e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 3.44e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water"], "amount": 8.81e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.4e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 5.71e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 5.71e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.77e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.84e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 7.54e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 7.54e-06}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 4.26e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.26e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26e-05}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26e-05}, {"name": "Lead II", "categories": ["air"], "amount": 6.17e-05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 6.17e-05}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.15e-06}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.81e-07}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.81e-07}, {"name": "Lead II", "categories": ["soil"], "amount": 2.81e-07}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 4.78e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.06e-06}, {"name": "Lead II", "categories": ["water"], "amount": 1.06e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 4.15e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.37e-07}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000239}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000239}, {"name": "Mercury II", "categories": ["air"], "amount": 0.000231}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.000231}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 9.75e-05}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 4e-06}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 4e-06}, {"name": "Mercury II", "categories": ["soil"], "amount": 4e-06}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.00046}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.000191}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.00046}, {"name": "Mercury II", "categories": ["water"], "amount": 0.00046}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 4.09e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 4.09e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.93e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.29e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000848}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000848}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000448}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000782}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.25e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.87e-07}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.87e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 5.69e-08}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.82e-07}, {"name": "Naphthalene", "categories": ["air"], "amount": 7.98e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00167}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00167}, {"name": "Nickel II", "categories": ["air"], "amount": 0.00124}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.00124}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.000158}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 4.08e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 4.08e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 4.08e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 7.58e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.16e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 7.58e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 7.58e-05}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.82e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.000112}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.000112}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 2.27e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.97e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.92e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.54e-05}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.12e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.21e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.61e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.017}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.17e-05}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.94e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.95e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.21e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.21e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3.16e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.24e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.33e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.73e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.77e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air"], "amount": 4.44e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 4.44e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.13e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water"], "amount": 7.51e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.08e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.35e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1.26e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.26e-05}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air"], "amount": 6.77e-08}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.77e-08}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 8.86e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water"], "amount": 7.62e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.64e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 7.99e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.04e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.04e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.2e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.12e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "human health no LT", "human toxicity: non-carcinogenic no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 3.35e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0044}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.28e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 2e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.22e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.09e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.66e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.66e-07}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 7.34e-05}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.9e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.84e-06}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.42e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water"], "amount": 9.33e-07}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.00088}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.00088}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 4.45e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.16e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.000184}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0321}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0321}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0242}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0242}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.00149}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.00111}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.00111}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.00111}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0199}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00168}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0199}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0199}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 1.39e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air"], "amount": 0.000192}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.79e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.000103}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.000103}, {"name": "Barium II", "categories": ["soil"], "amount": 0.000103}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.65e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water"], "amount": 4.2e-05}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.08e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3.06e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.86e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 2.96e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.15e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.07e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.44e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000306}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00627}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00627}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 5.86e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 5.22e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 5.22e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 5.22e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.02e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.4e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.02e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.02e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.27e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.76e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.66e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.48e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.64e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.63e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000449}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000449}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.52e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.52e-06}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0114}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0114}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00816}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.00816}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.0228}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.000239}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.000239}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.000239}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00029}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 8.89e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00029}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00029}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.64e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.89e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.89e-06}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.53e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.96e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 2.25e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.36e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.92e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.86e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.48e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.28e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.28e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air"], "amount": 5.43e-08}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.79e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 6.93e-10}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.99e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.0013}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.0013}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 3.24e-06}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.31e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.16e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.31e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.31e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air"], "amount": 7.07e-06}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 7.07e-06}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 4.24e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.63e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 6.52e-07}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.75e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.92e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.92e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 6.38e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.98e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000197}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2.18e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.18e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.85e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 6.5e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.88e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.88e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.32e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.32e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.72e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1.36e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1.36e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.000126}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.54e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.33e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 7.09e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.02e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air"], "amount": 8.09e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 8.09e-06}, {"name": "Furfural", "categories": ["air"], "amount": 3.63e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00125}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.57e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 9.28e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 9.28e-06}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00679}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00679}, {"name": "Lead II", "categories": ["air"], "amount": 0.00508}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00508}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.000239}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.33e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.33e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 2.33e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 8.71e-05}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.94e-05}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 8.71e-05}, {"name": "Lead II", "categories": ["water"], "amount": 8.71e-05}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.000113}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.02e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00661}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00661}, {"name": "Mercury II", "categories": ["air"], "amount": 0.00565}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.00565}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.00267}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.000111}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.000111}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.000111}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0128}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.00531}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0128}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0128}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000349}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 3.65e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 3.65e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 7.64e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.61e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8.41e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8.41e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.12e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.12e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000668}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000668}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000353}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000618}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 7.59e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 7.59e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.42e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.0006}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.0006}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.000301}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.2e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.95e-05}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 4.86e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.56e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.51e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.35e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.63e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.63e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.66e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 5.4e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 5.4e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 5.4e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1e-06}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.53e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 1e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.74e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 3.24e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.11e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.92e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.39e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 9.85e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.89e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000137}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 7.23e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.13e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.72e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 5.29e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 9.76e-08}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 5.15e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.78e-08}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 6.25e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 3.37e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.33e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.21e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air"], "amount": 0.0111}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0111}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0104}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.000172}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.000172}, {"name": "Silver I", "categories": ["soil"], "amount": 0.000172}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 4.58e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water"], "amount": 0.000157}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.05e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water"], "amount": 4.81e-09}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.43e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 2.71e-06}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air"], "amount": 0.00166}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.00166}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.000565}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 8.64e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water"], "amount": 0.00136}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.2e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.63e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.01e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.18e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.12e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.92e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.92e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.69e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air"], "amount": 0.00016}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 0.00016}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.5e-05}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 8.57e-06}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.000138}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4.15e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.58e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0086}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 7.71e-05}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00188}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.88e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.36e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.41e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.16e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "human health no LT", "ionising radiation no LT"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 3.72e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 2.67e-13}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 4.1e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 2.93e-11}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 4.17e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 7.57e-12}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 4.02e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water"], "amount": 7.34e-08}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 4.95e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water"], "amount": 8.5e-08}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 2.32e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water"], "amount": 5.18e-11}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 2.08e-11}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 2.01e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.24e-08}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.44e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 3.5e-13}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water"], "amount": 2.44e-09}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 2.55e-10}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 4.79e-12}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 7.21e-14}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 7.73e-10}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 1.62e-10}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.7e-14}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 7.73e-10}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.23e-11}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 9.27e-12}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 2.01e-12}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 2.55e-10}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 3.87e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water"], "amount": 2.08e-10}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 6.72e-13}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 6.72e-13}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water"], "amount": 2.63e-10}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 7.27e-14}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "human health no LT", "ozone depletion no LT"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.84e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.84e-06}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 5.84e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 5.84e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 9.45e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 9.45e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000353}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000353}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 7.12e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 7.12e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000143}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000143}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.000143}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.000143}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.56e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.56e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 3.56e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 3.56e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 5.84e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 5.84e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.17e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.17e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.17e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.24e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 3.24e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 3.24e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 3.86e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 3.86e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00039}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00039}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00466}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00466}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00466}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00466}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00747}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00747}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.00747}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.00747}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.39e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.39e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.000312}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.000312}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.17e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.17e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000475}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000475}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.000531}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.000531}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "human health no LT", "particulate matter formation no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.000151}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.03e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.000107}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 6.92e-05}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000182}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000145}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "human health no LT", "photochemical oxidant formation: human health no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.72e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.82e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.82e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air"], "amount": 1.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.98e-08}, {"name": "Acrolein", "categories": ["air"], "amount": 1.78e-07}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.78e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -6.27e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -6.27e-08}, {"name": "Benzene", "categories": ["air"], "amount": 3.3e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.52e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 2.94e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air"], "amount": 1.72e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cumene", "categories": ["air"], "amount": 1.06e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 9.24e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.52e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -3.3e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -3.3e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 6.27e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 6.27e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.22e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.22e-07}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.52e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.48e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.48e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.42e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.42e-08}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.3e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Methanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.06e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.63e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.63e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 6.73e-07}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.39e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 9.1e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Phenol", "categories": ["air"], "amount": -1.65e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -1.65e-08}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Styrene", "categories": ["air"], "amount": 1.65e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.3e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 9.57e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.57e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "human health no LT", "water use: human health no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 2.22e-06}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "natural resources no LT", "energy resources: non-renewable, fossil no LT"], "exchanges": [{"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "natural resources no LT", "material resources: metals/minerals no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.132}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0303}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00527}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 17.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.74}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0267}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0705}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0025}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00241}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0113}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00356}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 73.4}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0443}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000654}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 22.3}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.07}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00212}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00133}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 3.07}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.099}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0202}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00874}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 278}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.83}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.918}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "total: ecosystem quality no LT", "ecosystem quality no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.680299999999999e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 6.158999999999999e-10}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.48373e-12}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.6652e-11}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83562e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.52564e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.3411235e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.83520616e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.83520616e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7236e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.083400011e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.492700000532001e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.492700000532001e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7236e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 5.1363e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.083400011e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.492700000532001e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.522999999999999e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.6019e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.995342e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.995342e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.80725e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.7113922e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.7113922e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.5517e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.6551e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.01482e-11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36004267e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36004267e-08}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.2917e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.5654e-12}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 2.9949e-09}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 2.1337e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.9679973e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.9679973e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.350059938e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.55641e-11}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1.16136e-10}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.311e-11}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.311e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.22876e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.8545e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.320779999999999e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.87616e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.001556000000001e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.24170901e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.24170901e-10}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.1503717e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.1503717e-08}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 8.5333e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04851e-10}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05858e-11}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 4.5908e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.77038805e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.183263e-10}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air"], "amount": 4.5204406e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.5204406e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.4881e-13}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.8318e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.1213e-12}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.801e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 5.8726e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 3.8295e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.7464e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["water"], "amount": 5.3361e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37024635e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.194350000000001e-11}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.37757e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.37757e-10}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.232e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.232e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 3.6996e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.4716e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.783900000000001e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9.863e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.630105e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.630105e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.8867e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 1.347e-09}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 4.0935e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15771e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.647e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.428e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.273e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.093999999999999e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.925140000000001e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.5279e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.3014e-09}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.82132e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air"], "amount": 9.982e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 9.982e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.50817e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.4279e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.022e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.26214e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.49851e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.7676e-10}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.158199999999999e-06}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.158199999999999e-06}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.979300000000001e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.979300000000001e-06}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 3.579e-08}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 7.201000000000001e-08}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 7.201000000000001e-08}, {"name": "Antimony ion", "categories": ["soil"], "amount": 7.201000000000001e-08}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.843e-07}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.05e-07}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.843e-07}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.843e-07}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53188e-06}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53188e-06}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.0588e-06}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.0588e-06}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 9.82e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.843e-09}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.843e-09}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.843e-09}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 5.226000000000001e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.23e-08}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 5.226000000000001e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 5.226000000000001e-08}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.17828e-10}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1346e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.0689e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.0208e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.26675e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.26675e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.26675e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.1857e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.330007629999999e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.6535e-07}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.39150577e-10}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.698e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.42000164e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.913800156e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.10360000695e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.10360000695e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7987e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7987e-08}, {"name": "Barium II", "categories": ["air"], "amount": 2.6925e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.6925e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9.87e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 2.114e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 2.114e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 2.114e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.352e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 5.89e-10}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.352e-09}, {"name": "Barium II", "categories": ["water"], "amount": 2.352e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.606500196e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 2.489e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14409719e-09}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 1.087e-10}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2491e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.9148e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.772679999999999e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.772679999999999e-10}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1.148e-08}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.12803e-06}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.2778e-10}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.8389e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.178899999999999e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.053e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47005026e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47005026e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.875178e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.05076e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.6023e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.6023e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.8812e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 3.2029e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.2029e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.377e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.994e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3.994e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.468506999999999e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.468506999999999e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.44142e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.4232e-11}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 5.1476e-12}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.4135e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.99278e-10}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.44603e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.44603e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 3.76835e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 3.76835e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 5.251e-10}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 9.460999999999999e-10}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 9.460999999999999e-10}, {"name": "Beryllium II", "categories": ["soil"], "amount": 9.460999999999999e-10}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.645999999999999e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.27e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.645999999999999e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.645999999999999e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.594e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.834e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.0444e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.523951e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.523951e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 4.794e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.587e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 3.31e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 1.511e-08}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 7.178e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.72113e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.72113e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.1461073e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.38790514e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.077300857e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 7.151109e-09}, {"name": "Bromopropane", "categories": ["air"], "amount": 1.1492e-12}, {"name": "Bromopropane", "categories": ["water"], "amount": 9.086200000000001e-11}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.465e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.907349999999999e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.24030377e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.1697000759e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.1697000759e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 5.120000000000001e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.2437e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.5907e-09}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.9354e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.3043e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.29705e-11}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 2.29266e-10}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.921400000000001e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.812e-11}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5287e-08}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.1259e-07}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18011e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18011e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 2.19748e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 2.19748e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.957e-10}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.563e-09}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.563e-09}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.563e-09}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.376e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.05e-08}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.376e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.376e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.81297e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.11696e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.5588e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.133979999999999e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.133979999999999e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19026e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.9898e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.16777e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.8453995e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2267475e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2267475e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9602e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.2783e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.8000765e-09}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.6843e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.6843e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.0889e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.6612e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.5213e-09}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9713e-08}, {"name": "Carboxin", "categories": ["air"], "amount": 3.6626e-08}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.61089e-09}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 9.67546e-09}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.825376e-08}, {"name": "Carboxin", "categories": ["water"], "amount": 1.825376e-08}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.8809164e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.60581e-11}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9851e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 6.719e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 5.1687e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 2.9548e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 2.9548e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 2.9548e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44000000198675e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.515420000372e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.9074e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.811e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.390799999999999e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.8217e-10}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 3.22681e-11}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 7.41839e-08}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.41839e-08}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 1.01000042202e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 6.28250775e-09}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air"], "amount": 5.601193299999999e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.601193299999999e-08}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.10592e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.2319e-10}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 9.1e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 7.039e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 7.039e-10}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.7535e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.32431e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.862e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.846e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.3288e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.323e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 5.893e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 5.893e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.97e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.588e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.28426e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.05128e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.05128e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.6864e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.6952000815e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.01023e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9263e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9263e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.7933e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4.7933e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 3.2e-10}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6.5e-10}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6.5e-10}, {"name": "Chromium III", "categories": ["soil"], "amount": 6.5e-10}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.859e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.15e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.859e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.859e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.36207e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36207e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.6434e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.6434e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.284e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.615e-08}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.615e-08}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.615e-08}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 7.389999999999999e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.38e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 7.389999999999999e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 7.389999999999999e-08}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.0517e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 6.9229e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 5.144300000000001e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.88435e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.77993e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.77993e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 4.69136e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4.69136e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1.08e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.037e-10}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.037e-10}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.037e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5.223999999999999e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.12e-09}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5.223999999999999e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 5.223999999999999e-09}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.008049e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.008049e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.385711e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.385711e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 2.521e-09}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.73e-09}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.73e-09}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.73e-09}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.323e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.65e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.323e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1.323e-07}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air"], "amount": 2.41005783e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41005783e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.496336e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.89631e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.30289e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.6023606e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.810646e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.6665e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.3763373e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5.07e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.0723e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.42870047e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.036e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 6.188000000000001e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.53323e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.53323e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4299e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.0219e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.16150233e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.970099999999999e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.73918e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.54408e-09}, {"name": "Decanoic acid", "categories": ["water"], "amount": 2.11462e-09}, {"name": "Deltamethrin", "categories": ["air"], "amount": 2.946e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 3.193e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.507600000000001e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.7119000000104e-11}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.5234e-10}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.1811e-08}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.753e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.985034300000001e-09}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73316e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.3729e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.633600264e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.633600264e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 5.548e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3362e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.243e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.677892000000001e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.416600291e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.416600291e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.4928e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.129e-09}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.1337e-08}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.29869e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 3.036e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.112350677e-10}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 7.5216e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.470005178e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.470005178e-08}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.17928e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.17928e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.635339999999999e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.23034e-10}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.125253e-11}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.125253e-11}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.8284957e-14}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.8857e-12}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4135e-07}, {"name": "Difenoconazole", "categories": ["air"], "amount": 2.0617e-07}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.944815e-09}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 5.6190746e-08}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 1.66710573e-07}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1.66710573e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7484e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.2825e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.4422e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.48589e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.48589e-06}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 2.096e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 9.9372e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.37102e-10}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.594e-09}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.91574e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 4.07e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.699944e-08}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 6.2347e-10}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.025e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.025e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.48552e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.874200000000001e-10}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.340228e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.340228e-07}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 8.340228e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 8.340228e-07}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.244924e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.3321e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.573e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.573e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 8.316e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 8.316e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 3.669e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 4.613e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 4.613e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 4.613e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.3984e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.43246e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.3984e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.3984e-05}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.656187e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09252e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 6.0432e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.438200645e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.1006000494e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.371400000752e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.371400000752e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.7426e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.4012e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3505e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.5858e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.06405e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.88131e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.563191e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.57777e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.486299999999999e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.530607829999999e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21470000249e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 9.755e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3.039e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.9541500000117e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.7474e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.7474e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 7.047e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2333e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.5985e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.402999999999999e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 3.0565e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.056100000000001e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.056100000000001e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8228e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8.372e-07}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air"], "amount": 6.642e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 6.642e-12}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.340118e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.340118e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.392703872000001e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.392703872000001e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.99014e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.5485e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.5485e-11}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1.8400504e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1.8400504e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2.6300718e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2.6300718e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.680128e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.680128e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 4.680128e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 4.680128e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.8067055e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.8067055e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 8.6189e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6900736e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6900736e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2.6900736e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2.6900736e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 2.6900734e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 2.6900734e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7800486e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7800486e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.7800486e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.7800486e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3800651e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3800651e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 2.3800651e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 2.3800651e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.30259e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.483e-09}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4600944e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4600944e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 3.4600944e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 3.4600944e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0300282e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0300282e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.0300282e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.0300282e-05}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.1756e-13}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.6926e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16852e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.2872064e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.29910000000288e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.29910000000288e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.7672e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 5.7903e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.50894e-08}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43055768e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43055768e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.1162e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.6307e-11}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air"], "amount": 1.94897e-09}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.94897e-09}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.62358e-12}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water"], "amount": 1.41234e-10}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.26866e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.26866e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78123343e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.9706257e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.713000000000001e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 5.327e-11}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 3.4403e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.547900471e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.528000000757e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 5.3141e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.4086e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.2763e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 7.01371e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.3682e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 7.599999999999999e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2464e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.539800000000001e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.956e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.7608e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.2454e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.2177e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.2177e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.8758e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 8.938000000000001e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.451e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.6259e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.6259e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.6259e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5126e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.1734e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 6.5634e-09}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 4.91221e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.934165e-07}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.934165e-07}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2711e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 3.3676e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.027999999999999e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 3.265e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.35993e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 4.607e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 5.0082e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 5.117e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.154200235e-10}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.6626e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.16056e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.606e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.483852e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.483852e-08}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.15095e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.4358e-10}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.900524070000001e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.943639999999999e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.314100085799999e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.955606999999999e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4224e-10}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air"], "amount": 3.1472e-14}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 3.1472e-14}, {"name": "Furfural", "categories": ["air"], "amount": 1.86695e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.127630000202e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.9543e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.127630000202e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.98070000000144e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.732769e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.44877699e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.665970000000373e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.665970000000373e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.665970000000373e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8926e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.489e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.29470911e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.29470911e-08}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.640000025104e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.640000025104e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 1.05077e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.60050713e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.827221e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.0654423e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.0826e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.246e-08}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.2557e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 8.063800000000001e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.809164e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39003934e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39003934e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.126764e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 4.4138872e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 4.4138872e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.34455e-12}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.6047e-09}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.37410479e-09}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04271e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.049849999999999e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.184000683e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.89050000000703e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.44980000000226e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.44980000000226e-09}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.541e-08}, {"name": "Indoxacarb", "categories": ["air"], "amount": 7.971e-08}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 3.081e-09}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2.4405e-08}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.275617e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.46424e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 8.600000047030001e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.600000047030001e-08}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1.026676e-09}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1.026676e-09}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 3.16725e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water"], "amount": 1.24899e-10}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.40115e-09}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.42488e-09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.2617e-08}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.736e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.605e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 4.164e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.4843e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.4843e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.4843e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 1.784e-11}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.0121676e-09}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.114746e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.114746e-07}, {"name": "Lead II", "categories": ["air"], "amount": 4.9233058e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.9233058e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.3e-12}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 5.539000000000001e-12}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 5.539000000000001e-12}, {"name": "Lead II", "categories": ["soil"], "amount": 5.539000000000001e-12}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.833e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.833e-10}, {"name": "Lead II", "categories": ["water"], "amount": 4.833e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.7714000448e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 8.89e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.5313000233e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.213709999999999e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.21433751e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.144080125e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.144080125e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2503e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.3310671e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.204910100000001e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.204910100000001e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.951499999999999e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.0373100000135e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.1477148e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.10228e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.27494e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.47190963e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.972900040900001e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.4653000108e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.4653000108e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.6736099e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.41742e-10}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 1.0789933e-10}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 6.303300021e-16}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3037833e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3037833e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 1.57259e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.57259e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.501e-10}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.159e-10}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.159e-10}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.159e-10}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 4e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.44e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 4e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 4e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.8765e-10}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.133500000000001e-09}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 5.6209e-09}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.5905e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.40095e-09}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2.34336e-09}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2.34336e-09}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 5.67097e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.565600314e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4050618e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.552e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.885999999999999e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 9.035899999999999e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.53264e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.53264e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.800158e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.800158e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 5.800158e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 5.800158e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.0000547e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0000547e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2.0000547e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2.0000547e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5.900161000000001e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5.900161000000001e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.330118e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.330118e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 4.330118e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 4.330118e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.3062892e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.3062892e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 4.0236e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.231e-11}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3.2300883e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3.2300883e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.010137000000001e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.010137000000001e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 5.010137000000001e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 5.010137000000001e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2900625e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2900625e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.2900625e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.2900625e-06}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0100275e-07}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0100275e-07}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.0100275e-07}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0100275e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52026e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52026e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 9.52026e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.52026e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 4.275602029999999e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 4.275602029999999e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52026e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52026e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 9.52026e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 9.52026e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.650227968e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.650227968e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.04391e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.435e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.0600562e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0600562e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 2.0600562e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 2.0600562e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.5000409e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.5000409e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.880106e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.880106e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3.880106e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3.880106e-05}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.1144e-13}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.9244e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.894100000000001e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 2.0765e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74674e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 6.00631e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.322135e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.479677299999999e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.479677299999999e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.479677299999999e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.38e-10}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8735e-07}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.6234e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 7.787081e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 5.5285656e-08}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 1.70110589e-07}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 1.70110589e-07}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.297143e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.297143e-09}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.1759e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 3.4104e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.8277e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.8277e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 5.5654e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.5594e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41003796e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41003796e-08}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.6673e-12}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.416369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.416369999999999e-10}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.142e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.9012e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.47429e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.06189e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.3719e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9329e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.8029e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3719e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.03409e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.03409e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.03409e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63375e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.07254e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.0387276e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26365e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.07675e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.6653000124e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.106100000739e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.56420000032e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.56420000032e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.767999999999999e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 5.336e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42622e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42622e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.67496e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.67496e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 5.922e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.207e-10}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.207e-10}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.207e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 3.437e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.87e-10}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 3.437e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 3.437e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17798e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2.007877e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.25798e-09}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 9.4494e-10}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.3103e-08}, {"name": "Naphthalene", "categories": ["air"], "amount": 9.302e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.6425e-09}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 9.5681e-10}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.4533e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.10699e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.10699e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.1425e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 2.1425e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.268e-09}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.441e-09}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.441e-09}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.441e-09}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.8e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.37e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.8e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 3.8e-08}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4485e-09}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 6.2896e-09}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1.6504000083e-10}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 8.971000003780001e-10}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.316300000125e-09}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.316300000125e-09}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitric oxide", "categories": ["air"], "amount": 3.14e-07}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.884e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 7.094000000000001e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.010137e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.010137e-05}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 5.010137e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 5.010137e-05}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 2.053e-07}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 3.436e-09}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.08772e-11}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.1555e-09}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 7.78690663e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.498169e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.305e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11911e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 4.179e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 9.703e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.409e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.409e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.171e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.17877e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.189100000000001e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.956e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 9.015100535000001e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.0009e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.975e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.28060734e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.429e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.1088e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.24349e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.24349e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air"], "amount": 3.020025237e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.020025237e-08}, {"name": "Pentane", "categories": ["water"], "amount": 4.998803000000001e-09}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 2.6600726e-05}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.017e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.002e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 2.0333e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 8.117e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.0794e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.461900645e-10}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air"], "amount": -3.749579e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.749579e-09}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.167158e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.7761e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 3.562e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 3.562e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.472000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.472000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.95232e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.231355e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.757099999999999e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.6404e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 8.9875e-08}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.19505e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.0975e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.12529e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.82659e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.15565e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 5.0829e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.402442000000001e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.68484e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.1031573e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.5872e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.2429e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.6319e-08}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.888e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.888e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 2.777e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 2.777e-09}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.4957e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.0084e-08}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.317e-10}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.413e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.0294e-08}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.3839e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 2.2356e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4117449e-11}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.11750462e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air"], "amount": 5.4307464e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.4307464e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 7.6055e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water"], "amount": 8.1562e-11}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.0292e-09}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air"], "amount": 3.62007158e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62007158e-08}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 2.3687e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.9418e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.561343199999999e-09}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.6402e-10}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.32608e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8246e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.36551e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.11407e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.275855e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.275855e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.275855e-08}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63119919e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09465e-10}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air"], "amount": 6.01583e-10}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 6.01583e-10}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.47729e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water"], "amount": 8.115500000000002e-11}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 4.9125e-13}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.6519e-11}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.6519e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.679e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 7.074e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.3538e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.9068e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 4.448e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.278e-06}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.7413e-07}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.389e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.389e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.511389e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.0395e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.8366e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.887e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.211e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.2767e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.6849e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.9144e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.9144e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.2705209e-10}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.167e-09}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.1445e-08}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2.8868e-09}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.85901e-11}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.025698e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.025698e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.12337e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 7.12337e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 6.527e-10}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.277e-09}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.277e-09}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.277e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.271e-08}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.12e-08}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.271e-08}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.271e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.904e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.88237e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.193859000000001e-09}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001103005}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001103005}, {"name": "Silver I", "categories": ["air"], "amount": 7.62133e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7.62133e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 9.992000000000001e-09}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.906e-08}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.906e-08}, {"name": "Silver I", "categories": ["soil"], "amount": 1.906e-08}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 3.944e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 6.22e-07}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 3.944e-07}, {"name": "Silver I", "categories": ["water"], "amount": 3.944e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55942e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.15613e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.0866e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.33571e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.06368e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.06368e-08}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.771265e-10}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.771265e-10}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 8.56e-14}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water"], "amount": 5.7221e-12}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.5114e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air"], "amount": 3.77007198e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77007198e-09}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.505038e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75914e-10}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.52090902e-08}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.14369e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3002e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3002e-05}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 7.3002e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 7.3002e-05}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.5520356e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.5520356e-07}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.4553038e-10}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.06381000000196e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.06381000000196e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1.003208e-07}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3431e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.28703e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.185009999999999e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.8453955e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7556e-09}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14932e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9.172099999999999e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.7515e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.593736e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.742943e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.742943e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1146e-06}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.7225e-06}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.709199999999999e-08}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 4.898993e-07}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 1.6774897e-06}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.378371e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.4728e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.303e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.7316e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.687849999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.687849999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.53667e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.7108e-10}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.7346e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7346e-07}, {"name": "Thallium I", "categories": ["air"], "amount": 6.852400000000001e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 6.852400000000001e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.836e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 3.985e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 3.985e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 3.985e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 4.531e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.44e-08}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 4.531e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 4.531e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58345e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.34304e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.138841e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.6029404e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05376318e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05376318e-08}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 8.6416708e-10}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.0562e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.0200131648e-10}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water"], "amount": 6.302843e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8483e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.2836e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.6623e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.11236e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.11236e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03395e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.36888e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.4302e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.3474e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.06432e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.06432e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.531e-08}, {"name": "Thiram", "categories": ["air"], "amount": 1.15e-08}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.89795e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.391784e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.277509e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.277509e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.167724e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.167724e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 6.349288e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 6.349288e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 3.077e-11}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 5.306e-11}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 5.306e-11}, {"name": "Tin ion", "categories": ["soil"], "amount": 5.306e-11}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 3.89e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 5.78e-09}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 3.89e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 3.89e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.32003648e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32003648e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.099279999999999e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.7333e-11}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.764e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.764e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 3.62693e-11}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.4476e-10}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 3.5878e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 5.11706e-07}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2151177e-09}, {"name": "Triallate", "categories": ["air"], "amount": 7.55e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.4183e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.202e-08}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.29660853e-07}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.87331e-06}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.15100855e-08}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.144200041e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.7988e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.508216400000001e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19007233e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19007233e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.738967e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.1927e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.7237e-09}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.9184e-07}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49109341e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.26525e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.895e-09}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7987e-05}, {"name": "Triflumuron", "categories": ["air"], "amount": 5.869e-05}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 2.7716e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 1.0785e-05}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.5978e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.5978e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.932e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 4.985e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.763e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.5447e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.5447e-08}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.8260301e-10}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 4.10713e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.2304e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.590078418e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.2279947e-11}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.179726e-11}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11748e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11748e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.15192e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.15192e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4.837000000000001e-09}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.33e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.33e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 9.33e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.505e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 4.77e-08}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.505e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.505e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.1061e-10}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.81e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.81e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.84498e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08516e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.036e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.25177e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.25177e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 1.56632e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1.56632e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.213e-09}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.02e-09}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.02e-09}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.02e-09}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.774e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.59e-08}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.774e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.774e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.44e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.7856e-08}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.119496e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.43238e-10}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.880061599999999e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.880061599999999e-08}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.342038e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.66747e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.4114e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.4114e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 5.3951e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 5.0815e-12}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air"], "amount": 6.27268e-09}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 6.27268e-09}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 1.72521e-11}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water"], "amount": 7.9038e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.781e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "total: human health no LT", "human health no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 2.495e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00440673}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376575}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141216}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176269}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176269}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 2.36e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.28e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 0.000165}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 5.26e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 5.26e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.139e-06}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 6.92e-06}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 3.72e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 2.67e-13}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137924}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137924}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0001721}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.9e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.84e-06}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 4.1e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 2.93e-11}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.000151}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.317e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.317e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.543e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water"], "amount": 1.0133e-06}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.00088}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.00088}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 4.45e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.16e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.000184}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 4.17e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 7.57e-12}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03401}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03401}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.02703}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.02703}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.001594}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0011734}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0011734}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0011734}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.02104}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.0017765}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.02104}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.02104}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-05}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.206e-06}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 3.106e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.5e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.5e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.5e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air"], "amount": 0.000192}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.79e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.000103}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.000103}, {"name": "Barium II", "categories": ["soil"], "amount": 0.000103}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.65e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water"], "amount": 4.2e-05}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.67e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.67e-07}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.640000000000001e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.546e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.2386e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.536e-07}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.97e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.5207e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.434e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0003369}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0003369}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.004116}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0063363}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0063363}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146879}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146879}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 8.35e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 7.280000000000001e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 7.280000000000001e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 7.280000000000001e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.421e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.951e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.421e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.421e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.27e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.76e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.66e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.48e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.64e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.63e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000449}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000449}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 6.234e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.234e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.011609}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011609}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00893}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.00893}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.023166}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00024279}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00024279}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.00024279}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.0002946}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 9.031000000000001e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.0002946}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.0002946}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 4.02e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water"], "amount": 7.34e-08}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 4.95e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water"], "amount": 8.5e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.498e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.838e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.784e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.279e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.279e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 2.32e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water"], "amount": 5.18e-11}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.53e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.169e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.54e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 2.776e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.776e-05}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.59e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 5.780000000000001e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.096e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.125e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.673e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9.679999999999999e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.602e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.602e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air"], "amount": 5.43e-08}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.79e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 6.93e-10}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.99e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.085498}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.085498}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.0674}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.0674}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.01460324}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.01901}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.01901}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.01901}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.0247131}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.00219116}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0247131}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0247131}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 2.08e-11}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 2.01e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.24e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air"], "amount": 7.07e-06}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 7.07e-06}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 4.24e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.63e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 6.52e-07}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0008}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.75e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.92e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.92e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.748e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 4.62e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002871}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.738e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.738e-07}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.11e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.63e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.85e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00028284}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00028284}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.00028284}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.00028284}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 307}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 307}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 30.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 243}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 751}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.98e-05}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0014402428}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0014402428}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0002735699}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0002735699}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.72e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.89e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.89e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.00646436}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.00646436}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.00094201}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.00094201}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000155}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 9.388e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 9.388e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.16e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.009063000000000002}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.009063000000000002}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.009063000000000002}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.009063000000000002}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0022156}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0022156}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.0022156}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.0022156}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 9.5682e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 9.5682e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0006007}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0006007}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0006007}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0006007}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.007932400000000001}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007932400000000001}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.007932400000000001}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.007932400000000001}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.0001115}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0001705}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.0115}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.00343}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.54e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.33e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 7.81e-06}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000172}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.11e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 4.14e-05}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.1509e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.57e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.412e-09}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.00032309}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00032309}, {"name": "Furfural", "categories": ["air"], "amount": 4.593e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.5e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.5e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.1144e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8881e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00125}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.4e-05}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 8.98e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 8.98e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.527e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.077e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 3.35042e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 3.35042e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.44e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 3.5e-13}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water"], "amount": 2.44e-09}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 2.55e-10}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 4.79e-12}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 8.019999999999999e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.019999999999999e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 7.21e-14}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0068726}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0068726}, {"name": "Lead II", "categories": ["air"], "amount": 0.0051417}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0051417}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.00024215}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.3581e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.3581e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 2.3581e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 8.816e-05}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.9878e-05}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 8.816e-05}, {"name": "Lead II", "categories": ["water"], "amount": 8.816e-05}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 7.73e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.0001545}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.339e-06}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 1.62e-10}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006849}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006849}, {"name": "Mercury II", "categories": ["air"], "amount": 0.005881}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.005881}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0027675}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.000115}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.000115}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.000115}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.01326}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.005501}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.01326}, {"name": "Mercury II", "categories": ["water"], "amount": 0.01326}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00074178}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00074178}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00658}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00658}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00658}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00658}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01411}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01411}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.01411}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.01411}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 4.09e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 4.09e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0019739365}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0019739365}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.0143}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.42399e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.42399e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.057e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.239e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0110961}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0110961}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000166}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000758}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 3.34e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 3.16e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.77233e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.77233e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 3.16e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.003861}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.003861}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.0008010000000000001}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.0014}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.00682}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.00550859}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.00550859}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.0129}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 7.67e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.0006}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.0006}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.000301}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.2e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.95e-05}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air"], "amount": 5.274499999999999e-07}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 5.274499999999999e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 5.7386e-08}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.8356e-07}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.049e-05}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3.235e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001692}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001692}, {"name": "Nickel II", "categories": ["air"], "amount": 0.0012563}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.0012563}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.00015966}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 4.134e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 4.134e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 4.134e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 7.68e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.1753e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 7.68e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 7.68e-05}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.0973e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.00010839}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 5.14e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6.06e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0166}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.011e-05}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.7e-14}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.11e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.00011337}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.00011337}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 2.662e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.209e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.0088}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 2.905e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 2.329e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000137}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.843e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.623e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.46e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 6.9e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1.1176e-06}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 7.73e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.017}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.685e-05}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 9.818e-07}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.200000000000001e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.58e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 6.54e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 4.37e-07}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.23e-11}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 9.27e-12}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 2.01e-12}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air"], "amount": 0.0111}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0111}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0104}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.000172}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.000172}, {"name": "Silver I", "categories": ["soil"], "amount": 0.000172}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 4.58e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water"], "amount": 0.000157}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 2.55e-10}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 3.87e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water"], "amount": 2.08e-10}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.345e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.3781e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000182}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0242}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000145}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 6.72e-13}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 6.72e-13}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water"], "amount": 2.63e-10}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.43e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-06}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air"], "amount": 0.00166}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.00166}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.000565}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 8.64e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water"], "amount": 0.00136}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air"], "amount": 3.854e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.854e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 5.33e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water"], "amount": 2.381e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.01e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.85e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.688e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.47e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.18e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.18e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.69e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air"], "amount": 0.00016}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 0.00016}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.5e-05}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 8.57e-06}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.000138}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 2.22e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 7.27e-14}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air"], "amount": 4.277e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 4.277e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 5.036e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water"], "amount": 2.342e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0086}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 7.71e-05}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00188}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 7.52e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.159e-06}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.0806e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0806e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.341e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.1816e-07}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (H) no LT", "total: natural resources no LT", "natural resources no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.132}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0303}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00527}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 17.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.74}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0267}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0705}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0025}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00241}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0113}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00356}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 73.4}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0443}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000654}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 22.3}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.07}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00212}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00133}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 3.07}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.099}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0202}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00874}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 278}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.83}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.918}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1.35e-08}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "acidification: terrestrial"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.72e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.17e-07}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.63e-08}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.38e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "climate change: freshwater ecosystems"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 7.65e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 7.65e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 7.65e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 7.65e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 7.65e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 7.65e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 7.65e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 7.65e-14}, {"name": "Chloroform", "categories": ["air"], "amount": 1.53e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.53e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 2.28e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-11}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.28e-11}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.28e-11}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.18e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.18e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.48e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.48e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4.21e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5.04e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.04e-10}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 7.18e-11}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 7.18e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 1.28e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.28e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 1.28e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 1.28e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 7.65e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.65e-14}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 7.36e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.36e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.36e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 7.36e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 7.36e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 1.79e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1.79e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1.79e-10}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 7.34e-12}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 7.34e-12}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 4.86e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.86e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.86e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 4.86e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 4.86e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 6.51e-10}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.51e-10}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.51e-10}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 6.51e-10}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 6.51e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 9.44e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.44e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 9.44e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 9.44e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 2.82e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.82e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 2.82e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 2.82e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.06e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.06e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.3e-13}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.3e-13}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1.58e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1.58e-10}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1.58e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 5.47e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.47e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 5.47e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 5.47e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.61e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.61e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 1.18e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1.18e-09}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1.18e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.42e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.42e-13}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8.83e-10}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8.83e-10}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 1.37e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1.37e-11}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1.37e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 6.25e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.25e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.25e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 6.25e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 6.25e-11}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 2.75e-12}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.75e-12}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.75e-12}, {"name": "Methane, fossil", "categories": ["air"], "amount": 2.75e-12}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.75e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 2.6e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 2.6e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.6e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.15e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.15e-12}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.6e-12}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-12}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-12}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 2.6e-12}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.6e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.54e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.54e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5.62e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5.62e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5.62e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.09e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4.09e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 1.06e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 1.06e-09}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 1.06e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 1.37e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-09}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 1.37e-09}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.37e-09}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 7.26e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 2e-09}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2e-09}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 2e-09}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 2e-09}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 2e-09}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "climate change: terrestrial ecosystems"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2.8e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.8e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.8e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 2.8e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.8e-09}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 2.8e-09}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 2.8e-09}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 2.8e-09}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 2.8e-09}, {"name": "Chloroform", "categories": ["air"], "amount": 5.6e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 8.34e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.34e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.34e-07}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 8.34e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 8.34e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.34e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.34e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.4e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.4e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1.54e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1.84e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1.84e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2.63e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2.63e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 4.68e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 4.68e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 4.68e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.8e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.8e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 2.69e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2.69e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2.69e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 6.57e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.57e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.57e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 6.57e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 6.57e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 2.69e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 2.69e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1.78e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.78e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.78e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 2.38e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 2.38e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 2.38e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 3.46e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.46e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.46e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 3.46e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 3.46e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1.03e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.03e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.03e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 3.86e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 3.86e-08}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.4e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.4e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 5.8e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 5.8e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 5.8e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5.9e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5.9e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 4.33e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.33e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.33e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 4.33e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 4.33e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.08e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.08e-08}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3.23e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 5.01e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.01e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 5.01e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 5.01e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.29e-06}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.01e-07}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-07}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-07}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.01e-07}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.01e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 9.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.52e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 4.2e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 4.2e-08}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 9.52e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 9.52e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 9.52e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.65e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.65e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 2.06e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 2.06e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 2.06e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.5e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.5e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 3.88e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.88e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.88e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3.88e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3.88e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 5.01e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.01e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01e-05}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 5.01e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 5.01e-05}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 2.66e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 7.3e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-05}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 7.3e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 7.3e-05}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "ecotoxicity: freshwater"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.52e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 3.63e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 5.81e-10}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.73e-15}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 2.86e-11}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-10}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.5e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.33e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.82e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.82e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09e-11}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.4e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.4e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.09e-11}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1.27e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.4e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.51e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.97e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.7e-15}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.73e-11}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 4.27e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 4.27e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.07e-15}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.32e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.32e-12}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 2.57e-09}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.27e-14}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 2.3e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.38e-20}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.54e-11}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.77e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-11}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.8e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.96e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.19e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.19e-10}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.93e-14}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1e-10}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-13}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.05e-18}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.18e-10}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.21e-15}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.51e-12}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.03e-14}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 6.07e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 6.26e-13}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 1.96e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.54e-09}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.35e-18}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.17e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.17e-11}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1.64e-11}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1.64e-11}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.16e-13}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.06e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-09}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 7.92e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 5.28e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.89e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.88e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.02e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 7.64e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.75e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.43e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.74e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.47e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.33e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.33e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.37e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 9.34e-11}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.46e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 1.69e-08}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-08}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-08}, {"name": "Antimony ion", "categories": ["air"], "amount": 3.14e-08}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3.14e-08}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 6.4e-08}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 6.4e-08}, {"name": "Antimony ion", "categories": ["soil"], "amount": 6.4e-08}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.52e-28}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.36e-07}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.36e-07}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.38e-09}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38e-09}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38e-09}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.46e-09}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.46e-09}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 8.72e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.64e-09}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.64e-09}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.64e-09}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1.49e-29}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.32e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.32e-08}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.44e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 5.93e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.25e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.18e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.62e-07}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.38e-10}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.89e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.09e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.09e-07}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.35e-10}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.35e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35e-10}, {"name": "Barium II", "categories": ["air"], "amount": 7.69e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 7.69e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8.16e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.18e-30}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water"], "amount": 1.94e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.59e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.59e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14e-09}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 9.99e-11}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.81e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.73e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.73e-10}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1.44e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.11e-06}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.17e-10}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.19e-14}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.03e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.2e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.78e-15}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.04e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.71e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.78e-11}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 4.79e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.79e-11}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.06e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.34e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.34e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.42e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.35e-11}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 2.9e-15}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.98e-10}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 1.13e-09}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.05e-09}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.05e-09}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 4.71e-10}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 8.51e-10}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 8.51e-10}, {"name": "Beryllium II", "categories": ["soil"], "amount": 8.51e-10}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.99e-29}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.89e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.89e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.6e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.97e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.48e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 3.54e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.67e-08}, {"name": "Bifenthrin", "categories": ["air"], "amount": 2.8e-08}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.7e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.46e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.45e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.45e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.12e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.31e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.06e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 6.95e-09}, {"name": "Bromopropane", "categories": ["air"], "amount": 2.52e-14}, {"name": "Bromopropane", "categories": ["water"], "amount": 8.96e-11}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.87e-09}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.16e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.16e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.24e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.12e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.52e-09}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 2.9e-11}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.33e-15}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.27e-11}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.04e-14}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.36e-11}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-09}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.08e-07}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 5.4e-10}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4e-10}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4e-10}, {"name": "Cadmium II", "categories": ["air"], "amount": 8.1e-10}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 8.1e-10}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.21e-10}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.42e-09}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.42e-09}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.42e-09}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3e-30}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.17e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.17e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.79e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-09}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.36e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.06e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.06e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-09}, {"name": "Carbendazim", "categories": ["air"], "amount": 4.88e-09}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.14e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.83e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.83e-08}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.43e-13}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.43e-13}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 6.9e-14}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.42e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.88e-10}, {"name": "Carboxin", "categories": ["air"], "amount": 2.92e-09}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.59e-09}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 9.59e-09}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Carboxin", "categories": ["water"], "amount": 1.81e-08}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 4.4e-19}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.59e-11}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.41e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 6.3e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 5e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 2.87e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 2.87e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 2.87e-06}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 6.75e-21}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.51e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.54e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.75e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 4.41e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.72e-10}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 3.2e-11}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.33e-10}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1.15e-09}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.15e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 2.02e-19}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 6.26e-09}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 6.26e-09}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.92e-14}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.13e-10}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.27e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.29e-11}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 5.59e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 5.59e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.25e-13}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.24e-09}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.24e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.84e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.1e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.68e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 4.68e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.29e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.24e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.02e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.02e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.35e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.6e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.4e-10}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-10}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-10}, {"name": "Chromium III", "categories": ["air"], "amount": 2.8e-10}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.8e-10}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 2.91e-10}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.93e-10}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.93e-10}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.93e-10}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 7.41e-31}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.6e-09}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 5.37e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.37e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.37e-09}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.08e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.08e-08}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.12e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.29e-08}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.14e-29}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 6.02e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 6.02e-08}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.76e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.6e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.84e-10}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 1.43e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43e-10}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43e-10}, {"name": "Cobalt II", "categories": ["air"], "amount": 1.56e-10}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1.56e-10}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 9.73e-11}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.84e-10}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.84e-10}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.84e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.29e-30}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.4e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.4e-09}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 3.59e-09}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.59e-09}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59e-09}, {"name": "Copper ion", "categories": ["air"], "amount": 3.81e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.81e-09}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.29e-09}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.29e-09}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.29e-09}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.01e-29}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.12e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1.12e-07}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 6.36e-15}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.88e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.15e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 5.06e-17}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.8e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 8.95e-18}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.34e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.51e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.4e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 5.84e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.4e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.4e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 8.9e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.11e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.04e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.72e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Decanoic acid", "categories": ["water"], "amount": 2.11e-09}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 4.1e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 3.72e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 7.76e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.39e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.63e-11}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.39e-10}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.14e-08}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.06e-11}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.93e-09}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-10}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.62e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 9.42e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.19e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.97e-11}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.63e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.38e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.38e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 6.55e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 4.01e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.96e-10}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.11e-10}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 7.06e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.09e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.09e-15}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 3.34e-15}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.21e-10}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05e-14}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.5e-13}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.5e-13}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.57e-19}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.88e-12}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.88e-12}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.92e-09}, {"name": "Difenoconazole", "categories": ["air"], "amount": 1.49e-08}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.72e-09}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 5.46e-08}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 1.62e-07}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1.62e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.08e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.39e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.38e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.38e-06}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.08e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 2.72e-14}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 1.33e-10}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.33e-10}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 4.26e-10}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.34e-09}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.97e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.69e-08}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 6.14e-10}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.52e-14}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.77e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.77e-10}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.18e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.21e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1.23e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1.16e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 2.59e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 9.03e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 9.03e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 9.03e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 3.46e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.21e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.21e-05}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 2.72e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-10}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.18e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.36e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.05e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.36e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.36e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.38e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.76e-09}, {"name": "Diuron", "categories": ["air"], "amount": 2.45e-08}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.05e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.82e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.55e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.56e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.5e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.8e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.75e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.95e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.24e-12}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 9.24e-12}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 5.09e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49e-09}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.74e-09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 2.85e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 5.82e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.82e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 6.95e-07}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.71e-13}, {"name": "Ethane thiol", "categories": ["air"], "amount": 3.92e-13}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-13}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.14e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.95e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.89e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 3.85e-11}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 3.59e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.47e-09}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.56e-15}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.37e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.26e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.28e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.28e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.55e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.11e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.02e-14}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.14e-11}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-11}, {"name": "Ethylamine", "categories": ["air"], "amount": 2.81e-11}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.81e-11}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 1.58e-15}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1.4e-10}, {"name": "Ethylamine", "categories": ["water"], "amount": 1.4e-10}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 5.71e-11}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 5.71e-11}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 3.43e-18}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.96e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.96e-10}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.23e-13}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 3.35e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.87e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.51e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 5.25e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.65e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.18e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 6.95e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.2e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.03e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.44e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.43e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.56e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.21e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.11e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.11e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.77e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.01e-07}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.3e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.17e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.57e-06}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 5.55e-09}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-09}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 6.47e-09}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 4.85e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.91e-07}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.91e-07}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-08}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2.84e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8.46e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 6.05e-10}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 8.17e-12}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.95e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.85e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.14e-10}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.15e-08}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 3.25e-14}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.31e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.31e-10}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.07e-19}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.93e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.27e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.93e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-15}, {"name": "Furan", "categories": ["air"], "amount": 9.02e-16}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 9.02e-16}, {"name": "Furfural", "categories": ["air"], "amount": 4.88e-12}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.44e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 4.09e-10}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.66e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1.98e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.23e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.23e-08}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air"], "amount": 4.54e-18}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 4.54e-18}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 7.5e-09}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.13e-18}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.81e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.04e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.21e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.57e-11}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 6.49e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.49e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.04e-15}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 4.64e-15}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.08e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.52e-13}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.57e-09}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.32e-09}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.24e-09}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.07e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.83e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.37e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.37e-09}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.98e-09}, {"name": "Indoxacarb", "categories": ["air"], "amount": 8.21e-09}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2.88e-09}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2.36e-08}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.43e-09}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air"], "amount": 1.19e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.19e-17}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.67e-12}, {"name": "Isopropylamine", "categories": ["air"], "amount": 2.6e-11}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 2.6e-11}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 7.25e-15}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Isopropylamine", "categories": ["water"], "amount": 1.22e-10}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.38e-09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.22e-08}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.79e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 2.94e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.35e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.35e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.35e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.03e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.01e-09}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 1.16e-11}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-11}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-11}, {"name": "Lead II", "categories": ["air"], "amount": 9.58e-12}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 9.58e-12}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.05e-12}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 5.13e-12}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 5.13e-12}, {"name": "Lead II", "categories": ["soil"], "amount": 5.13e-12}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.59e-32}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.21e-10}, {"name": "Lead II", "categories": ["water"], "amount": 4.21e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.74e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.71e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.45e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-11}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.21e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.14e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.14e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.32e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.17e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.17e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.43e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.03e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.14e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-09}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.01e-08}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.41e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.94e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.42e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.42e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.61e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.34e-10}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 6.27e-16}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 9.33e-10}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.33e-10}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.33e-10}, {"name": "Mercury II", "categories": ["air"], "amount": 7e-10}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 7e-10}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.38e-10}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.99e-10}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.99e-10}, {"name": "Mercury II", "categories": ["soil"], "amount": 1.99e-10}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.71e-30}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.46e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 3.46e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.03e-10}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 1.18e-10}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 4.18e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.38e-09}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2.32e-09}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2.32e-09}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 4.74e-11}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.51e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.78e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 8.99e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.91e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.26e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.03e-11}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.03e-14}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.03e-14}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3.68e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.01e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3.71e-10}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.74e-15}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.42e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.71e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.95e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35e-09}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.98e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.46e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.58e-10}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.85e-09}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.5e-08}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 7.69e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 5.46e-08}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 1.68e-07}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 1.68e-07}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-13}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.64e-13}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.64e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.59e-14}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.96e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.96e-11}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 2.54e-13}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.37e-12}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67e-12}, {"name": "Methyl lactate", "categories": ["air"], "amount": 5.42e-12}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 5.42e-12}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.4e-09}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.29e-15}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.03e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.51e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.02e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.54e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.06e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.03e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 5.37e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.62e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.08e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.52e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.52e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.71e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.24e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 2.52e-11}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-11}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-11}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 5.03e-11}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 5.03e-11}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 5.23e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.07e-10}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.07e-10}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.07e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.14e-31}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.85e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.85e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 9.34e-10}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 9.11e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.16e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 9.47e-10}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.71e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 1.19e-09}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-09}, {"name": "Nickel II", "categories": ["air"], "amount": 1.5e-09}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.5e-09}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.14e-09}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.2e-09}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.2e-09}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.2e-09}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.19e-29}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.2e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 3.2e-08}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.68e-11}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 2.28e-10}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 8.86e-10}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.3e-09}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.3e-09}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 9.4e-13}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.28e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.27e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.08e-11}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 8.95e-10}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.46e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.06e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 2.29e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 6.47e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.17e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.37e-12}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.04e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.94e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.65e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.67e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.27e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.81e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.83e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.22e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.22e-07}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.91e-15}, {"name": "Pentane", "categories": ["air"], "amount": 4.37e-15}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.37e-15}, {"name": "Pentane", "categories": ["water"], "amount": 4.99e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.24e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.53e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.99e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 9.47e-11}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.96e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.4e-10}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 8.58e-15}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.74e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.74e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.54e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 9.42e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 9.42e-11}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.66e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.33e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.33e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.84e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.14e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.17e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.31e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.21e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 3.75e-13}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.09e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.59e-13}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.81e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 2.65e-14}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 4.23e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.02e-15}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.65e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.04e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.67e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1.36e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1.36e-10}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.21e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 9.19e-09}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 3.76e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 2.98e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 9.74e-09}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.24e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4e-11}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.1e-11}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-13}, {"name": "Propanal", "categories": ["air"], "amount": 1.22e-13}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.22e-13}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 3.55e-14}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 7.1e-11}, {"name": "Propanal", "categories": ["water"], "amount": 7.1e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 9.98e-10}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air"], "amount": 8.13e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 8.13e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.67e-15}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.54e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.48e-09}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.3e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.19e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.33e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.1e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.21e-08}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 9.19e-18}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09e-10}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-12}, {"name": "Propylamine", "categories": ["air"], "amount": 1.51e-11}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 1.51e-11}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.29e-15}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 8.05e-11}, {"name": "Propylamine", "categories": ["water"], "amount": 8.05e-11}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 4.53e-13}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68e-13}, {"name": "Propylene oxide", "categories": ["air"], "amount": 7.69e-13}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 7.69e-13}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.49e-13}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.9e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.9e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.73e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 8.18e-10}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.26e-06}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.7e-07}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.49e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5.6e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.65e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 3.12e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.97e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.63e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.88e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.88e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.26e-10}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.1e-08}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2.69e-09}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 4.68e-10}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68e-10}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68e-10}, {"name": "Selenium IV", "categories": ["air"], "amount": 6.77e-10}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 6.77e-10}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 5.86e-10}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.15e-09}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.15e-09}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.15e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.16e-30}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.07e-08}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.07e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.86e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.15e-09}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 1.15e-08}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15e-08}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-08}, {"name": "Silver I", "categories": ["air"], "amount": 1.33e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 1.33e-08}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 9.1e-09}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.74e-08}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.74e-08}, {"name": "Silver I", "categories": ["soil"], "amount": 1.74e-08}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 6.14e-29}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 3.37e-07}, {"name": "Silver I", "categories": ["water"], "amount": 3.37e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-09}, {"name": "Simazine", "categories": ["air"], "amount": 8.25e-09}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.93e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.3e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.01e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.01e-08}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-13}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.1e-12}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 2.89e-35}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 5.71e-12}, {"name": "Sodium formate", "categories": ["water"], "amount": 5.71e-12}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.68e-15}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75e-10}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.5e-08}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 9.93e-08}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.43e-11}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.98e-10}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.98e-10}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.06e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.06e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 9.94e-08}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-09}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.27e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.07e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.81e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7e-09}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-08}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.02e-08}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.72e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.72e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.72e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8e-08}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.59e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.51e-08}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 4.76e-07}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 1.63e-06}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.3e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.05e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 2.72e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 9.7e-14}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.52e-10}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 6.28e-09}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.28e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.28e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 1.45e-08}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1.45e-08}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.52e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 3.31e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.91e-29}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.68e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 3.68e-08}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 3.74e-10}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-10}, {"name": "Thiabendazole", "categories": ["air"], "amount": 9.79e-10}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.12e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.59e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 8.57e-10}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 6.48e-18}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 6.28e-09}, {"name": "Thiocyanate", "categories": ["water"], "amount": 6.28e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-09}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 8.78e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.5e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.02e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-10}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.02e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.22e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air"], "amount": 4.11e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.87e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.25e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.25e-07}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 9.24e-11}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.24e-11}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.24e-11}, {"name": "Tin ion", "categories": ["air"], "amount": 7.88e-11}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 7.88e-11}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 2.8e-11}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 4.84e-11}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 4.84e-11}, {"name": "Tin ion", "categories": ["soil"], "amount": 4.84e-11}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 5.36e-31}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 3.32e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 3.32e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 3.28e-15}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.67e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.67e-11}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-13}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1.07e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1.07e-13}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 4.93e-14}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.4e-10}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.4e-10}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 2.54e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.19e-10}, {"name": "Triallate", "categories": ["air"], "amount": 1.14e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.15e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.04e-08}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 5.15e-08}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.34e-07}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.05e-08}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.13e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.52e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.44e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 7.67e-15}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.18e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.67e-09}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 3.41e-20}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.23e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.23e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.36e-09}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 3.24e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 1.76e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 9.83e-06}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.54e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.54e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-11}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.05e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.51e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.46e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.46e-08}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.69e-10}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 3.99e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.17e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.18e-20}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.22e-11}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.12e-11}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 4.58e-09}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.58e-09}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.58e-09}, {"name": "Vanadium V", "categories": ["air"], "amount": 5.72e-09}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 5.72e-09}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4.28e-09}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 8.28e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 8.28e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 8.28e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 5.7e-29}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.24e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 3.79e-10}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 2.18e-15}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.81e-08}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 4.37e-09}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.37e-09}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.37e-09}, {"name": "Zinc II", "categories": ["air"], "amount": 4.12e-09}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 4.12e-09}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.96e-09}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 3.57e-09}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 3.57e-09}, {"name": "Zinc II", "categories": ["soil"], "amount": 3.57e-09}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 5.19e-29}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.46e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.26e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.67e-08}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.06e-15}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.42e-10}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 7.38e-15}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.65e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.73e-15}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 8.94e-15}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.94e-15}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 2.51e-15}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.65e-12}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 4.65e-12}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-11}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1.68e-10}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1.68e-10}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 3.21e-14}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 7.78e-10}, {"name": "t-Butylamine", "categories": ["water"], "amount": 7.78e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 9.62e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "ecotoxicity: marine"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 8.73e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.48e-11}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.69e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water"], "amount": 1.32e-13}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52e-11}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.09e-12}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.52e-11}, {"name": "2,4-D", "categories": ["water"], "amount": 1.52e-11}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46e-12}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 9.27e-12}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 9.27e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 6.63e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 9.27e-12}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 6.33e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.48e-11}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.48e-11}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 6.47e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.38e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.38e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 5.67e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.51e-13}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.67e-14}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.3e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.3e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.05e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.14e-14}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.49e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.3e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 1.99e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.73e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.73e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.35e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.63e-13}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.46e-13}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.1e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.1e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.22e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.61e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6.61e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68e-12}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 7.35e-13}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.15e-12}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 5.17e-12}, {"name": "Acephate", "categories": ["water"], "amount": 5.17e-12}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 5.38e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 7.52e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 9.91e-13}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-14}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.08e-15}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.77e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water"], "amount": 2.5e-13}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air"], "amount": 6.25e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 6.25e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 9.39e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water"], "amount": 5.28e-14}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.07e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.51e-13}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 1.59e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 8.95e-12}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 8.95e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.64e-11}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["water"], "amount": 3.41e-10}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.95e-13}, {"name": "Acrylate", "categories": ["water"], "amount": 1.95e-13}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air"], "amount": 3.57e-13}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 3.57e-13}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.67e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.67e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 2.67e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 5.46e-12}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 5.46e-12}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.09e-10}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2.05e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-12}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.47e-10}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.85e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Allyl chloride", "categories": ["water"], "amount": 5.74e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 5.21e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 3.19e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 1.71e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 3.08e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.97e-10}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2e-13}, {"name": "Aniline", "categories": ["air"], "amount": 1.12e-13}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.12e-13}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.46e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water"], "amount": 2.7e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 4.88e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.22e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 3.04e-09}, {"name": "Anthracene", "categories": ["water"], "amount": 3.04e-09}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 2.06e-12}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 5.13e-08}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "Antimony ion", "categories": ["air"], "amount": 3.79e-08}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3.79e-08}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 4.09e-09}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 8.01e-09}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 8.01e-09}, {"name": "Antimony ion", "categories": ["soil"], "amount": 8.01e-09}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 4.83e-08}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 4.83e-08}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.05e-07}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 4.83e-08}, {"name": "Antimony ion", "categories": ["water"], "amount": 4.83e-08}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.05e-08}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05e-08}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05e-08}, {"name": "Arsenic ion", "categories": ["air"], "amount": 7.34e-09}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 7.34e-09}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.1e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 2.03e-10}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 2.03e-10}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 2.03e-10}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 9.06e-09}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 9.06e-09}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.23e-08}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 9.06e-09}, {"name": "Arsenic ion", "categories": ["water"], "amount": 9.06e-09}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.63e-12}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.3e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.44e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Atrazine", "categories": ["water"], "amount": 1.56e-09}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.94e-12}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 1.5e-11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.37e-09}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3e-11}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.38e-10}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.36e-09}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.36e-09}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.52e-10}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-10}, {"name": "Barium II", "categories": ["air"], "amount": 3.56e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 3.56e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.71e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 3.64e-10}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 3.64e-10}, {"name": "Barium II", "categories": ["soil"], "amount": 3.64e-10}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 4.12e-10}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 4.12e-10}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 5.89e-10}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 4.12e-10}, {"name": "Barium II", "categories": ["water"], "amount": 4.12e-10}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.65e-13}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 3.11e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 4.09e-12}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 1.38e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.51e-12}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 6.1e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.59e-08}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.15e-12}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.34e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water"], "amount": 5.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.73e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 3.96e-12}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.79e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.79e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 5.91e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 5.91e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.16e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.27e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.26e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 2.3e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.83e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.83e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 1.28e-09}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 1.28e-09}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 1.23e-13}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.52e-13}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.26e-14}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.38e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 7.34e-13}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 2.49e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49e-08}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49e-08}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.73e-08}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.73e-08}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 5.41e-11}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 9.51e-11}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 9.51e-11}, {"name": "Beryllium II", "categories": ["soil"], "amount": 9.51e-11}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 7.56e-09}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 7.56e-09}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.27e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 7.56e-09}, {"name": "Beryllium II", "categories": ["water"], "amount": 7.56e-09}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.24e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 6.3e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4.36e-07}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4.36e-07}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.34e-11}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.65e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.54e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.88e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 4.59e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2.62e-07}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2.62e-07}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.61e-10}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 7.79e-12}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 1.73e-13}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 2.01e-10}, {"name": "Bromopropane", "categories": ["air"], "amount": 1.45e-13}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.71e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.65e-10}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.7e-10}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.7e-10}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.41e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.13e-11}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 5.24e-13}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.1e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.85e-14}, {"name": "Butanol", "categories": ["water"], "amount": 5.85e-14}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 1.9e-12}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.1e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water"], "amount": 3.2e-13}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.77e-10}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 1.16e-09}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 9.57e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.57e-09}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.57e-09}, {"name": "Cadmium II", "categories": ["air"], "amount": 6.67e-09}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 6.67e-09}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.47e-11}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.43e-10}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.43e-10}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.43e-10}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2.06e-09}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 2.06e-09}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.05e-08}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2.06e-09}, {"name": "Cadmium II", "categories": ["water"], "amount": 2.06e-09}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.27e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-10}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 5.38e-11}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.74e-10}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.74e-10}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36e-10}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.18e-10}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.62e-11}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.53e-10}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.67e-10}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.67e-10}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.1e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.77e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.44e-11}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.59e-11}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-10}, {"name": "Carboxin", "categories": ["air"], "amount": 1.06e-10}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.33e-11}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 8.02e-11}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.51e-10}, {"name": "Carboxin", "categories": ["water"], "amount": 1.51e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.88e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.4e-13}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.89e-09}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.46e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 8.34e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 8.34e-08}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 8.34e-08}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.75e-10}, {"name": "Chloramine", "categories": ["air"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water"], "amount": 5.42e-10}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-11}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.34e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.08e-10}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.11e-12}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.68e-13}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-11}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 3.39e-11}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 3.39e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 1.01e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 2.25e-11}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 2.25e-11}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.85e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 4.92e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 4.92e-12}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.07e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-11}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1.3e-11}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.26e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 6.01e-12}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 6.01e-12}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.95e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.91e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 8.48e-09}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.13e-08}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.03e-08}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.03e-08}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.1e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.53e-08}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2.81e-07}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2.81e-07}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 5.04e-10}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 9.52e-11}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 8.39e-12}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.49e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-09}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 1.05e-09}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 1.05e-09}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 2.9e-11}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.7e-11}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.7e-11}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.7e-11}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.59e-10}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 2.59e-10}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.15e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.59e-10}, {"name": "Chromium III", "categories": ["water"], "amount": 2.59e-10}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 1.67e-08}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67e-08}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67e-08}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.26e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.26e-08}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.64e-09}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 3.25e-09}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 3.25e-09}, {"name": "Chromium VI", "categories": ["soil"], "amount": 3.25e-09}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.37e-08}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 1.37e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.38e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.37e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.37e-08}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.02e-10}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.29e-12}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 3.43e-12}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.06e-12}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 2.85e-09}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-09}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-09}, {"name": "Cobalt II", "categories": ["air"], "amount": 1.98e-09}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1.98e-09}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1.07e-11}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.97e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.97e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.97e-11}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 8.24e-10}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 8.24e-10}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.12e-09}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 8.24e-10}, {"name": "Cobalt II", "categories": ["water"], "amount": 8.24e-10}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 7.69e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.69e-08}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.69e-08}, {"name": "Copper ion", "categories": ["air"], "amount": 5.33e-08}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 5.33e-08}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.4e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.4e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.4e-10}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.03e-08}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 2.03e-08}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.65e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.03e-08}, {"name": "Copper ion", "categories": ["water"], "amount": 2.03e-08}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.18e-14}, {"name": "Cumene", "categories": ["air"], "amount": 6.61e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 6.61e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.48e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water"], "amount": 1.1e-12}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.49e-10}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.6e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.91e-14}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.91e-14}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.27e-17}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.63e-13}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.58e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 5.68e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.87e-14}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 2.43e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 1.3e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.75e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.12e-10}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.15e-12}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 5.21e-11}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.34e-13}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-11}, {"name": "Decanoic acid", "categories": ["water"], "amount": 4.49e-12}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 1.19e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 8.94e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 8.47e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.54e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 8.19e-13}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 4.74e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.32e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5.5e-11}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-11}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.91e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.36e-11}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.36e-11}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 3.96e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.62e-10}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-12}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 4.71e-13}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 3.66e-12}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 3.66e-12}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.28e-10}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.87e-10}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 8.19e-12}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.13e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 2.35e-13}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 6.36e-12}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.39e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.39e-15}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.25e-12}, {"name": "Diethylamine", "categories": ["air"], "amount": 1.88e-12}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.88e-12}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.21e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.16e-12}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-15}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.53e-15}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.53e-15}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.82e-14}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4e-15}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4e-15}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-09}, {"name": "Difenoconazole", "categories": ["air"], "amount": 2.27e-09}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2.24e-10}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 1.59e-09}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 4.71e-09}, {"name": "Difenoconazole", "categories": ["water"], "amount": 4.71e-09}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.74e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.15e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 4.03e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.8e-08}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.8e-08}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.71e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 9.13e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 6.62e-13}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 6.62e-13}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.11e-11}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 4.03e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.74e-11}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.43e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 9.68e-11}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 7.7e-12}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air"], "amount": 4e-12}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 4e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.1e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 2.44e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 6.48e-13}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 6.91e-11}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 4.29e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 3.72e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 3.72e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1.79e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1.97e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1.97e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1.97e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.28e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 1.28e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.31e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.28e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.28e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 5.94e-13}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 5.32e-11}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-11}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3.32e-11}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 7.82e-12}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 5.06e-11}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.14e-10}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 4.96e-11}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.99e-11}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-09}, {"name": "Diuron", "categories": ["air"], "amount": 1.08e-09}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 8.82e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.7e-10}, {"name": "Diuron", "categories": ["water"], "amount": 1.29e-09}, {"name": "Dodecanol", "categories": ["water"], "amount": 9.08e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.18e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.06e-12}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 4.7e-13}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2.75e-12}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2.03e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 4.15e-13}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.37e-11}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4e-10}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.45e-10}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.43e-10}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 8.35e-10}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 1.69e-09}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1.69e-09}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.88e-07}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.32e-08}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-12}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.19e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 7.4e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.59e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.59e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.86e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.86e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 6.47e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.94e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.15e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 8.08e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 8.08e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 9.46e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.36e-14}, {"name": "Ethanol", "categories": ["water"], "amount": 2.36e-14}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-12}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.72e-13}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.91e-12}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.91e-12}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 7.22e-12}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.03e-12}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 2.75e-13}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.75e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 9.26e-13}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 2.77e-13}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-12}, {"name": "Ethylamine", "categories": ["air"], "amount": 8.7e-13}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 8.7e-13}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.27e-12}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 5.04e-13}, {"name": "Ethylamine", "categories": ["water"], "amount": 5.04e-13}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.56e-12}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 1.56e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1.06e-12}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.4e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.87e-12}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 4.03e-11}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 3.79e-11}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.28e-09}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 4.39e-12}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.09e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.8200000000000003e-11}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 6.62e-11}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.48e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.36e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.33e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.38e-11}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.56e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.71e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.71e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.89e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.48e-08}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 2.28e-09}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.51e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 4.56e-08}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 1.71e-09}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71e-09}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.34e-09}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 8.13e-11}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 6.09e-10}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 2.4e-09}, {"name": "Fludioxonil", "categories": ["water"], "amount": 2.4e-09}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.31e-09}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.46e-10}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.07e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.53e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 6.08e-09}, {"name": "Fluorene", "categories": ["air"], "amount": 1.72e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 3.45e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 9.7e-11}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.42e-12}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.07e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.56e-10}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.46e-10}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.62e-12}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.62e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.09e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.48e-12}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.48e-12}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.9e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water"], "amount": 1.26e-13}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 2.49e-12}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.17e-12}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.61e-15}, {"name": "Furan", "categories": ["air"], "amount": 2.67e-15}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.67e-15}, {"name": "Furfural", "categories": ["air"], "amount": 8.15e-13}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 7.63e-13}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.82e-11}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.53e-11}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 7.63e-13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.07e-11}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.69e-12}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 8.77e-13}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 5.97e-12}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 5.97e-12}, {"name": "Glyphosate", "categories": ["water"], "amount": 5.97e-12}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 3.1e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.47e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.47e-10}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air"], "amount": 1.05e-17}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.05e-17}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 8.77e-11}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.6e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water"], "amount": 1.7e-13}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 2.54e-11}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.94e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.39e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.06e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.38e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.57e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.8e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 5.81e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.96e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 4.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 4.07e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.11e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 3.89e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 3.89e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 1.56e-14}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.98e-11}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 5.41e-11}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5.81e-11}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-11}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.85e-11}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.05e-11}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 7.98e-11}, {"name": "Imidacloprid", "categories": ["water"], "amount": 7.98e-11}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-09}, {"name": "Indoxacarb", "categories": ["air"], "amount": 2.9e-09}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 8.8e-11}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 6.91e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 3.55e-11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.08e-11}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air"], "amount": 2.94e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-17}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Isopropylamine", "categories": ["air"], "amount": 6.76e-13}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 6.76e-13}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.97e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 4.39e-13}, {"name": "Isopropylamine", "categories": ["water"], "amount": 4.39e-13}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 4.26e-11}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.87e-10}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.98e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5.81e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 1.13e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 1.13e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 1.13e-06}, {"name": "Lauric acid", "categories": ["air"], "amount": 1.94e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 2.15e-12}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 4.63e-10}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.63e-10}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-10}, {"name": "Lead II", "categories": ["air"], "amount": 3.21e-10}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 3.21e-10}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 2.5e-13}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 4.09e-13}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 4.09e-13}, {"name": "Lead II", "categories": ["soil"], "amount": 4.09e-13}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 6.23e-11}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 6.23e-11}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 6.23e-11}, {"name": "Lead II", "categories": ["water"], "amount": 6.23e-11}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.14e-12}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.37e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 8.13e-12}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.61e-12}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 4.33e-13}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.08e-12}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.08e-12}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-11}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.1e-12}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 3.49e-11}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 3.49e-11}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.15e-11}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 7.31e-13}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 7.68e-14}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.08e-10}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.94e-10}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.19e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.29e-10}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.53e-10}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.53e-10}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.36e-11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 6.97e-12}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 8.91e-13}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.33e-18}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 3.69e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-08}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-08}, {"name": "Mercury II", "categories": ["air"], "amount": 2.52e-08}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 2.52e-08}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.21e-11}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.69e-11}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.69e-11}, {"name": "Mercury II", "categories": ["soil"], "amount": 1.69e-11}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 5.4e-09}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 5.4e-09}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.44e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 5.4e-09}, {"name": "Mercury II", "categories": ["water"], "amount": 5.4e-09}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.75e-12}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 1.55e-11}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 1.29e-11}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.05e-12}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.16e-11}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 1.94e-11}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1.94e-11}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 6.97e-13}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5.6e-11}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 5.04e-13}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.9e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 6.52e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 3.23e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.56e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.55e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.55e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.27e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.23e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.23e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 8.7e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 8.7e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.87e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.86e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.86e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.67e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5.64e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5.64e-11}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 7.49e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.34e-14}, {"name": "Methanol", "categories": ["water"], "amount": 2.34e-14}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 4.81e-11}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-10}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 2.15e-11}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.19e-10}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Methomyl", "categories": ["water"], "amount": 1.96e-10}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 1.82e-11}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-09}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.34e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 9.64e-11}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.85e-10}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 2.11e-09}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.11e-09}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.9e-13}, {"name": "Methyl acetate", "categories": ["air"], "amount": 8.79e-13}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.79e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 1.67e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.04e-13}, {"name": "Methyl acetate", "categories": ["water"], "amount": 8.04e-13}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.31e-12}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 4.14e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.04e-12}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.04e-12}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.58e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 7.58e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.03e-14}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.67e-13}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.17e-13}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.17e-13}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.02e-11}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.28e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 7.29e-13}, {"name": "Methylamine", "categories": ["water"], "amount": 7.29e-13}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-10}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.4e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.28e-09}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.28e-09}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.28e-09}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.35e-10}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 8.88e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.63e-10}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-08}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 3.05e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.53e-09}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.61e-08}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 4.42e-08}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 4.42e-08}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.77e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.6e-12}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1.37e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-10}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 9.93e-11}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 9.93e-11}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 6.92e-12}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.37e-11}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.37e-11}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.37e-11}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 5.87e-11}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 5.87e-11}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.87e-10}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 5.87e-11}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.87e-11}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 7.82e-12}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 7.19e-13}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 8.98e-12}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 7.74e-12}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 8.13e-10}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.15e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.15e-11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 7.93e-12}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.23e-10}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 1.58e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-08}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-08}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1e-08}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.41e-10}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.41e-10}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.41e-10}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6e-09}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 6e-09}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.37e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6e-09}, {"name": "Nickel II", "categories": ["water"], "amount": 6e-09}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-11}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.16e-11}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 2.04e-12}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.63e-11}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.63e-11}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-11}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.24e-11}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-14}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.35e-11}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 9.69e-12}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 3.72e-13}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5.1e-11}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 7.59e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 7.89e-11}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 3.93e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.99e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.99e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.67e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.16e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.11e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.11e-10}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7.51e-14}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.59e-10}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.06e-12}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.58e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.78e-11}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-14}, {"name": "Pentane", "categories": ["air"], "amount": 1.2e-14}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.2e-14}, {"name": "Pentane", "categories": ["water"], "amount": 8.58e-12}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.92e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 3.01e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.6e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.72e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.19e-12}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84e-12}, {"name": "Phenol", "categories": ["air"], "amount": 8.91e-13}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.91e-13}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.16e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water"], "amount": 2.49e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.14e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.22e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.22e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 9.12e-10}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 4.91e-11}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.04e-10}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.17e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.26e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.05e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 4.39e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 4.39e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.97e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.59e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.4e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 3.38e-12}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 6.31e-12}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.92e-11}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.98e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.44e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 1.83e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.83e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1.76e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1.76e-09}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.13e-09}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.72e-10}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.69e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 4.1e-09}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.25e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.89e-11}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 1.75e-13}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.32e-13}, {"name": "Propanal", "categories": ["air"], "amount": 2.52e-13}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.52e-13}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 5.18e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 5.62e-13}, {"name": "Propanal", "categories": ["water"], "amount": 5.62e-13}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.26e-11}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air"], "amount": 5.95e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.95e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.99e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water"], "amount": 5.78e-14}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 8.13e-11}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 7.92e-12}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 5.08e-13}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-10}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.94e-11}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.38e-10}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.53e-10}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.53e-10}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.53e-10}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.32e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.32e-13}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-13}, {"name": "Propylamine", "categories": ["air"], "amount": 4.83e-13}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.83e-13}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.3e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Propylamine", "categories": ["water"], "amount": 2.9e-13}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 1.05e-15}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.19e-12}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.15e-12}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.15e-12}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 3.86e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.94e-12}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 4.88e-11}, {"name": "Pyrene", "categories": ["air"], "amount": 2.25e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.64e-08}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.49e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.09e-13}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.95e-11}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 3.96e-12}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.97e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.39e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.57e-10}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.45e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2.38e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2.38e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.05e-12}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 5.99e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.41e-10}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.38e-11}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 5.23e-09}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.23e-09}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-09}, {"name": "Selenium IV", "categories": ["air"], "amount": 3.66e-09}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 3.66e-09}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 6.67e-11}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.27e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.27e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.27e-10}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 2.01e-09}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 2.01e-09}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.12e-08}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 2.01e-09}, {"name": "Selenium IV", "categories": ["water"], "amount": 2.01e-09}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.56e-12}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 4.31e-11}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 2.89e-07}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.89e-07}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.89e-07}, {"name": "Silver I", "categories": ["air"], "amount": 2e-07}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 8.92e-10}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.66e-09}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.66e-09}, {"name": "Silver I", "categories": ["soil"], "amount": 1.66e-09}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 5.74e-08}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 5.74e-08}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 6.22e-07}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 5.74e-08}, {"name": "Silver I", "categories": ["water"], "amount": 5.74e-08}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-10}, {"name": "Simazine", "categories": ["air"], "amount": 3.63e-10}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.96e-11}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.88e-10}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 5.02e-10}, {"name": "Simazine", "categories": ["water"], "amount": 5.02e-10}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.03e-14}, {"name": "Sodium formate", "categories": ["air"], "amount": 2.65e-14}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 2.65e-14}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 8.56e-14}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.21e-14}, {"name": "Sodium formate", "categories": ["water"], "amount": 1.21e-14}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.34e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air"], "amount": 9.96e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.96e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.5e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.56e-13}, {"name": "Styrene", "categories": ["water"], "amount": 7.56e-13}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.09e-10}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.16e-12}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 5.56e-12}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 5.56e-12}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 5.23e-13}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.81e-12}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 3.81e-12}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.34e-10}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-10}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.6e-11}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.14e-10}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.53e-10}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-09}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 2.01e-09}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.32e-09}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.27e-09}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.27e-09}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.66e-08}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2.35e-08}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.89e-09}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 4.74e-08}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 7.77e-12}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.68e-10}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.8e-11}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.06e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.88e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.84e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.84e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.5e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.26e-11}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 8.18e-09}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.18e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.18e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 7.74e-09}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 7.74e-09}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 3.16e-09}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 6.75e-09}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 6.75e-09}, {"name": "Thallium I", "categories": ["soil"], "amount": 6.75e-09}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 8.51e-09}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 8.51e-09}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.44e-08}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 8.51e-09}, {"name": "Thallium I", "categories": ["water"], "amount": 8.51e-09}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 6.05e-11}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.05e-11}, {"name": "Thiabendazole", "categories": ["air"], "amount": 5.14e-11}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.29e-11}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.76e-11}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.76e-11}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 7.16e-12}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.72e-11}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.02e-10}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 2.26e-11}, {"name": "Thiocyanate", "categories": ["water"], "amount": 2.26e-11}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-10}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.56e-10}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.23e-10}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.96e-10}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.96e-10}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.55e-11}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 6.88e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 9.06e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.31e-10}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.31e-10}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.6e-09}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-09}, {"name": "Thiram", "categories": ["air"], "amount": 9.6e-10}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.45e-11}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.16e-10}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.73e-09}, {"name": "Thiram", "categories": ["water"], "amount": 2.73e-09}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 2.68e-09}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.68e-09}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.68e-09}, {"name": "Tin ion", "categories": ["air"], "amount": 1.85e-09}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.85e-09}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 2.77e-12}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 4.66e-12}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 4.66e-12}, {"name": "Tin ion", "categories": ["soil"], "amount": 4.66e-12}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 5.7e-10}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 5.7e-10}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 5.78e-09}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 5.7e-10}, {"name": "Tin ion", "categories": ["water"], "amount": 5.7e-10}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air"], "amount": 3.47e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.47e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 8.99e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water"], "amount": 2.9e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-13}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.27e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.27e-13}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 3.49e-11}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.94e-12}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.94e-12}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.48e-10}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.45e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.51e-11}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 2.33e-10}, {"name": "Triallate", "categories": ["air"], "amount": 1.05e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.43e-11}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.13e-10}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.66e-09}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 9.93e-09}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 9.31e-09}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.01e-09}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.42e-08}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.38e-12}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 6.82e-11}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.14e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.14e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.71e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.67e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.67e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.35e-11}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 3.54e-09}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.32e-15}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47e-07}, {"name": "Triflumuron", "categories": ["air"], "amount": 2.5e-07}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 5.36e-08}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 2.87e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 4.48e-07}, {"name": "Triflumuron", "categories": ["water"], "amount": 4.48e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.45e-11}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.03e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.84e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.84e-10}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.16e-11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.59e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water"], "amount": 7.98e-14}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 5.95e-13}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 2.29e-08}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29e-08}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-08}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.62e-08}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.62e-08}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 5.57e-10}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.05e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.05e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.05e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 2.65e-08}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 2.65e-08}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 4.77e-08}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 2.65e-08}, {"name": "Vanadium V", "categories": ["water"], "amount": 2.65e-08}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.91e-12}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air"], "amount": 1.73e-14}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.73e-14}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.78e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water"], "amount": 3.07e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.66e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.32e-09}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 1.74e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74e-08}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-08}, {"name": "Zinc II", "categories": ["air"], "amount": 1.22e-08}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1.22e-08}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.53e-10}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.5e-10}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.5e-10}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.5e-10}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 3.14e-08}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 3.14e-08}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.59e-08}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 3.14e-08}, {"name": "Zinc II", "categories": ["water"], "amount": 3.14e-08}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.9e-11}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.08e-10}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.11e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 9.34e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 9.34e-13}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.87e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.87e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.32e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.04e-12}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.22e-14}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.22e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 4.23e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.35e-14}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 4.35e-14}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-12}, {"name": "t-Butylamine", "categories": ["air"], "amount": 4.68e-12}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 4.68e-12}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 1.26e-11}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 2.8e-12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 2.8e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 6.06e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "ecotoxicity: terrestrial"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.14e-12}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.01e-11}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.07e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water"], "amount": 7.92e-12}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.74e-13}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.35e-14}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 6.16e-15}, {"name": "2,4-D", "categories": ["water"], "amount": 6.16e-15}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.1e-18}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 5.32e-20}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 3.8e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.1e-18}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 5.42e-13}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 5.42e-13}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 2.55e-12}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.75e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.1e-12}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.15e-14}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.21e-14}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.14e-13}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.9e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 8.21e-13}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 4.45e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.96e-18}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.1e-15}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.69e-12}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 7.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.84e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.27e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 2.66e-14}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.6e-15}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 9.01e-16}, {"name": "Acephate", "categories": ["water"], "amount": 9.01e-16}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.44e-13}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 3.86e-12}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.04e-11}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.72e-13}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.86e-16}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water"], "amount": 7.63e-14}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 5.07e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water"], "amount": 2.69e-13}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 6.94e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 3.48e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 4.22e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 1.78e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 1.78e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-09}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.45e-16}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water"], "amount": 4.85e-14}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.21e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.21e-10}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 9.88e-12}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.57e-11}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.84e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 8.32e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.32e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.32e-09}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 1.66e-09}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.97e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 7.19e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.3e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.35e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 4.14e-08}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 6.71e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 9.75e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.62e-11}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 4.67e-13}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water"], "amount": 7.09e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 3.97e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.28e-10}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water"], "amount": 8.11e-10}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 7.09e-06}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.09e-06}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.09e-06}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.9100000000000004e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.9100000000000004e-06}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.86e-26}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 3.65e-26}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 3.65e-26}, {"name": "Antimony ion", "categories": ["soil"], "amount": 3.65e-26}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 1.92e-25}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 1.92e-25}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 6.6e-26}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1.92e-25}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.92e-25}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.52e-06}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.52e-06}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52e-06}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.05e-06}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.05e-06}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.77e-28}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.06e-27}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.06e-27}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.06e-27}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.13e-26}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 4.13e-26}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1.63e-26}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.13e-26}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.13e-26}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.98e-13}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.59e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 1.64e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water"], "amount": 1.15e-10}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 6.3e-13}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 7.63e-16}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.98e-09}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 5.77e-16}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.64e-15}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.56e-15}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.95e-16}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.95e-16}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.73e-08}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.73e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.73e-08}, {"name": "Barium II", "categories": ["air"], "amount": 2.58e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.58e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 6.35e-28}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.36e-27}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.36e-27}, {"name": "Barium II", "categories": ["soil"], "amount": 1.36e-27}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.52e-27}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.52e-27}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.42e-28}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.52e-27}, {"name": "Barium II", "categories": ["water"], "amount": 1.52e-27}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.96e-18}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 5.88e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.19e-15}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 7.42e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.28e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.08e-13}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.08e-13}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 3.94e-09}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 2.13e-09}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 6.63e-12}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 4.87e-13}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water"], "amount": 9.79e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.05e-11}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.47e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.85e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 5.52e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.97e-10}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 8.95e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.95e-10}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 8.7e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 5.07e-12}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 5.07e-12}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 9.12e-14}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 2.15e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.06e-14}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 5.44e-13}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 5.42e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.42e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.42e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 3.75e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 3.75e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 6.2e-28}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.09e-27}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.09e-27}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.09e-27}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 7.55e-26}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 7.55e-26}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.48e-26}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 7.55e-26}, {"name": "Beryllium II", "categories": ["water"], "amount": 7.55e-26}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.14e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 3.51e-09}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 3.51e-09}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.12e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.49e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.53e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 2.59e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 9.13e-09}, {"name": "Bifenthrin", "categories": ["water"], "amount": 9.13e-09}, {"name": "Bisphenol A", "categories": ["water"], "amount": 7.3e-14}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.14e-16}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 8.57e-18}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.09e-13}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.79e-13}, {"name": "Bromopropane", "categories": ["water"], "amount": 8.91e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.31e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 3.77e-14}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 7.59e-15}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 7.59e-15}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 9.83e-12}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 1.71e-14}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water"], "amount": 2.12e-13}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 3.66e-13}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.01e-13}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water"], "amount": 4.2e-12}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.31e-08}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.43e-09}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 3.17e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.17e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 2.19e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 2.19e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 4.18e-28}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.03e-28}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.03e-28}, {"name": "Cadmium II", "categories": ["soil"], "amount": 8.03e-28}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 9.95e-27}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 9.95e-27}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.86e-26}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9.95e-27}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.95e-27}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.7e-12}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.58e-11}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.58e-11}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.48e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.57e-12}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 9.95e-13}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.75e-13}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.75e-13}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 9.72e-12}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 9.72e-12}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 8.54e-11}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.87e-08}, {"name": "Carboxin", "categories": ["air"], "amount": 3.36e-08}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 7.59e-12}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 5.26e-12}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 2.76e-12}, {"name": "Carboxin", "categories": ["water"], "amount": 2.76e-12}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.12e-17}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.81e-14}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 2.3e-09}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 2.27e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 1.4e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 1.4e-09}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 1.4e-09}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.98e-18}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water"], "amount": 3.72e-17}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 3.76e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 7.06e-12}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 1e-16}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98e-08}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 7.3e-08}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.3e-08}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 4.2e-17}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 7.75e-15}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 7.75e-15}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.5e-12}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 5.27e-12}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.76e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.89e-10}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 6.35e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 6.35e-10}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 4.71e-12}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 7.83e-11}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 7.83e-11}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.49e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.06e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.11e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.01e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1.01e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.88e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 8.96e-09}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 3.18e-08}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 3.18e-08}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.86e-09}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 8.15e-17}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 6.91e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.91e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.91e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.78e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4.78e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 2.27e-28}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.49e-28}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.49e-28}, {"name": "Chromium III", "categories": ["soil"], "amount": 4.49e-28}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.76e-27}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.76e-27}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 4.05e-27}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.76e-27}, {"name": "Chromium III", "categories": ["water"], "amount": 1.76e-27}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 2.34e-06}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.62e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.62e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 8.97e-27}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.78e-26}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.78e-26}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.78e-26}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 6.56e-26}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 6.56e-26}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 2.77e-26}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 6.56e-26}, {"name": "Chromium VI", "categories": ["water"], "amount": 6.56e-26}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.51e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 3.75e-13}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 6.75e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.75e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.75e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 4.67e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4.67e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6.92e-29}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.28e-28}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.28e-28}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.28e-28}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.61e-27}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 4.61e-27}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.14e-27}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.61e-27}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.61e-27}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 2e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.38e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.38e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.57e-27}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 2.9e-27}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 2.9e-27}, {"name": "Copper ion", "categories": ["soil"], "amount": 2.9e-27}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.15e-25}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1.15e-25}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.68e-25}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.15e-25}, {"name": "Copper ion", "categories": ["water"], "amount": 1.15e-25}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.57e-13}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water"], "amount": 5.31e-13}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 3.89e-12}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 2.31e-15}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water"], "amount": 7.36e-15}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.25e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.73e-16}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.98e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 1.55e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.7e-19}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.05e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 3.23e-08}, {"name": "Cypermethrin", "categories": ["water"], "amount": 3.23e-08}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.9e-12}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.33e-16}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.78e-10}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 5.78e-14}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-12}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1.3e-13}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 2.23e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1.68e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.57e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.22e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1.04e-22}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 8.6e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 3.11e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 3.27e-11}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.43e-14}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 7.38e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.64e-16}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.64e-16}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.21e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3e-09}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 7.92e-15}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.91e-17}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.91e-17}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 3.71e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6.94e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1.05e-11}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 6.77e-17}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 3.98e-11}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.73e-14}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.73e-14}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.22e-13}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water"], "amount": 8.74e-13}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.1e-11}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.48e-17}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.7e-15}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.7e-15}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.33e-07}, {"name": "Difenoconazole", "categories": ["air"], "amount": 1.89e-07}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 8.15e-13}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 7.46e-13}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 5.73e-13}, {"name": "Difenoconazole", "categories": ["water"], "amount": 5.73e-13}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.57e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.41e-08}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.19e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 7.89e-09}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.89e-09}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 8.45e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 7.8e-13}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 3.44e-12}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 3.44e-12}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 9.29e-11}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.15e-07}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.68e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 8.57e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.64e-12}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 1.77e-12}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 3.84e-12}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 7.98e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3e-11}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 5.16e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.16e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.16e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 4.48e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 4.48e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1.62e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1.74e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1.74e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1.74e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 6.04e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 6.04e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.19e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 6.04e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 6.04e-07}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.47e-14}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 4.83e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.94e-17}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.52e-18}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 7.52e-18}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.3e-12}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.26e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.33e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 5.23e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4.31e-11}, {"name": "Diuron", "categories": ["water"], "amount": 2.9100000000000002e-11}, {"name": "Dodecanol", "categories": ["water"], "amount": 8.69e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.45e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 7.83e-16}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.49e-19}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 5.34e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.17e-21}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.82e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.65e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.69e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 1.23e-09}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.71e-10}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.71e-10}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.29e-07}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-11}, {"name": "Ethane thiol", "categories": ["air"], "amount": 5.06e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 5.06e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.27e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 2.21e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.06e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.06e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.1e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.41e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.49e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.05e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.05e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.14e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water"], "amount": 2.99e-13}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 6.4e-17}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.88e-22}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.88e-22}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.45e-11}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 1.64e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1.73e-08}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.17e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.63e-12}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44e-09}, {"name": "Ethylamine", "categories": ["air"], "amount": 1.92e-09}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.92e-09}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 3.52e-13}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 7.3e-13}, {"name": "Ethylamine", "categories": ["water"], "amount": 7.3e-13}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 1.23e-15}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.57e-15}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 5.19e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.79e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.71e-16}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 7.57e-18}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 2.02e-12}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 7.27e-09}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 5.54e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.51e-12}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.09e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.28e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.65e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.31e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.77e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.98e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 3.06e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.65e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1.41e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.3e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.03e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.03e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.03e-08}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 1.44e-07}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 9.95e-08}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.21e-11}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 1.31e-11}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.65e-11}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.65e-11}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.08e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 4.43e-09}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.61e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.13e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 9.13e-10}, {"name": "Fluorene", "categories": ["air"], "amount": 2.07e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.37e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 2.35e-17}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.19e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.94e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.62e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 5.77e-13}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.01e-11}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 5.22e-17}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water"], "amount": 1.04e-14}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.58e-20}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 7.07e-14}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.07e-12}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.92e-14}, {"name": "Furan", "categories": ["air"], "amount": 2.79e-14}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.79e-14}, {"name": "Furfural", "categories": ["air"], "amount": 1.81e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 8.38e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.53e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.44e-21}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.99e-16}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.73e-22}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.26e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 9.11e-14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 9.11e-14}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.36e-16}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-16}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 2.92e-09}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.98e-16}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water"], "amount": 2.21e-15}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.23e-14}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.86e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.18e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.55e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 9.06e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.17e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.42e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.42e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.63e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 4.41e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 4.41e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.03e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.03e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 8.95e-15}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.49e-11}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.79e-15}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4.92e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 6.83e-17}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 7.03e-21}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.26e-21}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.26e-21}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.79e-08}, {"name": "Indoxacarb", "categories": ["air"], "amount": 6.86e-08}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 1.13e-10}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 1.14e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.44e-12}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 4.29e-16}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.29e-16}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41e-09}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1e-09}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1e-09}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Isopropylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.95e-12}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 2.28e-12}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.3e-10}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.56e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.28e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.43e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 2.13e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 2.13e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2.13e-07}, {"name": "Lauric acid", "categories": ["air"], "amount": 9.87e-12}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.76e-14}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 7.11e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-07}, {"name": "Lead II", "categories": ["air"], "amount": 4.92e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.92e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.4e-30}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.31e-30}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.31e-30}, {"name": "Lead II", "categories": ["soil"], "amount": 2.31e-30}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2.95e-28}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 2.95e-28}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.45e-28}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2.95e-28}, {"name": "Lead II", "categories": ["water"], "amount": 2.95e-28}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 4.48e-18}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5.81e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.33e-18}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.14e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 7.51e-16}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.25e-16}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.25e-16}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 6.71e-15}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.01e-14}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.01e-14}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.35e-21}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.48e-16}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.17e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 9.63e-15}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.09e-16}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.08e-16}, {"name": "Mancozeb", "categories": ["water"], "amount": 1.08e-16}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 9.9e-15}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.72e-13}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 8.33e-15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 2.1e-24}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2.3e-05}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 1.57e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.57e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 6.3e-29}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 8.84e-29}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 8.84e-29}, {"name": "Mercury II", "categories": ["soil"], "amount": 8.84e-29}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2.38e-26}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 2.38e-26}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 6.36e-26}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2.38e-26}, {"name": "Mercury II", "categories": ["water"], "amount": 2.38e-26}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 8e-09}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-09}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 5.19e-09}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.6e-11}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 9.35e-12}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 3.96e-12}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 5.19e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 3.14e-15}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 2.18e-15}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.3e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.08e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.5e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.5e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 5.61e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.14e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 4.74e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 4.74e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.69e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.19e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.61e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.61e-11}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 3.48e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water"], "amount": 4.81e-13}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.36e-10}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 4.81e-12}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.35e-12}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water"], "amount": 7.73e-13}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 6.18e-11}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-07}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.46e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6.81e-13}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.56e-13}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 5.89e-13}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 5.89e-13}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62e-11}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.6e-11}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.37e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.37e-11}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.4e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.19e-11}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.27e-13}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.16e-10}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.36e-10}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.36e-10}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.45e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.61e-10}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 8.27e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.1e-10}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.79e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.29e-10}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.66e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 9.76e-12}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.02e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 7.39e-16}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.2e-16}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2e-16}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 2.41e-08}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.41e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.41e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.66e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.66e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 3.39e-29}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 6.71e-29}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 6.71e-29}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 6.71e-29}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.53e-28}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.53e-28}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.14e-28}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.53e-28}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.53e-28}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1.6e-13}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 6.87e-14}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 2.62e-11}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 9.13e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 6.66e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.1e-11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.88e-12}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 6.91e-09}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 3.09e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.13e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 2.13e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 8.13e-28}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.54e-27}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.54e-27}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.54e-27}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.32e-26}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3.32e-26}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.16e-26}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.32e-26}, {"name": "Nickel II", "categories": ["water"], "amount": 3.32e-26}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-09}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 6.05e-09}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 8.3e-19}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 3.78e-19}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.25e-19}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.25e-19}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.39e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.69e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 5.35e-14}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 2.47e-10}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 6.63e-16}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 9.69e-15}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.94e-10}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1.52e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 1.1e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.84e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.34e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.54e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.81e-11}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.35e-19}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.15e-09}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 2.05e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 7.34e-16}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 7.89e-10}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 7.89e-10}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-13}, {"name": "Pentane", "categories": ["air"], "amount": 2.36e-13}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-13}, {"name": "Pentane", "categories": ["water"], "amount": 2.23e-13}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.32e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.57e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.22e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 6.3e-14}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water"], "amount": 1.12e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.48e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.48e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7e-08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.82e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.82e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.32e-12}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.55e-12}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.38e-10}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.1e-09}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.74e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.13e-12}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 3.24e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.87e-12}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.22e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 4.56e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 8.37e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-14}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.04e-13}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.73e-15}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 8.88e-10}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 4.31e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 5.75e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.18e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 8.81e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 8.81e-10}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 7.27e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 6.22e-10}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 7.72e-11}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.92e-08}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 4.29e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 4.49e-16}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 4.62e-17}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-11}, {"name": "Propanal", "categories": ["air"], "amount": 7.09e-12}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 7.09e-12}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 2.39e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1e-11}, {"name": "Propanal", "categories": ["water"], "amount": 1e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.86e-11}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.42e-14}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water"], "amount": 3.44e-13}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.32e-14}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.61e-11}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.31e-11}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 6.11e-12}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 2.7e-12}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.55e-12}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.19e-15}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.33e-13}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68e-10}, {"name": "Propylamine", "categories": ["air"], "amount": 5.86e-10}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 5.86e-10}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.76e-13}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 3.65e-13}, {"name": "Propylamine", "categories": ["water"], "amount": 3.65e-13}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 3.72e-14}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-11}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.36e-11}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.36e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.67e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.98e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.98e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Pyrene", "categories": ["air"], "amount": 1.38e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 2.64e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 4.89e-15}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1.36e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 7.6e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 3.04e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.06e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.06e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.09e-15}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 4.66e-10}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3.04e-10}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 1.63e-10}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.01e-14}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 1.02e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.08e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 7.08e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 3.82e-28}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 7.3e-28}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 7.3e-28}, {"name": "Selenium IV", "categories": ["soil"], "amount": 7.3e-28}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1e-26}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 1e-26}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 9.44e-27}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1e-26}, {"name": "Selenium IV", "categories": ["water"], "amount": 1e-26}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.77e-13}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.59e-13}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.00011}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00011}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011}, {"name": "Silver I", "categories": ["air"], "amount": 7.6e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7.6e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 5.28e-27}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 9.84e-27}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 9.84e-27}, {"name": "Silver I", "categories": ["soil"], "amount": 9.84e-27}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 2.91e-25}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 2.91e-25}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 5.95e-25}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 2.91e-25}, {"name": "Silver I", "categories": ["water"], "amount": 2.91e-25}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.07e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.91e-11}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.48e-11}, {"name": "Simazine", "categories": ["water"], "amount": 3.48e-11}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-10}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.76e-10}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.76e-10}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.5e-32}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 3.19e-32}, {"name": "Sodium formate", "categories": ["water"], "amount": 3.19e-32}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 8.8e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 4.77e-14}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water"], "amount": 1.58e-13}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 9.02e-14}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.43e-08}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-08}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.7e-08}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.7e-08}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 7.38e-15}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.96e-21}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.96e-21}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.68e-11}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.03e-12}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.01e-12}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water"], "amount": 9.55e-13}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 8.65e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 8.7e-11}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.36e-11}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.43e-11}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.43e-11}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-06}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.54e-06}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 9.93e-11}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 8.97e-11}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 6.71e-14}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 3.26e-09}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 5.45e-10}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.57e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-12}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 9.59e-07}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.59e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.59e-07}, {"name": "Thallium I", "categories": ["air"], "amount": 6.63e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 6.63e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.01e-26}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.17e-26}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.17e-26}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.17e-26}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.55e-26}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 2.55e-26}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 7.31e-27}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.55e-26}, {"name": "Thallium I", "categories": ["water"], "amount": 2.55e-26}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.24e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 4.04e-14}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.18e-14}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.18e-14}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 7.08e-15}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 5.59e-10}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.31e-15}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 2.43e-13}, {"name": "Thiocyanate", "categories": ["water"], "amount": 2.43e-13}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 1.11e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.34e-09}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.34e-09}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.16e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 8.34e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.68e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.22e-11}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.22e-11}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air"], "amount": 6.43e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 3.45e-12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.84e-12}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.09e-11}, {"name": "Thiram", "categories": ["water"], "amount": 2.09e-11}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 9.14e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.14e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.14e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 6.33e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 6.33e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1.56e-29}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 2.77e-27}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 2.77e-27}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 5.21e-27}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2.77e-27}, {"name": "Tin ion", "categories": ["water"], "amount": 2.77e-27}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.06e-13}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water"], "amount": 3.43e-13}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-12}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.83e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.83e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.32e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.82e-12}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.82e-12}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 9.93e-09}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2.06e-10}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.77e-14}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.19e-09}, {"name": "Triallate", "categories": ["air"], "amount": 5.36e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.14e-10}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.07e-10}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 8.53e-13}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 2.11e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.73e-06}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.55e-14}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.1e-14}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.64e-14}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.82e-13}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.03e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.02e-11}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.09e-17}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 2.05e-16}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.67e-05}, {"name": "Triflumuron", "categories": ["air"], "amount": 5.52e-05}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 9.58e-07}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 6.68e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.3e-07}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.29e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.5e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.63e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.63e-10}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.01e-15}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.13e-13}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 7.82e-18}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water"], "amount": 1.47e-16}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 2.26e-15}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 3.09e-06}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.13e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.13e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 3.26e-27}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 6.14e-27}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 6.14e-27}, {"name": "Vanadium V", "categories": ["soil"], "amount": 6.14e-27}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.35e-25}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 1.35e-25}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.88e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.35e-25}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.35e-25}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.67e-11}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 6.28e-14}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water"], "amount": 2.09e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 2.23e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.23e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.23e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 1.55e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1.55e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.38e-27}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.45e-27}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.45e-27}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.45e-27}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.47e-25}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 1.47e-25}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.64e-26}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.47e-25}, {"name": "Zinc II", "categories": ["water"], "amount": 1.47e-25}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 8.48e-10}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 9.19e-14}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.04e-13}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 2.13e-13}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water"], "amount": 7.07e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.43e-13}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.14e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 3.88e-13}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 3.88e-13}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.38e-09}, {"name": "t-Butylamine", "categories": ["air"], "amount": 6.1e-09}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 6.1e-09}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 4.62e-12}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 9.58e-12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 9.58e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2.13e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "eutrophication: freshwater"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "eutrophication: marine"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "land use"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "photochemical oxidant formation: terrestrial ecosystems"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.71e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.71e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.92e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.15e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.15e-08}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.79e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.79e-09}, {"name": "Acetone", "categories": ["air"], "amount": 4.52e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.52e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.07e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.07e-08}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.62e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.43e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.43e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.54e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air"], "amount": 3.92e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.96e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.96e-08}, {"name": "Cumene", "categories": ["air"], "amount": 2.41e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.11e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.47e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -7.54e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -7.54e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56e-08}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43e-08}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.47e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Formic acid", "categories": ["air"], "amount": 2.26e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Heptane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Hexane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-09}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 8.6e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.6e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 7.54e-10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Methanol", "categories": ["air"], "amount": 9.8e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.97e-07}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.29e-07}, {"name": "Pentane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Phenol", "categories": ["air"], "amount": -3.77e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.77e-09}, {"name": "Propanal", "categories": ["air"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanol", "categories": ["air"], "amount": 3.62e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propionic acid", "categories": ["air"], "amount": 9.8e-09}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Styrene", "categories": ["air"], "amount": 3.77e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77e-09}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.54e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Toluene", "categories": ["air"], "amount": 3.32e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48e-08}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "water use: aquatic ecosystems"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "ecosystem quality", "water use: terrestrial ecosystems"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1.35e-08}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "human health", "climate change: human health"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 9.28e-07}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 9.28e-07}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 9.28e-07}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 9.28e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 1.86e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.86e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.000277}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000277}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000277}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.000277}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.000277}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.00144}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.00144}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.000179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.000179}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.00611}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.00611}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.00087}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.00087}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000155}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 9.28e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.00892}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00892}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00892}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.00892}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.00892}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.00218}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00218}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00218}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.00218}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.00218}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 8.91e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 8.91e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.000589}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000589}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000589}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.000589}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.000589}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.0079}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0079}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0079}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.0079}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.0079}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.0115}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.00343}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.28e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.28e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.78e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.78e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.00192}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00192}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00192}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00192}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00192}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.00664}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00664}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00664}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.00664}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.00664}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.00195}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.00195}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.0143}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.02e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.02e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0107}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0107}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000166}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000758}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 3.34e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 3.16e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.39e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.39e-05}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 3.16e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.00187}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.00187}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.00682}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.00497}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.00497}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.0129}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0166}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.0088}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0242}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "human health", "human toxicity: carcinogenic"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 2.16e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-06}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 5.75e-06}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 2.16e-07}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Acephate", "categories": ["water"], "amount": 2.69e-07}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 0.000165}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.23e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 7.17e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.83e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 9.87e-05}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.13e-09}, {"name": "Aniline", "categories": ["air"], "amount": 1.07e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.07e-07}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.23e-10}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.03e-08}, {"name": "Aniline", "categories": ["water"], "amount": 8.03e-08}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.00191}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00191}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00191}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.00283}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.00283}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.000104}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 6.34e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 6.34e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 6.34e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.00114}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.00114}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 9.65e-05}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.00114}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.00114}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-05}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 9.48e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.44e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 5.11e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 5.11e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 5.11e-06}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.54e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.54e-07}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 3.56e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.24e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.17e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.24e-07}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.82e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 4.82e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.43e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.19e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.000312}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000312}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00381}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 6.63e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.63e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.63e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.000879}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.000879}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.49e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.06e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.06e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.06e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.01e-07}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 4.01e-07}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.51e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.01e-07}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.01e-07}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.76e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 4.42e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 4.42e-06}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.000209}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000209}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000209}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00077}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.00077}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.000366}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 3.79e-06}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 3.79e-06}, {"name": "Cadmium II", "categories": ["soil"], "amount": 3.79e-06}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 4.6e-06}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 4.6e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.41e-06}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 4.6e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 4.6e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 7.18e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.27e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.09e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.09e-05}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 9.73e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 4.29e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.23e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.86e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.65e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 7.03e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.2e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 3.22e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 3.22e-07}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.0854}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0854}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0854}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.0661}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.0661}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.0146}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.019}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.019}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.019}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.0247}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 0.0247}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.00219}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0247}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0247}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0008}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.64e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 9.01e-05}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.11e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.63e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 307}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 307}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 30.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 243}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 751}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.33e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 2.24e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 2.24e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.07e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.68e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.68e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 8.1e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 8.1e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.16e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 7.42e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 7.42e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 2.92e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.45e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.45e-05}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 4.32e-06}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000172}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.11e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 4.14e-05}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.08e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4.55e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.12e-09}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.000315}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.000315}, {"name": "Furfural", "categories": ["air"], "amount": 9.63e-07}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-09}, {"name": "Hexane", "categories": ["air"], "amount": 1.6e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.6e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 3.44e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 8.81e-09}, {"name": "Hexane", "categories": ["water"], "amount": 8.81e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.4e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.74e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 5.71e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 5.71e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.77e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.84e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.84e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 7.54e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 7.54e-06}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 4.26e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.26e-07}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 8.26e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26e-05}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26e-05}, {"name": "Lead II", "categories": ["air"], "amount": 6.17e-05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 6.17e-05}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.15e-06}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.81e-07}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.81e-07}, {"name": "Lead II", "categories": ["soil"], "amount": 2.81e-07}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 1.06e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 4.78e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.06e-06}, {"name": "Lead II", "categories": ["water"], "amount": 1.06e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 4.15e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.37e-07}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.000239}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000239}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000239}, {"name": "Mercury II", "categories": ["air"], "amount": 0.000231}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.000231}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 9.75e-05}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 4e-06}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 4e-06}, {"name": "Mercury II", "categories": ["soil"], "amount": 4e-06}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.00046}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.00046}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.000191}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.00046}, {"name": "Mercury II", "categories": ["water"], "amount": 0.00046}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 4.09e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 4.09e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.93e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.29e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.29e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000819}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000848}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000848}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000448}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000782}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000782}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.25e-06}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.94e-07}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.87e-07}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.87e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 5.69e-08}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.82e-07}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.82e-07}, {"name": "Naphthalene", "categories": ["air"], "amount": 7.98e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3e-06}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.00167}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00167}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00167}, {"name": "Nickel II", "categories": ["air"], "amount": 0.00124}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.00124}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.000158}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 4.08e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 4.08e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 4.08e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 7.58e-05}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 7.58e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.16e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 7.58e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 7.58e-05}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.82e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.000112}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.000112}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 2.27e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.97e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.97e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.92e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.54e-05}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.12e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.21e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.21e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.61e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.017}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.17e-05}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.94e-07}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.95e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.21e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.21e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3.16e-07}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.24e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.33e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.73e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 3.77e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.77e-06}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.04e-09}, {"name": "Toluene", "categories": ["air"], "amount": 4.44e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 4.44e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.13e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 7.51e-09}, {"name": "Toluene", "categories": ["water"], "amount": 7.51e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.08e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.35e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1.26e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.26e-05}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2e-09}, {"name": "Xylene", "categories": ["air"], "amount": 6.77e-08}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.77e-08}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 8.86e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 7.62e-09}, {"name": "Xylene", "categories": ["water"], "amount": 7.62e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.64e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 7.99e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.04e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.04e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.2e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.12e-07}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.12e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "human health", "human toxicity: non-carcinogenic"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 3.35e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0044}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.28e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 2e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.22e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.09e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.66e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.66e-07}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 7.34e-05}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.9e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.84e-06}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.42e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water"], "amount": 9.33e-07}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.00088}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.00088}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 4.45e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.16e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.000184}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.0321}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0321}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0321}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0242}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0242}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.00149}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.00111}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.00111}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.00111}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0199}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.0199}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00168}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0199}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0199}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 1.39e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air"], "amount": 0.000192}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.79e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.000103}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.000103}, {"name": "Barium II", "categories": ["soil"], "amount": 0.000103}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.65e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water"], "amount": 4.2e-05}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.08e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3.06e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.86e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 2.96e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.15e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.07e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.44e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000306}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.00627}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00627}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00627}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 5.86e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 5.22e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 5.22e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 5.22e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.02e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.02e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.4e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.02e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.02e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.27e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.76e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.66e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.48e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.64e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.63e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000449}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000449}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.52e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.52e-06}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.0114}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0114}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0114}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00816}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.00816}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.0228}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.000239}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.000239}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.000239}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00029}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 0.00029}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 8.89e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00029}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00029}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.64e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.89e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.89e-06}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.53e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.96e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 2.25e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.36e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.92e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.86e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.48e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.28e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.28e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air"], "amount": 5.43e-08}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.79e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 6.93e-10}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.99e-09}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 9.8e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.0013}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.0013}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 3.24e-06}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.31e-05}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 1.31e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.16e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.31e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.31e-05}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air"], "amount": 7.07e-06}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 7.07e-06}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 4.24e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.63e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 6.52e-07}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.75e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.92e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.92e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 6.38e-08}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 5.86e-06}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.98e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000197}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2.18e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.18e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.85e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.28e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 6.5e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.88e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.88e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.32e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.32e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.72e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1.36e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1.36e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.000126}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.000126}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.54e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.33e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 7.09e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.02e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air"], "amount": 8.09e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 8.09e-06}, {"name": "Furfural", "categories": ["air"], "amount": 3.63e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.04e-05}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00125}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.57e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 9.28e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 9.28e-06}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.00679}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00679}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00679}, {"name": "Lead II", "categories": ["air"], "amount": 0.00508}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00508}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.000239}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.33e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.33e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 2.33e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 8.71e-05}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 8.71e-05}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.94e-05}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 8.71e-05}, {"name": "Lead II", "categories": ["water"], "amount": 8.71e-05}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.000113}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.02e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.00661}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00661}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00661}, {"name": "Mercury II", "categories": ["air"], "amount": 0.00565}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.00565}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.00267}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.000111}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.000111}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.000111}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0128}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.0128}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.00531}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0128}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0128}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000349}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 3.65e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 3.65e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 7.64e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.61e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 8.41e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 8.41e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.12e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.12e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000648}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000668}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000668}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000353}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000618}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000618}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 7.59e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 7.59e-06}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.42e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.0006}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.0006}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.000301}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.2e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.95e-05}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 4.86e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.56e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.51e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.35e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 2.2e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.63e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.63e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.66e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 5.4e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 5.4e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 5.4e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1e-06}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 1e-06}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.53e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 1e-06}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.74e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 3.24e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.11e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.92e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.39e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 9.85e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.89e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000137}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 7.23e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.13e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.72e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 5.29e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 9.76e-08}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 5.15e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.78e-08}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 6.25e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 3.37e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.33e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.21e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air"], "amount": 0.0111}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0111}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0104}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.000172}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.000172}, {"name": "Silver I", "categories": ["soil"], "amount": 0.000172}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 4.58e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water"], "amount": 0.000157}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.05e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water"], "amount": 4.81e-09}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.43e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 2.71e-06}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air"], "amount": 0.00166}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.00166}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.000565}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 8.64e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water"], "amount": 0.00136}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.2e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.63e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 3.51e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.01e-05}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 3.6e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.18e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.12e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.92e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.92e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.69e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air"], "amount": 0.00016}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 0.00016}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.5e-05}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 8.57e-06}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.000138}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4.15e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.58e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0086}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 7.71e-05}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00188}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.88e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.36e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.41e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.16e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "human health", "ionising radiation"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 3.72e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 2.67e-13}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 4.1e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 2.93e-11}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 4.17e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 7.57e-12}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 4.02e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water"], "amount": 7.34e-08}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 4.95e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water"], "amount": 8.5e-08}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 2.32e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water"], "amount": 5.18e-11}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 2.08e-11}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 2.01e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.24e-08}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.44e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 3.5e-13}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water"], "amount": 2.44e-09}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 2.55e-10}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 4.79e-12}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 7.21e-14}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 7.73e-10}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 1.62e-10}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.7e-14}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 7.73e-10}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.23e-11}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 9.27e-12}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 2.01e-12}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 2.55e-10}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 3.87e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water"], "amount": 2.08e-10}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 6.72e-13}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 6.72e-13}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water"], "amount": 2.63e-10}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 7.27e-14}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "human health", "ozone depletion"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 5.84e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.84e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.84e-06}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 5.84e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 5.84e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 9.45e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 9.45e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000353}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000353}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 7.12e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 7.12e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.000143}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000143}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000143}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.000143}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.000143}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 3.56e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.56e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.56e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 3.56e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 3.56e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 5.84e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 5.84e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1.17e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.17e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.17e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.17e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 3.24e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.24e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 3.24e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 3.24e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 3.86e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 3.86e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00039}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00039}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.00466}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00466}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00466}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00466}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00466}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.00747}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00747}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00747}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.00747}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.00747}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.39e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.39e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.000312}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.000312}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.17e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.17e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000475}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000475}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.000531}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.000531}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "human health", "particulate matter formation"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.000151}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air"], "amount": 5.03e-05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.03e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.000107}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 6.92e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 6.92e-05}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000182}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000145}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "human health", "photochemical oxidant formation: human health"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.72e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.82e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.82e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air"], "amount": 1.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.98e-08}, {"name": "Acrolein", "categories": ["air"], "amount": 1.78e-07}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.78e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -6.27e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -6.27e-08}, {"name": "Benzene", "categories": ["air"], "amount": 3.3e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.52e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 2.94e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-07}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air"], "amount": 1.72e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cumene", "categories": ["air"], "amount": 1.06e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 9.24e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.52e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -3.3e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -3.3e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 6.27e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 6.27e-08}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.22e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.22e-07}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.52e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.48e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.48e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.42e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.42e-08}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.3e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Methanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.06e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.63e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.63e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 6.73e-07}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.39e-06}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 9.1e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Phenol", "categories": ["air"], "amount": -1.65e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -1.65e-08}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Styrene", "categories": ["air"], "amount": 1.65e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.3e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 9.57e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.57e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "human health", "water use: human health"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 2.22e-06}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "natural resources", "energy resources: non-renewable, fossil"], "exchanges": [{"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "natural resources", "material resources: metals/minerals"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.132}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0303}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00527}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 17.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.74}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0267}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0705}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0025}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00241}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0113}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00356}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 73.4}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0443}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000654}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 22.3}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.07}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00212}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00133}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 3.07}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.099}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0202}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00874}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 278}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.83}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.918}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "total: ecosystem quality", "ecosystem quality"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5152e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.680299999999999e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 6.158999999999999e-10}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.48373e-12}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.6652e-11}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83562e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.52564e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.3411235e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.83520616e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.83520616e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7236e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.083400011e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.492700000532001e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.492700000532001e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7236e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 5.1363e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.083400011e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.492700000532001e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.522999999999999e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.6019e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.995342e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.995342e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.80725e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.7113922e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.7113922e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.5517e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.6551e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.01482e-11}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36004267e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36004267e-08}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.2917e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.5654e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.5654e-12}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 2.9949e-09}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 2.1337e-12}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 2.7649e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.530180000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.9679973e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.9679973e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.350059938e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.55641e-11}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 1.16136e-10}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.311e-11}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.311e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.22876e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.8545e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.8545e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.320779999999999e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.87616e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.001556000000001e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.24170901e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.24170901e-10}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.1503717e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.1503717e-08}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 8.5333e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04851e-10}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05858e-11}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 4.5908e-13}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.77038805e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.183263e-10}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air"], "amount": 4.5204406e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.5204406e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.4881e-13}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.8318e-12}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.1213e-12}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.801e-12}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 5.8726e-11}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 3.8295e-10}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 3.8295e-10}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.7464e-09}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["water"], "amount": 5.3361e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37024635e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.194350000000001e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.194350000000001e-11}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.37757e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.37757e-10}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.232e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.232e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 3.6996e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.4716e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.4716e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.783900000000001e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9.863e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.630105e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.630105e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.8867e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 1.347e-09}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 4.0935e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15771e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.647e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.428e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.273e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.093999999999999e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.925140000000001e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.5279e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.3014e-09}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.82132e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.734e-11}, {"name": "Aniline", "categories": ["air"], "amount": 9.982e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 9.982e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.50817e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.4279e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.4279e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.022e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.26214e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.49851e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.49851e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.7676e-10}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 7.158199999999999e-06}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.158199999999999e-06}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.158199999999999e-06}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.979300000000001e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.979300000000001e-06}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 3.579e-08}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 7.201000000000001e-08}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 7.201000000000001e-08}, {"name": "Antimony ion", "categories": ["soil"], "amount": 7.201000000000001e-08}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.843e-07}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 2.843e-07}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.05e-07}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.843e-07}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.843e-07}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.53188e-06}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53188e-06}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53188e-06}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1.0588e-06}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1.0588e-06}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 9.82e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.843e-09}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.843e-09}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.843e-09}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 5.226000000000001e-08}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 5.226000000000001e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.23e-08}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 5.226000000000001e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 5.226000000000001e-08}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 3.17828e-10}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1346e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.0689e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.0208e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.26675e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.26675e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.26675e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.1857e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.330007629999999e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.6535e-07}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 1.39150577e-10}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.698e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.42000164e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.913800156e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.10360000695e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.10360000695e-07}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.7987e-08}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7987e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7987e-08}, {"name": "Barium II", "categories": ["air"], "amount": 2.6925e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.6925e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9.87e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 2.114e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 2.114e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 2.114e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.352e-09}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 2.352e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 5.89e-10}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.352e-09}, {"name": "Barium II", "categories": ["water"], "amount": 2.352e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.606500196e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 2.489e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14409719e-09}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 1.087e-10}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2491e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.9148e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.772679999999999e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.772679999999999e-10}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 1.148e-08}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1.12803e-06}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.563e-11}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.2778e-10}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.8389e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.178899999999999e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.053e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.312999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47005026e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47005026e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.875178e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.05076e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.05076e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6184e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.6023e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.6023e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.8812e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2148e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 3.2029e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.2029e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.377e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.715000000000001e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.994e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3.994e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.468506999999999e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.468506999999999e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.44142e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.4232e-11}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 5.1476e-12}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.4135e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.99278e-10}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 5.44603e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.44603e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.44603e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 3.76835e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 3.76835e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 5.251e-10}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 9.460999999999999e-10}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 9.460999999999999e-10}, {"name": "Beryllium II", "categories": ["soil"], "amount": 9.460999999999999e-10}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.645999999999999e-08}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 4.645999999999999e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.27e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.645999999999999e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.645999999999999e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.594e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.834e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.0444e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.523951e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.523951e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 4.794e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.587e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 3.31e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 1.511e-08}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 7.178e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.72113e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.72113e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.1461073e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.38790514e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.077300857e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 7.151109e-09}, {"name": "Bromopropane", "categories": ["air"], "amount": 1.1492e-12}, {"name": "Bromopropane", "categories": ["water"], "amount": 9.086200000000001e-11}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.465e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.907349999999999e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.24030377e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.1697000759e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.1697000759e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 5.120000000000001e-09}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.2437e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.5907e-09}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.9354e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.3043e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.29705e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.29705e-11}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 2.29266e-10}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.921400000000001e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.812e-11}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5287e-08}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 3.1259e-07}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 3.18011e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18011e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18011e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 2.19748e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 2.19748e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.957e-10}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.563e-09}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.563e-09}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.563e-09}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.376e-08}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.376e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.05e-08}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.376e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.376e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.81297e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.11696e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.5588e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.133979999999999e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.133979999999999e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19026e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.9898e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.16777e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.8453995e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2267475e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2267475e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9602e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.2783e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 2.8000765e-09}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.8000765e-09}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.6843e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.6843e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.0889e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.6612e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.6612e-10}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 2.5213e-09}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9713e-08}, {"name": "Carboxin", "categories": ["air"], "amount": 3.6626e-08}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.61089e-09}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 9.67546e-09}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.825376e-08}, {"name": "Carboxin", "categories": ["water"], "amount": 1.825376e-08}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.8809164e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.60581e-11}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9851e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 6.719e-08}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 5.1687e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 2.9548e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 2.9548e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 2.9548e-06}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.031175e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44000000198675e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.515420000372e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.9074e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.811e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.390799999999999e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.8217e-10}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 3.22681e-11}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.02712e-08}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 7.41839e-08}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.41839e-08}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 1.01000042202e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 6.28250775e-09}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 6.28250775e-09}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0443e-11}, {"name": "Chloroform", "categories": ["air"], "amount": 5.601193299999999e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.601193299999999e-08}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.10592e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.2319e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.2319e-10}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 9.1e-09}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.36e-10}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 7.039e-10}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 7.039e-10}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 2.7535e-11}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.32431e-09}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.32431e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.862e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.846e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.3288e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.323e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 5.893e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 5.893e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.97e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.588e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.28426e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.05128e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.05128e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.6864e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.6952000815e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.01023e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 6.9263e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9263e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9263e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.7933e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4.7933e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 3.2e-10}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6.5e-10}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6.5e-10}, {"name": "Chromium III", "categories": ["soil"], "amount": 6.5e-10}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.859e-09}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.859e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.15e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.859e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.859e-09}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 2.36207e-06}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.36207e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36207e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 1.6434e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 1.6434e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.284e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.615e-08}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.615e-08}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.615e-08}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 7.389999999999999e-08}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 7.389999999999999e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.38e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 7.389999999999999e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 7.389999999999999e-08}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 1.0517e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 6.9229e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 5.144300000000001e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.88435e-10}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 6.77993e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.77993e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.77993e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 4.69136e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4.69136e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1.08e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.037e-10}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.037e-10}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.037e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5.223999999999999e-09}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 5.223999999999999e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.12e-09}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5.223999999999999e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 5.223999999999999e-09}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 2.008049e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.008049e-05}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.008049e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.385711e-05}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.385711e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 2.521e-09}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.73e-09}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.73e-09}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.73e-09}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.323e-07}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1.323e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.65e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.323e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1.323e-07}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.153e-13}, {"name": "Cumene", "categories": ["air"], "amount": 2.41005783e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41005783e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.496336e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.89631e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.30289e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.6023606e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.810646e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.810646e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.6665e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.3763373e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5.07e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.0723e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.42870047e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.036e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 6.188000000000001e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.53323e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.53323e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4299e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.0219e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.16150233e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.970099999999999e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.73918e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.54408e-09}, {"name": "Decanoic acid", "categories": ["water"], "amount": 2.11462e-09}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 3.83e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 2.946e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 3.193e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.507600000000001e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.7119000000104e-11}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.5234e-10}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.1811e-08}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.753e-10}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.985034300000001e-09}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73316e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.3729e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.633600264e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.633600264e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 5.548e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3362e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.243e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.677892000000001e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.416600291e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.416600291e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.4928e-08}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.129e-09}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.1337e-08}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.29869e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 3.036e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.112350677e-10}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 7.5216e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.634e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.470005178e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.470005178e-08}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78405e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.17928e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.17928e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.635339999999999e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.23034e-10}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.745556e-11}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.125253e-11}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.125253e-11}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.8284957e-14}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.8857e-12}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.8857e-12}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4135e-07}, {"name": "Difenoconazole", "categories": ["air"], "amount": 2.0617e-07}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 7.944815e-09}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 5.6190746e-08}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 1.66710573e-07}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1.66710573e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7484e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.2825e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.4422e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.48589e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.48589e-06}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 2.096e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 9.9372e-12}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 1.37102e-10}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.37102e-10}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.594e-09}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.154663e-07}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.91574e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 4.07e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.699944e-08}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 6.2347e-10}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.025e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.025e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.48552e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.874200000000001e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.874200000000001e-10}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 8.340228e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.340228e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.340228e-07}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 8.340228e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 8.340228e-07}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.244924e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.3321e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 9.573e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.573e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.573e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 8.316e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 8.316e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 3.669e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 4.613e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 4.613e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 4.613e-07}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 1.3984e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 1.3984e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 1.43246e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 1.3984e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 1.3984e-05}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.656187e-10}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 1.09252e-08}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09252e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 6.0432e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.438200645e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.1006000494e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.371400000752e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.371400000752e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.7426e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.4012e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3505e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.5858e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.06405e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.88131e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.563191e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.57777e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.486299999999999e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.530607829999999e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21470000249e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 9.755e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3.039e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.9541500000117e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.7474e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.7474e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 7.047e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2333e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.5985e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.402999999999999e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 3.0565e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.056100000000001e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.056100000000001e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8228e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8.372e-07}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7891e-11}, {"name": "Ethane thiol", "categories": ["air"], "amount": 6.642e-12}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 6.642e-12}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.340118e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.340118e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.607199999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.392703872000001e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.392703872000001e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.99014e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 9.310999999999999e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1.5400421e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.5485e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.5485e-11}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1.8400504e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1.8400504e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2.6300718e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2.6300718e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 4.680128e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.680128e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.680128e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 4.680128e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 4.680128e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.8067055e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.8067055e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 8.6189e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.485000000000001e-11}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 2.6900736e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6900736e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6900736e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 2.6900736e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 2.6900736e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 6.570178999999999e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 2.6900734e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 2.6900734e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1.7800486e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7800486e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7800486e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.7800486e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.7800486e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 2.3800651e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3800651e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3800651e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 2.3800651e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 2.3800651e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.30259e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.483e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.483e-09}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 3.4600944e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4600944e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4600944e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 3.4600944e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 3.4600944e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1.0300282e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0300282e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0300282e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.0300282e-05}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.0300282e-05}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.1756e-13}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.6926e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.6926e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16852e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.2872064e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.29910000000288e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.29910000000288e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.7672e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 5.7903e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.50894e-08}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43055768e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43055768e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.1162e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.6307e-11}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45192e-09}, {"name": "Ethylamine", "categories": ["air"], "amount": 1.94897e-09}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.94897e-09}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.62358e-12}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1.41234e-10}, {"name": "Ethylamine", "categories": ["water"], "amount": 1.41234e-10}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.26866e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.26866e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78123343e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.9706257e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.9706257e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.713000000000001e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 5.327e-11}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 3.4403e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.547900471e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.528000000757e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 5.3141e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.4086e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.2763e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 7.01371e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.3682e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 7.599999999999999e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2464e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.539800000000001e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.956e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.7608e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.2454e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.2177e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.2177e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.8758e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 8.938000000000001e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.451e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.6259e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.6259e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.6259e-06}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 1.5126e-07}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5126e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1.1734e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 6.5634e-09}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 4.91221e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.934165e-07}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.934165e-07}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2711e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 3.3676e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.027999999999999e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 3.265e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.35993e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 4.607e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 5.0082e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 5.117e-09}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.154200235e-10}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.6626e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.16056e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.606e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.483852e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.483852e-08}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.15095e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.4358e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.4358e-10}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.900524070000001e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.943639999999999e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.314100085799999e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.955606999999999e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4224e-10}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.784e-14}, {"name": "Furan", "categories": ["air"], "amount": 3.1472e-14}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 3.1472e-14}, {"name": "Furfural", "categories": ["air"], "amount": 1.86695e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.127630000202e-10}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 8.542199999999999e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.9543e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.127630000202e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.98070000000144e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.732769e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.44877699e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.665970000000373e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.665970000000373e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.665970000000373e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8926e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.489e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.29470911e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.29470911e-08}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.640000025104e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.640000025104e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 1.05077e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.60050713e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.827221e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.0654423e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.0826e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.246e-08}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.2557e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 8.063800000000001e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 8.063800000000001e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5408e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05070137e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.809164e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.11671e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.795e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39003934e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39003934e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.126764e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.0883e-10}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.904e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 4.4138872e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 4.4138872e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.34455e-12}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.6047e-09}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 4.37410479e-09}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 6.04271e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04271e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.049849999999999e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.184000683e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.89050000000703e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.44980000000226e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.44980000000226e-09}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.541e-08}, {"name": "Indoxacarb", "categories": ["air"], "amount": 7.971e-08}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 3.081e-09}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2.4405e-08}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.275617e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.46424e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 8.600000047030001e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.600000047030001e-08}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.419524e-09}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1.026676e-09}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1.026676e-09}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 3.16725e-12}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 1.24899e-10}, {"name": "Isopropylamine", "categories": ["water"], "amount": 1.24899e-10}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.40115e-09}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 3.42488e-09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.2617e-08}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.736e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.605e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 4.164e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.4843e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.4843e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.4843e-05}, {"name": "Lauric acid", "categories": ["air"], "amount": 1.784e-11}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.0121676e-09}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 7.114746e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.114746e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.114746e-07}, {"name": "Lead II", "categories": ["air"], "amount": 4.9233058e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.9233058e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.3e-12}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 5.539000000000001e-12}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 5.539000000000001e-12}, {"name": "Lead II", "categories": ["soil"], "amount": 5.539000000000001e-12}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 4.833e-10}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 4.833e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 4.833e-10}, {"name": "Lead II", "categories": ["water"], "amount": 4.833e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.7714000448e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 8.89e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.5313000233e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.213709999999999e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.21433751e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.144080125e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.144080125e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2503e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.3310671e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.204910100000001e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.204910100000001e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.951499999999999e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.0373100000135e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.1477148e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.10228e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.27494e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.47190963e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.972900040900001e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.4653000108e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.4653000108e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.6736099e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.41742e-10}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 1.0789933e-10}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 6.303300021e-16}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2.3037833e-05}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3037833e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3037833e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 1.57259e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.57259e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.501e-10}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.159e-10}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.159e-10}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.159e-10}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 4e-08}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 4e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.44e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 4e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 4e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.8765e-10}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 8.133500000000001e-09}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.133500000000001e-09}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 5.6209e-09}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 2.5905e-10}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.40095e-09}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2.34336e-09}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2.34336e-09}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 5.67097e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.565600314e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4050618e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.552e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.885999999999999e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 9.035899999999999e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3261e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.53264e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.53264e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 5.800158e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.800158e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.800158e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 5.800158e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 5.800158e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 2.0000547e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.0000547e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0000547e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 2.0000547e-05}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 2.0000547e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5.900161000000001e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5.900161000000001e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 4.330118e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.330118e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.330118e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 4.330118e-05}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 4.330118e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.064e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.3062892e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.3062892e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 4.0236e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.231e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.231e-11}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3.2300883e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3.2300883e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 5.010137000000001e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.010137000000001e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.010137000000001e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 5.010137000000001e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 5.010137000000001e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2.2900625e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2900625e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2900625e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2.2900625e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2.2900625e-06}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.0100275e-07}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0100275e-07}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0100275e-07}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.0100275e-07}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0100275e-07}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.52026e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52026e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52026e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 9.52026e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.52026e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.723e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 4.275602029999999e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 4.275602029999999e-08}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 9.52026e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52026e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52026e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 9.52026e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 9.52026e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3968e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.650227968e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.650227968e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.04391e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.435e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.435e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 2.0600562e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.0600562e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0600562e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 2.0600562e-05}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 2.0600562e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.5000409e-05}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.5000409e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 3.880106e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.880106e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.880106e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 3.880106e-05}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 3.880106e-05}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.1144e-13}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.9244e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.9244e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.894100000000001e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 2.0765e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74674e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 6.00631e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.322135e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.479677299999999e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.479677299999999e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.479677299999999e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.38e-10}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8735e-07}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1.6234e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 7.787081e-09}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 5.5285656e-08}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 1.70110589e-07}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 1.70110589e-07}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7352e-11}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.297143e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.297143e-09}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.1759e-12}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 3.4104e-11}, {"name": "Methyl acetate", "categories": ["water"], "amount": 3.4104e-11}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.8277e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.8277e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 5.5654e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.5594e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.5594e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41003796e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41003796e-08}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.6673e-12}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.179369999999999e-10}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.416369999999999e-10}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.416369999999999e-10}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.142e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.9012e-09}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.47429e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.06189e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.06189e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.3719e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9329e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.8029e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3719e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.03409e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.03409e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.03409e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63375e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.07254e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.0387276e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26365e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.07675e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.6653000124e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.106100000739e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.56420000032e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.56420000032e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.767999999999999e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 5.336e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 2.42622e-08}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42622e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42622e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.67496e-08}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.67496e-08}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 5.922e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.207e-10}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.207e-10}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.207e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 3.437e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 3.437e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.87e-10}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 3.437e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 3.437e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17798e-09}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2.007877e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.25798e-09}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 9.4494e-10}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.3103e-08}, {"name": "Naphthalene", "categories": ["air"], "amount": 9.302e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.6425e-09}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 9.5681e-10}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.4533e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 3.10699e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.10699e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.10699e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.1425e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 2.1425e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.268e-09}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.441e-09}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.441e-09}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.441e-09}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.8e-08}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3.8e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.37e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.8e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 3.8e-08}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4485e-09}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 6.2896e-09}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1.6504000083e-10}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 8.971000003780001e-10}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.316300000125e-09}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.316300000125e-09}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitric oxide", "categories": ["air"], "amount": 3.14e-07}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7902e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.884e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 7.094000000000001e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 5.010137e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.010137e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.010137e-05}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 5.010137e-05}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 5.010137e-05}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 2.053e-07}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 3.436e-09}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.08772e-11}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.1555e-09}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 7.78690663e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.498169e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.305e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11911e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 4.179e-10}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 9.703e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.581e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.409e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.409e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.171e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.17877e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.189100000000001e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.189100000000001e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.956e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 9.015100535000001e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.0009e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.975e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.28060734e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.429e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.1088e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.24349e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.24349e-07}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8761e-13}, {"name": "Pentane", "categories": ["air"], "amount": 3.020025237e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.020025237e-08}, {"name": "Pentane", "categories": ["water"], "amount": 4.998803000000001e-09}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 2.6600726e-05}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.017e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.002e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 2.0333e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 8.117e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.0794e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.461900645e-10}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-11}, {"name": "Phenol", "categories": ["air"], "amount": -3.749579e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.749579e-09}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.167158e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.7761e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.7761e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.834e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 3.562e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 3.562e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0687e-07}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.472000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.472000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.95232e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.231355e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.757099999999999e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.6404e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 8.9875e-08}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.19505e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.0975e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.12529e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.82659e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.82659e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.15565e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 5.0829e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.402442000000001e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.68484e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.1031573e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.5872e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.2429e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.6319e-08}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 2.888e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.888e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.888e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 2.777e-09}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 2.777e-09}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 2.4957e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.0084e-08}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.317e-10}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.413e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.0294e-08}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.3839e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 2.2356e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4117449e-11}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.11750462e-11}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2712e-11}, {"name": "Propanal", "categories": ["air"], "amount": 5.4307464e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.4307464e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 7.6055e-12}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 8.1562e-11}, {"name": "Propanal", "categories": ["water"], "amount": 8.1562e-11}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.0292e-09}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air"], "amount": 3.62007158e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62007158e-08}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 2.3687e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.9418e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.561343199999999e-09}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.6402e-10}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.32608e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8246e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.36551e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.11407e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.275855e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.275855e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.275855e-08}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63119919e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09465e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09465e-10}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.742230000000001e-10}, {"name": "Propylamine", "categories": ["air"], "amount": 6.01583e-10}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 6.01583e-10}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.47729e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 8.115500000000002e-11}, {"name": "Propylamine", "categories": ["water"], "amount": 8.115500000000002e-11}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 4.9125e-13}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7158e-11}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.6519e-11}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.6519e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.679e-12}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 7.074e-11}, {"name": "Propylene oxide", "categories": ["water"], "amount": 7.074e-11}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.3538e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.9068e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 4.448e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.278e-06}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1.7413e-07}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.389e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.389e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.511389e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.0395e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.8366e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.887e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.211e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.2767e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.6849e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.9144e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.9144e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.2705209e-10}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.167e-09}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.1445e-08}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 2.8868e-09}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.85901e-11}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 1.025698e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.025698e-06}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.025698e-06}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.12337e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 7.12337e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 6.527e-10}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.277e-09}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.277e-09}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.277e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.271e-08}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 1.271e-08}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.12e-08}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.271e-08}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.271e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.904e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.88237e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.193859000000001e-09}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.0001103005}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001103005}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001103005}, {"name": "Silver I", "categories": ["air"], "amount": 7.62133e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7.62133e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 9.992000000000001e-09}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 1.906e-08}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 1.906e-08}, {"name": "Silver I", "categories": ["soil"], "amount": 1.906e-08}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 3.944e-07}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 3.944e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 6.22e-07}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 3.944e-07}, {"name": "Silver I", "categories": ["water"], "amount": 3.944e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55942e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.15613e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.0866e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.33571e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.06368e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.06368e-08}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.144413e-10}, {"name": "Sodium formate", "categories": ["air"], "amount": 1.771265e-10}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 1.771265e-10}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 8.56e-14}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 5.7221e-12}, {"name": "Sodium formate", "categories": ["water"], "amount": 5.7221e-12}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.5114e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air"], "amount": 3.77007198e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77007198e-09}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.505038e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75914e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75914e-10}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 2.52090902e-08}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.14369e-07}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 7.3002e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.3002e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3002e-05}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 7.3002e-05}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 7.3002e-05}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.068046e-08}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.5520356e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.5520356e-07}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.4553038e-10}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.06381000000196e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.06381000000196e-09}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1.003208e-07}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3431e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.28703e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.185009999999999e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.8453955e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7556e-09}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14932e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9.172099999999999e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.7515e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.593736e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.742943e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.742943e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1146e-06}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1.7225e-06}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.709199999999999e-08}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 4.898993e-07}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 1.6774897e-06}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.378371e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.4728e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.303e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.7316e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4875e-11}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.687849999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.687849999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.53667e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.7108e-10}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 9.7346e-07}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.7346e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7346e-07}, {"name": "Thallium I", "categories": ["air"], "amount": 6.852400000000001e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 6.852400000000001e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.836e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 3.985e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 3.985e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 3.985e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 4.531e-08}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 4.531e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.44e-08}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 4.531e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 4.531e-08}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1.58345e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58345e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.34304e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.138841e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.6029404e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05376318e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05376318e-08}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 8.6416708e-10}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.0562e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 1.0200131648e-10}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 6.302843e-09}, {"name": "Thiocyanate", "categories": ["water"], "amount": 6.302843e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8483e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.2836e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.6623e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.11236e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.11236e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03395e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.36888e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.4302e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.3474e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.06432e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.06432e-08}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.531e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.531e-08}, {"name": "Thiram", "categories": ["air"], "amount": 1.15e-08}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.89795e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.391784e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.277509e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.277509e-07}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 9.167724e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.167724e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.167724e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 6.349288e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 6.349288e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 3.077e-11}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 5.306e-11}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 5.306e-11}, {"name": "Tin ion", "categories": ["soil"], "amount": 5.306e-11}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 3.89e-09}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 3.89e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 5.78e-09}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 3.89e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 3.89e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.32003648e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32003648e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.099279999999999e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.7333e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.7333e-11}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.005e-12}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.764e-12}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.764e-12}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 3.62693e-11}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.4476e-10}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.4476e-10}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 3.5878e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 5.11706e-07}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2151177e-09}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.542e-09}, {"name": "Triallate", "categories": ["air"], "amount": 7.55e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.4183e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.202e-08}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.29660853e-07}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 2.17143e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.87331e-06}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.15100855e-08}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.144200041e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.7988e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.508216400000001e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19007233e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19007233e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.738967e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.1927e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.1927e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.7237e-09}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 1.9184e-07}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49109341e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.26525e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.26525e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.895e-09}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7987e-05}, {"name": "Triflumuron", "categories": ["air"], "amount": 5.869e-05}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 2.7716e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 1.0785e-05}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1.5978e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.5978e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.932e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 4.985e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.763e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.5447e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.5447e-08}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.8260301e-10}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 4.10713e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.2304e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.590078418e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.2279947e-11}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.179726e-11}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 3.11748e-06}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11748e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11748e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.15192e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.15192e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4.837000000000001e-09}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.33e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.33e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 9.33e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.505e-07}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 1.505e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 4.77e-08}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.505e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.505e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.1061e-10}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.81e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.81e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.84498e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08516e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.036e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.752e-08}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 2.25177e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.25177e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.25177e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 1.56632e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1.56632e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.213e-09}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.02e-09}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.02e-09}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.02e-09}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.774e-07}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 1.774e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.59e-08}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.774e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.774e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.44e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.7856e-08}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.119496e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.43238e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.43238e-10}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.219e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.880061599999999e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.880061599999999e-08}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.342038e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.66747e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8843e-13}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.4114e-13}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.4114e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 5.3951e-13}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 5.0815e-12}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 5.0815e-12}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.44411e-09}, {"name": "t-Butylamine", "categories": ["air"], "amount": 6.27268e-09}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 6.27268e-09}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 1.72521e-11}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 7.9038e-10}, {"name": "t-Butylamine", "categories": ["water"], "amount": 7.9038e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.781e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "total: human health", "human health"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 2.495e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00440673}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376575}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141216}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176269}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176269}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 2.36e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.28e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000114}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 0.000165}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.73e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 5.26e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 5.26e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.139e-06}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 6.92e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 6.92e-06}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.34e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 3.72e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 2.67e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 2.67e-13}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137924}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137924}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0001721}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.9e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.84e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.84e-06}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 4.63e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 4.1e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 2.93e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 2.93e-11}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air"], "amount": 0.000151}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.000151}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.943e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.317e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.317e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.543e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.0133e-06}, {"name": "Aniline", "categories": ["water"], "amount": 1.0133e-06}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00116}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.00088}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.00088}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 4.45e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.00015}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.16e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.000184}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.000184}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 4.17e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 4.17e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 7.57e-12}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.03401}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03401}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03401}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.02703}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.02703}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.001594}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0011734}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0011734}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0011734}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.02104}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.02104}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.0017765}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.02104}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.02104}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-05}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.206e-06}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 3.106e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.5e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.5e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.5e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000242}, {"name": "Barium II", "categories": ["air"], "amount": 0.000192}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.79e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 0.000103}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 0.000103}, {"name": "Barium II", "categories": ["soil"], "amount": 0.000103}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.65e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 4.2e-05}, {"name": "Barium II", "categories": ["water"], "amount": 4.2e-05}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.494e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.67e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.67e-07}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.640000000000001e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.546e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.2386e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.536e-07}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.97e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.97e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.5207e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.434e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0003369}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0003369}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.004116}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.87e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.0063363}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0063363}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0063363}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146879}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146879}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 8.35e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 7.280000000000001e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 7.280000000000001e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 7.280000000000001e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.421e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.421e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.951e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.421e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.421e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.27e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.76e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.66e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.48e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.64e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.63e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000449}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000449}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.313e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 6.234e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.234e-06}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.011609}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.011609}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011609}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00893}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.00893}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.023166}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00024279}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00024279}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.00024279}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.0002946}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 0.0002946}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 9.031000000000001e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.0002946}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.0002946}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 6.1e-09}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 4.02e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 7.34e-08}, {"name": "Caesium-134", "categories": ["water"], "amount": 7.34e-08}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.39e-08}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 4.95e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 8.5e-08}, {"name": "Caesium-137", "categories": ["water"], "amount": 8.5e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.498e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.838e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.784e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.279e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.279e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 9.28e-07}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 9.28e-07}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000188}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 9.78e-09}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 2.32e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 5.18e-11}, {"name": "Carbon-14", "categories": ["water"], "amount": 5.18e-11}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.53e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.169e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.54e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 2.776e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.776e-05}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.59e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 5.780000000000001e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.096e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.125e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.673e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9.679999999999999e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.602e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.602e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-08}, {"name": "Chromium III", "categories": ["air"], "amount": 5.43e-08}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.79e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 9.48e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 6.93e-10}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.99e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.99e-09}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.085498}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.085498}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.085498}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.0674}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.0674}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.01460324}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.01901}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.01901}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.01901}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.0247131}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 0.0247131}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.00219116}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0247131}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0247131}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 2.17e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 2.08e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 2.08e-11}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 8.5e-09}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 2.01e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.24e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.24e-08}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-06}, {"name": "Copper ion", "categories": ["air"], "amount": 7.07e-06}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 7.07e-06}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 4.24e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.21e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.63e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 6.52e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 6.52e-07}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.0008}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.02e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.75e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.92e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.92e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.748e-07}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 5.86e-06}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 4.62e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002871}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.738e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.738e-07}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-07}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.88e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.11e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.63e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.63e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.85e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.28e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.00028284}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00028284}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00028284}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.00028284}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.00028284}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 339}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 307}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 307}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 30.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 24.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 243}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 751}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 751}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.98e-05}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.32e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0014402428}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0014402428}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0002735699}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0002735699}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.72e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.41e-08}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.00511}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.215e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.89e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.89e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.00646436}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.00646436}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.52e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.00094201}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.00094201}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.000155}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.000155}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 9.388e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 9.388e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.16e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.009063000000000002}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.009063000000000002}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.009063000000000002}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.009063000000000002}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.009063000000000002}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.0022156}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0022156}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0022156}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.0022156}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.0022156}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.14e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 9.5682e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 9.5682e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.0006007}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0006007}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0006007}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0006007}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0006007}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.007932400000000001}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.007932400000000001}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007932400000000001}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.007932400000000001}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.007932400000000001}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.0001115}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0001705}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0001705}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.0115}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.0115}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.00343}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.00343}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.54e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.33e-09}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 7.81e-06}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000172}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.11e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 4.14e-05}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.1509e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.57e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.412e-09}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.00032309}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00032309}, {"name": "Furfural", "categories": ["air"], "amount": 4.593e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.04e-05}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.427e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.5e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.5e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.1144e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8881e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8881e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00125}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.4e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.4e-05}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 8.98e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 8.98e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.527e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.077e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.077e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.004e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 3.35042e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 3.35042e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 7.28e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.44e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 3.5e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 3.5e-13}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 8.93e-08}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 2.44e-09}, {"name": "Iodine-129", "categories": ["water"], "amount": 2.44e-09}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 7.73e-11}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 2.55e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 2.55e-10}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 4.79e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 4.79e-12}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 8.019999999999999e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.019999999999999e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air"], "amount": 7.21e-14}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 7.21e-14}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.0068726}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0068726}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0068726}, {"name": "Lead II", "categories": ["air"], "amount": 0.0051417}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0051417}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.00024215}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.3581e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.3581e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 2.3581e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 8.816e-05}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 8.816e-05}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.9878e-05}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 8.816e-05}, {"name": "Lead II", "categories": ["water"], "amount": 8.816e-05}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air"], "amount": 7.73e-10}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 7.73e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.0001545}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.339e-06}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1.62e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 1.62e-10}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.006849}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006849}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006849}, {"name": "Mercury II", "categories": ["air"], "amount": 0.005881}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.005881}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0027675}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.000115}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.000115}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.000115}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.01326}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.01326}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.005501}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.01326}, {"name": "Mercury II", "categories": ["water"], "amount": 0.01326}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00074178}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00074178}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.00658}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00658}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00658}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00658}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00658}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.01411}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01411}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01411}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.01411}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.01411}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 4.09e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 4.09e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.47e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0019739365}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0019739365}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.0143}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.0143}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.42399e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.42399e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.057e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.239e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.239e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.34e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0110961}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0110961}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.000166}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.000166}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000758}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000758}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air"], "amount": 3.34e-05}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 3.34e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 3.16e-05}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 3.16e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.77233e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.77233e-05}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 3.16e-05}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 3.16e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001467}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.003861}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.003861}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.0008010000000000001}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.0014}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.0014}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.00682}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.00682}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.5e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.00550859}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.00550859}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.0129}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.0129}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 7.67e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000809}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.0006}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.0006}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.000301}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 9.55e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.2e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.95e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.95e-05}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9566e-07}, {"name": "Monochloroethane", "categories": ["air"], "amount": 5.274499999999999e-07}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 5.274499999999999e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 5.7386e-08}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.8356e-07}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.8356e-07}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.049e-05}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3.235e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.001692}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001692}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001692}, {"name": "Nickel II", "categories": ["air"], "amount": 0.0012563}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.0012563}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.00015966}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 4.134e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 4.134e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 4.134e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 7.68e-05}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 7.68e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.1753e-05}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 7.68e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 7.68e-05}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air"], "amount": 5.0973e-05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.0973e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.00010839}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 5.14e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6.06e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.0166}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0166}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.011e-05}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.011e-05}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 6.7e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.7e-14}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.11e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.00011337}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.00011337}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 2.662e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.209e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.209e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.0088}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 2.905e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 2.329e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000137}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.843e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.623e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.623e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.46e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 6.9e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 6.9e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1.1176e-06}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air"], "amount": 7.73e-10}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 7.73e-10}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000389}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.000378}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.017}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.685e-05}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 9.818e-07}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.200000000000001e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.58e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 6.54e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 4.37e-07}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air"], "amount": 1.23e-11}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1.23e-11}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 8.5e-10}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 9.27e-12}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 2.01e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 2.01e-12}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0155}, {"name": "Silver I", "categories": ["air"], "amount": 0.0111}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0111}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0104}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.000172}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.000172}, {"name": "Silver I", "categories": ["soil"], "amount": 0.000172}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 4.58e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000157}, {"name": "Silver I", "categories": ["water"], "amount": 0.000157}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 2.55e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 2.55e-10}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 2.08e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 3.87e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 2.08e-10}, {"name": "Strontium-90", "categories": ["water"], "amount": 2.08e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.345e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.3781e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000182}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.0242}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.0242}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.000182}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.000145}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.000145}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1e-08}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 6.72e-13}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 2.63e-10}, {"name": "Technetium-99", "categories": ["water"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 6.72e-13}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 2.63e-10}, {"name": "Technetium-99m", "categories": ["water"], "amount": 2.63e-10}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.43e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-06}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00179}, {"name": "Thallium I", "categories": ["air"], "amount": 0.00166}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.00166}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.000565}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.00158}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 8.64e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00136}, {"name": "Thallium I", "categories": ["water"], "amount": 0.00136}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.934e-08}, {"name": "Toluene", "categories": ["air"], "amount": 3.854e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.854e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 5.33e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.381e-08}, {"name": "Toluene", "categories": ["water"], "amount": 2.381e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 3.51e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1.01e-05}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 3.6e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.85e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.688e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.47e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.18e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.18e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.69e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000212}, {"name": "Vanadium V", "categories": ["air"], "amount": 0.00016}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 0.00016}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.5e-05}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.34e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 8.57e-06}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.000138}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.000138}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air"], "amount": 2.22e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 2.22e-06}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air"], "amount": 7.27e-14}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 7.27e-14}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87e-08}, {"name": "Xylene", "categories": ["air"], "amount": 4.277e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 4.277e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 5.036e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.342e-08}, {"name": "Xylene", "categories": ["water"], "amount": 2.342e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.12e-07}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00269}, {"name": "Zinc II", "categories": ["air"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0086}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.67e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 7.71e-05}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00188}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00188}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 7.52e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.159e-06}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2843e-07}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.0806e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0806e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.341e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.1816e-07}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.1816e-07}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (H)", "total: natural resources", "natural resources"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0391}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.132}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0303}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00527}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 17.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.74}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0267}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.074}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2730}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.022}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0705}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0025}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00241}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.52}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.231}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0113}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00356}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 19.4}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 73.4}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 863}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0443}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000654}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 22.3}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 23.7}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.64}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0143}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.113}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.183}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.183}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.019}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 2.07}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.75}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.668}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.2}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 988}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00212}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0386}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2030}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00133}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 122}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1470}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 3.07}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.099}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 35.4}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 1.12}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0202}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00874}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 12.2}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.32}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 278}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.16}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.203}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.8}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.83}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.918}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air"], "amount": 1.35e-08}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1.35e-08}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0355}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "acidification: terrestrial no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.72e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.17e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.63e-08}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.38e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "climate change: freshwater ecosystems no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1.45e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.45e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 1.45e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 6.82e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 8.7e-13}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 8.7e-13}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.83e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.83e-12}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 3.83e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 3.83e-12}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 5.38e-11}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.38e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 8.38e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 8.38e-12}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 9.41e-11}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 9.41e-11}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 3.7e-11}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 3.7e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.34e-12}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.34e-12}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 7.34e-12}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 7.34e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.35e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.35e-14}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 1.12e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 1.12e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.28e-11}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.28e-11}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 7.28e-11}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 7.28e-11}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.23e-12}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.23e-12}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2.71e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2.71e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8.5e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8.5e-11}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.19e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.19e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.83e-11}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.83e-11}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 8.83e-11}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 8.83e-11}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 4.38e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 4.38e-13}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.31e-13}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.31e-13}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-11}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-11}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6.66e-11}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6.66e-11}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 1.13e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 1.13e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 7.66e-11}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 7.66e-11}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1.58e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1.58e-10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 4.79e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 4.79e-13}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1.57e-10}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1.57e-10}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.87e-12}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.87e-12}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 7.87e-12}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 7.87e-12}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 3.52e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 3.52e-11}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-12}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-12}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.23e-12}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.23e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 1.22e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.22e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 6.53e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 6.53e-13}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22e-12}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-12}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1.22e-12}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.22e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.05e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.05e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.08e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.08e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7.08e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7.08e-11}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 1.57e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 1.57e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-10}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 1.86e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.86e-10}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9.21e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-10}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 2.54e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 2.54e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "climate change: terrestrial ecosystems no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 5.32e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.32e-10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 5.32e-10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 2.5e-08}, {"name": "Chloroform", "categories": ["air"], "amount": 3.19e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.19e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-07}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.4e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.97e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.97e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 3.07e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 3.07e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.45e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 3.45e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1.36e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1.36e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.69e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.69e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.6e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.6e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 4.1e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 4.1e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.67e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.67e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.67e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.67e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.55e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.55e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.95e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.95e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 9.95e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 9.95e-07}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 3.12e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 3.12e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.37e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.37e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 4.37e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 4.37e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.24e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3.24e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3.24e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.61e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.61e-08}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 4.79e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 4.79e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.44e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2.44e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2.44e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.15e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 4.15e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 4.15e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.81e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.81e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 5.8e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 5.8e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.76e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.76e-08}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5.75e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5.75e-06}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.89e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.89e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 2.89e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 2.89e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1.29e-06}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.52e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.52e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.52e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.47e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.47e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.39e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.39e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.47e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.47e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.85e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.85e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 2.6e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 2.6e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3.67e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3.67e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 5.75e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 5.75e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 6.81e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 6.81e-06}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 3.38e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.31e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.31e-06}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 9.31e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 9.31e-06}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "ecotoxicity: freshwater no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.51e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.51e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 3.64e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 5.81e-10}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.72e-15}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 2.86e-11}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42e-10}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.51e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.32e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.82e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.82e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1e-11}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.08e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.39e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.39e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1e-11}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1.27e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.08e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.39e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.54e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.97e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.78e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.7e-15}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.73e-11}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 4.28e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 4.28e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.31e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.07e-15}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.31e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.31e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.39e-20}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.54e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.39e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.77e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-11}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.83e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.95e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.18e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.18e-10}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.92e-14}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1e-10}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.05e-18}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.18e-10}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.21e-15}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.51e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.03e-14}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 6.07e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.55e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.16e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.35e-18}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.16e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.16e-11}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1.64e-11}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1.64e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.16e-13}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.06e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-09}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 7.96e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 5.27e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.91e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36e-07}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.87e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.98e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 7.46e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.72e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.44e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.18e-09}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.75e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.32e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.47e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.32e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.32e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.37e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 9.37e-11}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.46e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-10}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-10}, {"name": "Arsenic ion", "categories": ["air"], "amount": 5.98e-10}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.98e-10}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.46e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 2.54e-10}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 2.54e-10}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 2.54e-10}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.15e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 5.8e-30}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.15e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.15e-08}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.46e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 5.95e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.25e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.19e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.63e-07}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.9e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.09e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.09e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.21e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-10}, {"name": "Barium II", "categories": ["air"], "amount": 7.54e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8.14e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.45e-30}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water"], "amount": 1.94e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.58e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.59e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14e-09}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-11}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.82e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.73e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.73e-10}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.17e-10}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.19e-14}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.03e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.2e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.77e-15}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.04e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.71e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-11}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 4.77e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.77e-11}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.06e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.33e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.33e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.41e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.34e-11}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 2.9e-15}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.98e-10}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.09e-10}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-10}, {"name": "Beryllium II", "categories": ["air"], "amount": 4.57e-10}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 4.57e-10}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.04e-11}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.17e-10}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.17e-10}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.17e-10}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.47e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.41e-30}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.47e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.47e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.53e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.92e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.47e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.47e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.62e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 3.54e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-08}, {"name": "Bifenthrin", "categories": ["air"], "amount": 2.75e-08}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.35e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.22e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.36e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.36e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.12e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.36e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.07e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 6.96e-09}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.02e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.91e-09}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.16e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.16e-07}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.16e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.53e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.32e-15}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.27e-11}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.03e-14}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.36e-11}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1e-10}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-10}, {"name": "Cadmium II", "categories": ["air"], "amount": 2.08e-10}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 2.08e-10}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.12e-10}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.02e-10}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.02e-10}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.02e-10}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.04e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 4.9e-31}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.04e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.04e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.8e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-09}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.39e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.05e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.05e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-09}, {"name": "Carbendazim", "categories": ["air"], "amount": 4.88e-09}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.15e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.83e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.19e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.19e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.92e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.84e-08}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 6.91e-14}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.42e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 4.39e-19}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.59e-11}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 6.77e-21}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.51e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.55e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.77e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 4.43e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.73e-10}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.94e-14}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.13e-10}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.84e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.1e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.68e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 4.68e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.29e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.24e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.02e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.02e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.36e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.63e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.01e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.14e-11}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14e-11}, {"name": "Chromium III", "categories": ["air"], "amount": 5.89e-11}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5.89e-11}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.33e-11}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 9.79e-11}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 9.79e-11}, {"name": "Chromium III", "categories": ["soil"], "amount": 9.79e-11}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.41e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 7.98e-32}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.41e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.41e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-09}, {"name": "Chromium VI", "categories": ["air"], "amount": 2.52e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 2.52e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 2.31e-09}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.25e-09}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.25e-09}, {"name": "Chromium VI", "categories": ["soil"], "amount": 4.25e-09}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 5.78e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.37e-29}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 5.78e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.78e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.79e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.61e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.86e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06e-11}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06e-11}, {"name": "Cobalt II", "categories": ["air"], "amount": 5.67e-11}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 5.67e-11}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.56e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.56e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.56e-11}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 3.94e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 3.09e-31}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 3.94e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 3.94e-09}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-09}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-09}, {"name": "Copper ion", "categories": ["air"], "amount": 1.42e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.42e-09}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.42e-10}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.93e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.93e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.93e-10}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 6.88e-30}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1e-07}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 6.35e-15}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.88e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.17e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 5.05e-17}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.8e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.36e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.46e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.01e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.4e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.62e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 5.71e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.37e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.37e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 8.95e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.12e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.07e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.71e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.54e-09}, {"name": "Deltamethrin", "categories": ["air"], "amount": 3.71e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 7.77e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.38e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.63e-11}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.14e-08}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-10}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.29e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.62e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 9.42e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.19e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-11}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.66e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.38e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.38e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 4.02e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.27e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.96e-10}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.1e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.09e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.09e-15}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 3.34e-15}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.21e-10}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.09e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.39e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.38e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.38e-06}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.48e-09}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.34e-09}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.96e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.69e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.76e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.53e-14}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.76e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.76e-10}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.18e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.25e-09}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-10}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.19e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.4e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.06e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.36e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.36e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.81e-09}, {"name": "Diuron", "categories": ["air"], "amount": 2.45e-08}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.06e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.84e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.55e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.56e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.45e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.49e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.82e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.77e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.95e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.25e-12}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 9.25e-12}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 5.09e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48e-09}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.61e-09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 4.58e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 2.85e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 5.83e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.83e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 6.95e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.68e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.14e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.95e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.89e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 3.85e-11}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 3.44e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.47e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.55e-15}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.37e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.27e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.28e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.28e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.59e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.13e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 7.73e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.02e-14}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.14e-11}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 5.72e-11}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 5.72e-11}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.95e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 3.44e-18}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.95e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.95e-10}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.23e-13}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 3.35e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.88e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.52e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.41e-08}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.65e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.19e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 6.99e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.22e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.03e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.48e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.44e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.57e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.21e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.11e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.11e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.77e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.99e-07}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.32e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.17e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.57e-06}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-08}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2.85e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8.5e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 6e-10}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 8.17e-12}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.95e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.86e-09}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.64e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.16e-08}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.77e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.77e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.3e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 3.25e-14}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.3e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.3e-10}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.07e-19}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.93e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.29e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.92e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.41e-10}, {"name": "Furfural", "categories": ["air"], "amount": 4.88e-12}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 4.09e-10}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.66e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1.98e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.23e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.23e-08}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air"], "amount": 4.54e-18}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 4.54e-18}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 7.53e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.12e-18}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.81e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.05e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.23e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 6.48e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.58e-11}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 6.48e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.48e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.04e-15}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.06e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.06e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 9.66e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 4.5e-15}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 9.66e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 9.66e-11}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.5e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.5e-13}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.31e-12}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.24e-09}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.12e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.83e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.36e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.36e-09}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.26e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.44e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air"], "amount": 1.19e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.19e-17}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.39e-09}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.64e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 2.85e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.32e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.32e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.32e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.27e-12}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.27e-12}, {"name": "Lead II", "categories": ["air"], "amount": 4.55e-12}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.55e-12}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.41e-13}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 6.86e-13}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 6.86e-13}, {"name": "Lead II", "categories": ["soil"], "amount": 6.86e-13}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.71e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.54e-33}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.71e-10}, {"name": "Lead II", "categories": ["water"], "amount": 3.71e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.71e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.44e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.72e-11}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.2e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.14e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.14e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28e-10}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.32e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.17e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.17e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.42e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.03e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.13e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-09}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.01e-08}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.44e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.93e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.41e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.41e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.65e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.38e-10}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4e-10}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4e-10}, {"name": "Mercury II", "categories": ["air"], "amount": 3.77e-10}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 3.77e-10}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2e-11}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.66e-11}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.66e-11}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.66e-11}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.05e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.1e-31}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.05e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 3.05e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.04e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.52e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.82e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 8.97e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.92e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.92e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.26e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.03e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.85e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3.71e-10}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.73e-15}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.42e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.74e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.95e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35e-09}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.97e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.46e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.58e-10}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 2.54e-13}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.37e-12}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.25e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.42e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.3e-15}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.03e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83e-09}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.54e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.32e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.02e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.58e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.07e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.03e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-07}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 5.37e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.63e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.09e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.52e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.52e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.69e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.25e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.71e-12}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.71e-12}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.1e-11}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.84e-11}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.84e-11}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.84e-11}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.61e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 3.7e-32}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.61e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.61e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 9.39e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.16e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.73e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.44e-10}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.44e-10}, {"name": "Nickel II", "categories": ["air"], "amount": 4.74e-10}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 4.74e-10}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.78e-10}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.17e-10}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.17e-10}, {"name": "Nickel II", "categories": ["soil"], "amount": 3.17e-10}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.9e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.98e-30}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.9e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 2.9e-08}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 9.39e-13}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.28e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.26e-09}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.48e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.09e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 2.24e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.39e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.39e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.18e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.38e-12}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.04e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.95e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.66e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.83e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.22e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.22e-07}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.23e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.53e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.99e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 9.48e-11}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.96e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.44e-10}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.73e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 8.59e-15}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.73e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.73e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 9.42e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 9.42e-11}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.67e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.67e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.32e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.32e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.85e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.15e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.16e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.32e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.22e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 3.76e-13}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.09e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.58e-13}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.81e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 2.65e-14}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 4.23e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.04e-15}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.65e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.06e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.68e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.18e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 9.21e-09}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 2.99e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 9.78e-09}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.25e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.22e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1e-09}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air"], "amount": 8.14e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 8.14e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.67e-15}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.54e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.49e-09}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.18e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.34e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.1e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.21e-08}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 9.17e-18}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09e-10}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.76e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 8.17e-10}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.26e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.5e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5.62e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.68e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 3.13e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.97e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.64e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.88e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.88e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.26e-10}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.93e-10}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93e-10}, {"name": "Selenium IV", "categories": ["air"], "amount": 1.85e-10}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.85e-10}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 9.36e-11}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.68e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.68e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.68e-10}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 9.68e-09}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 9.45e-31}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 9.68e-09}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.68e-09}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.87e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.15e-09}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.41e-09}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.41e-09}, {"name": "Silver I", "categories": ["air"], "amount": 4.48e-09}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 4.48e-09}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.36e-09}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.39e-09}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.39e-09}, {"name": "Silver I", "categories": ["soil"], "amount": 2.39e-09}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 2.99e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.13e-29}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 2.99e-07}, {"name": "Silver I", "categories": ["water"], "amount": 2.99e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-09}, {"name": "Simazine", "categories": ["air"], "amount": 8.29e-09}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.95e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.31e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4e-08}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.68e-15}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75e-10}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 9.92e-08}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 9.99e-08}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-09}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.28e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.12e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.81e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7e-09}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.35e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.05e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 2.73e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.55e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 9.74e-14}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.52e-10}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.39e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.39e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 9.68e-09}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 9.68e-09}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.09e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.16e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.16e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.16e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.65e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 2.29e-29}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.65e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 3.65e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.75e-10}, {"name": "Thiabendazole", "categories": ["air"], "amount": 9.79e-10}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.12e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.58e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.48e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28e-09}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 8.81e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.5e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.02e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-10}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.03e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.34e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.24e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air"], "amount": 4.11e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.88e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.25e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.25e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.02e-11}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.02e-11}, {"name": "Tin ion", "categories": ["air"], "amount": 3.67e-11}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 3.67e-11}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 4.11e-12}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 6.56e-12}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 6.56e-12}, {"name": "Tin ion", "categories": ["soil"], "amount": 6.56e-12}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 2.95e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.17e-31}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2.95e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 2.95e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.66e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 3.28e-15}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.66e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.66e-11}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 2.55e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.96e-07}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.21e-09}, {"name": "Triallate", "categories": ["air"], "amount": 1.14e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.16e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.04e-08}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.52e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.46e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 7.68e-15}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.18e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.68e-09}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.22e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 3.41e-20}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.22e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.22e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.38e-09}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-11}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.05e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.51e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.46e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.46e-08}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.18e-20}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.22e-11}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.15e-11}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-09}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-09}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.05e-09}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.05e-09}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 7.8e-10}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.38e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.38e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.38e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.22e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 2.24e-29}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.22e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.22e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 3.81e-10}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 2.17e-15}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.62e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-09}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-09}, {"name": "Zinc II", "categories": ["air"], "amount": 2.11e-09}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 2.11e-09}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 4.03e-10}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 6.76e-10}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 6.76e-10}, {"name": "Zinc II", "categories": ["soil"], "amount": 6.76e-10}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.71e-29}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.46e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.27e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.06e-15}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.42e-10}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 7.37e-15}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.65e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 9.12e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "ecotoxicity: marine no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 8.74e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.48e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.68e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water"], "amount": 1.32e-13}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-11}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.1e-12}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.53e-11}, {"name": "2,4-D", "categories": ["water"], "amount": 1.53e-11}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.41e-12}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 9.28e-12}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 9.28e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.41e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 6.54e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 9.28e-12}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 6.35e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.5e-11}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.5e-11}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 6.5e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.39e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.39e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 5.67e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.51e-13}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.7e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.31e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.31e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.05e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.14e-14}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.74e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.74e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.35e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.63e-13}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.12e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.12e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.63e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.23e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.63e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6.63e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.66e-12}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 7.4e-13}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.17e-12}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 5.2e-12}, {"name": "Acephate", "categories": ["water"], "amount": 5.2e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 5.39e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 5.39e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 7.51e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 9.91e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.76e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water"], "amount": 2.5e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air"], "amount": 6.27e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 6.27e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 9.38e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water"], "amount": 5.28e-14}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.07e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.51e-13}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.6e-11}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["water"], "amount": 3.4e-10}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.94e-13}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.94e-13}, {"name": "Acrylate", "categories": ["water"], "amount": 1.94e-13}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air"], "amount": 3.57e-13}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 3.57e-13}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.69e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.69e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 5.45e-12}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 2.67e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 5.45e-12}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 5.45e-12}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-10}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.06e-12}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.48e-10}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.8e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.76e-10}, {"name": "Allyl chloride", "categories": ["water"], "amount": 5.73e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.81e-07}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 5.04e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.13e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 2.8e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 1.58e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 3.05e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.41e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.81e-10}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.21e-13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.21e-13}, {"name": "Aniline", "categories": ["air"], "amount": 1.13e-13}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.13e-13}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.46e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water"], "amount": 2.7e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 4.9e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 3.05e-09}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.23e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 3.05e-09}, {"name": "Anthracene", "categories": ["water"], "amount": 3.05e-09}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 2.07e-12}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.39e-09}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.39e-09}, {"name": "Arsenic ion", "categories": ["air"], "amount": 2.35e-09}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 2.35e-09}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.8e-12}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1e-11}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1e-11}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1e-11}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 2.52e-09}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 7.55e-09}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 2.52e-09}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2.52e-09}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.29e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.44e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.57e-09}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.57e-09}, {"name": "Atrazine", "categories": ["water"], "amount": 1.57e-09}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.91e-12}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.38e-09}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.97e-11}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.36e-10}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.36e-09}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.36e-09}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-10}, {"name": "Barium II", "categories": ["air"], "amount": 1.11e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.11e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 5.14e-11}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.08e-10}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.08e-10}, {"name": "Barium II", "categories": ["soil"], "amount": 1.08e-10}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.32e-10}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.32e-10}, {"name": "Barium II", "categories": ["water"], "amount": 1.32e-10}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.65e-13}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 3.1e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 4.11e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.51e-12}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.22e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.97e-12}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.97e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.63e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.63e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.15e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.36e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water"], "amount": 5.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.73e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 3.96e-12}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.8e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.56e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.56e-11}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.56e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.94e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.94e-10}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.14e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 2.16e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.78e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.78e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.82e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.82e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 1.27e-09}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 1.27e-09}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 1.23e-13}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.51e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.38e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 7.34e-13}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.17e-09}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.17e-09}, {"name": "Beryllium II", "categories": ["air"], "amount": 4.96e-09}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 4.96e-09}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.16e-12}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.58e-12}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.58e-12}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.58e-12}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.63e-09}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.57e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.63e-09}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.63e-09}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.09e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 5.37e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4.02e-07}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4.02e-07}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 8.57e-09}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.33e-11}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.45e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.57e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.91e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2.29e-07}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2.29e-07}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.61e-10}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 7.81e-12}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 1.73e-13}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.97e-10}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.44e-10}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.64e-10}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.74e-10}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.74e-10}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.14e-11}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.84e-14}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.1e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.84e-14}, {"name": "Butanol", "categories": ["water"], "amount": 5.84e-14}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.1e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water"], "amount": 3.2e-13}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-09}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-09}, {"name": "Cadmium II", "categories": ["air"], "amount": 1.76e-09}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1.76e-09}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 2.87e-12}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 5.16e-12}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 5.16e-12}, {"name": "Cadmium II", "categories": ["soil"], "amount": 5.16e-12}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 3.99e-10}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 5.62e-09}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 3.99e-10}, {"name": "Cadmium II", "categories": ["water"], "amount": 3.99e-10}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.26e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-10}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 5.4e-11}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.77e-10}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.77e-10}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-10}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.19e-10}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.63e-11}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.54e-10}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.68e-10}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.68e-10}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.12e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.55e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.55e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.76e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.44e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.87e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.4e-13}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.76e-10}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.76e-10}, {"name": "Chloramine", "categories": ["air"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water"], "amount": 5.42e-10}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.31e-11}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.35e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.05e-10}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.13e-12}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 4.68e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.68e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 4.93e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.85e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 4.93e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 4.93e-12}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.86e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 8.25e-09}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.11e-08}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.99e-08}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1.99e-08}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.08e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.48e-08}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2.77e-07}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2.77e-07}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 5.02e-10}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 9.46e-11}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 8.43e-12}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.76e-10}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.76e-10}, {"name": "Chromium III", "categories": ["air"], "amount": 2.61e-10}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.61e-10}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.21e-12}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.22e-12}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.22e-12}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.22e-12}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 4.79e-11}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 8.22e-10}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 4.79e-11}, {"name": "Chromium III", "categories": ["water"], "amount": 4.79e-11}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.25e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.25e-09}, {"name": "Chromium VI", "categories": ["air"], "amount": 3.68e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3.68e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1e-10}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.83e-10}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.83e-10}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.83e-10}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.82e-09}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.16e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.82e-09}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.82e-09}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.31e-12}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 3.42e-12}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.07e-12}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-10}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-10}, {"name": "Cobalt II", "categories": ["air"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.67e-13}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 6.37e-13}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 6.37e-13}, {"name": "Cobalt II", "categories": ["soil"], "amount": 6.37e-13}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 1.41e-10}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.38e-09}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 1.41e-10}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.41e-10}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56e-08}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-08}, {"name": "Copper ion", "categories": ["air"], "amount": 1.08e-08}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.08e-08}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 8.13e-12}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.41e-11}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.41e-11}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.41e-11}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 3.42e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 3.42e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 3.42e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-14}, {"name": "Cumene", "categories": ["air"], "amount": 6.62e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 6.62e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.47e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water"], "amount": 1.1e-12}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.47e-10}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.9e-14}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.59e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.9e-14}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.9e-14}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.65e-13}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.44e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 5.7e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.86e-14}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.43e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 8.57e-09}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 2.13e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.21e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 1.21e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.74e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.11e-10}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.11e-12}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 5.24e-11}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.34e-13}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-11}, {"name": "Deltamethrin", "categories": ["air"], "amount": 8.94e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 8.45e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.53e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 8.17e-13}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-11}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.36e-11}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.36e-11}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 3.99e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.29e-12}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 4.73e-13}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 3.68e-12}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 3.68e-12}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.31e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.78e-10}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 8.22e-12}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 7.45e-10}, {"name": "Diethanolamine", "categories": ["water"], "amount": 2.34e-13}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.01e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.4e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.4e-15}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-12}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-12}, {"name": "Diethylamine", "categories": ["air"], "amount": 1.89e-12}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.89e-12}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.21e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.16e-12}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.66e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.03e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.98e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.63e-08}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.63e-08}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.09e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.75e-11}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.43e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 9.68e-11}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air"], "amount": 4.02e-12}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 4.02e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.1e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 2.44e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 6.49e-13}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 6.94e-11}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 5.97e-13}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-11}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3.3e-11}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 7.85e-12}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 5.09e-11}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.15e-10}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.15e-10}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 4.99e-11}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2e-11}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-09}, {"name": "Diuron", "categories": ["air"], "amount": 1.08e-09}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 8.86e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.74e-10}, {"name": "Diuron", "categories": ["water"], "amount": 1.3e-09}, {"name": "Dodecanol", "categories": ["water"], "amount": 9.08e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.18e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.07e-12}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 4.69e-13}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2.76e-12}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 4.14e-13}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.37e-11}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.25e-10}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.34e-10}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.41e-10}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 8.24e-10}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 1.67e-09}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1.67e-09}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.87e-07}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.31e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.26e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.26e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 7.39e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 7.39e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 7.39e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.6e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.6e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.87e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.95e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 6.49e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.95e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.95e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 7.2e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.08e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 7.2e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 7.2e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.35e-14}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 9.45e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.35e-14}, {"name": "Ethanol", "categories": ["water"], "amount": 2.35e-14}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-12}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.74e-13}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.91e-12}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.91e-12}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 7.25e-12}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.05e-12}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 4.95e-11}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 2.76e-13}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.76e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 9.26e-13}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 2.77e-13}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.57e-12}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 1.57e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1.06e-12}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.4e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.87e-12}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 4.01e-11}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 3.78e-11}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.25e-09}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.18e-10}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.06e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.84e-11}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 6.57e-11}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.48e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.37e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.36e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.36e-11}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.55e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.7e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.7e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.44e-08}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 2.23e-09}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.49e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 4.49e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 4.49e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 4.49e-08}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.23e-09}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.3e-10}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.07e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.52e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 6.07e-09}, {"name": "Fluorene", "categories": ["air"], "amount": 1.72e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 3.45e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 9.52e-11}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.05e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.56e-10}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.48e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.63e-12}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.63e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 2.49e-12}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.09e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.49e-12}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.49e-12}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.88e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water"], "amount": 1.26e-13}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 2.5e-12}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.18e-12}, {"name": "Furfural", "categories": ["air"], "amount": 8.18e-13}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 7.66e-13}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.53e-11}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 7.66e-13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.07e-11}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7e-12}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 8.8e-13}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 5.98e-12}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 5.98e-12}, {"name": "Glyphosate", "categories": ["water"], "amount": 5.98e-12}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.28e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 3.05e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.36e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.36e-10}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air"], "amount": 1.05e-17}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.05e-17}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 8.82e-11}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.59e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water"], "amount": 1.7e-13}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.91e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.94e-10}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.06e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.38e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.58e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.58e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.58e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.58e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 5.8e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.8e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 5.8e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 5.8e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 4e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 4e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.15e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 9.46e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.15e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.15e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.47e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.43e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.43e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 1.57e-14}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.74e-11}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.83e-11}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.13e-11}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.06e-11}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 7.99e-11}, {"name": "Imidacloprid", "categories": ["water"], "amount": 7.99e-11}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 3.56e-11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.06e-11}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air"], "amount": 2.94e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-17}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.83e-11}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.53e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5.2e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 1.01e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 1.01e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 1.01e-06}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-10}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-10}, {"name": "Lead II", "categories": ["air"], "amount": 7.72e-11}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 7.72e-11}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 8.47e-15}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 1.31e-14}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 1.31e-14}, {"name": "Lead II", "categories": ["soil"], "amount": 1.31e-14}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.06e-11}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.44e-10}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.06e-11}, {"name": "Lead II", "categories": ["water"], "amount": 1.06e-11}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.13e-12}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.32e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 8.13e-12}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.64e-12}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 4.35e-13}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.08e-12}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.08e-12}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-11}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.11e-12}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 3.5e-11}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 3.5e-11}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.16e-11}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 7.31e-13}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 7.71e-14}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.06e-10}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.95e-10}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.22e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.31e-10}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.55e-10}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.55e-10}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.4e-11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.01e-12}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.2e-09}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.2e-09}, {"name": "Mercury II", "categories": ["air"], "amount": 6.28e-09}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6.28e-09}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 4.21e-13}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 5.57e-13}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 5.57e-13}, {"name": "Mercury II", "categories": ["soil"], "amount": 5.57e-13}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 9.61e-10}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.88e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 9.61e-10}, {"name": "Mercury II", "categories": ["water"], "amount": 9.61e-10}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.76e-12}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5.62e-11}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 5.06e-13}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.89e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 6.55e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 3.24e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.48e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.48e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.49e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.49e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.22e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.22e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 8.72e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 8.72e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 8.72e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.05e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.02e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.02e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.12e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5e-11}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 2.33e-14}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 7.48e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.33e-14}, {"name": "Methanol", "categories": ["water"], "amount": 2.33e-14}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 4.83e-11}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.66e-10}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-10}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 2.16e-11}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.19e-10}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.97e-10}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.97e-10}, {"name": "Methomyl", "categories": ["water"], "amount": 1.97e-10}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 1.83e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.32e-12}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.32e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.03e-12}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 4.13e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.03e-12}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.03e-12}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.6e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 7.6e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.02e-14}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.03e-11}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 7.3e-13}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.28e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 7.3e-13}, {"name": "Methylamine", "categories": ["water"], "amount": 7.3e-13}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 1.93e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.06e-10}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 8.23e-11}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.38e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.29e-09}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.29e-09}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.29e-09}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-10}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 8.92e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.67e-10}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.13e-08}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 3.02e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.5e-09}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.61e-08}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 4.42e-08}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 4.42e-08}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.78e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.65e-12}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-11}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-11}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.98e-11}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.98e-11}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2.98e-13}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.44e-13}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.44e-13}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 5.44e-13}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.09e-11}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.74e-11}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.09e-11}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.09e-11}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 7.85e-12}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 7.19e-13}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 9.02e-12}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 8.17e-10}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.16e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.15e-11}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.24e-10}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-09}, {"name": "Nickel II", "categories": ["air"], "amount": 3.21e-09}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.21e-09}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 5.56e-12}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 9.86e-12}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 9.86e-12}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.86e-12}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.36e-09}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.03e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.36e-09}, {"name": "Nickel II", "categories": ["water"], "amount": 1.36e-09}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62e-11}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62e-11}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.24e-11}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.57e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 3.74e-13}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5.13e-11}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 7.62e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 7.36e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.96e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.96e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.7e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.12e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.16e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.12e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.12e-10}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7.49e-14}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.61e-10}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 9.96e-12}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.06e-12}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.56e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.76e-11}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.55e-09}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.55e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.91e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 3.02e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.61e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.71e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.21e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-12}, {"name": "Phenol", "categories": ["air"], "amount": 8.92e-13}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.92e-13}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.16e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water"], "amount": 2.49e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.14e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.13e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.16e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.16e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.09e-10}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.96e-10}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 4.91e-11}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.05e-10}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.78e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.17e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.26e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 4.38e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.04e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 4.38e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 4.38e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.97e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.59e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.4e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 3.38e-12}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 6.28e-12}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.94e-11}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.95e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.44e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.67e-10}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 4.07e-09}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.24e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.87e-11}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.57e-10}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.25e-11}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air"], "amount": 5.97e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.97e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.99e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water"], "amount": 5.78e-14}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 8.06e-11}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 5.1e-13}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.54e-10}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.92e-11}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.38e-10}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.54e-10}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.54e-10}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.54e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.31e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.31e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.31e-13}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 4.9e-11}, {"name": "Pyrene", "categories": ["air"], "amount": 2.26e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.64e-08}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.46e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.46e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.09e-13}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.89e-11}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 3.98e-12}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.96e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.39e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.54e-10}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.44e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2.37e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2.37e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.06e-12}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 3.81e-13}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-09}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-09}, {"name": "Selenium IV", "categories": ["air"], "amount": 1.07e-09}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.07e-09}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.95e-12}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 5.29e-12}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 5.29e-12}, {"name": "Selenium IV", "categories": ["soil"], "amount": 5.29e-12}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 4.58e-10}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 3.43e-09}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 4.58e-10}, {"name": "Selenium IV", "categories": ["water"], "amount": 4.58e-10}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.57e-12}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 4.33e-11}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.56e-08}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.56e-08}, {"name": "Silver I", "categories": ["air"], "amount": 5.23e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 5.23e-08}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 3.29e-11}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 5.77e-11}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 5.77e-11}, {"name": "Silver I", "categories": ["soil"], "amount": 5.77e-11}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.09e-08}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.67e-07}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.09e-08}, {"name": "Silver I", "categories": ["water"], "amount": 1.09e-08}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.97e-10}, {"name": "Simazine", "categories": ["air"], "amount": 3.6e-10}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.92e-11}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.88e-10}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 5.03e-10}, {"name": "Simazine", "categories": ["water"], "amount": 5.03e-10}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.25e-10}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air"], "amount": 9.97e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.97e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 7.55e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.5e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.55e-13}, {"name": "Styrene", "categories": ["water"], "amount": 7.55e-13}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.7e-10}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.35e-10}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-10}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.59e-11}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.13e-10}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.53e-10}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.16e-11}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 7.8e-12}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.75e-10}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.77e-11}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.05e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.86e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.86e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.85e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.85e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.5e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.26e-11}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 2.04e-09}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 2.04e-09}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 5.63e-10}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1.09e-09}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1.09e-09}, {"name": "Thallium I", "categories": ["soil"], "amount": 1.09e-09}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.61e-09}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 5e-09}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.61e-09}, {"name": "Thallium I", "categories": ["water"], "amount": 2.61e-09}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.08e-11}, {"name": "Thiabendazole", "categories": ["air"], "amount": 5.14e-11}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1.85e-12}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.29e-11}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.76e-11}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.76e-11}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.73e-11}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-10}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.57e-10}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.26e-10}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 9e-10}, {"name": "Thiodicarb", "categories": ["water"], "amount": 9e-10}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.53e-11}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 6.77e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.67e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 9.07e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.32e-10}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.32e-10}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-09}, {"name": "Thiram", "categories": ["air"], "amount": 9.61e-10}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.45e-11}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.16e-10}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.73e-09}, {"name": "Thiram", "categories": ["water"], "amount": 2.73e-09}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.12e-10}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.12e-10}, {"name": "Tin ion", "categories": ["air"], "amount": 4.92e-10}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 4.92e-10}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1.03e-13}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1.63e-13}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1.63e-13}, {"name": "Tin ion", "categories": ["soil"], "amount": 1.63e-13}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.1e-10}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.57e-09}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.1e-10}, {"name": "Tin ion", "categories": ["water"], "amount": 1.1e-10}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air"], "amount": 3.48e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.48e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 8.98e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water"], "amount": 2.9e-13}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.45e-10}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.34e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.5e-11}, {"name": "Triallate", "categories": ["air"], "amount": 1.06e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.41e-11}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.14e-10}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.37e-12}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 6.77e-11}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.15e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.15e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.68e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.71e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.68e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.68e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.33e-11}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.32e-15}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.39e-10}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.41e-11}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.02e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.83e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.83e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.59e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water"], "amount": 7.98e-14}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 5.98e-13}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.45e-09}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.45e-09}, {"name": "Vanadium V", "categories": ["air"], "amount": 5.16e-09}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 5.16e-09}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 3.27e-11}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 5.78e-11}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 5.78e-11}, {"name": "Vanadium V", "categories": ["soil"], "amount": 5.78e-11}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 7.96e-09}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.65e-08}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 7.96e-09}, {"name": "Vanadium V", "categories": ["water"], "amount": 7.96e-09}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.88e-12}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air"], "amount": 1.74e-14}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.74e-14}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.77e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water"], "amount": 3.07e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.43e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 8.57e-09}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.73e-09}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.73e-09}, {"name": "Zinc II", "categories": ["air"], "amount": 2.59e-09}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 2.59e-09}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.45e-11}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.42e-11}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.42e-11}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.42e-11}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 7.47e-09}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 8.59e-09}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 7.47e-09}, {"name": "Zinc II", "categories": ["water"], "amount": 7.47e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.91e-11}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.1e-10}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 9.33e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.11e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 9.33e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 9.33e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.81e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.81e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.31e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.04e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 4.78e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "ecotoxicity: terrestrial no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.14e-12}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.01e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.07e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water"], "amount": 7.92e-12}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.74e-13}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.35e-14}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 6.16e-15}, {"name": "2,4-D", "categories": ["water"], "amount": 6.16e-15}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.25e-18}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 5.32e-20}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 3.8e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.25e-18}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 5.42e-13}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 5.42e-13}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 2.55e-12}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.75e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.1e-12}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.15e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.21e-14}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.14e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.96e-18}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.1e-15}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 7.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.84e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.27e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 2.66e-14}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.6e-15}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 9.01e-16}, {"name": "Acephate", "categories": ["water"], "amount": 9.01e-16}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.44e-13}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 3.86e-12}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.86e-16}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water"], "amount": 7.63e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 5.07e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water"], "amount": 2.69e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 6.94e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 3.48e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-09}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.45e-16}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water"], "amount": 4.85e-14}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.21e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.21e-10}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 9.88e-12}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.57e-11}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.84e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 8.32e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.32e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.32e-09}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 1.66e-09}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.97e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 7.17e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.31e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 3.94e-08}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 6.71e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 9.75e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.61e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 4.67e-13}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water"], "amount": 7.09e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 3.97e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.28e-10}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water"], "amount": 8.11e-10}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.63e-07}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.63e-07}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.58e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 4.58e-07}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 2.6e-29}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 4.48e-29}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 4.48e-29}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 4.48e-29}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.28e-26}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 4.63e-27}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.28e-26}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.28e-26}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.59e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 1.64e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water"], "amount": 1.15e-10}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 6.3e-13}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 7.54e-16}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.98e-09}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.64e-15}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.56e-15}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.94e-16}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.94e-16}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-08}, {"name": "Barium II", "categories": ["air"], "amount": 1.13e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.13e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 2.06e-28}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 4.32e-28}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 4.32e-28}, {"name": "Barium II", "categories": ["soil"], "amount": 4.32e-28}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 5.46e-28}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.03e-28}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 5.46e-28}, {"name": "Barium II", "categories": ["water"], "amount": 5.46e-28}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.96e-18}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 5.88e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.19e-15}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.28e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.08e-13}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.08e-13}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 6.63e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 4.87e-13}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water"], "amount": 9.79e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.05e-11}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.47e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.85e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 5.52e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.91e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.91e-10}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 8.89e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.89e-10}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 8.64e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 5.05e-12}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 5.05e-12}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 9.12e-14}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.06e-14}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 5.44e-13}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.37e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.37e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.64e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.64e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.39e-29}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.97e-29}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.97e-29}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.97e-29}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.97e-26}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.93e-26}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.97e-26}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.97e-26}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.08e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.11e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 3.33e-09}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.9e-09}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.12e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.49e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.56e-09}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.56e-09}, {"name": "Bisphenol A", "categories": ["water"], "amount": 7.3e-14}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.14e-16}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 8.57e-18}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.07e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.31e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 3.77e-14}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 7.59e-15}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 7.59e-15}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 1.71e-14}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water"], "amount": 2.12e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.01e-13}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water"], "amount": 4.2e-12}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 9.6e-07}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 9.6e-07}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.65e-29}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.96e-29}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.96e-29}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.96e-29}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2.52e-27}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.08e-27}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2.52e-27}, {"name": "Cadmium II", "categories": ["water"], "amount": 2.52e-27}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.7e-12}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.58e-11}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.58e-11}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.48e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.57e-12}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 9.95e-13}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.75e-13}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.75e-13}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 9.71e-12}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 9.71e-12}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 9.71e-12}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.12e-17}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.81e-14}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.98e-18}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water"], "amount": 3.72e-17}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 3.76e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 7.06e-12}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.5e-12}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 5.27e-12}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.49e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.06e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.11e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.88e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 8.95e-09}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 3.18e-08}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 3.18e-08}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.86e-09}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 8.15e-17}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 2.1e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.1e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.02e-29}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.86e-29}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.86e-29}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.86e-29}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 4.39e-28}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.91e-28}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 4.39e-28}, {"name": "Chromium III", "categories": ["water"], "amount": 4.39e-28}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.09e-07}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.09e-07}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 4.66e-28}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 8.52e-28}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 8.52e-28}, {"name": "Chromium VI", "categories": ["soil"], "amount": 8.52e-28}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2e-26}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 8e-27}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2e-26}, {"name": "Chromium VI", "categories": ["water"], "amount": 2e-26}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.51e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 3.75e-13}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 2.05e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2.05e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.69e-30}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 4.66e-30}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 4.66e-30}, {"name": "Cobalt II", "categories": ["soil"], "amount": 4.66e-30}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 1.21e-27}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.2e-27}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 1.21e-27}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.21e-27}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.73e-06}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.73e-06}, {"name": "Copper ion", "categories": ["air"], "amount": 6.04e-06}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 6.04e-06}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 6.1e-29}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.05e-28}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.05e-28}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.05e-28}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.98e-26}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.1e-26}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.98e-26}, {"name": "Copper ion", "categories": ["water"], "amount": 2.98e-26}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.57e-13}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water"], "amount": 5.31e-13}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 3.84e-12}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 2.31e-15}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water"], "amount": 7.36e-15}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.73e-16}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.94e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 1.55e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.7e-19}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.9e-09}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.02e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 3.08e-08}, {"name": "Cypermethrin", "categories": ["water"], "amount": 3.08e-08}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.9e-12}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.33e-16}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.78e-10}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 5.78e-14}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-12}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1.68e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.57e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.22e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1.04e-22}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 3.11e-10}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 7.38e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.64e-16}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.64e-16}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.21e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3e-09}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 7.92e-15}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.91e-17}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.91e-17}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6.85e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1.05e-11}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.7e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 6.77e-17}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.73e-14}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.73e-14}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.22e-13}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water"], "amount": 8.74e-13}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.17e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 7.85e-09}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.85e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 9.29e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.68e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 8.57e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.64e-12}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 3.84e-12}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 7.98e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3e-11}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.47e-14}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 4.83e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.94e-17}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.52e-18}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 7.52e-18}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.3e-12}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.26e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.33e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 5.23e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4.31e-11}, {"name": "Diuron", "categories": ["water"], "amount": 2.9100000000000002e-11}, {"name": "Dodecanol", "categories": ["water"], "amount": 8.69e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.45e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 7.83e-16}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.49e-19}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 5.34e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.17e-21}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.82e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.64e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.66e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 1.22e-09}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.69e-10}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.69e-10}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.29e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 2.2e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.27e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 2.2e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 2.2e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.06e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.06e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.1e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.41e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.41e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.96e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.14e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water"], "amount": 2.99e-13}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 6.4e-17}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.88e-22}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.88e-22}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.45e-11}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 1.64e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1.73e-08}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.17e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.63e-12}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 1.23e-15}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.57e-15}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 5.19e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.79e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.71e-16}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 7.41e-18}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 7.27e-09}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 5.54e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.51e-12}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.09e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.28e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.65e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.31e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.77e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.98e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 3.06e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.65e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.29e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.02e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.02e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.02e-08}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 4.37e-09}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.61e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.13e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 9.13e-10}, {"name": "Fluorene", "categories": ["air"], "amount": 2.07e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.37e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.14e-09}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.19e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.94e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.62e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 5.77e-13}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.01e-11}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 5.22e-17}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water"], "amount": 1.04e-14}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.58e-20}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 7.07e-14}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.07e-12}, {"name": "Furfural", "categories": ["air"], "amount": 1.81e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.53e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.44e-21}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.99e-16}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.73e-22}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.77e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.26e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 9.09e-14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 9.09e-14}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.36e-16}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-16}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 2.92e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.98e-16}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water"], "amount": 2.21e-15}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.23e-14}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.73e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.18e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.55e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 9.06e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.09e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.37e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.37e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 4.33e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.58e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 4.33e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 4.33e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.98e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.98e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.95e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.95e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 8.95e-15}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4.92e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 6.83e-17}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 7.03e-21}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.26e-21}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.26e-21}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.44e-12}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 4.29e-16}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.29e-16}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.95e-12}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.55e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.14e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.28e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 2.01e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 2.01e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2.01e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11e-07}, {"name": "Lead II", "categories": ["air"], "amount": 2.15e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.15e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 5.2e-32}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.05e-32}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.05e-32}, {"name": "Lead II", "categories": ["soil"], "amount": 8.05e-32}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 7.18e-29}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.15e-28}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 7.18e-29}, {"name": "Lead II", "categories": ["water"], "amount": 7.18e-29}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 4.48e-18}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5.81e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.33e-18}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.14e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 7.51e-16}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.25e-16}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.25e-16}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 6.71e-15}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.01e-14}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.01e-14}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.35e-21}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.48e-16}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.17e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 9.63e-15}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.09e-16}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.08e-16}, {"name": "Mancozeb", "categories": ["water"], "amount": 1.08e-16}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 9.9e-15}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.72e-13}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 6.85e-06}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6.85e-06}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.3e-30}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 3.04e-30}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 3.04e-30}, {"name": "Mercury II", "categories": ["soil"], "amount": 3.04e-30}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 5.84e-27}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 8.49e-27}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 5.84e-27}, {"name": "Mercury II", "categories": ["water"], "amount": 5.84e-27}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 3.14e-15}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 2.18e-15}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.3e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.08e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.5e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.5e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 5.61e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.14e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.48e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 8.37e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.48e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.48e-11}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 3.48e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water"], "amount": 4.81e-13}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.36e-10}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 4.81e-12}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.35e-12}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water"], "amount": 7.73e-13}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 6.18e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.4e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.19e-11}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.27e-13}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.45e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.61e-10}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 8.27e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.1e-10}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.79e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.29e-10}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.66e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 9.76e-12}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.02e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 7.39e-16}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.2e-16}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2e-16}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 7.28e-09}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 7.28e-09}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.61e-30}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.93e-30}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.93e-30}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.93e-30}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 6.93e-29}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 5.11e-29}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 6.93e-29}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 6.93e-29}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1.6e-13}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 6.87e-14}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 9.13e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 6.66e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.1e-11}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 6.91e-09}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 9.36e-07}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9.36e-07}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.31e-29}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 5.85e-29}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 5.85e-29}, {"name": "Nickel II", "categories": ["soil"], "amount": 5.85e-29}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 9.01e-27}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.89e-27}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 9.01e-27}, {"name": "Nickel II", "categories": ["water"], "amount": 9.01e-27}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.39e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.69e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 9.69e-15}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.94e-10}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1.52e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 1.08e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.34e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.54e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.81e-11}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.35e-19}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.15e-09}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 2.05e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 7.34e-16}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 7.89e-10}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 7.89e-10}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.32e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.57e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.22e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.41e-17}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 6.3e-14}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water"], "amount": 1.12e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.48e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.48e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.67e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.67e-08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.79e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.79e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.3e-12}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.53e-12}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.38e-10}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.1e-09}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.74e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.13e-12}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 3.24e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.87e-12}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.22e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 4.56e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 8.37e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-14}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.04e-13}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.73e-15}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 8.88e-10}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 4.31e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 5.75e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 6.12e-10}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.92e-08}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 4.29e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 4.49e-16}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.86e-11}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.42e-14}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water"], "amount": 3.44e-13}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.32e-14}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.31e-11}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 6.11e-12}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 2.7e-12}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.55e-12}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.19e-15}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.33e-13}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Pyrene", "categories": ["air"], "amount": 1.38e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 4.89e-15}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1.36e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 7.6e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 3.04e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.06e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.06e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.09e-15}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.01e-14}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.48e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 3.1e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 3.1e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.57e-29}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 2.83e-29}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 2.83e-29}, {"name": "Selenium IV", "categories": ["soil"], "amount": 2.83e-29}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 2.72e-27}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 2.07e-27}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 2.72e-27}, {"name": "Selenium IV", "categories": ["water"], "amount": 2.72e-27}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.77e-13}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.59e-13}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.81e-05}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.81e-05}, {"name": "Silver I", "categories": ["air"], "amount": 3.33e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 3.33e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 2.02e-28}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 3.52e-28}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 3.52e-28}, {"name": "Silver I", "categories": ["soil"], "amount": 3.52e-28}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 7.32e-26}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 9.31e-26}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 7.32e-26}, {"name": "Silver I", "categories": ["water"], "amount": 7.32e-26}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.07e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.91e-11}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.48e-11}, {"name": "Simazine", "categories": ["water"], "amount": 3.48e-11}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 8.76e-10}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 4.77e-14}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water"], "amount": 1.58e-13}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.43e-08}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.68e-11}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.03e-12}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.01e-12}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water"], "amount": 9.55e-13}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 6.71e-14}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 3.26e-09}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 5.45e-10}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.57e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-12}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2e-07}, {"name": "Thallium I", "categories": ["air"], "amount": 2.91e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 2.91e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.7e-27}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 3.27e-27}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 3.27e-27}, {"name": "Thallium I", "categories": ["soil"], "amount": 3.27e-27}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 8.58e-27}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 2.21e-27}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 8.58e-27}, {"name": "Thallium I", "categories": ["water"], "amount": 8.58e-27}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.24e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 4.04e-14}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.18e-14}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.18e-14}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 5.59e-10}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 1.11e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.34e-09}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.34e-09}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.16e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 8.34e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.68e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.22e-11}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.22e-11}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air"], "amount": 6.43e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 3.45e-12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.84e-12}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.09e-11}, {"name": "Thiram", "categories": ["water"], "amount": 2.09e-11}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 2.77e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 2.77e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 5.92e-31}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 7.01e-28}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 8.49e-28}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 7.01e-28}, {"name": "Tin ion", "categories": ["water"], "amount": 7.01e-28}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.06e-13}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water"], "amount": 3.43e-13}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 9.93e-09}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2.02e-10}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.77e-14}, {"name": "Triallate", "categories": ["air"], "amount": 5.36e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.14e-10}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.07e-10}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.64e-14}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.82e-13}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.03e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.02e-11}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.09e-17}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 2.05e-16}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.88e-10}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.29e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.5e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.63e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.63e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 7.82e-18}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water"], "amount": 1.47e-16}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 2.26e-15}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.62e-28}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2.85e-28}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2.85e-28}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2.85e-28}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 4.48e-26}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.15e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 4.48e-26}, {"name": "Vanadium V", "categories": ["water"], "amount": 4.48e-26}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.67e-11}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 6.28e-14}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water"], "amount": 2.09e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.9e-09}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8e-07}, {"name": "Zinc II", "categories": ["air"], "amount": 6.78e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 6.78e-07}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 8.39e-29}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4e-28}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4e-28}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.4e-28}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 5.72e-26}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 8.11e-27}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 5.72e-26}, {"name": "Zinc II", "categories": ["water"], "amount": 5.72e-26}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 8.48e-10}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 9.19e-14}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.04e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 2.13e-13}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water"], "amount": 7.07e-13}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2.09e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "eutrophication: freshwater no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "eutrophication: marine no LT"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "land use no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "photochemical oxidant formation: terrestrial ecosystems no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.71e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.71e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.92e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.15e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.15e-08}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.79e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.79e-09}, {"name": "Acetone", "categories": ["air"], "amount": 4.52e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.52e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.07e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.07e-08}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.62e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.43e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.43e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.54e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air"], "amount": 3.92e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.96e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.96e-08}, {"name": "Cumene", "categories": ["air"], "amount": 2.41e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.11e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.47e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -7.54e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -7.54e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56e-08}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.47e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Formic acid", "categories": ["air"], "amount": 2.26e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Heptane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Hexane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-09}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 8.6e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.6e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 7.54e-10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Methanol", "categories": ["air"], "amount": 9.8e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.97e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.29e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Phenol", "categories": ["air"], "amount": -3.77e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.77e-09}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanol", "categories": ["air"], "amount": 3.62e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propionic acid", "categories": ["air"], "amount": 9.8e-09}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Styrene", "categories": ["air"], "amount": 3.77e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77e-09}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.54e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Toluene", "categories": ["air"], "amount": 3.32e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48e-08}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "ecosystem quality no LT", "water use: aquatic ecosystems no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "human health no LT", "climate change: human health no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 8.12e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 1.25e-05}, {"name": "Chloroform", "categories": ["air"], "amount": 4.87e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.87e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-05}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.14e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.14e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.000301}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.000301}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.69e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.69e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000527}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000527}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.000207}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.000207}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 4.11e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.44e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.44e-07}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000626}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000626}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.000626}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.000626}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000408}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000408}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.000408}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.000408}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 2.37e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 2.37e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000152}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000152}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.000152}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.000152}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000476}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000476}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.000476}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.000476}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.000667}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.000495}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.45e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.45e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 7.31e-07}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 7.31e-07}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000373}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000373}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.000373}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.000373}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000633}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000633}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.000633}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.000633}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.000429}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.000429}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.000885}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.68e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.68e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.000877}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.000877}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 4.41e-05}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000197}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.9e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 6.82e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.65e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.65e-06}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 6.82e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000283}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000283}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.000396}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.00056}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.00056}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.000877}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00104}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.000516}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00142}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "human health no LT", "human toxicity: carcinogenic no LT"], "exchanges": [{"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.00156}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.00156}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 4.18e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 4.37e-06}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 4.37e-06}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 4.37e-06}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.84e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1e-24}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.84e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 3.84e-05}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.24e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.17e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.42e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.19e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.000311}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000311}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00381}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.000859}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.000859}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.91e-08}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 4.02e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 4.02e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 4.02e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.53e-07}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.29e-25}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.53e-07}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.53e-07}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.000645}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.000645}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 6.49e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 6.66e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 6.66e-07}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2.04e-07}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.12e-25}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2.04e-07}, {"name": "Cadmium II", "categories": ["water"], "amount": 2.04e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 9.72e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 4.29e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.23e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.86e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.65e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 7.03e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.2e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 3.22e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 3.22e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.64e-05}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.33e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.17e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 2.73e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.23e-05}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.41e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.41e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.08e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4.55e-07}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.000315}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.000315}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.39e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.38e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.38e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 5.31e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 5.31e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.78e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.67e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.78e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.78e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 6.21e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 6.21e-06}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 4.26e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.26e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-06}, {"name": "Lead II", "categories": ["air"], "amount": 5.58e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 5.58e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 5.25e-08}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 5.36e-08}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 5.36e-08}, {"name": "Lead II", "categories": ["soil"], "amount": 5.36e-08}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.45e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 6.05e-28}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.45e-08}, {"name": "Lead II", "categories": ["water"], "amount": 3.45e-08}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 4.15e-05}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 8.13e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 8.13e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.5e-07}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.55e-07}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.55e-07}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.55e-07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.28e-06}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.95e-26}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.28e-06}, {"name": "Mercury II", "categories": ["water"], "amount": 1.28e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.28e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.93e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.28e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.28e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000755}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000755}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000783}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000783}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000719}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000409}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000719}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000719}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.97e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.97e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 0.000104}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.000104}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 6.88e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 7.09e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 7.09e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 7.09e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.13e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.68e-25}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.13e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 1.13e-05}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.82e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.000108}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.000108}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.06e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.06e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.06e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.93e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.54e-05}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.95e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.21e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.24e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.33e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 3.76e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.74e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 3.76e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.76e-06}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "human health no LT", "human toxicity: non-carcinogenic no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 3.35e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0044}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.28e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 2e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.22e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.09e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.66e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.66e-07}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 7.34e-05}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.89e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.81e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.75e-06}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.42e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water"], "amount": 9.33e-07}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 7.82e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 7.82e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 8.19e-07}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.69e-25}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.94e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000565}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000565}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.00204}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.00204}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 2.37e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 7.62e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 7.62e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 7.62e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.000666}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 4.38e-24}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.000666}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.000666}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 1.39e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air"], "amount": 2.33e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.33e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.04e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.72e-25}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water"], "amount": 9.67e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.08e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3.06e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.86e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 2.96e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.15e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.07e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.44e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000306}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.83e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.83e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00618}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00618}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.89e-10}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.02e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.02e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.02e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.88e-07}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 8.91e-23}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.88e-07}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.88e-07}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.25e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.67e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.63e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.63e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.47e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.44e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000438}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000438}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.52e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.52e-06}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.19e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.19e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.000326}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.000326}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.4e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.2e-05}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.2e-05}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.2e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.27e-05}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.3e-25}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.27e-05}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.27e-05}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.64e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.89e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.89e-06}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000187}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000187}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.53e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.96e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 2.25e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.36e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.92e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.58e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.86e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.46e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.28e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.28e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 4.65e-09}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4.65e-09}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 4.22e-12}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.26e-30}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water"], "amount": 1.11e-10}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00126}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00126}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.32e-25}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 7.82e-07}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 4.77e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 4.77e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 9.9e-11}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 5.15e-28}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water"], "amount": 2.87e-08}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.01e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.72e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.86e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.86e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 6.38e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.98e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000197}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2.18e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.18e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.82e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 6.5e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.84e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.84e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.3e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.3e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.69e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5.04e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.04e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.000119}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.66e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.000119}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.000119}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.54e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.33e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 7.09e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.02e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air"], "amount": 8.09e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 8.09e-06}, {"name": "Furfural", "categories": ["air"], "amount": 3.63e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00122}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.57e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 9.03e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 9.03e-06}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000122}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000122}, {"name": "Lead II", "categories": ["air"], "amount": 0.000451}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.000451}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.4e-09}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 4.42e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 4.42e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 4.42e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2.83e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 4.95e-26}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2.83e-06}, {"name": "Lead II", "categories": ["water"], "amount": 2.83e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.000113}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.02e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000561}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000561}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0015}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0015}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.35e-08}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 7.09e-06}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 7.09e-06}, {"name": "Mercury II", "categories": ["soil"], "amount": 7.09e-06}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.53e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.02e-25}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.53e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 3.53e-05}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000349}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 3.63e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 3.63e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 7.64e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.61e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3.58e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3.58e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.12e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.12e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000591}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000591}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000611}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000611}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000563}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000319}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000563}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000563}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.79e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4.79e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.42e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 4.79e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 4.79e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2.35e-07}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 8.82e-26}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 6.02e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 4.86e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.56e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.51e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.35e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-07}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-07}, {"name": "Nickel II", "categories": ["air"], "amount": 1.33e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.33e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 9.26e-10}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 9.39e-08}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 9.39e-08}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.39e-08}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.49e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.1e-27}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.49e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 1.49e-07}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.74e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 3.24e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.02e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.92e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.39e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 9.8e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.89e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000137}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 7.23e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.13e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.72e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 5.29e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 9.76e-08}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 5.13e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.78e-08}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 6.25e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 3.37e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.28e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.21e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air"], "amount": 0.000465}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.000465}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 6.95e-08}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.76e-25}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water"], "amount": 1.51e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.05e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water"], "amount": 4.81e-09}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.42e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 2.71e-06}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 9.01e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 9.01e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 9.26e-06}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.04e-25}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water"], "amount": 3.1e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.2e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.63e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.18e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.12e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.92e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.92e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.66e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.35e-05}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.35e-05}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4.06e-08}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.6e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water"], "amount": 6.29e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4.15e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.58e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 7.2e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 7.2e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.55e-08}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.86e-26}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 5.61e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.88e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.36e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.41e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.16e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "human health no LT", "ionising radiation no LT"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 2.92e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 2.07e-13}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 3.22e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 2.28e-11}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 3.34e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 6.06e-12}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 3.22e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water"], "amount": 5.88e-08}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 3.96e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water"], "amount": 6.18e-08}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 1.86e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water"], "amount": 2.35e-11}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 1.67e-11}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 1.6e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 1.8e-08}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 2.45e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.77e-13}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 1.51e-10}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water"], "amount": 1.71e-09}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 2.04e-10}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 3.84e-12}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 4.1e-14}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 1.3e-10}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.82e-14}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 6.18e-10}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 9.86e-12}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 7.41e-12}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 1.6e-12}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 2.04e-10}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 3.09e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water"], "amount": 8.64e-11}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 5.32e-13}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 5.32e-13}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water"], "amount": 5.13e-11}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 5.81e-14}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "human health no LT", "ozone depletion no LT"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-06}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.66e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.66e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 9.39e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 9.39e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000119}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000119}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 6.52e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 6.52e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.91e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.91e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 3.91e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 3.91e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.63e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.63e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.63e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.63e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 5.93e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 5.93e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.16e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.16e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.58e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.58e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7.58e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7.58e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 3.06e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 3.06e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000391}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000391}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00357}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00357}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00357}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00357}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00281}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00281}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.00281}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.00281}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.01e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.01e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 9.98e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 9.98e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.19e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.19e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000285}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000285}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.000237}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.000237}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "human health no LT", "particulate matter formation no LT"], "exchanges": [{"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "human health no LT", "photochemical oxidant formation: human health no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.72e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.82e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.82e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air"], "amount": 1.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.98e-08}, {"name": "Acrolein", "categories": ["air"], "amount": 1.78e-07}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.78e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -6.27e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -6.27e-08}, {"name": "Benzene", "categories": ["air"], "amount": 3.3e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.52e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 2.94e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air"], "amount": 1.72e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cumene", "categories": ["air"], "amount": 1.06e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 9.24e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.52e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -3.3e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -3.3e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 6.27e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 6.27e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.22e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.22e-07}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.52e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.48e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.48e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.42e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.42e-08}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.3e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Methanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.06e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.63e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.63e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 6.73e-07}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.39e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 9.1e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Phenol", "categories": ["air"], "amount": -1.65e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -1.65e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Styrene", "categories": ["air"], "amount": 1.65e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.3e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 9.57e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.57e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "human health no LT", "water use: human health no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 3.1e-06}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "natural resources no LT", "energy resources: non-renewable, fossil no LT"], "exchanges": [{"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "natural resources no LT", "material resources: metals/minerals no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0161}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0161}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.165}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0142}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00216}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 13.4}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.441}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0124}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.037}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.037}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.00889}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00889}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0352}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.000968}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.000933}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 0.639}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.639}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0049}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00142}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 14.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 14.8}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 61.9}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0213}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000229}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 17.2}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 18.4}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 18.4}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.04}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.04}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.098}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.098}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.006}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.006}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 1.33}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 0.711}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00081}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.000492}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 107}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 107}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 2.04}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.0507}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.00918}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00372}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 9.02}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 9.02}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 2.94}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.94}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 260}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.834}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.834}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.15}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.7}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.556}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0184}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "total: ecosystem quality no LT", "ecosystem quality no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5151e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5151e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.6904e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 6.158999999999999e-10}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.48272e-12}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.6652e-11}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83573e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.53574e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.3311235e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.83530616e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.83530616e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7241e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.0934000125e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.482800000532e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.482800000532e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7241e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 5.1354e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.0934000125e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.482800000532e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.525999999999999e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.632100000000001e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.995542e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.995542e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.847549999999999e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.7113923e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.7113923e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.5517e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.6551e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.01485e-11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36004269e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36004269e-08}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.5554e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.2917e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.5554e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.5554e-12}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.530280000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.530280000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.9679974e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.9679974e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.350059939e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.55641e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.313e-11}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.313e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.854700000000002e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.23877e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.854700000000002e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.854700000000002e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.32086e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.90666e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.991756000000001e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.232009010000001e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.232009010000001e-10}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.1503718e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.1503718e-08}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 8.523199999999999e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04851e-10}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.76038805e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.183263e-10}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air"], "amount": 4.5204408e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.5204408e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.4871e-13}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.8318e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.1213e-12}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.801e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.756e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["water"], "amount": 5.336e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.18425e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37024635e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.18425e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.18425e-11}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.37757e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.37757e-10}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.233999999999999e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.233999999999999e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.4715e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 3.6996e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.4715e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.4715e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7847e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9.902e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.630106e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.630106e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.8868e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 1.341e-09}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 4.113600000000001e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.1577e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.617e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.408e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.238e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 7.871000000000001e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.88194e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.5376e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.3116e-09}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.82971e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7341e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7341e-11}, {"name": "Aniline", "categories": ["air"], "amount": 9.983e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 9.983e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.4179e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.50817e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.4179e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.4179e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.024e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.49861e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.27217e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.49861e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.49861e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.7777e-10}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.67141e-07}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.67141e-07}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.60948e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 4.60948e-07}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.518e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 2.64e-10}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 2.64e-10}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 2.64e-10}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.402e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 7.55e-09}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.402e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.402e-08}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1347e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.0688e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.0408e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.26685e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.26685e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.26685e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.1954e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.337007539999999e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.6636e-07}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.697e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.41970164e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.923600156e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.10360000694e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.10360000694e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6734e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6734e-08}, {"name": "Barium II", "categories": ["air"], "amount": 1.2165e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.2165e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8.653999999999999e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.858e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.858e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 1.858e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.072e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.072e-09}, {"name": "Barium II", "categories": ["water"], "amount": 2.072e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.596500196e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 2.488e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14411719e-09}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2501e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.925000000000001e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.77278e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.77278e-10}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.564e-11}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.564e-11}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.2778e-10}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.8589e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.178899999999999e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.053e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.313999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.313999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47005027e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47005027e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.40085e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.875177e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.40085e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.40085e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6084e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6084e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.5863e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.5863e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.8792e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0586e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0586e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 3.0567e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.0567e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.3624e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.704999999999999e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.704999999999999e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.984e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3.984e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.457505e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.457505e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.43142e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.4131e-11}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.4135e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.99278e-10}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.377779e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.377779e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.645417e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.645417e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.255999999999999e-11}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.2058e-10}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.2058e-10}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.2058e-10}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.633e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.57e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.633e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.633e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.568e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.747e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.9848e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.510533e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.510533e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.467e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 4.793e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.431999999999999e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 3.215e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 1.439e-08}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.864e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.597560000000001e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.597560000000001e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.1461073e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.43810514e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.087300857e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 7.157107e-09}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.474e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.907739999999999e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.24030377e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.1697400759e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.1697400759e-07}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.2827e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.6008e-09}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.29704e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.3042e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.29704e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.29704e-11}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.9213e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.812e-11}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39275e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39275e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 9.619679999999998e-07}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 9.619679999999998e-07}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.1487e-10}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.0716e-10}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.0716e-10}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.0716e-10}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.0799e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 5.62e-09}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.0799e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.0799e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.82287e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.11716e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.588999999999999e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.12428e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.12428e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19034e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.9899e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.17787e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.8454995e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2168475e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2168475e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9804e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.2884e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.320145e-10}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.6742e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.6742e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.6611e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.07891e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.6611e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.6611e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.870916389999999e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.60581e-11}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.031176e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.031176e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44000000198677e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.515420000372e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.9171e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.8311e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.4105e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.8319e-10}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0423e-11}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0423e-11}, {"name": "Chloroform", "categories": ["air"], "amount": 3.1911283e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.1911283e-08}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.232e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.10594e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.232e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.232e-10}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.856e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.841e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.3265e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.321e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 5.879e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 5.879e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.94e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.586e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.28375e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.05088e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.05088e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.6962e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.7246000815e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.02027e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.024174e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.024174e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 2.103199e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.103199e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.451e-11}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.0012e-10}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.0012e-10}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.0012e-10}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.4579e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 8.22e-10}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.4579e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.4579e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.027e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.027e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.152e-07}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.152e-07}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.433e-09}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.433e-09}, {"name": "Chromium VI", "categories": ["soil"], "amount": 4.433e-09}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 6.162e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.16e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 6.162e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 6.162e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 6.9531e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 5.154200000000001e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.90445e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.966536e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.966536e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 2.054597e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2.054597e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1.5067e-11}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.6237e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.6237e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.6237e-11}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.081e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.38e-09}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.081e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.081e-09}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74739e-06}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74739e-06}, {"name": "Copper ion", "categories": ["air"], "amount": 6.05222e-06}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 6.05222e-06}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.5013e-10}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 6.071e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 6.071e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 6.071e-10}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.0342e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.0342e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1.0342e-07}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.154000000000001e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.154000000000001e-13}, {"name": "Cumene", "categories": ["air"], "amount": 2.41005784e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41005784e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.486335e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.89631e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.32084e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.810636e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.5923605e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.810636e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.810636e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.3965373e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.84e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.0825e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.42860047e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.012e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.467e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 6.025000000000001e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.494079999999999e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.494079999999999e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4298e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.0709e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.17110233e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 7.0004e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.72918e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.55408e-09}, {"name": "Deltamethrin", "categories": ["air"], "amount": 2.945e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 3.192e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.497500000000001e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.711700000010401e-11}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.1812e-08}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73325e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.383e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.633600264e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.633600264e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 5.551e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3361e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24309e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.708092e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.416800291e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.416800291e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.4931e-08}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.1248e-08}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.28872e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 2.641e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.102340677e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.635e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.635e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.470005178999999e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.470005178999999e-08}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.78406e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78406e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.17929e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.17929e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.635339999999999e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.23034e-10}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7266e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.2893e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.4415e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.484149999999999e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.484149999999999e-06}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.6038e-09}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.91575e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 4.06e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.699944e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.025002e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.025002e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.864200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.48553e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.864200000000001e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.864200000000001e-10}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4000383e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4000383e-07}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.4000383e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.4000383e-07}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.245024e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.3724e-09}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.656217e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09274e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 6.053e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.478500644999999e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.1109000494e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.371500000752e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.371500000752e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.7429e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.4113e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.351e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.5858e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.07409e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.901710000000001e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.563291e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.57777e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.496299999999999e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.520707829999999e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21469000249e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 9.776e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3.011e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.9541400000117e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.7475e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.7475e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 7.047e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23305e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.5744e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.381000000000001e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 3.0544e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.0639e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.0639e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8227e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8.371e-07}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.9700538e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.9700538e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.616799999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.616799999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 3.062639672e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 3.062639672e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 9.309e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.99014e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 9.309e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 9.309e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.5495e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.5495e-11}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.4500941e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 3.4500941e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1.360037e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1.360037e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.6066825e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.6066825e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.486e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 8.6389e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.486e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.486e-11}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6700728e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6700728e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.6700728e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.6700728e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.5500423e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.5500423e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.950271e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.950271e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 9.950271e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 9.950271e-07}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.120085e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.120085e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 3.120085e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 3.120085e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.386e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.22444e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.386e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.386e-09}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.370118999999999e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.370118999999999e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 4.370118999999999e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 4.370118999999999e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2400883e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2400883e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3.2400883e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3.2400883e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.6925e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.1745e-13}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.6925e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.6925e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16852e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.2974064e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.29910000000288e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.29910000000288e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.8075e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 5.8105e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.50795e-08}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43055778e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43055778e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.1162e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.6307e-11}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.26877e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.26877e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.9606257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78123344e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.9606257e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.9606257e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.713000000000001e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 5.327e-11}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 3.4501e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.557800471e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.535000000741e-08}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.4088e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.286e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 7.05391e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.387699999999999e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 7.599999999999999e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2465e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.5801e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.956e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.7706e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.2453e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.2176e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.2176e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4361e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.8734e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 8.923e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.448e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.6251e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.6251e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.6251e-06}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2503e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 3.37e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.067999999999999e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 3.25e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.35983e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 4.607e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 5.0082e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 5.0952e-09}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.6724e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.16156e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.608e-09}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.483852999999999e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.483852999999999e-08}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.4259e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.15095e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.4259e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.4259e-10}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.88052407e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.943639999999999e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.3341000858e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.945707e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4325e-10}, {"name": "Furfural", "categories": ["air"], "amount": 1.86698e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.127660000202e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.9543e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.127660000202e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.98070000000144e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73277e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.43880699e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.665980000000373e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.665980000000373e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.665980000000373e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8818e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.4885e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.29360909e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.29360909e-08}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.640000025104e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.640000025104e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 1.05382e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.59050712e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.827221e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.0755423e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.0823e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.1854e-08}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 8.0538e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.2558e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 8.0538e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 8.0538e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05070138e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05070138e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05070138e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05070138e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.1167e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.809164e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.1167e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.1167e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.695000000000001e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.695000000000001e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39003876e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39003876e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 9.9183e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 9.6225e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 9.9183e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 9.9183e-11}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.702000000000001e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.702000000000001e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.1638068e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.1638068e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.33465e-12}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04264e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.04983e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.233000682999999e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.890600000007031e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.43990000000226e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.43990000000226e-09}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.295717e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.47404e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 8.600000047030001e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.600000047030001e-08}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.42125e-09}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.581e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.531e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 3.998e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.4411e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.4411e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.4411e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1111827e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1111827e-07}, {"name": "Lead II", "categories": ["air"], "amount": 2.1508175e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.1508175e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.4947e-13}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 6.991e-13}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 6.991e-13}, {"name": "Lead II", "categories": ["soil"], "amount": 6.991e-13}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.816e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.44e-10}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.816e-10}, {"name": "Lead II", "categories": ["water"], "amount": 3.816e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.7813000448e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 8.84e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.5213000233e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.21384e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.20435751e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.144080125e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.144080125e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.3311671e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.2050101e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.2050101e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.9416e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.0373100000135e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.1377448e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.10246e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.27495e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.502209629999998e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.9631000409e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.4555000108e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.4555000108e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.7140099e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.45782e-10}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.000974e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.000974e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 6.856657e-06}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6.856657e-06}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.0421e-11}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.7157e-11}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.7157e-11}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.7157e-11}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.1461e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.88e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.1461e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 3.1461e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.8866e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.565620314e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4050818e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.5619e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.9263e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 9.016e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3181e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3181e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 4.921951e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 4.921951e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4400666e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4400666e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2.4400666e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2.4400666e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.150113e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.150113e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 4.150113e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 4.150113e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.8100766e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.8100766e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.800158e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.800158e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 5.800158e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 5.800158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.063e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.063e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.9862528e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.9862528e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.2312e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 4.0236e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.2312e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.2312e-11}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5.750157e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5.750157e-06}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8900787e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8900787e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 2.8900787e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 2.8900787e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2900352e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2900352e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1.2900352e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1.2900352e-06}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.520123e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.520123e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.520123e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.520123e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.470122e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.470122e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.470122e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.470122e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.4654653e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4654653e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.470122e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.470122e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.470122e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.470122e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.6343e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6343e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.850116543e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.850116543e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.358e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.975500000000001e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.358e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.358e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6000708e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6000708e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 2.6000708e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 2.6000708e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3.6701e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3.6701e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.750157e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.750157e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 5.750157e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 5.750157e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.9243e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.1133e-13}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.9243e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.9243e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.9243e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 2.0766e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74674e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.99641e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.322135e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.4797773e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.4797773e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.4797773e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.380999999999999e-10}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.8287e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.8287e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.559300000000001e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 5.5554e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.559300000000001e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.559300000000001e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41003798e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41003798e-08}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.6672e-12}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.145e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.921300000000001e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.0619e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.4743e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.0619e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.0619e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.382e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.933599999999999e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.8323e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3917e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.03419e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.03419e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.03419e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63413e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.08258e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.0387676e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26373e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.07672e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.6750000124e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.116100000739e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.56420000032e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.56420000032e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.748099999999999e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 5.3465e-10}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.053621e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.053621e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 7.3108e-09}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 7.3108e-09}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.0298e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.8944e-11}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.8944e-11}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.8944e-11}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.719e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.74e-11}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.719e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.719e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17801e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2.007877e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.26302e-09}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.3107e-08}, {"name": "Naphthalene", "categories": ["air"], "amount": 9.312e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.6425e-09}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.4734e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.365184e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.365184e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 9.396840000000001e-07}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9.396840000000001e-07}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.8356e-10}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.2686e-10}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.2686e-10}, {"name": "Nickel II", "categories": ["soil"], "amount": 3.2686e-10}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.036e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.03e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.036e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 3.036e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitric oxide", "categories": ["air"], "amount": 3.14e-07}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7912e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7912e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.8839e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 7.094000000000001e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.810186e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.810186e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 6.810186e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 6.810186e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 2.053e-07}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 3.427e-09}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.518369e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.3353e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11914e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 4.056e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.58e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.406e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.406e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.184e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.1901e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.17878e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.1901e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.1901e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.956e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 9.024900535e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.0111e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.9946e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.29060734e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.426e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.1086e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.24339e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.24339e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 3.3800921e-06}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.016e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.001e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 2.0334e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 8.128e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.0793e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.502100741000001e-10}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.411e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.411e-11}, {"name": "Phenol", "categories": ["air"], "amount": -3.749578000000001e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.749578000000001e-09}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.766099999999999e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.167159e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.766099999999999e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.766099999999999e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.822e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.822e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 3.562e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 3.562e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.065e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.065e-07}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.426000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.426000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.9603e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.239752999999999e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.7471e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.6505e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 8.9978e-08}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.19506e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.0975e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.82658e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.11528e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.82658e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.82658e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.15565e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 5.0829e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.402444e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.68484e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.1228573e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.5974e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.2626e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.6319e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.0089e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.4227e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.0333e-08}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.3937e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 2.2457e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4117449e-11}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.0311e-09}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air"], "amount": 3.62007161e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62007161e-08}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 2.3687e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.9418e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.570643199999999e-09}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.3161e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8244e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.37531e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.11407e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.275955000000001e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.275955000000001e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.275955000000001e-08}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09464e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63119917e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09464e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09464e-10}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.3538e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.937e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 4.457e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.278e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.521389e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.0589e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.8668e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.886e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.212e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.2764e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.6948e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.9143e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.9143e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.2706209e-10}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.85911e-11}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.49733e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.49733e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 3.11255e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 3.11255e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 9.655e-11}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.7329e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.7329e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.7329e-10}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.0138e-08}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 3.43e-09}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.0138e-08}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.0138e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9045e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.89247e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.194059e-09}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.818101e-05}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.818101e-05}, {"name": "Silver I", "categories": ["air"], "amount": 3.335678e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 3.335678e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.3929e-09}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4477e-09}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4477e-09}, {"name": "Silver I", "categories": ["soil"], "amount": 2.4477e-09}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 3.099e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.67e-07}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 3.099e-07}, {"name": "Silver I", "categories": ["water"], "amount": 3.099e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55937e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.1565e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.1062e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.34571e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.05378e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.05378e-08}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.5201e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air"], "amount": 3.770071990000001e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.770071990000001e-09}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75913e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.505038e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75913e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75913e-10}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.1427e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.310254e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.310254e-06}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 9.310254e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 9.310254e-06}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.38e-07}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1.008218e-07}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.343e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.29693e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.23401e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.8453955e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7555e-09}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.428671e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.4735e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.3127e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.7415e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4855e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4855e-11}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.687949999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.687949999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.536674e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.7108e-10}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2686e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2686e-07}, {"name": "Thallium I", "categories": ["air"], "amount": 3.0272e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 3.0272e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.1463e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.269e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.269e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.269e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.911e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 5e-09}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.911e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 3.911e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58358e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.34304e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.138941e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.5929404e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05376318e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05376318e-08}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.0663e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8495e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.2867e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.6626e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.1124e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.1124e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03433e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.36977e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.4401e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.3675e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.06442e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.06442e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.532e-08}, {"name": "Thiram", "categories": ["air"], "amount": 1.1501e-08}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.90795e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.391784e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.277509e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.277509e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.007622e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.007622e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 2.775287e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 2.775287e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 4.213e-12}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 6.723e-12}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 6.723e-12}, {"name": "Tin ion", "categories": ["soil"], "amount": 6.723e-12}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 3.06e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.57e-09}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 3.06e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 3.06e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.32003649e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32003649e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.7233e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.089279999999999e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.7233e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.7233e-11}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 3.5975e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 5.096019999999999e-07}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2250177e-09}, {"name": "Triallate", "categories": ["air"], "amount": 7.56e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.4281e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.2021e-08}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.798700000000001e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.5277164e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19007243e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19007243e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.19271e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.738968e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.19271e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.19271e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.7335e-09}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.25525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49109341e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.25525e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.25525e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.907e-09}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.922e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 4.981e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.762e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.5446e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.5446e-08}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.2204e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.590078418e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.2279947e-11}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.210026e-11}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3698e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3698e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.4221e-07}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.4221e-07}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 8.127e-10}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.4378e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.4378e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.4378e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.2996e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.65e-08}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.2996e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.2996e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.1258e-10}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.811e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.811e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.834970000000001e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08516e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.012e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.467e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8647e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8647e-07}, {"name": "Zinc II", "categories": ["air"], "amount": 6.827e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 6.827e-07}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 4.175e-10}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 7.002e-10}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 7.002e-10}, {"name": "Zinc II", "categories": ["soil"], "amount": 7.002e-10}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.5347e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 8.59e-09}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.5347e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.5347e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.4501e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.8058e-08}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.43237e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.119496e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.43237e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.43237e-10}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.22e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.22e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88006161e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88006161e-08}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.332037e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.66747e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.599e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "total: human health no LT", "human health no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 3.35e-10}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0044}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 2.36e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.28e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.22e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.09e-06}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 2.92e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 2.07e-13}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137924}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137924}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 7.34e-05}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.89e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.81e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.75e-06}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 3.22e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 2.28e-11}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.42e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water"], "amount": 9.33e-07}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 7.82e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 7.82e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 8.19e-07}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.69e-25}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.94e-05}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 3.34e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 6.06e-12}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0006602}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0006602}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0036}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0036}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 6.55e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 8.057e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 8.057e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 8.057e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0007044}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 5.38e-24}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0007044}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0007044}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 1.39e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air"], "amount": 2.33e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.33e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.04e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.72e-25}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water"], "amount": 9.67e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.3e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.3e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.08e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.546e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.2386e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 2.96e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.15e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.510699999999999e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.434e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0003359}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0003359}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.004116}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.83e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.83e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0062168}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0062168}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146859}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146859}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.9889e-08}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.422e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.422e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.422e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 5.41e-07}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 8.9629e-23}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 5.41e-07}, {"name": "Beryllium II", "categories": ["water"], "amount": 5.41e-07}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.25e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.67e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.63e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.63e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.47e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.44e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000438}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000438}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.814e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.814e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001209}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001209}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.000971}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.000971}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.89e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.266599999999999e-05}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.266599999999999e-05}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.266599999999999e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.2904e-05}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.42e-25}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.2904e-05}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.2904e-05}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 3.22e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water"], "amount": 5.88e-08}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 3.96e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water"], "amount": 6.18e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.64e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.89e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.89e-06}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000187}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000187}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 1.86e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water"], "amount": 2.35e-11}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.53e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.168e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.54e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.719999999999999e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.719999999999999e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 1.403e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.403e-05}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.59e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 5.780000000000001e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.094e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.125e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.673e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9.66e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.602e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.602e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 4.65e-09}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4.65e-09}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 4.22e-12}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.26e-30}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water"], "amount": 1.11e-10}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00126}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00126}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.32e-25}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 7.82e-07}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 1.67e-11}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 1.6e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 1.8e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 4.77e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 4.77e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 9.9e-11}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 5.15e-28}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water"], "amount": 2.87e-08}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.01e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.72e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.86e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.86e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 6.38e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 4.62e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000197}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.738e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.738e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.82e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.306e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.306e-05}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.306e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.306e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.98e-05}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0003010184}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0003010184}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0001408697}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0001408697}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.69e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000646504}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000646504}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.0002722}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.0002722}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 4.11e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.704e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.704e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.17e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0004343}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0004343}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.0004343}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.0004343}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 2.963e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 2.963e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001636}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001636}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0001636}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0001636}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00048358}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00048358}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.00048358}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.00048358}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.0001613}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.0001039}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0001613}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0001613}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.000667}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.000495}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.54e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.33e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.41e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.41e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.1509e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.57e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.00032309}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00032309}, {"name": "Furfural", "categories": ["air"], "amount": 3.63e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.34e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.34e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00122}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.39e-05}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.88e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.88e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 8.58e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 8.58e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.017e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.427e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.017e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.017e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.36e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.36e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.07742e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.07742e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 2.45e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.77e-13}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 1.51e-10}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water"], "amount": 1.71e-09}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 2.04e-10}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 3.84e-12}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 8.019999999999999e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.019999999999999e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 4.1e-14}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001235}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001235}, {"name": "Lead II", "categories": ["air"], "amount": 0.00045658}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00045658}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 5.59e-08}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 4.4736e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 4.4736e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 4.4736e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2.8645e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 5.0105e-26}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2.8645e-06}, {"name": "Lead II", "categories": ["water"], "amount": 2.8645e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.0001545}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.02e-07}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 1.3e-10}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0005822}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0005822}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0015813}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0015813}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.735e-07}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 7.345e-06}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 7.345e-06}, {"name": "Mercury II", "categories": ["soil"], "amount": 7.345e-06}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.658e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.215e-25}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.658e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 3.658e-05}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.0007407310000000001}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.0007407310000000001}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003942999999999999}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003942999999999999}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.003942999999999999}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.003942999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003443}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003443}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.003443}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.003443}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0004491363}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0004491363}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.000885}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.7199e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 6.7199e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.238e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.057e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.238e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.238e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0010126}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0010126}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 4.41e-05}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000197}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.9e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 6.82e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.76733e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.76733e-05}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 6.82e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001346}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001346}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.001962}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.001962}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.001282}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000728}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.001282}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.001282}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.000396}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.0008017899999999999}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.0008017899999999999}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.000877}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.42e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 4.79e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 4.79e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2.35e-07}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 8.82e-26}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 6.02e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.045e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.045e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 4.86e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.56e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.51e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.35e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0069e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0069e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 0.00010533}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.00010533}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 6.880926e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 7.1839e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 7.1839e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 7.1839e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1449e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.701e-25}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1449e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 1.1449e-05}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 6.73e-07}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.39e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 5.14e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6.06e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00104}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 9.1e-07}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.82e-14}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.02e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.00010937}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.00010937}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.45e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 4.684e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.45e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.45e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.000516}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 2.91e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 2.329e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000137}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 7.23e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.13e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.72e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 5.29e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 9.76e-08}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 6.18e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 5.13e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.78e-08}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.200000000000001e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.58e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.28e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.21e-07}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 9.86e-12}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 7.41e-12}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 1.6e-12}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air"], "amount": 0.000465}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.000465}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 6.95e-08}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.76e-25}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water"], "amount": 1.51e-05}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 2.04e-10}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 3.09e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water"], "amount": 8.64e-11}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.345e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.3781e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00142}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 5.32e-13}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 5.32e-13}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water"], "amount": 5.13e-11}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.42e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.47e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.14e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.47e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.47e-06}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 9.01e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 9.01e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 9.26e-06}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.04e-25}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water"], "amount": 3.1e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air"], "amount": 3.41e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.41e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.2e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.63e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.18e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.12e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.92e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.92e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.66e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.35e-05}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.35e-05}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4.06e-08}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.6e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water"], "amount": 6.29e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 3.1e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 5.81e-14}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4.15e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.58e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 7.2e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 7.2e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.55e-08}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.86e-26}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 5.61e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.88e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.36e-06}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.41e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.16e-09}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (I) no LT", "total: natural resources no LT", "natural resources no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0161}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0161}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.165}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0142}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00216}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 13.4}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.441}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0124}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.037}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.037}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.00889}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00889}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0352}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.000968}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.000933}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 0.639}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.639}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0049}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00142}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 14.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 14.8}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 61.9}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0213}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000229}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 17.2}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 18.4}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 18.4}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.04}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.04}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.098}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.098}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.006}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.006}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 1.33}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 0.711}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00081}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.000492}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 107}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 107}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 2.04}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.0507}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.00918}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00372}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 9.02}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 9.02}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 2.94}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.94}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 260}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.834}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.834}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.15}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.7}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.556}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0184}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "acidification: terrestrial"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 5.72e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 5.72e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.17e-07}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 7.63e-08}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 7.63e-08}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.38e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "climate change: freshwater ecosystems"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.45e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1.45e-14}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1.45e-14}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1.45e-14}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.45e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 1.45e-14}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 6.82e-13}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 6.82e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 8.7e-13}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 8.7e-13}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 3.83e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.83e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.83e-12}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 3.83e-12}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 3.83e-12}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 5.38e-11}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.38e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 8.38e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 8.38e-12}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1.01e-10}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 9.41e-11}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 9.41e-11}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 3.7e-11}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 3.7e-11}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 7.34e-12}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.34e-12}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.34e-12}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 7.34e-12}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 7.34e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.35e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.35e-14}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 1.12e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 1.12e-10}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 1.12e-10}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 7.28e-11}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.28e-11}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.28e-11}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 7.28e-11}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 7.28e-11}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.23e-12}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.23e-12}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2.71e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2.71e-11}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2.71e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8.5e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8.5e-11}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8.5e-11}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 1.19e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.19e-10}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.19e-10}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 8.83e-11}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.83e-11}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.83e-11}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 8.83e-11}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 8.83e-11}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 4.38e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 4.38e-13}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.31e-13}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.31e-13}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 6.66e-11}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.66e-11}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.66e-11}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6.66e-11}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6.66e-11}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 1.13e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 1.13e-10}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 1.13e-10}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 7.66e-11}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 7.66e-11}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 1.58e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1.58e-10}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1.58e-10}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 4.79e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 4.79e-13}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1.57e-10}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1.57e-10}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 7.87e-12}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.87e-12}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.87e-12}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 7.87e-12}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 7.87e-12}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 3.52e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 3.52e-11}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 3.52e-11}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.23e-12}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-12}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-12}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1.23e-12}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.23e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.22e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 1.22e-12}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.22e-12}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 6.53e-13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 6.53e-13}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1.22e-12}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.22e-12}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-12}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1.22e-12}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.22e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.05e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.05e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7.08e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.08e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.08e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7.08e-11}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7.08e-11}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1e-10}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 1.57e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 1.57e-10}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 1.57e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 1.86e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-10}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 1.86e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.86e-10}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9.21e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 2.54e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-10}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 2.54e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 2.54e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "climate change: terrestrial ecosystems"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 5.32e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 5.32e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 5.32e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 5.32e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.32e-10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 5.32e-10}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 2.5e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 2.5e-08}, {"name": "Chloroform", "categories": ["air"], "amount": 3.19e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.19e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 1.4e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-07}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.4e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.97e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.97e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 3.07e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 3.07e-07}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3.69e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.45e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 3.45e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1.36e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1.36e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 2.69e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.69e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.69e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.6e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.6e-09}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 4.1e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 4.1e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 4.1e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2.67e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.67e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.67e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.67e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.67e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.55e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.55e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 9.95e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.95e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.95e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 9.95e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 9.95e-07}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 3.12e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 3.12e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 3.12e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 4.37e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.37e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.37e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 4.37e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 4.37e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3.24e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.24e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3.24e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3.24e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.61e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.61e-08}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 4.79e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 4.79e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2.44e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.44e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2.44e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2.44e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 4.15e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.15e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 4.15e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 4.15e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.81e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.81e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 5.8e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 5.8e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 5.8e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.76e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.76e-08}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5.75e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5.75e-06}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 2.89e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.89e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.89e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 2.89e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 2.89e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 1.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1.29e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1.29e-06}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 4.52e-08}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.52e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.52e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.52e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.52e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 4.47e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.47e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.47e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.39e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.39e-08}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.47e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.47e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.47e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.85e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.85e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 2.6e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 2.6e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 2.6e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3.67e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3.67e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 5.75e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 5.75e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 5.75e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 6.81e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 6.81e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 6.81e-06}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 3.38e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 9.31e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.31e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.31e-06}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 9.31e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 9.31e-06}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "ecotoxicity: freshwater"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 8.51e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.51e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.51e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 8.43e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 3.64e-13}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 5.81e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 5.81e-10}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.83e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.72e-15}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 2.86e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 2.86e-11}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42e-10}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.51e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.32e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.82e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.82e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1e-11}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.08e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.39e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.39e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1e-11}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1.27e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.08e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.39e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.54e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.97e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.78e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.84e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.7e-15}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.73e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.73e-11}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 4.28e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 4.28e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.31e-12}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.31e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.07e-15}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.31e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.31e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3.69e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-12}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.07e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.39e-20}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.54e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.54e-11}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.81e-12}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.48e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.39e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.77e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.77e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-11}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.83e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.95e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.18e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.18e-10}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.39e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.92e-14}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1e-10}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.59e-12}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.58e-11}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.05e-18}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.18e-10}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-14}, {"name": "Acetone", "categories": ["air"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.01e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.21e-15}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.51e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.51e-12}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.34e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.03e-14}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 6.07e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 6.07e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.55e-09}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.94e-11}, {"name": "Acrolein", "categories": ["air"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 5.84e-11}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.16e-11}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 9.16e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.35e-18}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.16e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.16e-11}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.55e-12}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1.64e-11}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1.64e-11}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.55e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.16e-13}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.06e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.06e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-09}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 7.96e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 5.27e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.91e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.15e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.36e-07}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.87e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.98e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 7.46e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.72e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.44e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.18e-09}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.75e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-12}, {"name": "Aniline", "categories": ["air"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 2.79e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.32e-10}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.32e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.47e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.32e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.32e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.37e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 9.37e-11}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.46e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.46e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 7.51e-10}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-10}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-10}, {"name": "Arsenic ion", "categories": ["air"], "amount": 5.98e-10}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.98e-10}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.46e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 2.54e-10}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 2.54e-10}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 2.54e-10}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.15e-08}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 4.15e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 5.8e-30}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.15e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.15e-08}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.46e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.03e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 5.95e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.25e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.25e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.19e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.63e-07}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.9e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.09e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.09e-07}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.21e-10}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.21e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-10}, {"name": "Barium II", "categories": ["air"], "amount": 7.54e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8.14e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 1.75e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.45e-30}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Barium II", "categories": ["water"], "amount": 1.94e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.58e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.59e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14e-09}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-11}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.82e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.73e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.73e-10}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.17e-10}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-14}, {"name": "Benzene", "categories": ["air"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.45e-14}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.19e-14}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.03e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.03e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.2e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.2e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.47e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.77e-15}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.04e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-11}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.73e-11}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.71e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.76e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-11}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 4.77e-11}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.77e-11}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.06e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-10}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.86e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.33e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.33e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.41e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.34e-11}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 2.9e-15}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.98e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.98e-10}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 6.09e-10}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.09e-10}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-10}, {"name": "Beryllium II", "categories": ["air"], "amount": 4.57e-10}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 4.57e-10}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.04e-11}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.17e-10}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.17e-10}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.17e-10}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.47e-08}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 3.47e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.41e-30}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.47e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.47e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.53e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.92e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.47e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.47e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.62e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 3.54e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-08}, {"name": "Bifenthrin", "categories": ["air"], "amount": 2.75e-08}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.35e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.22e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.36e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.36e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.12e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.36e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.07e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 6.96e-09}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.02e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.91e-09}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.16e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.16e-07}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.16e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.53e-09}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-13}, {"name": "Butanol", "categories": ["air"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.97e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.32e-15}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.27e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.27e-11}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.19e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.03e-14}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.36e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.36e-11}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 2.1e-10}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1e-10}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-10}, {"name": "Cadmium II", "categories": ["air"], "amount": 2.08e-10}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 2.08e-10}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.12e-10}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.02e-10}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.02e-10}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.02e-10}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.04e-08}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.04e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 4.9e-31}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.04e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.04e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.8e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-09}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.39e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.05e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.05e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8e-09}, {"name": "Carbendazim", "categories": ["air"], "amount": 4.88e-09}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.15e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.83e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.19e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.19e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.92e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.84e-08}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.42e-13}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 6.91e-14}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.42e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.42e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 4.39e-19}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.59e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.59e-11}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.74e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 6.77e-21}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.51e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.51e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.55e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.77e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 4.43e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.73e-10}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.33e-13}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.94e-14}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.13e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.13e-10}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.65e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.84e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.1e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.68e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 4.68e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.29e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.24e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.02e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.02e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.36e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.63e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.01e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 4.14e-11}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.14e-11}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14e-11}, {"name": "Chromium III", "categories": ["air"], "amount": 5.89e-11}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 5.89e-11}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.33e-11}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 9.79e-11}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 9.79e-11}, {"name": "Chromium III", "categories": ["soil"], "amount": 9.79e-11}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.41e-09}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.41e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 7.98e-32}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.41e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.41e-09}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 1.75e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-09}, {"name": "Chromium VI", "categories": ["air"], "amount": 2.52e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 2.52e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 2.31e-09}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.25e-09}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.25e-09}, {"name": "Chromium VI", "categories": ["soil"], "amount": 4.25e-09}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 5.78e-08}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 5.78e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.37e-29}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 5.78e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.78e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.79e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.61e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.86e-10}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 7.06e-11}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06e-11}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06e-11}, {"name": "Cobalt II", "categories": ["air"], "amount": 5.67e-11}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 5.67e-11}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.56e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.56e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.56e-11}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 3.94e-09}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 3.94e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 3.09e-31}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 3.94e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 3.94e-09}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1.79e-09}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-09}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-09}, {"name": "Copper ion", "categories": ["air"], "amount": 1.42e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.42e-09}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.42e-10}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.93e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.93e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.93e-10}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1e-07}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 6.88e-30}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1e-07}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45e-14}, {"name": "Cumene", "categories": ["air"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 6.35e-15}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.88e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.88e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.17e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 5.05e-17}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.8e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.8e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.47e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.36e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.46e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.01e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.4e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.62e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 5.71e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.37e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.37e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 8.95e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.12e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 6.07e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.71e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.54e-09}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 4.09e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 3.71e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 7.77e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.38e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.63e-11}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.14e-08}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-10}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.29e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.62e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 9.42e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.19e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-11}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.66e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.38e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.38e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.23e-08}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 4.02e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.27e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.96e-10}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.1e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.09e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.09e-15}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.18e-11}, {"name": "Diethylamine", "categories": ["air"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.74e-11}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 3.34e-15}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.21e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.21e-10}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.09e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.39e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.38e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.38e-06}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.48e-09}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 4.26e-10}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.34e-09}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3.96e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.69e-08}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33e-11}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.46e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.76e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 6.76e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.53e-14}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.76e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.76e-10}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.18e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.25e-09}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.65e-10}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 2.74e-10}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-10}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.19e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.4e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.06e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.36e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.36e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.81e-09}, {"name": "Diuron", "categories": ["air"], "amount": 2.45e-08}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.06e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.84e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.55e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.56e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.45e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.49e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.82e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.77e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.95e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.99e-12}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.25e-12}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 9.25e-12}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 5.09e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48e-09}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.61e-09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 4.58e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 2.85e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 5.83e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.83e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 6.95e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 5.68e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.68e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 5.72e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.14e-14}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 8.35e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 2.95e-13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.95e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.09e-13}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.89e-14}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 3.85e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 3.85e-11}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 3.44e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.47e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 2.47e-09}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.14e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.55e-15}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.37e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.37e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.27e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.28e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.28e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.59e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.13e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 7.73e-09}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.49e-14}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 9.18e-14}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.02e-14}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.14e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.14e-11}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.11e-11}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 5.72e-11}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 5.72e-11}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.95e-10}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.95e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 3.44e-18}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.95e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.95e-10}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-13}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.23e-13}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 3.35e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 3.35e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.88e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.52e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.41e-08}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 1.65e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.19e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 6.99e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.22e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.03e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.48e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.44e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.57e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.21e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.11e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.11e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.77e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.99e-07}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.32e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.17e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.57e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.57e-06}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-08}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 2.85e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8.5e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 6e-10}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 8.17e-12}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.95e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.86e-09}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.64e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.16e-08}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 7.74e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.77e-12}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.77e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.77e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.19e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.3e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 6.3e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 3.25e-14}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.3e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.3e-10}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3e-12}, {"name": "Formic acid", "categories": ["air"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.37e-11}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.07e-19}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.93e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.93e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.29e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.92e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.41e-10}, {"name": "Furfural", "categories": ["air"], "amount": 4.88e-12}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.44e-10}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 4.09e-10}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.12e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.97e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-10}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.43e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.66e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.66e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1.98e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.23e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.23e-08}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.56e-18}, {"name": "Heptane", "categories": ["air"], "amount": 4.54e-18}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 4.54e-18}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 7.53e-09}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.93e-17}, {"name": "Hexane", "categories": ["air"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 4.19e-17}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.12e-18}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.81e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.81e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.05e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.23e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 6.48e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 6.48e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.58e-11}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 6.48e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.48e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.28e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.04e-15}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.1e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.26e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.06e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.06e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 9.66e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 9.66e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 4.5e-15}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 9.66e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 9.66e-11}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.5e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.5e-13}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.31e-12}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69e-10}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.24e-09}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.12e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.83e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.36e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.36e-09}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.26e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.44e-09}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26e-17}, {"name": "Isoprene", "categories": ["air"], "amount": 1.19e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.19e-17}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.39e-09}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.64e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 2.85e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.32e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.32e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.32e-05}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 6.27e-12}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.27e-12}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.27e-12}, {"name": "Lead II", "categories": ["air"], "amount": 4.55e-12}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.55e-12}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.41e-13}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 6.86e-13}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 6.86e-13}, {"name": "Lead II", "categories": ["soil"], "amount": 6.86e-13}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.71e-10}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 3.71e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.54e-33}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.71e-10}, {"name": "Lead II", "categories": ["water"], "amount": 3.71e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.75e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.71e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.44e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.72e-11}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.2e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.14e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.14e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28e-10}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.32e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.17e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.17e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.42e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.03e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.13e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-09}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.01e-08}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.44e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.93e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.41e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.41e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.65e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.38e-10}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 5.4e-10}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4e-10}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4e-10}, {"name": "Mercury II", "categories": ["air"], "amount": 3.77e-10}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 3.77e-10}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2e-11}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.66e-11}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.66e-11}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.66e-11}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.05e-08}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 3.05e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.1e-31}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.05e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 3.05e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.04e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.52e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.82e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 8.97e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.92e-12}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.92e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.7e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.26e-14}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.03e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.03e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3.43e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.85e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.71e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3.71e-10}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.35e-14}, {"name": "Methanol", "categories": ["air"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.17e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.73e-15}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.42e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.42e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.74e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.95e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35e-09}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.97e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.31e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.46e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.46e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.58e-10}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 8.67e-13}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 2.54e-13}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.22e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 3.18e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.37e-12}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.25e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.42e-09}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-11}, {"name": "Methylamine", "categories": ["air"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.38e-11}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.3e-15}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.03e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.03e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.28e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83e-09}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.54e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.32e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.02e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.58e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.07e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.03e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-07}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 5.37e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.63e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.09e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.52e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.52e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.69e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.25e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 7.71e-12}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.71e-12}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.71e-12}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.1e-11}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.84e-11}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.84e-11}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.84e-11}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.61e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.61e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 3.7e-32}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.61e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.61e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17e-09}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-11}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.76e-11}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 9.39e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.16e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.62e-09}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.73e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 5.44e-10}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.44e-10}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.44e-10}, {"name": "Nickel II", "categories": ["air"], "amount": 4.74e-10}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 4.74e-10}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.78e-10}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.17e-10}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.17e-10}, {"name": "Nickel II", "categories": ["soil"], "amount": 3.17e-10}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.9e-08}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2.9e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.98e-30}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.9e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 2.9e-08}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.92e-12}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.04e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 9.39e-13}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.28e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.28e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.26e-09}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.48e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.09e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 2.24e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 2.39e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.39e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.39e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.18e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.38e-12}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.04e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.04e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.95e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.66e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.69e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.83e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.22e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.22e-07}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.23e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 3.53e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.99e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 9.48e-11}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.96e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.44e-10}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-12}, {"name": "Phenol", "categories": ["air"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 6.03e-12}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.73e-10}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 6.73e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 8.59e-15}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.73e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.73e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 9.52e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 9.42e-11}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 9.42e-11}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 5.67e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.67e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.67e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.32e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.32e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.85e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.15e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.16e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.32e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.22e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 3.76e-13}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.09e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.09e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.58e-13}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.81e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.81e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 2.65e-14}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 4.23e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 4.23e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 7.04e-15}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.65e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.65e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.06e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.68e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.18e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 9.21e-09}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 2.99e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 9.78e-09}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.25e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.22e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4e-11}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1e-09}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.51e-14}, {"name": "Propanol", "categories": ["air"], "amount": 8.14e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 8.14e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.67e-15}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.54e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.54e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.49e-09}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.18e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.34e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.1e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.21e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.21e-08}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-12}, {"name": "Propionic acid", "categories": ["air"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 2.12e-11}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 9.17e-18}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09e-10}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.33e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.76e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 8.17e-10}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.26e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.95e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.5e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5.62e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.68e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 3.13e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.97e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.64e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.88e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.88e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.26e-10}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.82e-11}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 1.93e-10}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.93e-10}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93e-10}, {"name": "Selenium IV", "categories": ["air"], "amount": 1.85e-10}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.85e-10}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 9.36e-11}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.68e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.68e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.68e-10}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 9.68e-09}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 9.68e-09}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 9.45e-31}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 9.68e-09}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.68e-09}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.87e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.15e-09}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 5.41e-09}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.41e-09}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.41e-09}, {"name": "Silver I", "categories": ["air"], "amount": 4.48e-09}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 4.48e-09}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.36e-09}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.39e-09}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.39e-09}, {"name": "Silver I", "categories": ["soil"], "amount": 2.39e-09}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 2.99e-07}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 2.99e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.13e-29}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 2.99e-07}, {"name": "Silver I", "categories": ["water"], "amount": 2.99e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-09}, {"name": "Simazine", "categories": ["air"], "amount": 8.29e-09}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.95e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.31e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4e-08}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-14}, {"name": "Styrene", "categories": ["air"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.72e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.68e-15}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75e-10}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 9.92e-08}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 9.99e-08}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-09}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.28e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.12e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.81e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.81e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7e-09}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.35e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.05e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 2.73e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.55e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.85e-13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 9.74e-14}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.52e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.52e-10}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 4.39e-09}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.39e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.39e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 9.68e-09}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 9.68e-09}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.09e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.16e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.16e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.16e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.65e-08}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 3.65e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 2.29e-29}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.65e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 3.65e-08}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 3.75e-10}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.75e-10}, {"name": "Thiabendazole", "categories": ["air"], "amount": 9.79e-10}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.12e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.58e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.48e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28e-09}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 8.81e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.5e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.02e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-10}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.03e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.34e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.24e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.05e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.05e-08}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-09}, {"name": "Thiram", "categories": ["air"], "amount": 4.11e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.88e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.38e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.25e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.25e-07}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 5.02e-11}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.02e-11}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.02e-11}, {"name": "Tin ion", "categories": ["air"], "amount": 3.67e-11}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 3.67e-11}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 4.11e-12}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 6.56e-12}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 6.56e-12}, {"name": "Tin ion", "categories": ["soil"], "amount": 6.56e-12}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 2.95e-09}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 2.95e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.17e-31}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2.95e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 2.95e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-14}, {"name": "Toluene", "categories": ["air"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.01e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.66e-11}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 9.66e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 3.28e-15}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.66e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.66e-11}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 2.55e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.96e-07}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.21e-09}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.19e-10}, {"name": "Triallate", "categories": ["air"], "amount": 1.14e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.16e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.04e-08}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.52e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.46e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-14}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-14}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 7.68e-15}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.18e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.18e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.68e-09}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.22e-13}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 9.22e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 3.41e-20}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.22e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.22e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.38e-09}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72e-11}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.05e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.51e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.46e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.46e-08}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.16e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.18e-20}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.22e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.22e-11}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.15e-11}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 2.35e-09}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-09}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-09}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.05e-09}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.05e-09}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 7.8e-10}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.38e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.38e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.38e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.22e-07}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 1.22e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 2.24e-29}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.22e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.22e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 3.81e-10}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.24e-15}, {"name": "Xylene", "categories": ["air"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.7e-15}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 2.17e-15}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.79e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 7.62e-08}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 2.74e-09}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74e-09}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.74e-09}, {"name": "Zinc II", "categories": ["air"], "amount": 2.11e-09}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 2.11e-09}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 4.03e-10}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 6.76e-10}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 6.76e-10}, {"name": "Zinc II", "categories": ["soil"], "amount": 6.76e-10}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.71e-29}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.46e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.46e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.27e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.6e-15}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.06e-15}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.42e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.42e-10}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.79e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.93e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 7.37e-15}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.65e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.65e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 9.12e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "ecotoxicity: marine"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.27e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 8.74e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.48e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.48e-11}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-13}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.13e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.68e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 1.32e-13}, {"name": "1-Pentanol", "categories": ["water"], "amount": 1.32e-13}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-11}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.1e-12}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.11e-11}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.53e-11}, {"name": "2,4-D", "categories": ["water"], "amount": 1.53e-11}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.41e-12}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 9.28e-12}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 9.28e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.41e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 6.54e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.34e-12}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 9.28e-12}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-11}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 6.35e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.5e-11}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.5e-11}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 6.5e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.39e-13}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.39e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 5.67e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.51e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 1.51e-13}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.7e-14}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.95e-14}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.31e-14}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.31e-14}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.05e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.14e-14}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.14e-14}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.38e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.74e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.74e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.35e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.63e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.63e-13}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.59e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.12e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.12e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.63e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 6.63e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.23e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.63e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6.63e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.66e-12}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 7.4e-13}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.17e-12}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 5.2e-12}, {"name": "Acephate", "categories": ["water"], "amount": 5.2e-12}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-13}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 5.39e-13}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 5.39e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 7.51e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 9.91e-13}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 9.91e-13}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.54e-13}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.36e-13}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.76e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 2.5e-13}, {"name": "Acetic acid", "categories": ["water"], "amount": 2.5e-13}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.32e-14}, {"name": "Acetone", "categories": ["air"], "amount": 6.27e-14}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 6.27e-14}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 9.38e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.28e-14}, {"name": "Acetone", "categories": ["water"], "amount": 5.28e-14}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.98e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.07e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.51e-13}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.51e-13}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.6e-11}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43e-10}, {"name": "Acrolein", "categories": ["air"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.41e-10}, {"name": "Acrolein", "categories": ["water"], "amount": 3.4e-10}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.94e-13}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.94e-13}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.94e-13}, {"name": "Acrylate", "categories": ["water"], "amount": 1.94e-13}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.18e-13}, {"name": "Acrylic acid", "categories": ["air"], "amount": 3.57e-13}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 3.57e-13}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.37e-12}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.69e-12}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.69e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 5.45e-12}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 5.45e-12}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 2.67e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 5.45e-12}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 5.45e-12}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-10}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 2.06e-12}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.06e-12}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.48e-10}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.8e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.76e-10}, {"name": "Allyl chloride", "categories": ["water"], "amount": 5.73e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.81e-07}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 5.04e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.13e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 2.8e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 1.58e-06}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 3.05e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.41e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.81e-10}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 5.21e-13}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.21e-13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.21e-13}, {"name": "Aniline", "categories": ["air"], "amount": 1.13e-13}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.13e-13}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.46e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.7e-12}, {"name": "Aniline", "categories": ["water"], "amount": 2.7e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 4.9e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 3.05e-09}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 3.05e-09}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.23e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 3.05e-09}, {"name": "Anthracene", "categories": ["water"], "amount": 3.05e-09}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 2.07e-12}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 3.39e-09}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.39e-09}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.39e-09}, {"name": "Arsenic ion", "categories": ["air"], "amount": 2.35e-09}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 2.35e-09}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.8e-12}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1e-11}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1e-11}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1e-11}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 2.52e-09}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 2.52e-09}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 7.55e-09}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 2.52e-09}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2.52e-09}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-09}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.29e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.44e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.57e-09}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.57e-09}, {"name": "Atrazine", "categories": ["water"], "amount": 1.57e-09}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.91e-12}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.38e-09}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-09}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.97e-11}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.36e-10}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.36e-09}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.36e-09}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1.13e-10}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-10}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-10}, {"name": "Barium II", "categories": ["air"], "amount": 1.11e-10}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.11e-10}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 5.14e-11}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.08e-10}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.08e-10}, {"name": "Barium II", "categories": ["soil"], "amount": 1.08e-10}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.32e-10}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.32e-10}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.32e-10}, {"name": "Barium II", "categories": ["water"], "amount": 1.32e-10}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.65e-13}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 3.1e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 4.11e-12}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.51e-12}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.22e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.97e-12}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.97e-12}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.63e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.63e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.63e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.45e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4.15e-12}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58e-13}, {"name": "Benzene", "categories": ["air"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.47e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.36e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 5.1e-13}, {"name": "Benzene", "categories": ["water"], "amount": 5.1e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.73e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 3.96e-12}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 3.96e-12}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 6.04e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-14}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.8e-14}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.8e-14}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.56e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.56e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.56e-11}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.56e-11}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.94e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.94e-10}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.14e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.12e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 2.16e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 4.78e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.78e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.78e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 2.82e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 2.82e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 1.27e-09}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 1.27e-09}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 1.23e-13}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.51e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.38e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 7.34e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 7.34e-13}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 7.17e-09}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.17e-09}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.17e-09}, {"name": "Beryllium II", "categories": ["air"], "amount": 4.96e-09}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 4.96e-09}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.16e-12}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.58e-12}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.58e-12}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.58e-12}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.63e-09}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.63e-09}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.57e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.63e-09}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.63e-09}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.09e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 5.37e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4.02e-07}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4.02e-07}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 8.57e-09}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.33e-11}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.45e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.57e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.91e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2.29e-07}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2.29e-07}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.61e-10}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 7.81e-12}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 1.73e-13}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.97e-10}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.44e-10}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.64e-10}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.74e-10}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.74e-10}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.14e-11}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.17e-14}, {"name": "Butanol", "categories": ["air"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 6.12e-14}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.84e-14}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 5.84e-14}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.1e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.84e-14}, {"name": "Butanol", "categories": ["water"], "amount": 5.84e-14}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86e-13}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.42e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.1e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 3.2e-13}, {"name": "Butyl acetate", "categories": ["water"], "amount": 3.2e-13}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 2.54e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.54e-09}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.54e-09}, {"name": "Cadmium II", "categories": ["air"], "amount": 1.76e-09}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1.76e-09}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 2.87e-12}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 5.16e-12}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 5.16e-12}, {"name": "Cadmium II", "categories": ["soil"], "amount": 5.16e-12}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 3.99e-10}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 3.99e-10}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 5.62e-09}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 3.99e-10}, {"name": "Cadmium II", "categories": ["water"], "amount": 3.99e-10}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.26e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-10}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 5.4e-11}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.77e-10}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.77e-10}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-10}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.19e-10}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.63e-11}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.54e-10}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.68e-10}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.68e-10}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.12e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.44e-10}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.55e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.55e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.76e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 1.44e-11}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.44e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.87e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.4e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.4e-13}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 8.76e-10}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.76e-10}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.76e-10}, {"name": "Chloramine", "categories": ["air"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.89e-10}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.42e-10}, {"name": "Chloramine", "categories": ["water"], "amount": 5.42e-10}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.31e-11}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.35e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.05e-10}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.13e-12}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.67e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 4.68e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.68e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 4.93e-12}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 4.93e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.85e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 4.93e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 4.93e-12}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.86e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 8.25e-09}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.11e-08}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.99e-08}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1.99e-08}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.08e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 3.48e-08}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2.77e-07}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2.77e-07}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 5.02e-10}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 9.46e-11}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 8.43e-12}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 3.76e-10}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.76e-10}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.76e-10}, {"name": "Chromium III", "categories": ["air"], "amount": 2.61e-10}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.61e-10}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.21e-12}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.22e-12}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.22e-12}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.22e-12}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 4.79e-11}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 4.79e-11}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 8.22e-10}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 4.79e-11}, {"name": "Chromium III", "categories": ["water"], "amount": 4.79e-11}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 5.25e-09}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.25e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.25e-09}, {"name": "Chromium VI", "categories": ["air"], "amount": 3.68e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3.68e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1e-10}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.83e-10}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.83e-10}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.83e-10}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.82e-09}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 3.82e-09}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.16e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.82e-09}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.82e-09}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 5.31e-12}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 3.42e-12}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.07e-12}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 5.83e-10}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.83e-10}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.83e-10}, {"name": "Cobalt II", "categories": ["air"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4.03e-10}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.67e-13}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 6.37e-13}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 6.37e-13}, {"name": "Cobalt II", "categories": ["soil"], "amount": 6.37e-13}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 1.41e-10}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 1.41e-10}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.38e-09}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 1.41e-10}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.41e-10}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1.56e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.56e-08}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-08}, {"name": "Copper ion", "categories": ["air"], "amount": 1.08e-08}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.08e-08}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 8.13e-12}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.41e-11}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.41e-11}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.41e-11}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 3.42e-09}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 3.42e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 3.42e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 3.42e-09}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 8.19e-14}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-14}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-14}, {"name": "Cumene", "categories": ["air"], "amount": 6.62e-14}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 6.62e-14}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.47e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.1e-12}, {"name": "Cumene", "categories": ["water"], "amount": 1.1e-12}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.47e-10}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.26e-16}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.9e-14}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.9e-14}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.59e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.9e-14}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.9e-14}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.92e-16}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.65e-13}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.44e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 5.7e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.86e-14}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.43e-07}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 8.57e-09}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 2.13e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.21e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 1.21e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.74e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.11e-10}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.11e-12}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 5.24e-11}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.34e-13}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-11}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 1.2e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 8.94e-08}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 8.45e-09}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.53e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 8.17e-13}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.25e-11}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.36e-11}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.36e-11}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 3.99e-11}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.29e-12}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 4.73e-13}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 3.68e-12}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 3.68e-12}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.31e-10}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.78e-10}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 8.22e-12}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 7.45e-10}, {"name": "Diethanolamine", "categories": ["water"], "amount": 2.34e-13}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.01e-15}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.01e-15}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01e-15}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.4e-15}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.4e-15}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.26e-12}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-12}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-12}, {"name": "Diethylamine", "categories": ["air"], "amount": 1.89e-12}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.89e-12}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.21e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 1.16e-12}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.16e-12}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.66e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 6.03e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.98e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.63e-08}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.63e-08}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.09e-11}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 4.06e-11}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.75e-11}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.43e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 9.68e-11}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8e-12}, {"name": "Dimethylamine", "categories": ["air"], "amount": 4.02e-12}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 4.02e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.1e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 2.44e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 2.44e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 6.49e-13}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 6.94e-11}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 5.97e-13}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 5.34e-11}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-11}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3.3e-11}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 7.85e-12}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 5.09e-11}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.15e-10}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.15e-10}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 4.99e-11}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2e-11}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-09}, {"name": "Diuron", "categories": ["air"], "amount": 1.08e-09}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 8.86e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.74e-10}, {"name": "Diuron", "categories": ["water"], "amount": 1.3e-09}, {"name": "Dodecanol", "categories": ["water"], "amount": 9.08e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.18e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.07e-12}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 4.69e-13}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 2.76e-12}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 4.14e-13}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68e-11}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.65e-11}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.37e-11}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.25e-10}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.34e-10}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.41e-10}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 8.24e-10}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 1.67e-09}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1.67e-09}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.87e-07}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.31e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 7.26e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.26e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.26e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.23e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 7.39e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 7.39e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.86e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 7.39e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 7.39e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.6e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.6e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.87e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.87e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.95e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.95e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 6.49e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.95e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.95e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 7.2e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 7.2e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.08e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 7.2e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 7.2e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-14}, {"name": "Ethanol", "categories": ["air"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 4e-14}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.35e-14}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.35e-14}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 9.45e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.35e-14}, {"name": "Ethanol", "categories": ["water"], "amount": 2.35e-14}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-12}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.74e-13}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.91e-12}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.91e-12}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 7.25e-12}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 4.05e-12}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 4.95e-11}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.91e-13}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 2.76e-13}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.76e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 9.26e-13}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 2.77e-13}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-12}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.57e-12}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 1.57e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 1.06e-12}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1.06e-12}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-12}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.04e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.4e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.87e-12}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.87e-12}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 4.01e-11}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 3.78e-11}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.25e-09}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.18e-10}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.06e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.84e-11}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 6.57e-11}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.48e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.37e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.36e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.36e-11}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.55e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.7e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.7e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84e-08}, {"name": "Fluazinam", "categories": ["air"], "amount": 2.44e-08}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 2.23e-09}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.49e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 4.49e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 4.49e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 4.49e-08}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.23e-09}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.3e-10}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.07e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.52e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 6.07e-09}, {"name": "Fluorene", "categories": ["air"], "amount": 1.72e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 3.45e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 9.52e-11}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.05e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.56e-10}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.48e-10}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.9e-12}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9e-12}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9e-12}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.63e-12}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.63e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 2.49e-12}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 2.49e-12}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.09e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 2.49e-12}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2.49e-12}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-13}, {"name": "Formic acid", "categories": ["air"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.11e-13}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.88e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.26e-13}, {"name": "Formic acid", "categories": ["water"], "amount": 1.26e-13}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 2.5e-12}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.18e-12}, {"name": "Furfural", "categories": ["air"], "amount": 8.18e-13}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 7.66e-13}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.83e-11}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.53e-11}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 7.66e-13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.07e-11}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7e-12}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 8.8e-13}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 4.05e-12}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 5.98e-12}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 5.98e-12}, {"name": "Glyphosate", "categories": ["water"], "amount": 5.98e-12}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.28e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 3.05e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.36e-10}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.36e-10}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-17}, {"name": "Heptane", "categories": ["air"], "amount": 1.05e-17}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.05e-17}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 8.82e-11}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-16}, {"name": "Hexane", "categories": ["air"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.03e-16}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.59e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.7e-13}, {"name": "Hexane", "categories": ["water"], "amount": 1.7e-13}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.91e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.94e-10}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.06e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.38e-10}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.38e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.58e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.58e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.58e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.58e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 5.8e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 5.8e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.8e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 5.8e-13}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 5.8e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.79e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.79e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.79e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 4e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 4e-14}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.15e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 2.15e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 9.46e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.15e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.15e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 5.47e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.47e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.43e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.43e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 1.57e-14}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5.74e-11}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.74e-11}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.83e-11}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.13e-11}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.06e-11}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 7.99e-11}, {"name": "Imidacloprid", "categories": ["water"], "amount": 7.99e-11}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 3.56e-11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.06e-11}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.37e-16}, {"name": "Isoprene", "categories": ["air"], "amount": 2.94e-17}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-17}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.83e-11}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.53e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5.2e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 1.01e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 1.01e-06}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 1.01e-06}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 1.12e-10}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12e-10}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12e-10}, {"name": "Lead II", "categories": ["air"], "amount": 7.72e-11}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 7.72e-11}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 8.47e-15}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 1.31e-14}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 1.31e-14}, {"name": "Lead II", "categories": ["soil"], "amount": 1.31e-14}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.06e-11}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 1.06e-11}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.44e-10}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.06e-11}, {"name": "Lead II", "categories": ["water"], "amount": 1.06e-11}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.13e-12}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.32e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 8.13e-12}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.64e-12}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 4.35e-13}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.08e-12}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.08e-12}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.33e-11}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.11e-12}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 3.5e-11}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 3.5e-11}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.16e-11}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 7.31e-13}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 7.71e-14}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.06e-10}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.95e-10}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.22e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.31e-10}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.55e-10}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.55e-10}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.4e-11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.01e-12}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 9.2e-09}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.2e-09}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.2e-09}, {"name": "Mercury II", "categories": ["air"], "amount": 6.28e-09}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6.28e-09}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 4.21e-13}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 5.57e-13}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 5.57e-13}, {"name": "Mercury II", "categories": ["soil"], "amount": 5.57e-13}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 9.61e-10}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 9.61e-10}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.88e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 9.61e-10}, {"name": "Mercury II", "categories": ["water"], "amount": 9.61e-10}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.76e-12}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5.62e-11}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 5.06e-13}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.89e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 6.55e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 3.24e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 6.48e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.48e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.48e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.49e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.49e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 8.26e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.22e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.22e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 8.72e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 8.72e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.45e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 8.72e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 8.72e-13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 5.05e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.05e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.05e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 5.02e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 5.02e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.12e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 5e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 5e-11}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5e-14}, {"name": "Methanol", "categories": ["air"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.74e-14}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 2.33e-14}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 2.33e-14}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 7.48e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.33e-14}, {"name": "Methanol", "categories": ["water"], "amount": 2.33e-14}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 4.83e-11}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.66e-10}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24e-10}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 2.16e-11}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.19e-10}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.97e-10}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.97e-10}, {"name": "Methomyl", "categories": ["water"], "amount": 1.97e-10}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 1.83e-11}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11e-12}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.32e-12}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.32e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.03e-12}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.03e-12}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 4.13e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.03e-12}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.03e-12}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-14}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.6e-14}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 7.6e-14}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.02e-14}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-10}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.03e-11}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-12}, {"name": "Methylamine", "categories": ["air"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 1.26e-12}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 7.3e-13}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 7.3e-13}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.28e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 7.3e-13}, {"name": "Methylamine", "categories": ["water"], "amount": 7.3e-13}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 1.93e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.06e-10}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 8.23e-11}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.38e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.29e-09}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.29e-09}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.29e-09}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-10}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 8.92e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.67e-10}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.13e-08}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 3.02e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.5e-09}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.61e-08}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 4.42e-08}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 4.42e-08}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.78e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.65e-12}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 2.85e-11}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-11}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-11}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.98e-11}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.98e-11}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2.98e-13}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.44e-13}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.44e-13}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 5.44e-13}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.09e-11}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 1.09e-11}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.74e-11}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.09e-11}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.09e-11}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 7.85e-12}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23e-12}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.1e-12}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 7.19e-13}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 9.02e-12}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 8.17e-10}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.16e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.15e-11}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.24e-10}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 4.64e-09}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-09}, {"name": "Nickel II", "categories": ["air"], "amount": 3.21e-09}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.21e-09}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 5.56e-12}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 9.86e-12}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 9.86e-12}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.86e-12}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.36e-09}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 1.36e-09}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.03e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.36e-09}, {"name": "Nickel II", "categories": ["water"], "amount": 1.36e-09}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.62e-11}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62e-11}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62e-11}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.6e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.24e-11}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.24e-11}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.57e-10}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 3.74e-13}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5.13e-11}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 7.62e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 7.36e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.96e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.96e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.7e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.12e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.12e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.16e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.12e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.12e-10}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97e-11}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 7.49e-14}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.61e-10}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 9.96e-12}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.06e-12}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.56e-10}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.76e-11}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.55e-09}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.55e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23e-08}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.91e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 3.02e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.61e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.71e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.21e-12}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1.85e-12}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.85e-12}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.85e-12}, {"name": "Phenol", "categories": ["air"], "amount": 8.92e-13}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.92e-13}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.16e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 2.49e-12}, {"name": "Phenol", "categories": ["water"], "amount": 2.49e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.24e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.14e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.13e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.13e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-09}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.16e-09}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.16e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.09e-10}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.96e-10}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 4.91e-11}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.05e-10}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.78e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.17e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.26e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.26e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 4.38e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 4.38e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.04e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 4.38e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 4.38e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 6.97e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 1.59e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.59e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.4e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 3.38e-12}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 3.38e-12}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 6.28e-12}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.94e-11}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.95e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.44e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.67e-10}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 4.07e-09}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.24e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.87e-11}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.57e-10}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.25e-11}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.24e-14}, {"name": "Propanol", "categories": ["air"], "amount": 5.97e-14}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.97e-14}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.99e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 5.78e-14}, {"name": "Propanol", "categories": ["water"], "amount": 5.78e-14}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 8.06e-11}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 5.1e-13}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.54e-10}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.92e-11}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.38e-10}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.54e-10}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.54e-10}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.54e-10}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.45e-13}, {"name": "Propionic acid", "categories": ["air"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 6.22e-13}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.31e-13}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 2.31e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.31e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.31e-13}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.14e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 4.9e-11}, {"name": "Pyrene", "categories": ["air"], "amount": 2.26e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.64e-08}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.46e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.46e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.09e-13}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.89e-11}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 3.98e-12}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.96e-09}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.39e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.54e-10}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.44e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2.37e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2.37e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.06e-12}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 3.81e-13}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 1.54e-09}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54e-09}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-09}, {"name": "Selenium IV", "categories": ["air"], "amount": 1.07e-09}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.07e-09}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.95e-12}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 5.29e-12}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 5.29e-12}, {"name": "Selenium IV", "categories": ["soil"], "amount": 5.29e-12}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 4.58e-10}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 4.58e-10}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 3.43e-09}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 4.58e-10}, {"name": "Selenium IV", "categories": ["water"], "amount": 4.58e-10}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-11}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.57e-12}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 4.33e-11}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 7.56e-08}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.56e-08}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.56e-08}, {"name": "Silver I", "categories": ["air"], "amount": 5.23e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 5.23e-08}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 3.29e-11}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 5.77e-11}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 5.77e-11}, {"name": "Silver I", "categories": ["soil"], "amount": 5.77e-11}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.09e-08}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 1.09e-08}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.67e-07}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.09e-08}, {"name": "Silver I", "categories": ["water"], "amount": 1.09e-08}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.97e-10}, {"name": "Simazine", "categories": ["air"], "amount": 3.6e-10}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.92e-11}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.88e-10}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 5.03e-10}, {"name": "Simazine", "categories": ["water"], "amount": 5.03e-10}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.25e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-14}, {"name": "Styrene", "categories": ["air"], "amount": 9.97e-15}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.97e-15}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 7.55e-13}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 7.55e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.5e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 7.55e-13}, {"name": "Styrene", "categories": ["water"], "amount": 7.55e-13}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.7e-10}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.35e-10}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7e-10}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.59e-11}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.13e-10}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.53e-10}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.53e-10}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.16e-11}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 7.8e-12}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.75e-10}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.77e-11}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.05e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 7.86e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.86e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.86e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.85e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.85e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.5e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.26e-11}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.26e-11}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 2.47e-09}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.47e-09}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.47e-09}, {"name": "Thallium I", "categories": ["air"], "amount": 2.04e-09}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 2.04e-09}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 5.63e-10}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1.09e-09}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1.09e-09}, {"name": "Thallium I", "categories": ["soil"], "amount": 1.09e-09}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.61e-09}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 2.61e-09}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 5e-09}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.61e-09}, {"name": "Thallium I", "categories": ["water"], "amount": 2.61e-09}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 6.08e-11}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.08e-11}, {"name": "Thiabendazole", "categories": ["air"], "amount": 5.14e-11}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1.85e-12}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.29e-11}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.76e-11}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.76e-11}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 2.73e-11}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-10}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.57e-10}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.26e-10}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 9e-10}, {"name": "Thiodicarb", "categories": ["water"], "amount": 9e-10}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.53e-11}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 6.77e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.67e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 9.07e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.32e-10}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.32e-10}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.61e-09}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-09}, {"name": "Thiram", "categories": ["air"], "amount": 9.61e-10}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.45e-11}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.16e-10}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.73e-09}, {"name": "Thiram", "categories": ["water"], "amount": 2.73e-09}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 7.12e-10}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.12e-10}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.12e-10}, {"name": "Tin ion", "categories": ["air"], "amount": 4.92e-10}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 4.92e-10}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1.03e-13}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1.63e-13}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1.63e-13}, {"name": "Tin ion", "categories": ["soil"], "amount": 1.63e-13}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.1e-10}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1.1e-10}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.57e-09}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.1e-10}, {"name": "Tin ion", "categories": ["water"], "amount": 1.1e-10}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.22e-14}, {"name": "Toluene", "categories": ["air"], "amount": 3.48e-14}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.48e-14}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 8.98e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.9e-13}, {"name": "Toluene", "categories": ["water"], "amount": 2.9e-13}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.45e-10}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.34e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.5e-11}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 2.32e-10}, {"name": "Triallate", "categories": ["air"], "amount": 1.06e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.41e-11}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.14e-10}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.37e-12}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 6.77e-11}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 1.15e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.15e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.68e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.68e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.71e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.68e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.68e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.33e-11}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.32e-15}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.32e-15}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.39e-10}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.41e-11}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.02e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.83e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.83e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 1.15e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.59e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 7.98e-14}, {"name": "Urea", "categories": ["water"], "amount": 7.98e-14}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 5.98e-13}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 7.45e-09}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.45e-09}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.45e-09}, {"name": "Vanadium V", "categories": ["air"], "amount": 5.16e-09}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 5.16e-09}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 3.27e-11}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 5.78e-11}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 5.78e-11}, {"name": "Vanadium V", "categories": ["soil"], "amount": 5.78e-11}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 7.96e-09}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 7.96e-09}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.65e-08}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 7.96e-09}, {"name": "Vanadium V", "categories": ["water"], "amount": 7.96e-09}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.88e-12}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-14}, {"name": "Xylene", "categories": ["air"], "amount": 1.74e-14}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.74e-14}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.77e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.07e-13}, {"name": "Xylene", "categories": ["water"], "amount": 3.07e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.43e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 8.57e-09}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 3.73e-09}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.73e-09}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.73e-09}, {"name": "Zinc II", "categories": ["air"], "amount": 2.59e-09}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 2.59e-09}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.45e-11}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.42e-11}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.42e-11}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.42e-11}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 7.47e-09}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 7.47e-09}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 8.59e-09}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 7.47e-09}, {"name": "Zinc II", "categories": ["water"], "amount": 7.47e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.91e-11}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.1e-10}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-14}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.92e-14}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 9.33e-13}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 9.33e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.11e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 9.33e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 9.33e-13}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.81e-14}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.81e-14}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.81e-14}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88e-14}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88e-14}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.31e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.04e-12}, {"name": "o-Xylene", "categories": ["water"], "amount": 1.04e-12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 4.78e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "ecotoxicity: terrestrial"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.11e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.14e-12}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 2.01e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.01e-11}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.21e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.07e-13}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.92e-12}, {"name": "1-Pentanol", "categories": ["water"], "amount": 7.92e-12}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.74e-13}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.35e-14}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 6.16e-15}, {"name": "2,4-D", "categories": ["water"], "amount": 6.16e-15}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.25e-18}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 5.32e-20}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.14e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 3.8e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.25e-18}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 5.32e-20}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.92e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.86e-13}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 5.42e-13}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 5.42e-13}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 2.55e-12}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 9.75e-13}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 9.1e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.1e-12}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.15e-14}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.51e-13}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.21e-14}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.14e-13}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.14e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.49e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 4.69e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.96e-18}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1e-15}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.1e-15}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 6.53e-12}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 7.38e-12}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.84e-11}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.84e-11}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.27e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 2.66e-14}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 5.6e-15}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 9.01e-16}, {"name": "Acephate", "categories": ["water"], "amount": 9.01e-16}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.94e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.44e-13}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 3.86e-12}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 3.86e-12}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 9.92e-10}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.86e-16}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 7.63e-14}, {"name": "Acetic acid", "categories": ["water"], "amount": 7.63e-14}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.52e-13}, {"name": "Acetone", "categories": ["air"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.48e-13}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 5.07e-14}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 2.69e-13}, {"name": "Acetone", "categories": ["water"], "amount": 2.69e-13}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.45e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.43e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 6.94e-13}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 3.48e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 3.48e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 1.6e-10}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 3.27e-09}, {"name": "Acrolein", "categories": ["water"], "amount": 4.82e-09}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.45e-16}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 4.85e-14}, {"name": "Acrylate", "categories": ["water"], "amount": 4.85e-14}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.21e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.21e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.21e-10}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.15e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.61e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 9.88e-12}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.57e-11}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.57e-11}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.64e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 1.84e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 8.32e-11}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.32e-11}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.32e-09}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 1.66e-09}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.97e-13}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 7.17e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.31e-08}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 3.94e-08}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 6.71e-10}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 9.75e-11}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.61e-11}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.57e-11}, {"name": "Aniline", "categories": ["air"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 7.08e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 4.67e-13}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.09e-12}, {"name": "Aniline", "categories": ["water"], "amount": 7.09e-12}, {"name": "Anthracene", "categories": ["air"], "amount": 3.97e-10}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.28e-10}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 8.11e-10}, {"name": "Anthracene", "categories": ["water"], "amount": 8.11e-10}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 6.63e-07}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.63e-07}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.63e-07}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.58e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 4.58e-07}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 2.6e-29}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 4.48e-29}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 4.48e-29}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 4.48e-29}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.28e-26}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.28e-26}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 4.63e-27}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.28e-26}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.28e-26}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.59e-10}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 1.64e-10}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.15e-10}, {"name": "Atrazine", "categories": ["water"], "amount": 1.15e-10}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 6.3e-13}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 7.54e-16}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.98e-09}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.64e-15}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.56e-15}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.94e-16}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.94e-16}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1.63e-08}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-08}, {"name": "Barium II", "categories": ["air"], "amount": 1.13e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.13e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 2.06e-28}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 4.32e-28}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 4.32e-28}, {"name": "Barium II", "categories": ["soil"], "amount": 4.32e-28}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 5.46e-28}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 5.46e-28}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.03e-28}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 5.46e-28}, {"name": "Barium II", "categories": ["water"], "amount": 5.46e-28}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.96e-18}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 5.88e-12}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.19e-15}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.28e-13}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 3.08e-13}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 3.08e-13}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.66e-12}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.52e-12}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 6.63e-12}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04e-12}, {"name": "Benzene", "categories": ["air"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 9.93e-13}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 4.87e-13}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 9.79e-13}, {"name": "Benzene", "categories": ["water"], "amount": 9.79e-13}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.05e-11}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.05e-11}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.53e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.4e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.47e-13}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.85e-13}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.85e-13}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71e-10}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 5.65e-10}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 5.52e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8.91e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.91e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.91e-10}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 8.89e-10}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.89e-10}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 8.64e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 8.78e-10}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 5.05e-12}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 5.05e-12}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 9.12e-14}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 3.8e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.06e-14}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 5.44e-13}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 5.44e-13}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 2.37e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.37e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.37e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.64e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.64e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.39e-29}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.97e-29}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.97e-29}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.97e-29}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.97e-26}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.97e-26}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.93e-26}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.97e-26}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.97e-26}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 1.08e-09}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.11e-09}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 3.33e-09}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.9e-09}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.12e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.49e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 2.47e-09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.56e-09}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.56e-09}, {"name": "Bisphenol A", "categories": ["water"], "amount": 7.3e-14}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.14e-16}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 8.57e-18}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.07e-13}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.31e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.83e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 3.77e-14}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 7.59e-15}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 7.59e-15}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 2.17e-11}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.94e-11}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.34e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.99e-13}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 1.71e-14}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 2.12e-13}, {"name": "Butanol", "categories": ["water"], "amount": 2.12e-13}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.36e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 4.55e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.01e-13}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 4.2e-12}, {"name": "Butyl acetate", "categories": ["water"], "amount": 4.2e-12}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 1.39e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 9.6e-07}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 9.6e-07}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.65e-29}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.96e-29}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.96e-29}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.96e-29}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2.52e-27}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 2.52e-27}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.08e-27}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2.52e-27}, {"name": "Cadmium II", "categories": ["water"], "amount": 2.52e-27}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.7e-12}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.45e-10}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.58e-11}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.58e-11}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.48e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.57e-12}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 9.95e-13}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.75e-13}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.75e-13}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.92e-12}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 4.24e-09}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 1.1e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 9.71e-12}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 9.71e-12}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.12e-12}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 9.71e-12}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 9.71e-12}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.12e-17}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 1.81e-14}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 1.81e-14}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.5e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.98e-18}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.72e-17}, {"name": "Chloramine", "categories": ["water"], "amount": 3.72e-17}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.34e-10}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 3.76e-12}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 7.06e-12}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-12}, {"name": "Chloroform", "categories": ["air"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 5.6e-12}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.5e-12}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.27e-12}, {"name": "Chloroform", "categories": ["water"], "amount": 5.27e-12}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.49e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.06e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.11e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.88e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 8.95e-09}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 3.18e-08}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 3.18e-08}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.86e-09}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 8.15e-17}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.84e-12}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 3.02e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 2.1e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.1e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.02e-29}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.86e-29}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.86e-29}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.86e-29}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 4.39e-28}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 4.39e-28}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.91e-28}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 4.39e-28}, {"name": "Chromium III", "categories": ["water"], "amount": 4.39e-28}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 1.02e-06}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.09e-07}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.09e-07}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 4.66e-28}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 8.52e-28}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 8.52e-28}, {"name": "Chromium VI", "categories": ["soil"], "amount": 8.52e-28}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2e-26}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 2e-26}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 8e-27}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2e-26}, {"name": "Chromium VI", "categories": ["water"], "amount": 2e-26}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.11e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 2.51e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 3.75e-13}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 2.96e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 2.05e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2.05e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.69e-30}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 4.66e-30}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 4.66e-30}, {"name": "Cobalt II", "categories": ["soil"], "amount": 4.66e-30}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 1.21e-27}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 1.21e-27}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.2e-27}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 1.21e-27}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.21e-27}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 8.73e-06}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.73e-06}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.73e-06}, {"name": "Copper ion", "categories": ["air"], "amount": 6.04e-06}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 6.04e-06}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 6.1e-29}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.05e-28}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.05e-28}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.05e-28}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.98e-26}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 2.98e-26}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.1e-26}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.98e-26}, {"name": "Copper ion", "categories": ["water"], "amount": 2.98e-26}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-13}, {"name": "Cumene", "categories": ["air"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.92e-13}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.57e-13}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 5.31e-13}, {"name": "Cumene", "categories": ["water"], "amount": 5.31e-13}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 3.84e-12}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.32e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 2.31e-15}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 7.36e-15}, {"name": "Cyclohexane", "categories": ["water"], "amount": 7.36e-15}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 6.54e-15}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.73e-16}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.94e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 1.55e-12}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.7e-19}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.9e-09}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.02e-08}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 3.08e-08}, {"name": "Cypermethrin", "categories": ["water"], "amount": 3.08e-08}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.9e-12}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.33e-16}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.78e-10}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 5.78e-14}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.28e-12}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 2.23e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 1.68e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.57e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.22e-08}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1.04e-22}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 3.11e-10}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 7.38e-12}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.64e-16}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.64e-16}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.21e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3e-09}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 7.92e-15}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.91e-17}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.91e-17}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.21e-08}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6.85e-09}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1.05e-11}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 1.7e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 6.77e-17}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.98e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.73e-14}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.73e-14}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.76e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.12e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.22e-13}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 8.74e-13}, {"name": "Diethylamine", "categories": ["water"], "amount": 8.74e-13}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.17e-08}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 7.85e-09}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.85e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 9.29e-11}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.15e-07}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.68e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 8.57e-11}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.64e-12}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.01e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 3.84e-12}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 7.98e-12}, {"name": "Dimethylamine", "categories": ["water"], "amount": 7.98e-12}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3e-11}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.47e-14}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 4.83e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 6.45e-17}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.94e-17}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.52e-18}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 7.52e-18}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.3e-12}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.26e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.33e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 5.23e-11}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4.31e-11}, {"name": "Diuron", "categories": ["water"], "amount": 2.9100000000000002e-11}, {"name": "Dodecanol", "categories": ["water"], "amount": 8.69e-11}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.45e-12}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 7.83e-16}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.49e-19}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.68e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 5.34e-09}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.17e-21}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.49e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.82e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.64e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.66e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 1.22e-09}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.69e-10}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.69e-10}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.29e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 2.3e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 2.2e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 2.2e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.27e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 2.2e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 2.2e-12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.06e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.06e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.66e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.1e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.41e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.41e-12}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 1.96e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 1.96e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.41e-10}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 1.96e-10}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.96e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.37e-13}, {"name": "Ethanol", "categories": ["air"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 8.21e-13}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.14e-14}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.99e-13}, {"name": "Ethanol", "categories": ["water"], "amount": 2.99e-13}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 6.4e-17}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.88e-22}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.88e-22}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.45e-11}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 1.64e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1.73e-08}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.51e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.21e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.17e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.63e-12}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.63e-12}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.56e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.21e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 1.23e-15}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.57e-15}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.57e-15}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.06e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 5.19e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.79e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.79e-11}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.53e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.71e-16}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 7.41e-18}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 7.27e-09}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 5.54e-11}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 5.51e-12}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 1.02e-10}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.09e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2.28e-11}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.65e-10}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.31e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.77e-10}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.98e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 3.06e-10}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 3.06e-10}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.65e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1.29e-08}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.02e-08}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.02e-08}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.02e-08}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 4.37e-09}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.61e-11}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.13e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 9.13e-10}, {"name": "Fluorene", "categories": ["air"], "amount": 2.07e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.37e-11}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 2.14e-09}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.19e-12}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 2.94e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.62e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.14e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 5.77e-13}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.01e-11}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.01e-11}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 7.62e-10}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 5.22e-17}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.04e-14}, {"name": "Formic acid", "categories": ["water"], "amount": 1.04e-14}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.58e-20}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 7.07e-14}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.07e-12}, {"name": "Furfural", "categories": ["air"], "amount": 1.81e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 8.38e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.53e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.02e-20}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.44e-21}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.99e-16}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.45e-21}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.73e-22}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.73e-22}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.77e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.26e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 9.09e-14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 9.09e-14}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.36e-16}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.36e-16}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 2.92e-09}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-15}, {"name": "Hexane", "categories": ["air"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.23e-15}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.98e-16}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.21e-15}, {"name": "Hexane", "categories": ["water"], "amount": 2.21e-15}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.23e-14}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 4.32e-12}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.73e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.18e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.55e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.55e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 6.56e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 9.06e-14}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 1.09e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.09e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.09e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.09e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.37e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.37e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 4.33e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 4.33e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 1.58e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 4.33e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 4.33e-13}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1.98e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.98e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.98e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.95e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.95e-12}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 8.95e-15}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.99e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4.92e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 6.83e-17}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 7.03e-21}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.26e-21}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.26e-21}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1.17e-13}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.44e-12}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 4.29e-16}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.29e-16}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 2.95e-12}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.55e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 6.14e-08}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 6.28e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 2.01e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 2.01e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2.01e-07}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 3.11e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.11e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.11e-07}, {"name": "Lead II", "categories": ["air"], "amount": 2.15e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.15e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 5.2e-32}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.05e-32}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.05e-32}, {"name": "Lead II", "categories": ["soil"], "amount": 8.05e-32}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 7.18e-29}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 7.18e-29}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.15e-28}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 7.18e-29}, {"name": "Lead II", "categories": ["water"], "amount": 7.18e-29}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 4.48e-18}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5.81e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.33e-18}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.14e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 7.51e-16}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.25e-16}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.25e-16}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 6.71e-15}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.01e-14}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.01e-14}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4.9e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.35e-21}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.48e-16}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.06e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.17e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 9.63e-15}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.09e-16}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.08e-16}, {"name": "Mancozeb", "categories": ["water"], "amount": 1.08e-16}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 9.9e-15}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.72e-13}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 1e-05}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 6.85e-06}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6.85e-06}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.3e-30}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 3.04e-30}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 3.04e-30}, {"name": "Mercury II", "categories": ["soil"], "amount": 3.04e-30}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 5.84e-27}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 5.84e-27}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 8.49e-27}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 5.84e-27}, {"name": "Mercury II", "categories": ["water"], "amount": 5.84e-27}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 8.29e-11}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 3.14e-15}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 2.18e-15}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.3e-11}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 4.08e-12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.36e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.51e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 6.5e-11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 6.5e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.2e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 5.61e-13}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.14e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.14e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.55e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.48e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 1.48e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 8.37e-12}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.48e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.48e-11}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-12}, {"name": "Methanol", "categories": ["air"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.39e-12}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 3.48e-14}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.81e-13}, {"name": "Methanol", "categories": ["water"], "amount": 4.81e-13}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.36e-10}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.1e-09}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 4.81e-12}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.35e-12}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 7.73e-13}, {"name": "Methomyl", "categories": ["water"], "amount": 7.73e-13}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 6.18e-11}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.51e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.4e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.19e-11}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.19e-11}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.72e-13}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.27e-13}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.45e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.61e-10}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.48e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 1.19e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.46e-12}, {"name": "Methylamine", "categories": ["water"], "amount": 2.46e-12}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 8.27e-12}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.1e-10}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.79e-10}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.29e-10}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.29e-10}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.66e-11}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 9.76e-12}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.02e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.24e-15}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 7.39e-16}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.2e-16}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2e-16}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 3.03e-10}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 1.01e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1.05e-08}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 7.28e-09}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 7.28e-09}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.61e-30}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.93e-30}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.93e-30}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.93e-30}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 6.93e-29}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 6.93e-29}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 5.11e-29}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 6.93e-29}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 6.93e-29}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1.6e-13}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.13e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.37e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 6.87e-14}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 3.15e-10}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 9.13e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 6.66e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.1e-11}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 6.91e-09}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 1.36e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 9.36e-07}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9.36e-07}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.31e-29}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 5.85e-29}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 5.85e-29}, {"name": "Nickel II", "categories": ["soil"], "amount": 5.85e-29}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 9.01e-27}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 9.01e-27}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.89e-27}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 9.01e-27}, {"name": "Nickel II", "categories": ["water"], "amount": 9.01e-27}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.51e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.39e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.69e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.69e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 2.01e-09}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 9.69e-15}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.94e-10}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1.52e-12}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 1.08e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.01e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 3.69e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 4.34e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.54e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.81e-11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.81e-11}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.35e-19}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.15e-09}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 2.05e-11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 7.34e-16}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.41e-10}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 7.89e-10}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 7.89e-10}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.57e-09}, {"name": "Permethrin", "categories": ["water"], "amount": 1.32e-08}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.57e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.22e-10}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.41e-17}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84e-11}, {"name": "Phenol", "categories": ["air"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.35e-11}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 6.3e-14}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.12e-12}, {"name": "Phenol", "categories": ["water"], "amount": 1.12e-12}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.48e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.48e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 9.67e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.67e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.67e-08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.79e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.79e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.3e-12}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.53e-12}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.38e-10}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3.1e-09}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4.74e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.13e-12}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 3.24e-11}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 3.24e-11}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 6.87e-12}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.22e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.22e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 4.56e-12}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 8.37e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 8.37e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.74e-14}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.04e-13}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.04e-13}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.73e-15}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 8.88e-10}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 4.31e-12}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 5.75e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 6.12e-10}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.92e-08}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 4.29e-10}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.15e-10}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.01e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 4.49e-16}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.86e-11}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7e-13}, {"name": "Propanol", "categories": ["air"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.75e-13}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 3.42e-14}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 3.44e-13}, {"name": "Propanol", "categories": ["water"], "amount": 3.44e-13}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.32e-14}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.31e-11}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 6.11e-12}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 2.7e-12}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.55e-12}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.55e-12}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 5.55e-10}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.19e-15}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 2.33e-13}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.33e-13}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.24e-11}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.28e-10}, {"name": "Pyrene", "categories": ["air"], "amount": 1.38e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.6e-09}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.94e-10}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 4.89e-15}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 1.36e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.47e-11}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 7.6e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 3.04e-09}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.06e-08}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.06e-08}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.09e-15}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.01e-14}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 4.48e-07}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.48e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 3.1e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 3.1e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.57e-29}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 2.83e-29}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 2.83e-29}, {"name": "Selenium IV", "categories": ["soil"], "amount": 2.83e-29}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 2.72e-27}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 2.72e-27}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 2.07e-27}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 2.72e-27}, {"name": "Selenium IV", "categories": ["water"], "amount": 2.72e-27}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.82e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 6.77e-13}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.59e-13}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 4.81e-05}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.81e-05}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.81e-05}, {"name": "Silver I", "categories": ["air"], "amount": 3.33e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 3.33e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 2.02e-28}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 3.52e-28}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 3.52e-28}, {"name": "Silver I", "categories": ["soil"], "amount": 3.52e-28}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 7.32e-26}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 7.32e-26}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 9.31e-26}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 7.32e-26}, {"name": "Silver I", "categories": ["water"], "amount": 7.32e-26}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.07e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.07e-10}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.91e-11}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.48e-11}, {"name": "Simazine", "categories": ["water"], "amount": 3.48e-11}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 8.76e-10}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-13}, {"name": "Styrene", "categories": ["air"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.83e-14}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 4.77e-14}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.58e-13}, {"name": "Styrene", "categories": ["water"], "amount": 1.58e-13}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.43e-08}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 8.68e-11}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.03e-12}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.01e-12}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 9.55e-13}, {"name": "Tebuconazole", "categories": ["water"], "amount": 9.55e-13}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 3.39e-11}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 6.71e-14}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 3.26e-09}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 5.45e-10}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.71e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81e-12}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.76e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.57e-12}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.48e-12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.48e-12}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 4.2e-07}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2e-07}, {"name": "Thallium I", "categories": ["air"], "amount": 2.91e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 2.91e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.7e-27}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 3.27e-27}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 3.27e-27}, {"name": "Thallium I", "categories": ["soil"], "amount": 3.27e-27}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 8.58e-27}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 8.58e-27}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 2.21e-27}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 8.58e-27}, {"name": "Thallium I", "categories": ["water"], "amount": 8.58e-27}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.24e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 4.41e-14}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 4.04e-14}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.18e-14}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.18e-14}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 5.59e-10}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.68e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.39e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 1.11e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.34e-09}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.34e-09}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.16e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 8.34e-11}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.68e-11}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.22e-11}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.22e-11}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-08}, {"name": "Thiram", "categories": ["air"], "amount": 6.43e-09}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 3.45e-12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.84e-12}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 2.09e-11}, {"name": "Thiram", "categories": ["water"], "amount": 2.09e-11}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 4e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 2.77e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 2.77e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 5.92e-31}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 7.01e-28}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 7.01e-28}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 8.49e-28}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 7.01e-28}, {"name": "Tin ion", "categories": ["water"], "amount": 7.01e-28}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.2e-13}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.06e-13}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.43e-13}, {"name": "Toluene", "categories": ["water"], "amount": 3.43e-13}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 9.93e-09}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2.02e-10}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.77e-14}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.19e-09}, {"name": "Triallate", "categories": ["air"], "amount": 5.36e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.14e-10}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 8.07e-10}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.64e-14}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.44e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.93e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.82e-13}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 6.03e-13}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 6.03e-13}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.02e-11}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.09e-17}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 2.05e-16}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 2.05e-16}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.88e-10}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.29e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 1.5e-10}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.63e-10}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.63e-10}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 4.89e-12}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 7.82e-18}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.47e-16}, {"name": "Urea", "categories": ["water"], "amount": 1.47e-16}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 2.26e-15}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 1.36e-06}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.62e-28}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2.85e-28}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2.85e-28}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2.85e-28}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 4.48e-26}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 4.48e-26}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.15e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 4.48e-26}, {"name": "Vanadium V", "categories": ["water"], "amount": 4.48e-26}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.67e-11}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 6.28e-14}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 2.09e-13}, {"name": "Xylene", "categories": ["water"], "amount": 2.09e-13}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.9e-09}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 9.8e-07}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8e-07}, {"name": "Zinc II", "categories": ["air"], "amount": 6.78e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 6.78e-07}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 8.39e-29}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4e-28}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4e-28}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.4e-28}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 5.72e-26}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 5.72e-26}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 8.11e-27}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 5.72e-26}, {"name": "Zinc II", "categories": ["water"], "amount": 5.72e-26}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.61e-10}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 8.48e-10}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.48e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87e-13}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 9.19e-14}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.04e-13}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.04e-13}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.38e-13}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 2.13e-13}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 7.07e-13}, {"name": "o-Xylene", "categories": ["water"], "amount": 7.07e-13}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 2.09e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "eutrophication: freshwater"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "eutrophication: marine"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "land use"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "photochemical oxidant formation: terrestrial ecosystems"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.71e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.71e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.92e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.15e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.15e-08}, {"name": "Acetic acid", "categories": ["air"], "amount": 6.79e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 6.79e-09}, {"name": "Acetone", "categories": ["air"], "amount": 4.52e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.52e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.07e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.07e-08}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.62e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.43e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.43e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.54e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air"], "amount": 3.92e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92e-08}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.96e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.96e-08}, {"name": "Cumene", "categories": ["air"], "amount": 2.41e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.11e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.47e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -7.54e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -7.54e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56e-08}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43e-08}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.47e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.47e-08}, {"name": "Formic acid", "categories": ["air"], "amount": 2.26e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Heptane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Hexane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 5.53e-09}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 5.53e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 8.6e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.6e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 7.54e-10}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Methanol", "categories": ["air"], "amount": 9.8e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41e-08}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air"], "amount": 9.55e-08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.97e-07}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.29e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.29e-07}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Phenol", "categories": ["air"], "amount": -3.77e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.77e-09}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanol", "categories": ["air"], "amount": 3.62e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62e-08}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propionic acid", "categories": ["air"], "amount": 9.8e-09}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 9.8e-09}, {"name": "Styrene", "categories": ["air"], "amount": 3.77e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.77e-09}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.54e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-10}, {"name": "Toluene", "categories": ["air"], "amount": 3.32e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48e-08}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88e-08}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "ecosystem quality", "water use: aquatic ecosystems"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "human health", "climate change: human health"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": 8.12e-08}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": 1.25e-05}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": 1.25e-05}, {"name": "Chloroform", "categories": ["air"], "amount": 4.87e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.87e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 2.14e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14e-05}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.14e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.14e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.000301}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.000301}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.69e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.69e-05}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000527}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000527}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.000207}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.000207}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 4.11e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.44e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.44e-07}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.000626}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000626}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000626}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.000626}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.000626}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.000408}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000408}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000408}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.000408}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.000408}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 2.37e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 2.37e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.000152}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000152}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000152}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.000152}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.000152}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.000476}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000476}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000476}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.000476}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.000476}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.000667}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.000495}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.45e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.45e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 7.31e-07}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 7.31e-07}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.000373}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000373}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000373}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.000373}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.000373}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.000633}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000633}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000633}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.000633}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.000633}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.000429}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.000429}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.000885}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.68e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.68e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.000877}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.000877}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 4.41e-05}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000197}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.9e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 6.82e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.65e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.65e-06}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 6.82e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000283}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000283}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.000396}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.00056}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.00056}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.000877}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00104}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.000516}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00142}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "human health", "human toxicity: carcinogenic"], "exchanges": [{"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.26e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.48e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 9.52e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.52e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.52e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.00156}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.00156}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 4.18e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 4.37e-06}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 4.37e-06}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 4.37e-06}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.84e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 3.84e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1e-24}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.84e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 3.84e-05}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1e-06}, {"name": "Benzene", "categories": ["air"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.79e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.24e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.17e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.17e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.28e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.42e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.19e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.19e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000235}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.000311}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000311}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00381}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 3.68e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.68e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.000859}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.000859}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.91e-08}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 4.02e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 4.02e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 4.02e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.53e-07}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.53e-07}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.29e-25}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.53e-07}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.53e-07}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 2.9e-05}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.000645}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.000645}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 6.49e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 6.66e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 6.66e-07}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2.04e-07}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 2.04e-07}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.12e-25}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2.04e-07}, {"name": "Cadmium II", "categories": ["water"], "amount": 2.04e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.28e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.37e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 9.72e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 4.29e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 4.29e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 2.71e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.19e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.23e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.86e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.86e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.65e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 7.03e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.2e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 3.22e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 3.22e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.64e-05}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.49e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.96e-06}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.33e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.46e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.17e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 4.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 2.73e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.23e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.23e-05}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.34e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.41e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.41e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.19e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00019}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.08e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4.55e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4.55e-07}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.62e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.000315}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.000315}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.39e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 5.38e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.38e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.38e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 5.31e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 5.31e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 1.78e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 1.78e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.67e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 1.78e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.78e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 4.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 6.21e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 6.21e-06}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 4.26e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 4.26e-07}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 1.5e-06}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-06}, {"name": "Lead II", "categories": ["air"], "amount": 5.58e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 5.58e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 5.25e-08}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 5.36e-08}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 5.36e-08}, {"name": "Lead II", "categories": ["soil"], "amount": 5.36e-08}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.45e-08}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 3.45e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 6.05e-28}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.45e-08}, {"name": "Lead II", "categories": ["water"], "amount": 3.45e-08}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 4.15e-05}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2.12e-05}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 8.13e-05}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 8.13e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.5e-07}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.55e-07}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.55e-07}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.55e-07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.28e-06}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 1.28e-06}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.95e-26}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.28e-06}, {"name": "Mercury II", "categories": ["water"], "amount": 1.28e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.17e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.11e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.28e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 6.28e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.93e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.28e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.28e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000755}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000755}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000755}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000783}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000783}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000719}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.000719}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000409}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000719}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000719}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 2.97e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.97e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.97e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 0.000104}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.000104}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 6.88e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 7.09e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 7.09e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 7.09e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.13e-05}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 1.13e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.68e-25}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.13e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 1.13e-05}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.44e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.4e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 2.82e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.82e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.000108}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.000108}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.06e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.06e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.64e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.06e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.06e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.93e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.54e-05}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.12e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.95e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.21e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.21e-06}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.25e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.24e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.33e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.42e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 3.76e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 3.76e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.74e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 3.76e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.76e-06}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.97e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "human health", "human toxicity: non-carcinogenic"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 3.35e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 8.07e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0044}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.22e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.53e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 1.28e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 2e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 2e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00216}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.22e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.09e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.66e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.66e-07}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 7.34e-05}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.89e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.81e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.75e-06}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.42e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water"], "amount": 9.33e-07}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 7.82e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 7.82e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 8.19e-07}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.69e-25}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.94e-05}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.000565}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000565}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000565}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.00204}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.00204}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 2.37e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 7.62e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 7.62e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 7.62e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.000666}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.000666}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 4.38e-24}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.000666}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.000666}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 1.39e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air"], "amount": 2.33e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.33e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.04e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.72e-25}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water"], "amount": 9.67e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 7.57e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.08e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3.06e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.86e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.86e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 2.96e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.15e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.06e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.07e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.44e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.44e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.49e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000306}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.83e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.83e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.00618}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00618}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00618}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.89e-10}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.02e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.02e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.02e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.88e-07}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 3.88e-07}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 8.91e-23}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.88e-07}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.88e-07}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.25e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.67e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.63e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.63e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.47e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.44e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000438}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000438}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.52e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.52e-06}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 9.83e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 9.19e-05}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.19e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.19e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.000326}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.000326}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.4e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.2e-05}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.2e-05}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.2e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.27e-05}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.27e-05}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.3e-25}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.27e-05}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.27e-05}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.64e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.89e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.89e-06}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000187}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000187}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.53e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.48e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.78e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.96e-07}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.25e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 2.25e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.97e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.36e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 2.92e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 2.92e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.58e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.86e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.97e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.46e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.28e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.28e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 4.65e-09}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4.65e-09}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 4.22e-12}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.26e-30}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water"], "amount": 1.11e-10}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00126}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00126}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.32e-25}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 7.82e-07}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 4.77e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 4.77e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 9.9e-11}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 5.15e-28}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water"], "amount": 2.87e-08}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 4.1e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.22e-08}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.01e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.72e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.86e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.86e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 6.38e-08}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 5.86e-06}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.98e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000197}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 2.18e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.18e-08}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.82e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.28e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.95e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 3.37e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 6.5e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.84e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.84e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 7.3e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 7.3e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.69e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5.04e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.04e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.000119}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 0.000119}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.66e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.000119}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.000119}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.92e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.54e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.33e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.39e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.79e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 7.09e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.02e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.02e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-07}, {"name": "Furan", "categories": ["air"], "amount": 8.09e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 8.09e-06}, {"name": "Furfural", "categories": ["air"], "amount": 3.63e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.04e-05}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 5.02e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00122}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.24e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.79e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 7.57e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.37e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 5.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.18e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 9.03e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 9.03e-06}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.000122}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000122}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000122}, {"name": "Lead II", "categories": ["air"], "amount": 0.000451}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.000451}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.4e-09}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 4.42e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 4.42e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 4.42e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2.83e-06}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 2.83e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 4.95e-26}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2.83e-06}, {"name": "Lead II", "categories": ["water"], "amount": 2.83e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.000113}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.02e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.000561}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000561}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000561}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0015}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0015}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.35e-08}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 7.09e-06}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 7.09e-06}, {"name": "Mercury II", "categories": ["soil"], "amount": 7.09e-06}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.53e-05}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 3.53e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.02e-25}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.53e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 3.53e-05}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000349}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 3.63e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 3.63e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 7.64e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 1.61e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 1.61e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 3.58e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 3.58e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.12e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.12e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000591}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000591}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000591}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000611}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000611}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000563}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.000563}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000319}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000563}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000563}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.79e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4.79e-06}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 3.56e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.42e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.51e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 4.79e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 4.79e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2.35e-07}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 8.82e-26}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 6.02e-06}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.15e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 4.86e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.56e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.51e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.35e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 3.69e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-07}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-07}, {"name": "Nickel II", "categories": ["air"], "amount": 1.33e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.33e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 9.26e-10}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 9.39e-08}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 9.39e-08}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.39e-08}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.49e-07}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 1.49e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.1e-27}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.49e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 1.49e-07}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.85e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.63e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.74e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 3.24e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 3.24e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.02e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.65e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.37e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 3.92e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 2.39e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.39e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 6.63e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 9.8e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.89e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000137}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 7.23e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.13e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.72e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 5.29e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 9.76e-08}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 5.13e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.78e-08}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 6.25e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.37e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 3.37e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.28e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.21e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air"], "amount": 0.000465}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.000465}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 6.95e-08}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.76e-25}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water"], "amount": 1.51e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.92e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.95e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.05e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 4.81e-09}, {"name": "Styrene", "categories": ["water"], "amount": 4.81e-09}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.42e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.54e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 2.71e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 2.71e-06}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 9.01e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 9.01e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 9.26e-06}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.04e-25}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water"], "amount": 3.1e-05}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.96e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.2e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.63e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 3.51e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1e-05}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 3.6e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.18e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.12e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.92e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.92e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.66e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.35e-05}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.35e-05}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4.06e-08}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.6e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water"], "amount": 6.29e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4.15e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.58e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 7.2e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 7.2e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.55e-08}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.86e-26}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 5.61e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.88e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.36e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.41e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.16e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "human health", "ionising radiation"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 2.92e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 2.07e-13}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 3.22e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 2.28e-11}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 3.34e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 6.06e-12}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 3.22e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water"], "amount": 5.88e-08}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 3.96e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water"], "amount": 6.18e-08}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 1.86e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water"], "amount": 2.35e-11}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 1.67e-11}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 1.6e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 1.8e-08}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 2.45e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.77e-13}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 1.51e-10}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water"], "amount": 1.71e-09}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 2.04e-10}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 3.84e-12}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 4.1e-14}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 1.3e-10}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.82e-14}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 6.18e-10}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 9.86e-12}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 7.41e-12}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 1.6e-12}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 2.04e-10}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 3.09e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water"], "amount": 8.64e-11}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 5.32e-13}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 5.32e-13}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water"], "amount": 5.13e-11}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 5.81e-14}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "human health", "ozone depletion"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 1.66e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-06}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.66e-06}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.66e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 9.39e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 9.39e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000119}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000119}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 6.52e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 6.52e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 3.91e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.91e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.91e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 3.91e-05}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 3.91e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2.63e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.63e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.63e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.63e-05}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.63e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 5.93e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 5.93e-06}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1.16e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.16e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.16e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1.16e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1.16e-05}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7.58e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.58e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.58e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7.58e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7.58e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 3.06e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 3.06e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.000391}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000391}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.00357}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00357}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00357}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.00357}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.00357}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.00281}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00281}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00281}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.00281}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.00281}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.01e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.01e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 9.98e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 9.98e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.19e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.19e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000285}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000285}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.000237}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.000237}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "human health", "particulate matter formation"], "exchanges": [{"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "human health", "photochemical oxidant formation: human health"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.72e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.82e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.82e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air"], "amount": 1.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1.98e-08}, {"name": "Acrolein", "categories": ["air"], "amount": 1.78e-07}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.78e-07}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1.58e-07}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -6.27e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -6.27e-08}, {"name": "Benzene", "categories": ["air"], "amount": 3.3e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.52e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 2.94e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.94e-07}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air"], "amount": 1.72e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.72e-07}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cumene", "categories": ["air"], "amount": 1.06e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 9.24e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.52e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -3.3e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -3.3e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.12e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.12e-07}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 6.27e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 6.27e-08}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.22e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.22e-07}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.52e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.52e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 8.95e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.48e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.48e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.42e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.42e-08}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 3.3e-09}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Methanol", "categories": ["air"], "amount": 4.29e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.06e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.06e-07}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.63e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.63e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 6.73e-07}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.39e-06}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 9.1e-07}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Phenol", "categories": ["air"], "amount": -1.65e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -1.65e-08}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Styrene", "categories": ["air"], "amount": 1.65e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.65e-08}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.3e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-09}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 9.57e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.57e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "human health", "water use: human health"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 3.1e-06}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "natural resources", "energy resources: non-renewable, fossil"], "exchanges": [{"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "natural resources", "material resources: metals/minerals"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0161}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0161}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.165}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0142}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00216}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 13.4}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.441}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0124}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.037}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.037}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.00889}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00889}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0352}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.000968}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.000933}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 0.639}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.639}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0049}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00142}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 14.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 14.8}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 61.9}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0213}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000229}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 17.2}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 18.4}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 18.4}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.04}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.04}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.098}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.098}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.006}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.006}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 1.33}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 0.711}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00081}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.000492}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 107}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 107}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 2.04}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.0507}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.00918}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00372}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 9.02}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 9.02}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 2.94}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.94}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 260}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.834}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.834}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.15}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.7}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.556}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0184}]}, {"unit": "species.yr", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "total: ecosystem quality", "ecosystem quality"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 3.5151e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5151e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5151e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.4643e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.6904e-11}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 6.158999999999999e-10}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 6.158999999999999e-10}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7344e-11}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.2396e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.48272e-12}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 3.6652e-11}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.6652e-11}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.16e-08}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.16e-08}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83573e-08}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.53574e-10}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.3311235e-09}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.83530616e-09}, {"name": "2,4-D", "categories": ["water"], "amount": 1.83530616e-09}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7241e-10}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.0934000125e-10}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 7.482800000532e-10}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 7.482800000532e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7241e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 5.1354e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.0934000125e-10}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 7.482800000532e-10}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.525999999999999e-10}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 7.632100000000001e-11}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 2.995542e-09}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 2.995542e-09}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.847549999999999e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7342e-11}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.7113923e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.7113923e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.5517e-12}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.6551e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.6551e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 6.18e-08}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 6.18e-08}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 3.09e-08}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 3.09e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.01485e-11}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.999e-13}, {"name": "2-Propanol", "categories": ["air"], "amount": 1.36004269e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.36004269e-08}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.5554e-12}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 3.5554e-12}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 1.2917e-13}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.5554e-12}, {"name": "2-Propanol", "categories": ["water"], "amount": 3.5554e-12}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.32e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.32e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 6.530280000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.530280000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.530280000000001e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.9679974e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.9679974e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 7.350059939e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 4.55641e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 4.55641e-11}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.001e-11}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1.313e-11}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.313e-11}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 9.854700000000002e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 9.854700000000002e-09}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.23877e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 9.854700000000002e-09}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.854700000000002e-09}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.32086e-09}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 8.90666e-11}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.991756000000001e-10}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 6.232009010000001e-10}, {"name": "Acephate", "categories": ["water"], "amount": 6.232009010000001e-10}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.828999999999999e-12}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.1503718e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.1503718e-08}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 8.523199999999999e-12}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 1.04851e-10}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 1.04851e-10}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.438444e-09}, {"name": "Acetic acid", "categories": ["air"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 7.808436e-09}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 1.76038805e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.183263e-10}, {"name": "Acetic acid", "categories": ["water"], "amount": 1.183263e-10}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.444e-13}, {"name": "Acetone", "categories": ["air"], "amount": 4.5204408e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.5204408e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.4871e-13}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.8318e-12}, {"name": "Acetone", "categories": ["water"], "amount": 1.8318e-12}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.878e-12}, {"name": "Acetonitrile", "categories": ["air"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.862e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.1213e-12}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.801e-12}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.801e-12}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 3.756e-09}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.972400000000001e-09}, {"name": "Acrolein", "categories": ["air"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 4.416940000000001e-08}, {"name": "Acrolein", "categories": ["water"], "amount": 5.336e-08}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 9.18425e-11}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 9.18425e-11}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.37024635e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 9.18425e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 9.18425e-11}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.26068e-10}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.37757e-10}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.37757e-10}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.862e-11}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.233999999999999e-11}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.233999999999999e-11}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.4715e-10}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.4715e-10}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 3.6996e-11}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.4715e-10}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.4715e-10}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.7847e-08}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9.902e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3722e-10}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.630106e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.630106e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.8868e-08}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 1.341e-09}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 4.113600000000001e-08}, {"name": "Allyl chloride", "categories": ["water"], "amount": 2.1577e-10}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.617e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.408e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.238e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 7.871000000000001e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.88194e-05}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.5376e-08}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.3116e-09}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air"], "amount": 4.16e-07}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 4.16e-07}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.32e-09}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.92e-10}, {"name": "Ammonium", "categories": ["water"], "amount": 3.92e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.82971e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.7341e-11}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7341e-11}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7341e-11}, {"name": "Aniline", "categories": ["air"], "amount": 9.983e-12}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 9.983e-12}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 7.4179e-10}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 7.4179e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.50817e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 7.4179e-10}, {"name": "Aniline", "categories": ["water"], "amount": 7.4179e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.024e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 2.49861e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 2.49861e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.27217e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 2.49861e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 2.49861e-07}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.7777e-10}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 6.67141e-07}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.67141e-07}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.67141e-07}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.60948e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 4.60948e-07}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.518e-10}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 2.64e-10}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 2.64e-10}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 2.64e-10}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4.402e-08}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 4.402e-08}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 7.55e-09}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4.402e-08}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4.402e-08}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1347e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.0688e-08}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.0408e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.26685e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.26685e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 1.26685e-07}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 3.1954e-10}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 5.337007539999999e-10}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.6636e-07}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.697e-08}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 2.41970164e-09}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.923600156e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 1.10360000694e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 1.10360000694e-07}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1.6734e-08}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6734e-08}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6734e-08}, {"name": "Barium II", "categories": ["air"], "amount": 1.2165e-08}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.2165e-08}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8.653999999999999e-10}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.858e-09}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.858e-09}, {"name": "Barium II", "categories": ["soil"], "amount": 1.858e-09}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.072e-09}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 2.072e-09}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.072e-09}, {"name": "Barium II", "categories": ["water"], "amount": 2.072e-09}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 4.596500196e-11}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 2.488e-11}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.14411719e-09}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2501e-10}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.925000000000001e-11}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 4.77278e-10}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 4.77278e-10}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.564e-11}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.564e-11}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.564e-11}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -1.428916e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 5.2778e-10}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3234e-12}, {"name": "Benzene", "categories": ["air"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 7.541264500000001e-09}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.8589e-12}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.178899999999999e-11}, {"name": "Benzene", "categories": ["water"], "amount": 6.178899999999999e-11}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.053e-11}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.344599999999999e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 6.313999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.313999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.313999999999999e-13}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.47005027e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.47005027e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 2.40085e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 2.40085e-10}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.875177e-11}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 2.40085e-10}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.40085e-10}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.6084e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6084e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6084e-09}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1.5863e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.5863e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1.8792e-08}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3.0586e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0586e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0586e-09}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 3.0567e-09}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.0567e-09}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 1.3624e-08}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 6.704999999999999e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.704999999999999e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.704999999999999e-09}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.984e-09}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 3.984e-09}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 9.457505e-08}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 9.457505e-08}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.43142e-11}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 2.4131e-11}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 3.4135e-12}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 1.99278e-10}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 1.99278e-10}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 2.377779e-06}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.377779e-06}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.377779e-06}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.645417e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.645417e-06}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.255999999999999e-11}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.2058e-10}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.2058e-10}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.2058e-10}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3.633e-08}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 3.633e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.57e-08}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3.633e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 3.633e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.568e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.747e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.9848e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.510533e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.510533e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.467e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 4.793e-10}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.431999999999999e-07}, {"name": "Bifenthrin", "categories": ["air"], "amount": 3.215e-07}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 1.439e-08}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 6.864e-08}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 8.597560000000001e-06}, {"name": "Bifenthrin", "categories": ["water"], "amount": 8.597560000000001e-06}, {"name": "Bisphenol A", "categories": ["water"], "amount": 3.1461073e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 9.43810514e-10}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2.087300857e-11}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 7.157107e-09}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.474e-09}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.907739999999999e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.24030377e-08}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 1.1697400759e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 1.1697400759e-07}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 8.2827e-09}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.6008e-09}, {"name": "Butadiene", "categories": ["air"], "amount": 6.71e-08}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.71e-08}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air"], "amount": 2.34e-08}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 2.34e-08}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.197000000000001e-13}, {"name": "Butanol", "categories": ["air"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 3.92005599e-08}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.29704e-11}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.29704e-11}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 3.3042e-13}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.29704e-11}, {"name": "Butanol", "categories": ["water"], "amount": 1.29704e-11}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air"], "amount": 4.75e-08}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 4.75e-08}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.781999999999999e-12}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.9604911e-08}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 3.9213e-12}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 5.812e-11}, {"name": "Butyl acetate", "categories": ["water"], "amount": 5.812e-11}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 1.39275e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39275e-06}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39275e-06}, {"name": "Cadmium II", "categories": ["air"], "amount": 9.619679999999998e-07}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 9.619679999999998e-07}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.1487e-10}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.0716e-10}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.0716e-10}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.0716e-10}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.0799e-08}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.0799e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 5.62e-09}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.0799e-08}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.0799e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.82287e-08}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.11716e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.588999999999999e-09}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.12428e-08}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.12428e-08}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19034e-07}, {"name": "Carbendazim", "categories": ["air"], "amount": 9.9899e-08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 3.17787e-09}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.8454995e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 3.2168475e-08}, {"name": "Carbendazim", "categories": ["water"], "amount": 3.2168475e-08}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 4.9804e-10}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.2884e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 5.320145e-10}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.320145e-10}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6842e-11}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.6742e-11}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.6742e-11}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2.6611e-10}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 2.6611e-10}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.07891e-11}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2.6611e-10}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2.6611e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 9.870916389999999e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 6.60581e-11}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 6.60581e-11}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 3.031176e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.031176e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.031176e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.528189e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.44000000198677e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.515420000372e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.515420000372e-07}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 2.9171e-09}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 2.8311e-10}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 6.4105e-08}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 3.8319e-10}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.0423e-11}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0423e-11}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0423e-11}, {"name": "Chloroform", "categories": ["air"], "amount": 3.1911283e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 3.1911283e-08}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.232e-10}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.232e-10}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.10594e-11}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.232e-10}, {"name": "Chloroform", "categories": ["water"], "amount": 1.232e-10}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.856e-07}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.841e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.3265e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.321e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 5.879e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 5.879e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.94e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 2.586e-07}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1.28375e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 1.05088e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 1.05088e-05}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.6962e-08}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.7246000815e-09}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.02027e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 3.024174e-07}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.024174e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.024174e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 2.103199e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.103199e-07}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.451e-11}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.0012e-10}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.0012e-10}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.0012e-10}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.4579e-09}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.4579e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 8.22e-10}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.4579e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 1.4579e-09}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 1.027e-06}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.027e-06}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.027e-06}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.152e-07}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.152e-07}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 2.41e-09}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.433e-09}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.433e-09}, {"name": "Chromium VI", "categories": ["soil"], "amount": 4.433e-09}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 6.162e-08}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 6.162e-08}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.16e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 6.162e-08}, {"name": "Chromium VI", "categories": ["water"], "amount": 6.162e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 6.9531e-10}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 5.154200000000001e-10}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 4.90445e-10}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 2.966536e-07}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.966536e-07}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.966536e-07}, {"name": "Cobalt II", "categories": ["air"], "amount": 2.054597e-07}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2.054597e-07}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 1.5067e-11}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.6237e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.6237e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.6237e-11}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.081e-09}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 4.081e-09}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.38e-09}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.081e-09}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.081e-09}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 8.74739e-06}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74739e-06}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74739e-06}, {"name": "Copper ion", "categories": ["air"], "amount": 6.05222e-06}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 6.05222e-06}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.5013e-10}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 6.071e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 6.071e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 6.071e-10}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.0342e-07}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1.0342e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.0342e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 1.0342e-07}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 7.154000000000001e-13}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.154000000000001e-13}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.154000000000001e-13}, {"name": "Cumene", "categories": ["air"], "amount": 2.41005784e-08}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.41005784e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 3.486335e-11}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 3.89631e-10}, {"name": "Cumene", "categories": ["water"], "amount": 3.89631e-10}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5.32084e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.128e-15}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3.810636e-11}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 3.810636e-11}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.5923605e-12}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3.810636e-11}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3.810636e-11}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.1100007179e-08}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 4.3965373e-11}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.84e-08}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.0825e-10}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 3.42860047e-12}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.012e-06}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.467e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 6.025000000000001e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.494079999999999e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.494079999999999e-05}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.4298e-09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 9.0709e-09}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4.17110233e-10}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 7.0004e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.72918e-11}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.55408e-09}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 3.839e-07}, {"name": "Deltamethrin", "categories": ["air"], "amount": 2.945e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 3.192e-08}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 4.497500000000001e-06}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.711700000010401e-11}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 1.1812e-08}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73325e-08}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 2.383e-10}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1.633600264e-09}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1.633600264e-09}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 5.551e-10}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.3361e-08}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.24309e-09}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 5.708092e-11}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 4.416800291e-10}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 4.416800291e-10}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 2.4931e-08}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.1248e-08}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.28872e-09}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 2.641e-09}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.102340677e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 7.635e-14}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.635e-14}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.635e-14}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.470005178999999e-08}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.470005178999999e-08}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 2.78406e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.78406e-09}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.78406e-09}, {"name": "Diethylamine", "categories": ["air"], "amount": 2.17929e-09}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.17929e-09}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 5.635339999999999e-12}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 3.23034e-10}, {"name": "Diethylamine", "categories": ["water"], "amount": 3.23034e-10}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7266e-06}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.2893e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.4415e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 3.484149999999999e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 3.484149999999999e-06}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 2.6038e-09}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.154666e-07}, {"name": "Dimethoate", "categories": ["air"], "amount": 2.91575e-08}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 4.06e-09}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 2.699944e-08}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1.36e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.36e-08}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35581e-08}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1.025002e-08}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.025002e-08}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 6.864200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 6.864200000000001e-10}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 1.48553e-11}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 6.864200000000001e-10}, {"name": "Dimethylamine", "categories": ["water"], "amount": 6.864200000000001e-10}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 1.4000383e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4000383e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4000383e-07}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.4000383e-07}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.4000383e-07}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 7.245024e-11}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 8.3724e-09}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.656217e-10}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 1.09274e-08}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09274e-08}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 6.053e-09}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 9.478500644999999e-10}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.1109000494e-09}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.371500000752e-08}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.371500000752e-08}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 2.7429e-09}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 2.4113e-09}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.351e-07}, {"name": "Diuron", "categories": ["air"], "amount": 2.5858e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.07409e-08}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 6.901710000000001e-08}, {"name": "Diuron", "categories": ["water"], "amount": 1.563291e-07}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.57777e-08}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 2.496299999999999e-10}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 8.520707829999999e-10}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.21469000249e-10}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 9.776e-11}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 3.011e-08}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.9541400000117e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7879e-10}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.7475e-10}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.7475e-10}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 7.047e-10}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23305e-07}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 8.5744e-08}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.381000000000001e-09}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 3.0544e-08}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 6.0639e-08}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 6.0639e-08}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8227e-05}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8.371e-07}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air"], "amount": 6.03e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.9700538e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.9700538e-06}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 9.616799999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.616799999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.616799999999999e-12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 3.062639672e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 3.062639672e-07}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 9.309e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 9.309e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.99014e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 9.309e-11}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 9.309e-11}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 3.690101e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5615e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.5495e-11}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.5495e-11}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.4500941e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 3.4500941e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1.360037e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1.360037e-06}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.6900734e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.688999999999999e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.6066825e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.6066825e-09}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 4.486e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 4.486e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 8.6389e-12}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 4.486e-11}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 4.486e-11}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 4.100111999999999e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2.6700728e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6700728e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6700728e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2.6700728e-06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2.6700728e-06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.5500423e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.5500423e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 9.950271e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.950271e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.950271e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 9.950271e-07}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 9.950271e-07}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 3.120085e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.120085e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.120085e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 3.120085e-06}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 3.120085e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.386e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 3.386e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.22444e-09}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.386e-09}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.386e-09}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 4.370118999999999e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.370118999999999e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.370118999999999e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 4.370118999999999e-06}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 4.370118999999999e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3.2400883e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2400883e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2400883e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3.2400883e-06}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3.2400883e-06}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0506e-12}, {"name": "Ethanol", "categories": ["air"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 2.56009424e-08}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 4.6925e-12}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 4.6925e-12}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.1745e-13}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 4.6925e-12}, {"name": "Ethanol", "categories": ["water"], "amount": 4.6925e-12}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16852e-09}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 3.2974064e-11}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.29910000000288e-10}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.29910000000288e-10}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 8.8075e-10}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 5.8105e-10}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.50795e-08}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.8959e-12}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.43055778e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.43055778e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.1162e-12}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 1.6307e-11}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.6307e-11}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air"], "amount": 7.54e-08}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 7.54e-08}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.58283e-09}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 6.26877e-09}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 6.26877e-09}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2.9606257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 2.9606257e-10}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.78123344e-12}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2.9606257e-10}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.9606257e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 2.79e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 2.79e-08}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3138e-11}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.3132e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.713000000000001e-12}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 5.327e-11}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 5.327e-11}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air"], "amount": 5.28e-09}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 3.4501e-09}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.557800471e-09}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 4.535000000741e-08}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.4088e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 3.286e-09}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 7.05391e-09}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 5.387699999999999e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 7.599999999999999e-08}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.2465e-09}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.5801e-08}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.956e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 1.7706e-09}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.2453e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 6.2176e-08}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 6.2176e-08}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4361e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.8734e-06}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 8.923e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 5.448e-07}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 1.6251e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 1.6251e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 1.6251e-06}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.2503e-07}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 3.37e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.067999999999999e-10}, {"name": "Fluoranthene", "categories": ["air"], "amount": 3.25e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.35983e-07}, {"name": "Fluorene", "categories": ["air"], "amount": 4.607e-11}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 5.0082e-09}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 5.0952e-09}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 1.6724e-10}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.16156e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.608e-09}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8667e-10}, {"name": "Formaldehyde", "categories": ["air"], "amount": 3.483852999999999e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.483852999999999e-08}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 6.4259e-10}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 6.4259e-10}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.15095e-11}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 6.4259e-10}, {"name": "Formaldehyde", "categories": ["water"], "amount": 6.4259e-10}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.084709e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 3.036011e-09}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 8.88052407e-13}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 5.943639999999999e-11}, {"name": "Formic acid", "categories": ["water"], "amount": 5.943639999999999e-11}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.3341000858e-12}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 6.945707e-10}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 1.4325e-10}, {"name": "Furfural", "categories": ["air"], "amount": 1.86698e-10}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.127660000202e-10}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 8.5423e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 6.9543e-09}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.127660000202e-10}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.98070000000144e-09}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73277e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 2.43880699e-10}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.13405000000145e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.665980000000373e-09}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.665980000000373e-09}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.665980000000373e-09}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8818e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.4885e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 2.29360909e-08}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 2.29360909e-08}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1676e-16}, {"name": "Heptane", "categories": ["air"], "amount": 2.640000025104e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.640000025104e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 1.05382e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8633e-15}, {"name": "Hexane", "categories": ["air"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 3.02000023749e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 6.59050712e-12}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 9.827221e-11}, {"name": "Hexane", "categories": ["water"], "amount": 9.827221e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.0755423e-09}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.0823e-10}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 1.1854e-08}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 8.0538e-08}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 8.0538e-08}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.2558e-09}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 8.0538e-08}, {"name": "Hydrazine", "categories": ["water"], "amount": 8.0538e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 2.05070138e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 2.05070138e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5409e-12}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 2.05070138e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 2.05070138e-08}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 2.1167e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.1167e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.809164e-11}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 2.1167e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 2.1167e-10}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 4.695000000000001e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.695000000000001e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.695000000000001e-13}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 3.39003876e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 3.39003876e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 9.9183e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 9.9183e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 9.6225e-12}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 9.9183e-11}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 9.9183e-11}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 7.702000000000001e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.702000000000001e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.702000000000001e-12}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.1638068e-08}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.1638068e-08}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 4.33465e-12}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 6.04264e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04264e-08}, {"name": "Imidacloprid", "categories": ["air"], "amount": 5.04983e-08}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 9.233000682999999e-10}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.890600000007031e-09}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.43990000000226e-09}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.43990000000226e-09}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 4.295717e-09}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 2.47404e-09}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 2.11e-08}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1896e-15}, {"name": "Isoprene", "categories": ["air"], "amount": 8.600000047030001e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.600000047030001e-08}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 3.42125e-09}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.581e-06}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.531e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 3.998e-07}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 3.4411e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 3.4411e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.4411e-05}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 3.1111827e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1111827e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1111827e-07}, {"name": "Lead II", "categories": ["air"], "amount": 2.1508175e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.1508175e-07}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.4947e-13}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 6.991e-13}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 6.991e-13}, {"name": "Lead II", "categories": ["soil"], "amount": 6.991e-13}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.816e-10}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 3.816e-10}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.44e-10}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.816e-10}, {"name": "Lead II", "categories": ["water"], "amount": 3.816e-10}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.7813000448e-10}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 8.84e-08}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.5213000233e-10}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.21384e-09}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 1.20435751e-10}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.144080125e-09}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.144080125e-09}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-09}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.3311671e-10}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 4.2050101e-09}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 4.2050101e-09}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 8.9416e-09}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.0373100000135e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 2.1377448e-11}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.10246e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.27495e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 7.502209629999998e-09}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.9631000409e-08}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.4555000108e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.4555000108e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 7.7140099e-09}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 8.45782e-10}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 1.000974e-05}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.000974e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.000974e-05}, {"name": "Mercury II", "categories": ["air"], "amount": 6.856657e-06}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6.856657e-06}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.0421e-11}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.7157e-11}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.7157e-11}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.7157e-11}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.1461e-08}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 3.1461e-08}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.88e-08}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.1461e-08}, {"name": "Mercury II", "categories": ["water"], "amount": 3.1461e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.8866e-10}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.565620314e-08}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.4050818e-10}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1.5619e-09}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 7.9263e-10}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 9.016e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1.3181e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3181e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3181e-10}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 4.921951e-09}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 4.921951e-09}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2.4400666e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4400666e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4400666e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2.4400666e-06}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2.4400666e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 4.150113e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.150113e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.150113e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 4.150113e-06}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 4.150113e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2.8100766e-06}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2.8100766e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 5.800158e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.800158e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.800158e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 5.800158e-06}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 5.800158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.063e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.063e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.063e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.9862528e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.9862528e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.2312e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.2312e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 4.0236e-12}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.2312e-11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.2312e-11}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 5.750157e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 5.750157e-06}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 2.8900787e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8900787e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8900787e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 2.8900787e-07}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 2.8900787e-07}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 1.2900352e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2900352e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2900352e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1.2900352e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1.2900352e-06}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 4.520123e-08}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.520123e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.520123e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.520123e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.520123e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 4.470122e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.470122e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.470122e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.470122e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.470122e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.4654653e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4654653e-08}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.470122e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.470122e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.470122e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.470122e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.470122e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 6.6343e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.6343e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6343e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.850116543e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.850116543e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.358e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 4.358e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 9.975500000000001e-11}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.358e-10}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.358e-10}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 2.6000708e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6000708e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6000708e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 2.6000708e-06}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 2.6000708e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 3.6701e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 3.6701e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 5.750157e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.750157e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.750157e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 5.750157e-06}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 5.750157e-06}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5935e-12}, {"name": "Methanol", "categories": ["air"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 9.8015291e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 3.9243e-12}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 3.9243e-12}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.1133e-13}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 3.9243e-12}, {"name": "Methanol", "categories": ["water"], "amount": 3.9243e-12}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 5.9243e-09}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 2.0766e-08}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74674e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.99641e-09}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 3.322135e-08}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 5.4797773e-08}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 5.4797773e-08}, {"name": "Methomyl", "categories": ["water"], "amount": 5.4797773e-08}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.380999999999999e-10}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 5.28e-09}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 5.28e-09}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.481000000000001e-11}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 4.8287e-11}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 4.8287e-11}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 5.559300000000001e-10}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 5.559300000000001e-10}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 5.5554e-11}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 5.559300000000001e-10}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 5.559300000000001e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.964e-13}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 2.41003798e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 2.41003798e-08}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 2.6672e-12}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 2.26e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 2.26e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.145e-09}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 3.921300000000001e-09}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.54789e-09}, {"name": "Methylamine", "categories": ["air"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 3.52506e-09}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 2.0619e-10}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 2.0619e-10}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 4.4743e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 2.0619e-10}, {"name": "Methylamine", "categories": ["water"], "amount": 2.0619e-10}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 2.382e-10}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.933599999999999e-08}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 6.8323e-09}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4.3917e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.03419e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.03419e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.03419e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63413e-07}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.08258e-08}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.0387676e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26373e-05}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.07672e-05}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.6750000124e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 2.116100000739e-06}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 3.56420000032e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.56420000032e-06}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 7.748099999999999e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 5.3465e-10}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1.053621e-08}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.053621e-08}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.053621e-08}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 7.3108e-09}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 7.3108e-09}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.0298e-11}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.8944e-11}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.8944e-11}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.8944e-11}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.719e-10}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.719e-10}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.74e-11}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.719e-10}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.719e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 8.29e-09}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 8.29e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 2.17801e-09}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.14563e-09}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 3.4087e-09}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 2.007877e-10}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.26302e-09}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.74e-08}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.3107e-08}, {"name": "Naphthalene", "categories": ["air"], "amount": 9.312e-12}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.6425e-09}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 5.4734e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 1.365184e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.365184e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.365184e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 9.396840000000001e-07}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9.396840000000001e-07}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.8356e-10}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.2686e-10}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.2686e-10}, {"name": "Nickel II", "categories": ["soil"], "amount": 3.2686e-10}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.036e-08}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3.036e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.03e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.036e-08}, {"name": "Nickel II", "categories": ["water"], "amount": 3.036e-08}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 1.527e-07}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 3.84e-10}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 1.14e-10}, {"name": "Nitrate", "categories": ["water"], "amount": 1.14e-10}, {"name": "Nitric oxide", "categories": ["air"], "amount": 3.14e-07}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.7912e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7912e-10}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7912e-10}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.774e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.8839e-11}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 7.094000000000001e-10}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 7.094000000000001e-10}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 2.15e-10}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 1.53e-10}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 6.810186e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.810186e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.810186e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 6.810186e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 6.810186e-06}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 2.053e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 2.053e-07}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1.7e-09}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 5.05e-10}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 5.05e-10}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 3.427e-09}, {"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 4.88e-09}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 6.22e-09}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 2.66e-09}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 8.88e-09}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 6.48e-09}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 4.518369e-11}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 6.3353e-09}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 2.11914e-09}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 4.056e-10}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 2.58e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.58e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.406e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1.406e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.184e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 9.1901e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 9.1901e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.17878e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 9.1901e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 9.1901e-09}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.956e-10}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 9.024900535e-12}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.0111e-08}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 7.9946e-10}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1.29060734e-10}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.426e-09}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.1086e-09}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1.24339e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1.24339e-07}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air"], "amount": 3.02e-08}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 3.02e-08}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 3.3800921e-06}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.016e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.001e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 2.0334e-06}, {"name": "Phenanthrene", "categories": ["air"], "amount": 8.128e-10}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 4.0793e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 7.502100741000001e-10}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.411e-11}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.411e-11}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.411e-11}, {"name": "Phenol", "categories": ["air"], "amount": -3.749578000000001e-09}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -3.749578000000001e-09}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 6.766099999999999e-10}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 6.766099999999999e-10}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.167159e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 6.766099999999999e-10}, {"name": "Phenol", "categories": ["water"], "amount": 6.766099999999999e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 3.822e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.822e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.822e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 3.562e-10}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 3.562e-10}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.065e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.065e-07}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.065e-07}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.426000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.426000000000001e-08}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.9603e-09}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.239752999999999e-08}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.7471e-09}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 2.6505e-08}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 8.9978e-08}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.21e-07}, {"name": "Phosphate", "categories": ["water"], "amount": 2.21e-07}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.15e-07}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["soil"], "amount": 6.71e-08}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 6.71e-07}, {"name": "Phosphorus", "categories": ["water"], "amount": 6.71e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.19506e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.0975e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.0975e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.82658e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.82658e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 3.11528e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.82658e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.82658e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.15565e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 5.0829e-10}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 5.0829e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.402444e-11}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.68484e-10}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.68484e-10}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 5.1228573e-10}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.5974e-09}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 3.2626e-10}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.6319e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.0089e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3.4227e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.0333e-08}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 2.3937e-09}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 2.2457e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.4117449e-11}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air"], "amount": 5.43e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 5.43e-08}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air"], "amount": 1.06e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.06e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.0311e-09}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.475000000000001e-13}, {"name": "Propanol", "categories": ["air"], "amount": 3.62007161e-08}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 3.62007161e-08}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 2.3687e-13}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 6.9418e-12}, {"name": "Propanol", "categories": ["water"], "amount": 6.9418e-12}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 6.570643199999999e-09}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air"], "amount": 8.82e-08}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 8.82e-08}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.3161e-10}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8244e-08}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.37531e-09}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.11407e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 5.275955000000001e-08}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 5.275955000000001e-08}, {"name": "Propiconazole", "categories": ["water"], "amount": 5.275955000000001e-08}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.07065e-10}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1.0376822e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 1.09464e-10}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 1.09464e-10}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.63119917e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 1.09464e-10}, {"name": "Propionic acid", "categories": ["water"], "amount": 1.09464e-10}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.3538e-09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 5.937e-09}, {"name": "Pyrene", "categories": ["air"], "amount": 4.457e-09}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.278e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.39e-09}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.521389e-11}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 7.0589e-09}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 4.8668e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.886e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.212e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.2764e-08}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1.6948e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.9143e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.9143e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 1.2706209e-10}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 2.85911e-11}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 4.49733e-07}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.49733e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.49733e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 3.11255e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 3.11255e-07}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 9.655e-11}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.7329e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.7329e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.7329e-10}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.0138e-08}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 1.0138e-08}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 3.43e-09}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.0138e-08}, {"name": "Selenium IV", "categories": ["water"], "amount": 1.0138e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9045e-09}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.89247e-10}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 5.194059e-09}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 4.818101e-05}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.818101e-05}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.818101e-05}, {"name": "Silver I", "categories": ["air"], "amount": 3.335678e-05}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 3.335678e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.3929e-09}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4477e-09}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4477e-09}, {"name": "Silver I", "categories": ["soil"], "amount": 2.4477e-09}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 3.099e-07}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 3.099e-07}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.67e-07}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 3.099e-07}, {"name": "Silver I", "categories": ["water"], "amount": 3.099e-07}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55937e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.1565e-07}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 4.1062e-09}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.34571e-08}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.05378e-08}, {"name": "Simazine", "categories": ["water"], "amount": 4.05378e-08}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 1.5201e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.222e-13}, {"name": "Styrene", "categories": ["air"], "amount": 3.770071990000001e-09}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.770071990000001e-09}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2.75913e-10}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 2.75913e-10}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 2.505038e-11}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2.75913e-10}, {"name": "Styrene", "categories": ["water"], "amount": 2.75913e-10}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.1427e-07}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 9.310254e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.310254e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.310254e-06}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 9.310254e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 9.310254e-06}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 2.12e-07}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.7e-07}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.7e-07}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.38e-07}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1.38e-07}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1.008218e-07}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.343e-08}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.29693e-09}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 9.23401e-09}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 2.8453955e-08}, {"name": "Tebuconazole", "categories": ["water"], "amount": 2.8453955e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.7555e-09}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 9.428671e-10}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 5.4735e-08}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.3127e-09}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.7415e-08}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.4855e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4855e-11}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4855e-11}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 7.687949999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 7.687949999999999e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.536674e-10}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 8.7108e-10}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 8.7108e-10}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 4.2686e-07}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2686e-07}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2686e-07}, {"name": "Thallium I", "categories": ["air"], "amount": 3.0272e-07}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 3.0272e-07}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.1463e-08}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.269e-08}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.269e-08}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.269e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.911e-08}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 3.911e-08}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 5e-09}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.911e-08}, {"name": "Thallium I", "categories": ["water"], "amount": 3.911e-08}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1.58358e-08}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58358e-08}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.34304e-08}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 5.138941e-10}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 3.5929404e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.05376318e-08}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.05376318e-08}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.0663e-09}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8495e-08}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.2867e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.6626e-08}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.1124e-07}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.1124e-07}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.03433e-08}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.36977e-08}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.4401e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 7.3675e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.06442e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.06442e-08}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.532e-08}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.532e-08}, {"name": "Thiram", "categories": ["air"], "amount": 1.1501e-08}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 2.90795e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.391784e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.277509e-07}, {"name": "Thiram", "categories": ["water"], "amount": 3.277509e-07}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 4.007622e-07}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.007622e-07}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.007622e-07}, {"name": "Tin ion", "categories": ["air"], "amount": 2.775287e-07}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 2.775287e-07}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 4.213e-12}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 6.723e-12}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 6.723e-12}, {"name": "Tin ion", "categories": ["soil"], "amount": 6.723e-12}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 3.06e-09}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 3.06e-09}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.57e-09}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 3.06e-09}, {"name": "Tin ion", "categories": ["water"], "amount": 3.06e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.443e-13}, {"name": "Toluene", "categories": ["air"], "amount": 3.32003649e-08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.32003649e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 9.7233e-11}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 9.7233e-11}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.089279999999999e-12}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 9.7233e-11}, {"name": "Toluene", "categories": ["water"], "amount": 9.7233e-11}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 3.5975e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 5.096019999999999e-07}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 3.26e-07}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.33e-08}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -3.26e-07}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.33e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.2250177e-09}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.541e-09}, {"name": "Triallate", "categories": ["air"], "amount": 7.56e-10}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.4281e-09}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 6.2021e-08}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.798700000000001e-10}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.5277164e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.855e-13}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.19007243e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.19007243e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.19271e-10}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.19271e-10}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.738968e-11}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.19271e-10}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.19271e-10}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2.7335e-09}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 9.25525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 9.25525e-13}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.49109341e-14}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 9.25525e-13}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 9.25525e-13}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 8.907e-09}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.922e-10}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 4.981e-10}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 2.762e-09}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.5446e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.5446e-08}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 3.2204e-10}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.590078418e-13}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.2279947e-11}, {"name": "Urea", "categories": ["water"], "amount": 2.2279947e-11}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.74e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 7.210026e-11}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 1.3698e-06}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3698e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3698e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.4221e-07}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.4221e-07}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 8.127e-10}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.4378e-09}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.4378e-09}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.4378e-09}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.2996e-07}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 1.2996e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.65e-08}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.2996e-07}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.2996e-07}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 4.1258e-10}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air"], "amount": 6.04e-13}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 6.04e-13}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7224e-13}, {"name": "Xylene", "categories": ["air"], "amount": 1.811e-13}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.811e-13}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 9.834970000000001e-12}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.08516e-10}, {"name": "Xylene", "categories": ["water"], "amount": 1.08516e-10}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.012e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 9.467e-08}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 9.8647e-07}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8647e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8647e-07}, {"name": "Zinc II", "categories": ["air"], "amount": 6.827e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 6.827e-07}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 4.175e-10}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 7.002e-10}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 7.002e-10}, {"name": "Zinc II", "categories": ["soil"], "amount": 7.002e-10}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.5347e-07}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 1.5347e-07}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 8.59e-09}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.5347e-07}, {"name": "Zinc II", "categories": ["water"], "amount": 1.5347e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 2.4501e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 3.8058e-08}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.953e-13}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 6.48002128e-08}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 3.43237e-10}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.43237e-10}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 3.119496e-11}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 3.43237e-10}, {"name": "m-Xylene", "categories": ["water"], "amount": 3.43237e-10}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 9.22e-13}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.22e-13}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.22e-13}, {"name": "o-Xylene", "categories": ["air"], "amount": 5.88006161e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 5.88006161e-08}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 3.332037e-11}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 3.66747e-10}, {"name": "o-Xylene", "categories": ["water"], "amount": 3.66747e-10}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.599e-09}]}, {"unit": "DALYs", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "total: human health", "human health"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.13e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 2.35e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9.44e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9.44e-08}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air"], "amount": 3.14e-07}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 3.14e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 4.79e-07}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.69e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 1.19e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.19e-06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 2.39e-08}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.29e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.29e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.47e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.619e-07}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.6e-10}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.6e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.6e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 2.71e-07}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 2.71e-07}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.35e-07}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.35e-07}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 3.35e-10}, {"name": "2-Propanol", "categories": ["air"], "amount": 5.94e-08}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1.45e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1.45e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.11e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1.8007e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 8.89e-13}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 2e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 2e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.13e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 6.77e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.71e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.71e-07}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0044}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00376}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000141}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.000176}, {"name": "Acephate", "categories": ["water"], "amount": 0.000176}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.148e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.012e-06}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 2.36e-08}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 2.28e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.28e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.62e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.44e-06}, {"name": "Acetic acid", "categories": ["air"], "amount": 2.97e-08}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.97e-08}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Acetone", "categories": ["air"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 3.98e-08}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 4.29e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 3.01e-09}, {"name": "Acetone", "categories": ["water"], "amount": 3.01e-09}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.94e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 2e-07}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 4.65e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.99e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 2.99e-08}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.05e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.002160178}, {"name": "Acrolein", "categories": ["water"], "amount": 6.7e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 3.97e-12}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.71e-08}, {"name": "Acrylate", "categories": ["water"], "amount": 1.71e-08}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.000161}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.000161}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.03e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.22e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 2.09e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.09e-06}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.07e-08}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 2.92e-12}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 2.07e-13}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 2.07e-13}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.645e-06}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.000137924}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000137924}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 8.21e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 7.34e-05}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.37e-07}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 6.93e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1.89e-07}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.81e-07}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.75e-06}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 3.71e-07}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 3.22e-10}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 2.28e-11}, {"name": "Americium-241", "categories": ["water"], "amount": 2.28e-11}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 1.58e-06}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.76e-07}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.21e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.42e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 9.33e-07}, {"name": "Aniline", "categories": ["water"], "amount": 9.33e-07}, {"name": "Anthracene", "categories": ["air"], "amount": 1.17e-08}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 4.35e-09}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.65e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.65e-07}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 7.82e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 7.82e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 8.19e-07}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.46e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.69e-25}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 2.94e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 2.94e-05}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 3.34e-10}, {"name": "Antimony-124", "categories": ["water"], "amount": 3.34e-10}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 6.06e-12}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.0006602}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0006602}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0006602}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0036}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0036}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 6.55e-06}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 8.057e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 8.057e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 8.057e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0007044}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.0007044}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 5.38e-24}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0007044}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0007044}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.53e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 6.66e-07}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.39e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 1.39e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1.69e-06}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17e-05}, {"name": "Barium II", "categories": ["air"], "amount": 2.33e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2.33e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.04e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 7.36e-05}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.72e-25}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.67e-06}, {"name": "Barium II", "categories": ["water"], "amount": 9.67e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 1.92e-08}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 7.55e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 5.7e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.35e-06}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 7.55e-08}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 6.27e-07}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 6.27e-07}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.44e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.3e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.3e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.08e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1638e-06}, {"name": "Benzene", "categories": ["air"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 5.101e-06}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 5.546e-07}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.2386e-06}, {"name": "Benzene", "categories": ["water"], "amount": 1.2386e-06}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 2.96e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.15e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.15e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5528e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 5.452600000000001e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 9.510699999999999e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.434e-07}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.434e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002538}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0003359}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0003359}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.004116}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.83e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.83e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.000114}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.000439}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.000121}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.000121}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 2.37e-08}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.0062168}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0062168}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0062168}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.146859}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.146859}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.9889e-08}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.422e-07}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.422e-07}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.422e-07}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 5.41e-07}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 5.41e-07}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 8.9629e-23}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 5.41e-07}, {"name": "Beryllium II", "categories": ["water"], "amount": 5.41e-07}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 2.25e-07}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.67e-07}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.63e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.63e-05}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.28e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1.47e-05}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 3.44e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.000438}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.000438}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.32e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 5.56e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.81e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08e-05}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 2.87e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 8.21e-07}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 8.21e-07}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.76e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 8.64e-07}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.814e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.814e-06}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air"], "amount": 1.02e-07}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.02e-07}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.703e-07}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 2.24e-10}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 1.23e-08}, {"name": "Butanol", "categories": ["water"], "amount": 1.23e-08}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air"], "amount": 2.08e-07}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 2.08e-07}, {"name": "Butyl acetate", "categories": ["air"], "amount": 8.58e-08}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.58e-08}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.0001209}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001209}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001209}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.000971}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.000971}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 7.89e-07}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4.266599999999999e-05}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4.266599999999999e-05}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.266599999999999e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.2904e-05}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.2904e-05}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.42e-25}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.2904e-05}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.2904e-05}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 4.88e-09}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 3.22e-11}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 5.88e-08}, {"name": "Caesium-134", "categories": ["water"], "amount": 5.88e-08}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 8.64e-09}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 3.96e-11}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 6.18e-08}, {"name": "Caesium-137", "categories": ["water"], "amount": 6.18e-08}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 1.78e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 2.64e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1.89e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1.89e-06}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.18e-06}, {"name": "Carbendazim", "categories": ["air"], "amount": 6.73e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 8.03e-08}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 2.39e-07}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.17e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 4.17e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 3.19e-05}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 8.12e-08}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 8.12e-08}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000171}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000187}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000187}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.9e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.000152}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.000152}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 4.18e-09}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 1.86e-10}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 2.35e-11}, {"name": "Carbon-14", "categories": ["water"], "amount": 2.35e-11}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 5.45e-06}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.19e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 2.8e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 5.68e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.95e-07}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 3.67e-07}, {"name": "Carboxin", "categories": ["water"], "amount": 3.67e-07}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8.03e-13}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 3.47e-09}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 3.47e-09}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.69e-06}, {"name": "Chloramine", "categories": ["air"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 2.92e-06}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.94e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 1.41e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.41e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00021}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.53e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.928e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.748e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 1.168e-06}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.54e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.54e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 5.719999999999999e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.719999999999999e-06}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.719999999999999e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 1.403e-05}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.403e-05}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.59e-06}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 5.780000000000001e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 5.780000000000001e-06}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.094e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 2.125e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.673e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9.66e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 2.602e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.602e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-06}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.82e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 7.71e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000636}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000636}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.02e-05}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.71e-07}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 4.65e-09}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4.65e-09}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 4.22e-12}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.09e-09}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.26e-30}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.11e-10}, {"name": "Chromium III", "categories": ["water"], "amount": 1.11e-10}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00126}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00126}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.28e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.32e-25}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 7.82e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 7.82e-07}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 1.73e-10}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 1.67e-11}, {"name": "Cobalt-58", "categories": ["water"], "amount": 1.67e-11}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 6.8e-09}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 1.6e-10}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 1.8e-08}, {"name": "Cobalt-60", "categories": ["water"], "amount": 1.8e-08}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 4.77e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 4.77e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 9.9e-11}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["soil"], "amount": 1.77e-08}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 5.15e-28}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.87e-08}, {"name": "Copper ion", "categories": ["water"], "amount": 2.87e-08}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.69e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.47e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 1.09e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 1.5e-08}, {"name": "Cumene", "categories": ["water"], "amount": 1.5e-08}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 9.35e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 9.99e-09}, {"name": "Cyclohexane", "categories": ["water"], "amount": 9.99e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.346e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.01e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.13e-07}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 1.72e-07}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.86e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.86e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.42e-07}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 6.38e-08}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 5.86e-06}, {"name": "Deltamethrin", "categories": ["air"], "amount": 6.5e-06}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 4.65e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 7.14e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 5.77e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 8.66e-06}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.000266}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.000133}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 9.42e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 5.91e-07}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 5.91e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4.4e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 4.62e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000197}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.6e-06}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.738e-07}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.738e-07}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54e-05}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.82e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 3.94e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.55e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.55e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 1.51e-05}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.28e-05}, {"name": "Dimethoate", "categories": ["air"], "amount": 4.63e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 6.77e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 1.76e-06}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.94e-08}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.94e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 2.306e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.306e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.306e-05}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 2.306e-05}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 2.306e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.74e-08}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 3.35e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.6e-07}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.89e-05}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 5.81e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.19e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6.91e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.56e-05}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.56e-05}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.05e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.26e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.02e-05}, {"name": "Diuron", "categories": ["air"], "amount": 1.79e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.63e-07}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 1.22e-06}, {"name": "Diuron", "categories": ["water"], "amount": 2.76e-06}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.1e-09}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 5.63e-08}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.344e-05}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.166e-05}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.98e-05}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air"], "amount": 2.64e-08}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.64e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.76e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0003010184}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0003010184}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.63e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0001408697}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0001408697}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 3.69e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 6.38e-08}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.21e-05}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.97e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.000646504}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.000646504}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.0002722}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.0002722}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 4.11e-05}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 4.11e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 8.704e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 8.704e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 2.17e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 5.96e-06}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.0006651000000000001}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.0004343}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0004343}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0004343}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.0004343}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.0004343}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 2.963e-05}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 2.963e-05}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.0001636}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001636}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001636}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.0001636}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.0001636}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.00048358}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00048358}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00048358}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.00048358}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.00048358}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 0.0001613}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0001613}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.0001039}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 0.0001613}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 0.0001613}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.000667}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.000667}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.000495}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.000495}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.61e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.454e-07}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 1.06e-10}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.98e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 3.98e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.99e-05}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 1.54e-05}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.25e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.25e-06}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 6.68e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 6.06e-05}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.06e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.19e-08}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 6.54e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.33e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 3.33e-09}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air"], "amount": 3.3e-07}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 3.3e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.99e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.61e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 3.26e-10}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 5.56e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 5.56e-08}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55e-06}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.41e-05}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.41e-05}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 1.4e-06}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 6.42e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 6.42e-06}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air"], "amount": 2.31e-08}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 9.78e-08}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 6.22e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.00508}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 2.94e-06}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2.19e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 7.55e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 1.67e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000442}, {"name": "Fipronil", "categories": ["air"], "amount": 0.000347}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 2.85e-05}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 0.00014}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.000358}, {"name": "Fipronil", "categories": ["water"], "amount": 0.000358}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 9.21e-08}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.8e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.72e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 1.58e-07}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.96e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 2.87e-08}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 1.55e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.395e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000190631}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 2.1509e-08}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 5.57e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.57e-07}, {"name": "Formic acid", "categories": ["air"], "amount": 9.9e-09}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.92e-10}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.842000000000001e-06}, {"name": "Furan", "categories": ["air"], "amount": 0.00032309}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00032309}, {"name": "Furfural", "categories": ["air"], "amount": 3.63e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.04e-05}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.12e-05}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 2.58e-07}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 8.05e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.55e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.75e-07}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 3.08e-08}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 4.56e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 4.56e-08}, {"name": "Heptane", "categories": ["air"], "amount": 1.16e-07}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.16e-07}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.29e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.34e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.34e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.08e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.8e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.8e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 3.49e-08}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 0.00122}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 4.28e-07}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.39e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 3.39e-05}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.319e-07}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 4.97e-10}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 6.22e-09}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 6.88e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.88e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.88e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 8.58e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 8.58e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.017e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 2.017e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.427e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.017e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 2.017e-07}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 9.36e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.36e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.36e-06}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.07742e-05}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.07742e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 5.81e-12}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 2.45e-14}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.77e-13}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.77e-13}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 3.1e-07}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.22e-06}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.81e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 4.49e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 5.77e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 5.77e-08}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44e-05}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.3e-05}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 2.58e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.72e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 6.22e-07}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.22e-07}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 5.66e-08}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 1.51e-10}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 1.71e-09}, {"name": "Iodine-129", "categories": ["water"], "amount": 1.71e-09}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 6.18e-11}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Iodine-131", "categories": ["water"], "amount": 2.04e-10}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air"], "amount": 3.84e-12}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 3.84e-12}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 9.24e-08}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 8.019999999999999e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.019999999999999e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 2.58e-08}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air"], "amount": 4.1e-14}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 4.1e-14}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.0001235}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001235}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001235}, {"name": "Lead II", "categories": ["air"], "amount": 0.00045658}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00045658}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 5.59e-08}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 4.4736e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 4.4736e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 4.4736e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2.8645e-06}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 2.8645e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 5.0105e-26}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2.8645e-06}, {"name": "Lead II", "categories": ["water"], "amount": 2.8645e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.0001545}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 4.49e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.75e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 4.83e-06}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 4.83e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.07e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 1.96e-08}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 2.78e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 2.78e-07}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.68e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.69e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 6.2e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14e-05}, {"name": "Mancozeb", "categories": ["air"], "amount": 1.08e-05}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 6.27e-07}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 4.04e-07}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 5.54e-07}, {"name": "Mancozeb", "categories": ["water"], "amount": 5.54e-07}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 6.02e-07}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1.3e-10}, {"name": "Manganese-54", "categories": ["water"], "amount": 1.3e-10}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.77e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.67e-09}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.0005822}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0005822}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0005822}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0015813}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0015813}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.735e-07}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 7.345e-06}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 7.345e-06}, {"name": "Mercury II", "categories": ["soil"], "amount": 7.345e-06}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 3.658e-05}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 3.658e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.215e-25}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 3.658e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 3.658e-05}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 1.72e-06}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.71e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.0007407310000000001}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.0007407310000000001}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 0.003942999999999999}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003942999999999999}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003942999999999999}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 0.003942999999999999}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 0.003942999999999999}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 0.003443}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.003443}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003443}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 0.003443}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 0.003443}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.42e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.0004491363}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.0004491363}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 0.000885}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 0.000885}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.227e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.7199e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 6.7199e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 2.238e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 2.238e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.057e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 2.238e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.238e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.0010126}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.0010126}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 4.41e-05}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 4.41e-05}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.000197}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.000197}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air"], "amount": 6.9e-06}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 6.9e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 6.82e-06}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 6.82e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-06}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.76733e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.76733e-05}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 6.82e-06}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 6.82e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.001346}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001346}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001346}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.001962}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.001962}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.001282}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.001282}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000728}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.001282}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.001282}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 0.000396}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 0.000396}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 0.0008017899999999999}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 0.0008017899999999999}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.000877}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.000877}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38e-09}, {"name": "Methanol", "categories": ["air"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 7.85e-08}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 1.52e-10}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 4.42e-09}, {"name": "Methanol", "categories": ["water"], "amount": 4.42e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.42e-06}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000104}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 1.3e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.13e-06}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 3.51e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 3.51e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 3.83e-08}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air"], "amount": 2.31e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.31e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.64e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.0851e-07}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.94e-09}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air"], "amount": 9.9e-09}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 9.9e-09}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.05e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.72e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 7.8e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 3.26e-07}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 7.68e-07}, {"name": "Metolachlor", "categories": ["water"], "amount": 7.68e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.09e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.01e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 5.52e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.17e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 2.9e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.35e-08}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.58e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.69e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.69e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.77e-05}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.16e-06}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 4.79e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 4.79e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2.35e-07}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.18e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 8.82e-26}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 6.02e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 6.02e-06}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 4.045e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.045e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 4.86e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 1.56e-09}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.56e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 4.86e-05}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.17e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.64e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.26e-06}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.51e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.35e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 4.7e-08}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 3.0069e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0069e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0069e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 0.00010533}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.00010533}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 6.880926e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 7.1839e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 7.1839e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 7.1839e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1449e-05}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 1.1449e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.701e-25}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1449e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 1.1449e-05}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air"], "amount": 6.73e-07}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 6.73e-07}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.39e-06}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.35e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 3.07e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 5.14e-07}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6.06e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6.06e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 0.00104}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00104}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 9.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 9.1e-07}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 3.82e-14}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.82e-14}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37e-09}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 5.02e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001040565}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.00010937}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.00010937}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 3.15e-09}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.45e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.45e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 4.684e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.45e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.45e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.56e-05}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 1.38e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.05e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000629}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000629}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.9e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.69e-08}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 5.75e-07}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air"], "amount": 1.32e-07}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.32e-07}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 0.000516}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01e-06}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 1.27e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 2.46e-06}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 4.58e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4e-08}, {"name": "Phenol", "categories": ["air"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 9.55e-08}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.97e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 7.18e-08}, {"name": "Phenol", "categories": ["water"], "amount": 7.18e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000158}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.000167}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.000167}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.043e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.963e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 2.91e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 2.329e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 3.49e-06}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 4.06e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 0.000137}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 7.23e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.13e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.13e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 9.26e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.6e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.6e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.72e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 5.29e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 5.29e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 2.19e-06}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 9.76e-08}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 1.41e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.56e-06}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air"], "amount": 6.18e-10}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 6.18e-10}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 5.13e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 9.1e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 6.36e-06}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.01e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 8.78e-08}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.09e-07}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.92e-08}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air"], "amount": 2.38e-07}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.38e-07}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air"], "amount": 4.62e-08}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 4.62e-08}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 3.15e-07}, {"name": "Propanol", "categories": ["air"], "amount": 1.58e-07}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.58e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.26e-07}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air"], "amount": 3.86e-07}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 3.86e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.53e-09}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15e-05}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.86e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.76e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 8.34e-06}, {"name": "Propiconazole", "categories": ["water"], "amount": 8.34e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 7.3e-07}, {"name": "Propionic acid", "categories": ["air"], "amount": 4.29e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 4.29e-08}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.112e-05}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 8.200000000000001e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.58e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.58e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.64e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 1.42e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.69e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.15e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8e-08}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.31e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1.04e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 6.25e-07}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 7.09e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 7.09e-06}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 3.28e-06}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.21e-07}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air"], "amount": 9.86e-12}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 9.86e-12}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 1.39e-07}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 6.8e-10}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 7.41e-12}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 1.6e-12}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 1.6e-12}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.16e-07}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 1.12e-07}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 2.49e-06}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000128}, {"name": "Silver I", "categories": ["air"], "amount": 0.000465}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.000465}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 6.95e-08}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 2.39e-05}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.76e-25}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.51e-05}, {"name": "Silver I", "categories": ["water"], "amount": 1.51e-05}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 2.04e-10}, {"name": "Silver-110", "categories": ["water"], "amount": 2.04e-10}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.53e-05}, {"name": "Simazine", "categories": ["air"], "amount": 7.84e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 3.94e-06}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.4e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 7.64e-06}, {"name": "Simazine", "categories": ["water"], "amount": 7.64e-06}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 1.03e-08}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 3.09e-12}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 8.64e-11}, {"name": "Strontium-90", "categories": ["water"], "amount": 8.64e-11}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0392e-07}, {"name": "Styrene", "categories": ["air"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 4.4615e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.345e-08}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 9.3781e-07}, {"name": "Styrene", "categories": ["water"], "amount": 9.3781e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.22e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.00142}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.00142}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.3e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2.28e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.26e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.9e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.9e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.22e-07}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.06e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 5.56e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 9.85e-08}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 3.35e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 5.75e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 5.75e-07}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 5.15e-09}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 5.32e-13}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 5.13e-11}, {"name": "Technetium-99", "categories": ["water"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 5.32e-13}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 5.13e-11}, {"name": "Technetium-99m", "categories": ["water"], "amount": 5.13e-11}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000424}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.000356}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 1.42e-05}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 6.38e-05}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.000219}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.26e-08}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 7.8e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2.67e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.79e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 9.9633e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 6.47e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.47e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.14e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 6.47e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 6.47e-06}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.24e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 9.01e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 9.01e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 9.26e-06}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.000235}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.04e-25}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3.1e-05}, {"name": "Thallium I", "categories": ["water"], "amount": 3.1e-05}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.59e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 6.11e-06}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 6.13e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 2.92e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 8.48e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 8.48e-07}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.33e-07}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1.71e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.46e-07}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 6.09e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 1.06e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.06e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63e-06}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.63e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 2.06e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.03e-07}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 4.35e-07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 4.35e-07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-06}, {"name": "Thiram", "categories": ["air"], "amount": 2.67e-06}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.54e-08}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 4.74e-08}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.12e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.12e-06}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.53e-08}, {"name": "Toluene", "categories": ["air"], "amount": 3.41e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.41e-07}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.2e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.63e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.63e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 8.78e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.25e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.6e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4.81e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 2.55e-07}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 3.51e-07}, {"name": "Triallate", "categories": ["air"], "amount": 2.15e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 6.29e-07}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.66e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 1e-05}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 3.6e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.28e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.06e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 4.08e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 3.6e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 3.4e-07}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.19e-08}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.927e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 3.7e-08}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 1.23e-07}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 1.23e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.47e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.18e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.12e-06}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.92e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.92e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 8.66e-08}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.64e-07}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 3.06e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.78e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.35e-05}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.35e-05}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 4.06e-08}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 9.35e-07}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.6e-26}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 6.29e-06}, {"name": "Vanadium V", "categories": ["water"], "amount": 6.29e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1.52e-06}, {"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air"], "amount": 3.1e-06}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 3.1e-06}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air"], "amount": 5.81e-14}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 5.81e-14}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.55e-08}, {"name": "Xylene", "categories": ["air"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 3.6e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 4.15e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.58e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.58e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.11e-07}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.04e-06}, {"name": "Zinc II", "categories": ["air"], "amount": 7.2e-06}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 7.2e-06}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.55e-08}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.73e-07}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.86e-26}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 5.61e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 5.61e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.88e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.36e-06}, {"name": "m-Xylene", "categories": ["air"], "amount": 2.84e-07}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.84e-07}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.57e-07}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.57e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 4.06e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.41e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.16e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.16e-09}]}, {"unit": "USD 2013", "name": ["ReCiPe 2016 v1.03, endpoint (I)", "total: natural resources", "natural resources"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.0161}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0161}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.165}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0142}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00216}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 13.4}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.441}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0124}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.037}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.037}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 3030}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.00889}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00889}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.0352}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.000968}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.000933}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0341}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 0.639}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.639}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.159}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0049}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.00142}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 14.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 14.8}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.301}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 61.9}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 816}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.0213}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.000229}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 17.2}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 18.4}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 18.4}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 1.04}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 1.04}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00609}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.077}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.098}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.098}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.098}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.006}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.006}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 1.33}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.62}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.295}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 0.711}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 0.457}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1020}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00081}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0223}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2200}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.000492}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 107}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 107}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1550}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 2.04}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.0507}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 25.7}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 0.386}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.00918}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.00372}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 9.02}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 9.02}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 2.94}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.94}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 260}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.834}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.834}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.11}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 1.15}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 5.7}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 0.556}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0184}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.0184}]}, {"unit": "kg SO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "acidification: terrestrial no LT", "terrestrial acidification potential (TAP) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.552}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.36}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}]}, {"unit": "kg CO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "climate change no LT", "global warming potential (GWP1000) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Chloroform", "categories": ["air"], "amount": 2.74}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.74}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 78.8}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 78.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 78.8}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 218}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 218}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 26.8}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 26.8}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 913}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 913}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 913}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 913}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1410}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 131}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 131}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 23}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 23}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 23}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.15}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3490}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 3490}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 3490}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 3490}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 332}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 332}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 332}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 332}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 13.3}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 13.3}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 88.2}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 88.2}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 88.2}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 88.2}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8580}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8580}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8580}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17800}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 17800}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 17800}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 17800}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 546}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 546}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 546}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 546}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.97}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.97}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.394}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.394}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 293}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 293}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 293}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 293}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1340}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 1340}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 1340}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 1340}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 296}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12700}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.49}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.49}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 24.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 24.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 113}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 113}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 113}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 113}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.9}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.9}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.76}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.76}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.04}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.04}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.76}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.76}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 296}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 11000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 875}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 875}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 5660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 5660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 5660}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 12800}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 12800}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34400}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 34400}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 34400}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 34400}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "ecotoxicity: freshwater no LT", "freshwater ecotoxicity potential (FETP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.000522}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.836}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.11e-05}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.0411}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.203}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.91}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 2.62}, {"name": "2,4-D", "categories": ["water"], "amount": 2.62}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0732}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.154}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0732}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.182}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.154}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0644}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.27}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.27}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0248}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.0144}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.98e-06}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.00477}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.7}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.83e-05}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 4.87e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.0653}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.159}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.00199}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water"], "amount": 14.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0663}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.714}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.89}, {"name": "Acephate", "categories": ["water"], "amount": 0.89}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.96e-05}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.144}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000246}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.000411}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.95e-09}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.169}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air"], "amount": 4.32e-05}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.32e-05}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 6.06e-06}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water"], "amount": 0.00217}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.000193}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.000193}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00874}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.000901}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 0.282}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 5.09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air"], "amount": 0.084}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.084}, {"name": "Acrolein", "categories": ["water"], "amount": 69.4}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.95e-09}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water"], "amount": 0.132}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0236}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0236}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.000599}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.441}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 11.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0228}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0228}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 25}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.759}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 56}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.309}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 341}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 271}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 147}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1100}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 82800}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 35}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.13}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 39.4}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air"], "amount": 0.00401}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00401}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.11e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "Aniline", "categories": ["water"], "amount": 1.05}, {"name": "Anthracene", "categories": ["air"], "amount": 0.197}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 354}, {"name": "Anthracene", "categories": ["water"], "amount": 354}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.231}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 47.6}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.6}, {"name": "Antimony ion", "categories": ["air"], "amount": 127}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 127}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 98.6}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 306}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 306}, {"name": "Antimony ion", "categories": ["soil"], "amount": 306}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 340}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 6.58e-17}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 340}, {"name": "Antimony ion", "categories": ["water"], "amount": 340}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55}, {"name": "Arsenic ion", "categories": ["air"], "amount": 21.2}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 21.2}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.72}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 56.4}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 56.4}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 56.4}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 9.62e-18}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water"], "amount": 62.2}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.453}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.83}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14.8}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 85.3}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 179}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 179}, {"name": "Atrazine", "categories": ["water"], "amount": 179}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.452}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.745}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 233}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 0.198}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 27.3}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 156}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 156}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.485}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.485}, {"name": "Barium II", "categories": ["air"], "amount": 1.11}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.11}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil"], "amount": 2.51}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.32e-18}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.79}, {"name": "Barium II", "categories": ["water"], "amount": 2.79}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.066}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0228}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.144}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0548}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.681}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.681}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 2.08}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1590}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.00268}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00268}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.744}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.72e-05}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water"], "amount": 0.0868}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000158}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.748}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 6.88e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.293}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 24.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.069}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.069}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 15.2}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.411}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.411}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 134}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 134}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.0492}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0338}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.00704}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 4.17e-06}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.285}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.51}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.51}, {"name": "Beryllium II", "categories": ["air"], "amount": 18.8}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 18.8}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.43}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 50.9}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 50.9}, {"name": "Beryllium II", "categories": ["soil"], "amount": 50.9}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.33e-18}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water"], "amount": 55.9}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 251}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 37.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 284}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 21200}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 21200}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.509}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.8}, {"name": "Bifenthrin", "categories": ["air"], "amount": 40.3}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 92.9}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 12200}, {"name": "Bifenthrin", "categories": ["water"], "amount": 12200}, {"name": "Bisphenol A", "categories": ["water"], "amount": 44.9}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.0297}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 9.99}, {"name": "Bromopropane", "categories": ["air"], "amount": 3.63e-05}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.129}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.89}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.88}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 167}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 167}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 11.7}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3.63}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air"], "amount": 0.000144}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000144}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 4.79e-06}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water"], "amount": 0.0183}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.327}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.0771}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 444}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.98}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.98}, {"name": "Cadmium II", "categories": ["air"], "amount": 6.04}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 6.04}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 15.2}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 15.2}, {"name": "Cadmium II", "categories": ["soil"], "amount": 15.2}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.02e-19}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water"], "amount": 16.8}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 9.15}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 116}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 116}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57}, {"name": "Carbendazim", "categories": ["air"], "amount": 7.01}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 4.51}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 26.3}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 46}, {"name": "Carbendazim", "categories": ["water"], "amount": 46}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.705}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 9.93e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.349}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 3.47}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28}, {"name": "Carboxin", "categories": ["air"], "amount": 4.21}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 13.8}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Carboxin", "categories": ["water"], "amount": 26.1}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 6.33e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0948}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 107}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 90.7}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 719}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 4130}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 4130}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 4130}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air"], "amount": 39.5}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 39.5}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 9.72e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 217}, {"name": "Chloramine", "categories": ["water"], "amount": 217}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.66}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.396}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 63.4}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.535}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.0461}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1.66}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.66}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 2.9e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 9}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 8.52e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water"], "amount": 0.162}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.26}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 0.0804}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0804}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.000323}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.78}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.8}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 23.7}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 26.5}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 158}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 673}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 673}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.4}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 329}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1780}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 14700}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 14700}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 33.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10.9}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.342}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.342}, {"name": "Chromium III", "categories": ["air"], "amount": 0.875}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.875}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.75}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.07}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.69e-20}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water"], "amount": 2.3}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.9}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.9}, {"name": "Chromium VI", "categories": ["air"], "amount": 33}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 33}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 28.2}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 78}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 78}, {"name": "Chromium VI", "categories": ["soil"], "amount": 78}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.41e-17}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water"], "amount": 86.6}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 14.6}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.829}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.374}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.696}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.579}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.579}, {"name": "Cobalt II", "categories": ["air"], "amount": 2.17}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2.17}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.639}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 5.74}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 5.74}, {"name": "Cobalt II", "categories": ["soil"], "amount": 5.74}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.36e-19}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water"], "amount": 6.34}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.5}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.5}, {"name": "Copper ion", "categories": ["air"], "amount": 55.2}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 55.2}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 147}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 147}, {"name": "Copper ion", "categories": ["soil"], "amount": 147}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 162}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.71e-18}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 162}, {"name": "Copper ion", "categories": ["water"], "amount": 162}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 9.15e-06}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.558}, {"name": "Cumene", "categories": ["water"], "amount": 0.558}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 7.28e-08}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0546}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 1.29e-08}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.0625}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 21.8}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.288}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.00489}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 259}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 841}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 63300}, {"name": "Cypermethrin", "categories": ["water"], "amount": 63300}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 2.01}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 12.8}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.591}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.69}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0535}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 2.2}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3.04}, {"name": "Deltamethrin", "categories": ["air"], "amount": 53.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 6310}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.139}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.776}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 16.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0153}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5.66}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.172}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.328}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.34}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 17.1}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0427}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.081}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.631}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.631}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 17.6}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 0.943}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 5.77}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 3.28}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 0.283}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.159}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 1.02}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.57e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.57e-06}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.8e-06}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.462}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.00036}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.00036}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.26e-10}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.00271}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.52}, {"name": "Difenoconazole", "categories": ["air"], "amount": 21.5}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 78.5}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 233}, {"name": "Difenoconazole", "categories": ["water"], "amount": 233}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 188}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 299}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2000}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 4860}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 4860}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.0156}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 3.91e-05}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.191}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.55}, {"name": "Dimethoate", "categories": ["air"], "amount": 3.37}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 5.71}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 38.7}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.883}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 2.19e-05}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.974}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 11.8}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 218}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 218}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 242}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 242}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 99.5}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 477}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 477}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 477}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 65.7}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 17400}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.391}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.7}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 8.71}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 19.6}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 19.6}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.43}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Diuron", "categories": ["air"], "amount": 35.2}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 15.2}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 98.2}, {"name": "Diuron", "categories": ["water"], "amount": 223}, {"name": "Dodecanol", "categories": ["water"], "amount": 22.5}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.318}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 6.84}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.281}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.732}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 12.6}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.58}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 41.1}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 83.8}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 83.8}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1500}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1000}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.000564}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 8.23e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 8.23e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.52e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000425}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 7.03e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0554}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.00517}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.55}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.24e-06}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water"], "amount": 0.00629}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.0468}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.328}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.328}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.592}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.9e-05}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0164}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.0405}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0405}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.27e-06}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.202}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.93e-09}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.425}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.000707}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.000707}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.000177}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0482}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 2.7}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 6.49}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 63.4}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.755}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.57}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 10}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 7.48}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 43.6}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 107}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.638}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.25}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 87.9}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 87.9}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.5}, {"name": "Fluazinam", "categories": ["air"], "amount": 289}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 105}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 743}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water"], "amount": 2260}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99}, {"name": "Fludioxonil", "categories": ["air"], "amount": 23.7}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 9.31}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 69.8}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 275}, {"name": "Fludioxonil", "categories": ["water"], "amount": 275}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.3}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.87}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 618}, {"name": "Fluorene", "categories": ["air"], "amount": 0.0118}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 7.12}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 4.11}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.164}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 30.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0314}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0314}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 4.68e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.907}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.98e-10}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0854}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00758}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.997}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air"], "amount": 1.3e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Furfural", "categories": ["air"], "amount": 0.00703}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.589}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.28}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.351}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water"], "amount": 2.39}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.85}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 32.1}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 32.1}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air"], "amount": 6.53e-09}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.53e-09}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 10.8}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "Hexane", "categories": ["water"], "amount": 0.141}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.37}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.06}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.0226}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water"], "amount": 93.4}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.5e-06}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.302}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.54e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.54e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 6.68e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.155}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.000362}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.000362}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.00621}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.26}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 6.21}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.79}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.95}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Imidacloprid", "categories": ["water"], "amount": 9.16}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72}, {"name": "Indoxacarb", "categories": ["air"], "amount": 11.8}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 34}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 6.11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.49}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 1.71e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.71e-08}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.0373}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0373}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.04e-05}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.175}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 4.85}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 598}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 68.9}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 423}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 48100}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 48100}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 48100}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.00867}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.45}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0463}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0463}, {"name": "Lead II", "categories": ["air"], "amount": 0.204}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.204}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0236}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.558}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.558}, {"name": "Lead II", "categories": ["soil"], "amount": 0.558}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.606}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 6.17e-22}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.606}, {"name": "Lead II", "categories": ["water"], "amount": 0.606}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.538}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 24.6}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.928}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0965}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.63}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.63}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.183}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 6}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 12.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.293}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0307}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.5}, {"name": "Mancozeb", "categories": ["air"], "amount": 14.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 56.7}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 78}, {"name": "Mancozeb", "categories": ["water"], "amount": 78}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.2}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 9.02e-07}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.29}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.29}, {"name": "Mercury II", "categories": ["air"], "amount": 17.2}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 17.2}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 47}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 47}, {"name": "Mercury II", "categories": ["soil"], "amount": 47}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.04e-19}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water"], "amount": 49.8}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.292}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 0.601}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.347}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.99}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 3.34}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 0.0683}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.202}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00275}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.81e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0292}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.48e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000289}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.534}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air"], "amount": 0.000132}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5e-06}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water"], "amount": 0.00493}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.21}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 28}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 8.61}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 47.7}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water"], "amount": 78.6}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.371}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.41}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 21.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 78.6}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 242}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 242}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.000379}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000379}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 8.04e-05}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water"], "amount": 0.0283}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.000365}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.72}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00341}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.0078}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.0078}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.753}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.89}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air"], "amount": 0.063}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.063}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 6.18e-06}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water"], "amount": 0.292}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.327}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 9.37}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 61.8}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 147}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 147}, {"name": "Metolachlor", "categories": ["water"], "amount": 147}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.41}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 149}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 295}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 772}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 520}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 3000}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 5070}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 5070}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 111}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.61}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0612}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0612}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.156}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.156}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.134}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.37}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.37}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.37}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9e-20}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.41}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 3.13}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.288}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 4.55}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.000708}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 67.7}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Nickel II", "categories": ["air"], "amount": 16.1}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 16.1}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 6.6}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 41.6}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 41.6}, {"name": "Nickel II", "categories": ["soil"], "amount": 41.6}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 46}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.7e-18}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 46}, {"name": "Nickel II", "categories": ["water"], "amount": 46}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.125}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 0.328}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.27}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.87}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.00135}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.76}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.82}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.0156}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.0641}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.73}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 3.04}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.329}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 0.931}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.00485}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 13}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.033}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0129}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 38.1}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.183}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.692}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.63}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 176}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 176}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air"], "amount": 6.29e-06}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 6.29e-06}, {"name": "Pentane", "categories": ["water"], "amount": 7.18}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 5.08}, {"name": "Permethrin", "categories": ["water"], "amount": 2870}, {"name": "Phenanthrene", "categories": ["air"], "amount": 0.136}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 57}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air"], "amount": 0.00867}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00867}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.23e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.969}, {"name": "Phenol", "categories": ["water"], "amount": 0.969}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.136}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.136}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 19.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 5.52}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 45.2}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 8.88}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 33.2}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 60.6}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00054}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 15.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.000949}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 26.1}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 3.81e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.609}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.01e-05}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.24}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.84}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.455}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.196}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 31.7}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 13.2}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.0541}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 429}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.22}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 17.4}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.0201}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 0.0302}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air"], "amount": 0.000176}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.000176}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 5.1e-05}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.102}, {"name": "Propanal", "categories": ["water"], "amount": 0.102}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air"], "amount": 0.000117}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 5.28e-06}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water"], "amount": 0.00942}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 9.32}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 0.332}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.171}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 3.36}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 15.8}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water"], "amount": 74.9}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.32e-08}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.157}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0218}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.86e-06}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water"], "amount": 0.116}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.000651}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.000214}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.0706}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.91}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 8.24}, {"name": "Pyrene", "categories": ["air"], "amount": 1.18}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1810}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 245}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.0358}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 8.05}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.669}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.03}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 4.49}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 28.3}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 235}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2700}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2700}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.147}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 15.9}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.87}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.0405}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75}, {"name": "Selenium IV", "categories": ["air"], "amount": 5.47}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 5.47}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.9}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 13.8}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 13.8}, {"name": "Selenium IV", "categories": ["soil"], "amount": 13.8}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 5.84e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water"], "amount": 15.3}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0962}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.268}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.41}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46.5}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 46.5}, {"name": "Silver I", "categories": ["air"], "amount": 167}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 57.2}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 439}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 439}, {"name": "Silver I", "categories": ["soil"], "amount": 439}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 485}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 3.89e-18}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 485}, {"name": "Silver I", "categories": ["water"], "amount": 485}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.65}, {"name": "Simazine", "categories": ["air"], "amount": 11.9}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 5.66}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 33.1}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 57.7}, {"name": "Simazine", "categories": ["water"], "amount": 57.7}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.00158}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.00158}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 4.16e-26}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water"], "amount": 0.00822}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 19.9}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.86e-06}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.396}, {"name": "Styrene", "categories": ["water"], "amount": 0.396}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 36}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.285}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.285}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.209}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.52}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.52}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.83}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 13.1}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water"], "amount": 40.5}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 72.2}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 39.2}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 227}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 391}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 391}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 83.4}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 228}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 93.7}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 685}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 2350}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 72.6}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.91}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 22.2}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.00014}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.23}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1}, {"name": "Thallium I", "categories": ["air"], "amount": 21}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 21}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 21.8}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 47.7}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 47.7}, {"name": "Thallium I", "categories": ["soil"], "amount": 47.7}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 53}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.01e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 53}, {"name": "Thallium I", "categories": ["water"], "amount": 53}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.538}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.41}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.737}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 5.16}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiabendazole", "categories": ["water"], "amount": 15.1}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.55}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 9.32e-09}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water"], "amount": 9.04}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 12.6}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 79.2}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 147}, {"name": "Thiodicarb", "categories": ["water"], "amount": 147}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.812}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 10.4}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 15.1}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9}, {"name": "Thiram", "categories": ["air"], "amount": 5.91}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 4.12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 19.8}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 468}, {"name": "Thiram", "categories": ["water"], "amount": 468}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.37}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.37}, {"name": "Tin ion", "categories": ["air"], "amount": 1.6}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.6}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.213}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 4.38}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 4.38}, {"name": "Tin ion", "categories": ["soil"], "amount": 4.38}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 3.53e-20}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water"], "amount": 4.77}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.72e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.139}, {"name": "Toluene", "categories": ["water"], "amount": 0.139}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.000153}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.000153}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.1e-05}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.345}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 36.6}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 715}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Triallate", "categories": ["air"], "amount": 0.164}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.66}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 86.9}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 181}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 192}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1630}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.507}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 7.83}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.1e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.17}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.84}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 255}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 4.9e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.00133}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 12}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1500}, {"name": "Triflumuron", "categories": ["air"], "amount": 4670}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 2530}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 14100}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 22200}, {"name": "Triflumuron", "categories": ["water"], "amount": 22200}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0391}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.438}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.61}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 35.4}, {"name": "Trifluralin", "categories": ["water"], "amount": 35.4}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.675}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.574}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.456}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.13e-11}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.0319}, {"name": "Urea", "categories": ["water"], "amount": 0.0319}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.9}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.9}, {"name": "Vanadium V", "categories": ["air"], "amount": 61.9}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 61.9}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 24.4}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 161}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 161}, {"name": "Vanadium V", "categories": ["soil"], "amount": 161}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 178}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 7.82e-17}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 178}, {"name": "Vanadium V", "categories": ["water"], "amount": 178}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.545}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Xylene", "categories": ["water"], "amount": 0.155}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 259}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.3}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.3}, {"name": "Zinc II", "categories": ["air"], "amount": 71.1}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 71.1}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 13.3}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 192}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 192}, {"name": "Zinc II", "categories": ["soil"], "amount": 192}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.13e-16}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 211}, {"name": "Zinc II", "categories": ["water"], "amount": 211}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.25}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 52.9}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 4.4e-06}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.492}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.06e-05}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.525}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.29e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.29e-05}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.61e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.0067}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air"], "amount": 0.241}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 0.241}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 4.62e-05}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 1.12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.38}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "ecotoxicity: marine no LT", "marine ecotoxicity potential (METP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.831}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.141}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.00732}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.00125}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.145}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0199}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.105}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "2,4-D", "categories": ["water"], "amount": 0.145}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0711}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.0128}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 0.0883}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 0.0883}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0711}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.0631}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.0128}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 0.0883}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.00603}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.237}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.237}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.616}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0054}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.00144}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00073}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.000314}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000314}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.000997}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.000299}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 0.332}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.0124}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0026}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0026}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.007}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00155}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.00425}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.0485}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.0485}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 11.7}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.63}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0446}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.007}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.0395}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.0492}, {"name": "Acephate", "categories": ["water"], "amount": 0.0492}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.00512}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00512}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0716}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.00944}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000141}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.02e-05}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.0168}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00238}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air"], "amount": 0.000595}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.000595}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.000894}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water"], "amount": 0.000503}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.00283}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00283}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.00388}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00239}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.151}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 0.0853}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air"], "amount": 1.34}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.34}, {"name": "Acrolein", "categories": ["water"], "amount": 3.24}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.0131}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00186}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0034}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0034}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.0445}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.255}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.052}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.99}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.98}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0195}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0195}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.62}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.00546}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9640}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 4960}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 303}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 16200}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.93}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.323}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.59}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air"], "amount": 0.00107}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.139}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water"], "amount": 0.0257}, {"name": "Anthracene", "categories": ["air"], "amount": 4.65}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 306}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water"], "amount": 28.9}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860000}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 860000}, {"name": "Antimony ion", "categories": ["air"], "amount": 797000}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 797000}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 212000}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 657000}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 657000}, {"name": "Antimony ion", "categories": ["soil"], "amount": 657000}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 730000}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1520000}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 730000}, {"name": "Antimony ion", "categories": ["water"], "amount": 730000}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 187000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 187000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 171000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 171000}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 13600}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 135000}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 135000}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 135000}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 148000}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 347000}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 148000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 148000}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.67}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.24}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water"], "amount": 14.9}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0375}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.143}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 13.1}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 0.011}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.75}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.26}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 13}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 13}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18000}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 18000}, {"name": "Barium II", "categories": ["air"], "amount": 18200}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8730}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 18700}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 18700}, {"name": "Barium II", "categories": ["soil"], "amount": 18700}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 20800}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 28900}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 20800}, {"name": "Barium II", "categories": ["water"], "amount": 20800}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.00157}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0296}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0389}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.0132}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0239}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.00305}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 58}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 151}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0233}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0233}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0395}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air"], "amount": 0.00235}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.00235}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.089}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water"], "amount": 0.00485}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.451}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.0377}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.00563}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.66}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.66}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 11}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 21.9}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 26.9}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 26.9}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 12.2}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.00117}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.00336}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.000405}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0322}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.00699}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 94000}, {"name": "Beryllium II", "categories": ["air"], "amount": 72800}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 72800}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1700}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 25300}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 25300}, {"name": "Beryllium II", "categories": ["soil"], "amount": 25300}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 27700}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 180000}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 27700}, {"name": "Beryllium II", "categories": ["water"], "amount": 27700}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6950}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 11.8}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 60}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4150}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4150}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2520}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1470}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 27.5}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 43.7}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2500}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2500}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.49}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 0.0742}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.00164}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.00138}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.00353}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.977}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.23}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.23}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 13.5}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.971}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.00499}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air"], "amount": 0.000583}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000583}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.00295}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water"], "amount": 0.000557}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.0181}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0296}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.00305}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.49}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 11.1}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23600}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 23600}, {"name": "Cadmium II", "categories": ["air"], "amount": 17700}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 17700}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1020}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4510}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4510}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4510}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 5000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 46200}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 5000}, {"name": "Cadmium II", "categories": ["water"], "amount": 5000}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.16}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.512}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.42}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.42}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.24}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.46}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.54}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.54}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.039}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.32}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.263}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.137}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Carboxin", "categories": ["air"], "amount": 1.01}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.764}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.44}, {"name": "Carboxin", "categories": ["water"], "amount": 1.44}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 0.00941}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00133}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 485}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 18}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 139}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 795}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 795}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 795}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air"], "amount": 7.51}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.51}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 23.2}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water"], "amount": 5.16}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 0.318}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.0223}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 5.79}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.0296}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.00255}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 0.323}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 0.964}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 0.214}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.176}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water"], "amount": 0.0469}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 0.124}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 0.124}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.215}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 0.0572}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 186}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 182}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 80.8}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 193}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 193}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 176}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 104}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 337}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2680}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2680}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 4.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.907}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.0799}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2990}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2990}, {"name": "Chromium III", "categories": ["air"], "amount": 2220}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2220}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 170}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 469}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 469}, {"name": "Chromium III", "categories": ["soil"], "amount": 469}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 520}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5830}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 520}, {"name": "Chromium III", "categories": ["water"], "amount": 520}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 410000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 410000}, {"name": "Chromium VI", "categories": ["air"], "amount": 369000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 369000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 101000}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 279000}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 279000}, {"name": "Chromium VI", "categories": ["soil"], "amount": 279000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 309000}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 728000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 309000}, {"name": "Chromium VI", "categories": ["water"], "amount": 309000}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 2.88}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.0504}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.0327}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0387}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9630}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9630}, {"name": "Cobalt II", "categories": ["air"], "amount": 7420}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 7420}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 273}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2450}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2450}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2450}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2710}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 18700}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2710}, {"name": "Cobalt II", "categories": ["water"], "amount": 2710}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 229000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 229000}, {"name": "Copper ion", "categories": ["air"], "amount": 175000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 175000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5560}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 53500}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 53500}, {"name": "Copper ion", "categories": ["soil"], "amount": 53500}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 59000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 447000}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 59000}, {"name": "Copper ion", "categories": ["water"], "amount": 59000}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air"], "amount": 0.00063}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.00063}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.331}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water"], "amount": 0.0105}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.42}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.68e-06}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.68e-06}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0342}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000944}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.68e-06}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.12e-07}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.00346}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 151}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.0541}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.000273}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 232}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 12400}, {"name": "Cypermethrin", "categories": ["water"], "amount": 12400}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.167}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.049}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.497}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00127}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.122}, {"name": "Decanoic acid", "categories": ["water"], "amount": 0.0428}, {"name": "Deltamethrin", "categories": ["air"], "amount": 852}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 80.7}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 718}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.0078}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.0452}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.957}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.26}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.524}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.0182}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 0.129}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 0.129}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.377}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.54}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0314}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.00448}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.0349}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.0349}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.03}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 0.983}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.69}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.078}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.00224}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 0.0605}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.23e-05}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0179}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0179}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.0496}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.011}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.41e-05}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.41e-05}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 0.000268}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.81e-05}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.2}, {"name": "Difenoconazole", "categories": ["air"], "amount": 21.7}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2.14}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 15.1}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 44.9}, {"name": "Difenoconazole", "categories": ["water"], "amount": 44.9}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 452}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 58.6}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 384}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 933}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 933}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.0163}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.087}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.00631}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.297}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.166}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.0733}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.0381}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0381}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.0232}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.00617}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 40500}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 40500}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 5940}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 9610}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 9610}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 9610}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 13700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 136000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 13700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 13700}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00566}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.506}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 0.316}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 0.0745}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 0.482}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.09}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.09}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 0.472}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.3}, {"name": "Diuron", "categories": ["air"], "amount": 10.3}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.84}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.43}, {"name": "Diuron", "categories": ["water"], "amount": 12.3}, {"name": "Dodecanol", "categories": ["water"], "amount": 0.864}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.0208}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.0291}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.00447}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.0262}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 193}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.00395}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.13}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 7.96}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 16.1}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 16.1}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5600}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.0113}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.0113}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.0705}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.0437}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.0177}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0177}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0617}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0185}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 11}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 7.7}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.000901}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water"], "amount": 0.000225}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.00259}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.0182}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.0182}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.0687}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.0384}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.47}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.00262}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00262}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00882}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.00264}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.00829}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.00829}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0216}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.0048}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.0455}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.0101}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.0324}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0178}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.384}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 12.2}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.01}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 0.39}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 0.631}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 141}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 0.225}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.03}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 0.226}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.35}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.35}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 275}, {"name": "Fluazinam", "categories": ["air"], "amount": 236}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 21.7}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 144}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 434}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 434}, {"name": "Fluazinam", "categories": ["water"], "amount": 434}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.2}, {"name": "Fludioxonil", "categories": ["air"], "amount": 12.8}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 5.8}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 22.8}, {"name": "Fludioxonil", "categories": ["water"], "amount": 22.8}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 41}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Fluoranthene", "categories": ["air"], "amount": 14.6}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 57.9}, {"name": "Fluorene", "categories": ["air"], "amount": 0.164}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 0.329}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 0.924}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.0136}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.3}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.025}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.025}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.0237}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00847}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0012}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0237}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0112}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air"], "amount": 2.54e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.54e-05}, {"name": "Furfural", "categories": ["air"], "amount": 0.00776}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.00726}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.145}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.00726}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0923}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.00835}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.0569}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.95}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.16}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.16}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air"], "amount": 9.98e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 9.98e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 0.835}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0629}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water"], "amount": 0.00162}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.242}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.0375}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 13.5}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 10.1}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.27}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.171}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.00553}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.000388}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.000388}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.106}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0037}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0527}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0527}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000148}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 0.189}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.515}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.554}, {"name": "Imidacloprid", "categories": ["air"], "amount": 0.558}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.577}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Imidacloprid", "categories": ["water"], "amount": 0.76}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Indoxacarb", "categories": ["air"], "amount": 27.7}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 0.838}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 6.58}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.338}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air"], "amount": 2.8e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.8e-07}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.00644}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.00644}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0188}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.00418}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.268}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.405}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26300}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 474}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 553}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 10700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 10700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 10700}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.0185}, {"name": "Lauric acid", "categories": ["water"], "amount": 0.0205}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 762}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 762}, {"name": "Lead II", "categories": ["air"], "amount": 556}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.95}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 93.4}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 93.4}, {"name": "Lead II", "categories": ["soil"], "amount": 93.4}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 101}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1500}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 101}, {"name": "Lead II", "categories": ["water"], "amount": 101}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.0299}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 130}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.0774}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0629}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.00413}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 0.0389}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 0.0389}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.317}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.0105}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.332}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.332}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.3}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.00696}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.000731}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.75}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.589}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.13}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.31}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.31}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.606}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0664}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.00848}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 66900}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 66900}, {"name": "Mercury II", "categories": ["air"], "amount": 48600}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 48600}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 219}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 9280}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 9280}, {"name": "Mercury II", "categories": ["soil"], "amount": 9280}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 9820}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 125000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 9820}, {"name": "Mercury II", "categories": ["water"], "amount": 9820}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.0167}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 0.123}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 0.11}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 0.185}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 0.185}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 0.00664}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.534}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.0048}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0621}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.308}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.624}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.00784}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.00784}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0328}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.00829}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00368}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00368}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.905}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.537}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air"], "amount": 0.000451}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000451}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000713}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water"], "amount": 0.000223}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.57}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.08}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.205}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.13}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water"], "amount": 1.87}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 12.8}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 0.918}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.52}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 20.1}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 20.1}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.00837}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00837}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.0159}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water"], "amount": 0.00765}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.022}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.394}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.0385}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.000722}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.000722}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.000669}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.00206}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.00206}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 0.382}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air"], "amount": 0.012}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.012}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.0312}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water"], "amount": 0.00695}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.0183}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.789}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.14}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water"], "amount": 12.2}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.95}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.846}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.21}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 300}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 291}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43.2}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 249}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 421}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 421}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.0819}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 856}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 856}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 690}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 690}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 115}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 318}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 318}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 318}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 353}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1610}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 353}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 353}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.0745}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00684}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 0.0855}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.0737}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.0205}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.0755}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.98}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 69100}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 69100}, {"name": "Nickel II", "categories": ["air"], "amount": 54900}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 54900}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3630}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 22900}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 22900}, {"name": "Nickel II", "categories": ["soil"], "amount": 22900}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 25300}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 133000}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 25300}, {"name": "Nickel II", "categories": ["water"], "amount": 25300}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.111}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 0.11}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 0.106}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 0.155}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.152}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.228}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.118}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.000226}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0922}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00355}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.485}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.0723}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.752}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 0.374}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.56}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.56}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.187}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.000715}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 0.0956}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.0101}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.36}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air"], "amount": 0.000114}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.000114}, {"name": "Pentane", "categories": ["water"], "amount": 0.0817}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 498}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 18.3}, {"name": "Permethrin", "categories": ["water"], "amount": 287}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.43}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.35}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.0589}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air"], "amount": 0.00849}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00849}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water"], "amount": 0.0237}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 30.7}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 30.7}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.68}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.468}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1.94}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.405}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.418}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.0664}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.0152}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.419}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.0322}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.0601}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.278}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.0379}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 16.8}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 16.8}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 20.3}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.59}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 39.1}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.275}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.00111}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 0.00167}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air"], "amount": 0.0024}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.0024}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.0493}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water"], "amount": 0.00535}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.12}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air"], "amount": 0.000566}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000566}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0019}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water"], "amount": 0.00055}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 0.0755}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.00484}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.34}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.31}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.22}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.22}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.22}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.00593}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00593}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.0156}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.00221}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0046}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0046}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0124}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water"], "amount": 0.00276}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 9.96e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.0204}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0367}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.0185}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 0.465}, {"name": "Pyrene", "categories": ["air"], "amount": 21.5}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 156}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.00199}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 0.757}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.0377}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.8}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 13.2}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.25}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 23.3}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 227}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 227}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.01}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 5.7}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 0.322}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.00362}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23500}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 23500}, {"name": "Selenium IV", "categories": ["air"], "amount": 18700}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 18700}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1640}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 7830}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 7830}, {"name": "Selenium IV", "categories": ["soil"], "amount": 7830}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 8670}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 45100}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 8670}, {"name": "Selenium IV", "categories": ["water"], "amount": 8670}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0149}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.41}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 652000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 652000}, {"name": "Silver I", "categories": ["air"], "amount": 487000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 487000}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 15000}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 115000}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 115000}, {"name": "Silver I", "categories": ["soil"], "amount": 115000}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 128000}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1280000}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 128000}, {"name": "Silver I", "categories": ["water"], "amount": 128000}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.83}, {"name": "Simazine", "categories": ["air"], "amount": 3.46}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.472}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.78}, {"name": "Simazine", "categories": ["water"], "amount": 4.78}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.000253}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.000253}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.000815}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water"], "amount": 0.000116}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air"], "amount": 9.49e-05}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.49e-05}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.238}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water"], "amount": 0.0072}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 1.99}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.33}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.053}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.053}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.00498}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 0.0363}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 0.0363}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.95}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.152}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.36}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 0.207}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.2}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 19.2}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.17}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 12.6}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 21.6}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21.6}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 253}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 224}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 18}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 132}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 451}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.074}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.22}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.97}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.0746}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0746}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.43}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.12}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 470000}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 470000}, {"name": "Thallium I", "categories": ["air"], "amount": 458000}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 458000}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 197000}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 431000}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 431000}, {"name": "Thallium I", "categories": ["soil"], "amount": 431000}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 479000}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 781000}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 479000}, {"name": "Thallium I", "categories": ["water"], "amount": 479000}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.576}, {"name": "Thiabendazole", "categories": ["air"], "amount": 0.489}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.0175}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.123}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.358}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.358}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.0682}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 0.968}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water"], "amount": 0.215}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4.98}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.54}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.54}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.719}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 0.655}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.16}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 0.863}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.25}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.25}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.3}, {"name": "Thiram", "categories": ["air"], "amount": 9.15}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.234}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.1}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 26}, {"name": "Thiram", "categories": ["water"], "amount": 26}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6450}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6450}, {"name": "Tin ion", "categories": ["air"], "amount": 4840}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 4840}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 60.1}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1230}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1230}, {"name": "Tin ion", "categories": ["soil"], "amount": 1230}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1340}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 12600}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1340}, {"name": "Tin ion", "categories": ["water"], "amount": 1340}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air"], "amount": 0.000331}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000331}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0857}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water"], "amount": 0.00276}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.00787}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.00787}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.333}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.0185}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.22}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 138}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.144}, {"name": "Triallate", "categories": ["air"], "amount": 1}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.517}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 7.74}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 34.8}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 88.7}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.62}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 135}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.0226}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.649}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.162}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.00635}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.319}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 33.7}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 0.000142}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.16e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.31}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2360}, {"name": "Triflumuron", "categories": ["air"], "amount": 2380}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 511}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 2730}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 4260}, {"name": "Triflumuron", "categories": ["water"], "amount": 4260}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.614}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.979}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.61}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.61}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.13}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.0109}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 0.00342}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.00076}, {"name": "Urea", "categories": ["water"], "amount": 0.00076}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.00566}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 880000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 880000}, {"name": "Vanadium V", "categories": ["air"], "amount": 861000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 861000}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 124000}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 819000}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 819000}, {"name": "Vanadium V", "categories": ["soil"], "amount": 819000}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 907000}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1580000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 907000}, {"name": "Vanadium V", "categories": ["water"], "amount": 907000}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.0468}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air"], "amount": 0.000165}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000165}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0932}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water"], "amount": 0.00293}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020000}, {"name": "Zinc II", "categories": ["air"], "amount": 2270000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 2270000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 196000}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2830000}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2830000}, {"name": "Zinc II", "categories": ["soil"], "amount": 2830000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 3100000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3510000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 3100000}, {"name": "Zinc II", "categories": ["water"], "amount": 3100000}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.93}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.297}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0089}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.000559}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000559}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.316}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.00991}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.000307}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.000307}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00403}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.000414}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air"], "amount": 0.0446}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0446}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.12}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water"], "amount": 0.0267}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 5.78}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "ecotoxicity: terrestrial no LT", "terrestrial ecotoxicity potential (TETP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.802}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.76}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.062}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.695}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0416}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.00206}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.00054}, {"name": "2,4-D", "categories": ["water"], "amount": 0.00054}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 9.63e-08}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 4.67e-09}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 33.3}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 9.63e-08}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 69.5}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.0475}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.0475}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0855}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.798}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00627}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.00194}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.0188}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 34.2}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.072}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.39}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.23e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 9.68e-05}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.411}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.647}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.61}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 813}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00233}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000491}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 7.9e-05}, {"name": "Acephate", "categories": ["water"], "amount": 7.9e-05}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0828}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.339}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.42}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.0151}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 125}, {"name": "Acetic acid", "categories": ["air"], "amount": 87}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 87}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.39e-05}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00669}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air"], "amount": 0.0305}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00445}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water"], "amount": 0.0236}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0609}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.305}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 3.7}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15.6}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 495}, {"name": "Acrolein", "categories": ["air"], "amount": 287}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 287}, {"name": "Acrolein", "categories": ["water"], "amount": 423}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.15e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00425}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air"], "amount": 45.7}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 45.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.867}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.13}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 8460}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.3}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 146}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.0173}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 123000}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 63100}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1140}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1180}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 3630}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 58.9}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 8.55}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.42}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.13}, {"name": "Aniline", "categories": ["air"], "amount": 0.621}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.621}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.041}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.622}, {"name": "Aniline", "categories": ["water"], "amount": 0.622}, {"name": "Anthracene", "categories": ["air"], "amount": 34.8}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 28.8}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water"], "amount": 71.1}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 671000}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 671000}, {"name": "Antimony ion", "categories": ["air"], "amount": 464000}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 464000}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.33e-13}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 4.14e-13}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 4.14e-13}, {"name": "Antimony ion", "categories": ["soil"], "amount": 4.14e-13}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 4.6e-13}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 9.27e-13}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 4.6e-13}, {"name": "Antimony ion", "categories": ["water"], "amount": 4.6e-13}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 143000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 143000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 99000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 99000}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.01e-14}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 9.91e-14}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 9.91e-14}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 9.91e-14}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.09e-13}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.48e-13}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.09e-13}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.09e-13}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.0174}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 22.7}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14.4}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water"], "amount": 10.1}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0553}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 6.69e-05}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 174}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 5.06e-05}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4680}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.000144}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 0.000137}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.09e-05}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.09e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3520}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3520}, {"name": "Barium II", "categories": ["air"], "amount": 2440}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2440}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 5.14e-15}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.1e-14}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.1e-14}, {"name": "Barium II", "categories": ["soil"], "amount": 1.1e-14}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.22e-14}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.68e-14}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.22e-14}, {"name": "Barium II", "categories": ["water"], "amount": 1.22e-14}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.72e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.516}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.000631}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.651}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0639}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 346}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 187}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.582}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.091}, {"name": "Benzene", "categories": ["air"], "amount": 0.0871}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0871}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0427}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water"], "amount": 0.0859}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.922}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0129}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0425}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 48.4}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 78.5}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 78.5}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 76.3}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.445}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.445}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.008}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0333}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0189}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.00268}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.0477}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 512000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 512000}, {"name": "Beryllium II", "categories": ["air"], "amount": 354000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 354000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.87e-15}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 4.26e-14}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 4.26e-14}, {"name": "Beryllium II", "categories": ["soil"], "amount": 4.26e-14}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.67e-14}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.65e-13}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.67e-14}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.67e-14}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 148000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 96.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 99.6}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 308}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 308}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 9.79}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22500}, {"name": "Bifenthrin", "categories": ["air"], "amount": 13100}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 222}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 227}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 801}, {"name": "Bifenthrin", "categories": ["water"], "amount": 801}, {"name": "Bisphenol A", "categories": ["water"], "amount": 0.0064}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.51e-05}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 7.52e-07}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 0.00957}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.0859}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.0782}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 466}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 42400}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00331}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 0.000666}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 0.000666}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 217}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.9}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.33}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.862}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air"], "amount": 0.035}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.0015}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water"], "amount": 0.0186}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.0321}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0703}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.368}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2900}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 301}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 299000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 299000}, {"name": "Cadmium II", "categories": ["air"], "amount": 207000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 207000}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 8.32e-16}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 3.69e-15}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 3.69e-15}, {"name": "Cadmium II", "categories": ["soil"], "amount": 3.69e-15}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 4.09e-15}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.06e-14}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 4.09e-15}, {"name": "Cadmium II", "categories": ["water"], "amount": 4.09e-15}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9490}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 12.7}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 5.77}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 5.77}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 10300}, {"name": "Carbendazim", "categories": ["air"], "amount": 8320}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.138}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 0.0873}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 0.0417}, {"name": "Carbendazim", "categories": ["water"], "amount": 0.0417}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 372}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.853}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 7.49}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4270}, {"name": "Carboxin", "categories": ["air"], "amount": 2950}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.666}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.461}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 0.242}, {"name": "Carboxin", "categories": ["water"], "amount": 0.242}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00159}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 163000}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 202}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 199}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 123}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 123}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 123}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 265000}, {"name": "Chloramine", "categories": ["air"], "amount": 219000}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 219000}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.74e-07}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water"], "amount": 3.26e-06}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1680}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 8.8e-06}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 6400}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 6400}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.68e-06}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 0.00068}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air"], "amount": 0.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.219}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water"], "amount": 0.462}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 330}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 55.7}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 55.7}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.413}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 6.87}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 22400}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 21800}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 9330}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9770}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 8820}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 8820}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 6180}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1650}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 786}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 251}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.15e-06}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 65300}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 65300}, {"name": "Chromium III", "categories": ["air"], "amount": 45200}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 45200}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.94e-16}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.36e-16}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.36e-16}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.36e-16}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 5.95e-16}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.12e-15}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 5.95e-16}, {"name": "Chromium III", "categories": ["water"], "amount": 5.95e-16}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 221000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 221000}, {"name": "Chromium VI", "categories": ["air"], "amount": 153000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 153000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 8.28e-14}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.29e-13}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.29e-13}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.29e-13}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.54e-13}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 5.85e-13}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.54e-13}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.54e-13}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 9.78}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 22}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0329}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63800}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63800}, {"name": "Cobalt II", "categories": ["air"], "amount": 44200}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 44200}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.55e-16}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.29e-15}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.29e-15}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.29e-15}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.53e-15}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.5e-14}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.53e-15}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.53e-15}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1880000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1880000}, {"name": "Copper ion", "categories": ["air"], "amount": 1300000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.23e-15}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.02e-14}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.02e-14}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.02e-14}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 5.54e-14}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.51e-13}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 5.54e-14}, {"name": "Copper ion", "categories": ["water"], "amount": 5.54e-14}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air"], "amount": 0.0432}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0432}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.0138}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water"], "amount": 0.0466}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.341}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.000203}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000646}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.73e-05}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.27e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1740}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.12e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95800}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 917}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 2830}, {"name": "Cypermethrin", "categories": ["water"], "amount": 2830}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.868}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.04e-05}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 77}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00507}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Decanoic acid", "categories": ["water"], "amount": 0.0114}, {"name": "Deltamethrin", "categories": ["air"], "amount": 14700}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1380}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3700}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.14e-12}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.754}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 2.87}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.00301}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.647}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.32e-05}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.32e-05}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 36.9}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 114}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 282}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.000695}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.55e-06}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.55e-06}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1060}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 32.5}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 609}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.923}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Diethanolamine", "categories": ["water"], "amount": 5.94e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 3.49}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00415}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00415}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 242}, {"name": "Diethylamine", "categories": ["air"], "amount": 186}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 186}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.037}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.0767}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.968}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.968}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 7.44e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.000149}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 20400}, {"name": "Difenoconazole", "categories": ["air"], "amount": 16600}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 0.0715}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 0.0654}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0503}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.0503}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 489000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1240}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1040}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 692}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 692}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.741}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.0684}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.302}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 8.15}, {"name": "Dimethoate", "categories": ["air"], "amount": 2350}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 7.52}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.232}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.155}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air"], "amount": 888}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 888}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.337}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1610000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1610000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1420000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1420000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 207000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 330000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 330000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 330000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 210000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 484000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 210000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 210000}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00217}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 424}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.33e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 6.6e-07}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 6.6e-07}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.114}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 28600}, {"name": "Diuron", "categories": ["air"], "amount": 20400}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.59}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.78}, {"name": "Diuron", "categories": ["water"], "amount": 2.55}, {"name": "Dodecanol", "categories": ["water"], "amount": 7.62}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.215}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 6.87e-05}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.18e-08}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.47}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 468}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 16}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 6710}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 148}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 58.9}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 58.9}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11300}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.444}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.444}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.111}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.194}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.929}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.929}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.184}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.387}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 13.1}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 18}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air"], "amount": 0.072}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0262}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 276}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 5.61e-06}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.53e-11}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.53e-11}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.27}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 14.4}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1520}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.406}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 214}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 214}, {"name": "Ethylamine", "categories": ["air"], "amount": 168}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 168}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0309}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.064}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.000108}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.000225}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.455}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.57}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.13e-05}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 6.64e-07}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.177}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 638}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.483}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 8.99}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2710}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 729}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 26.8}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 26.8}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 206000}, {"name": "Fluazinam", "categories": ["air"], "amount": 145000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1240}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1140}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 900}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 900}, {"name": "Fluazinam", "categories": ["water"], "amount": 900}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12600}, {"name": "Fludioxonil", "categories": ["air"], "amount": 8730}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 1.15}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.45}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.45}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 70900}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 389}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.04}, {"name": "Fluoranthene", "categories": ["air"], "amount": 98.9}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 80.1}, {"name": "Fluorene", "categories": ["air"], "amount": 1.82}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.08}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 190}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 2.06e-06}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 25800}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 142}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air"], "amount": 10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.0506}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.889}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air"], "amount": 66.8}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 66.8}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 4.58e-06}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water"], "amount": 0.000909}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 7.53e-09}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0062}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0939}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00607}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00607}, {"name": "Furan", "categories": ["air"], "amount": 0.00245}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00245}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 573}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.26e-10}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.13e-05}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.27e-11}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2440}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1980}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 0.00799}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 0.00799}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air"], "amount": 2.07e-05}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.07e-05}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 256}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air"], "amount": 0.000196}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000196}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.37e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water"], "amount": 0.000194}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.00371}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.379}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 602}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 367}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water"], "amount": 1360}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00795}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0955}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.03}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.03}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0143}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0387}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.178}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000785}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4320}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 5.99e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.17e-10}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Imidacloprid", "categories": ["water"], "amount": 1.98e-10}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 7710}, {"name": "Indoxacarb", "categories": ["air"], "amount": 6020}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 9.87}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.0103}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.302}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-05}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air"], "amount": 88}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 88}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.216}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.2}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 20.2}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 312000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5510}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5640}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 18700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 18700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 18700}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.866}, {"name": "Lauric acid", "categories": ["water"], "amount": 0.00154}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67200}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 67200}, {"name": "Lead II", "categories": ["air"], "amount": 46500}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 46500}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.26e-18}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.7e-17}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.7e-17}, {"name": "Lead II", "categories": ["soil"], "amount": 7.7e-17}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 8.37e-17}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 8.95e-16}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 8.37e-17}, {"name": "Lead II", "categories": ["water"], "amount": 8.37e-17}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.93e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5100}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.04e-07}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 626}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 6.59e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.1e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.1e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.000589}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.000883}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.000883}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 43}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.18e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.05e-05}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 44400}, {"name": "Mancozeb", "categories": ["air"], "amount": 36600}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.000845}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.59e-05}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 9.45e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 9.45e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.000868}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0677}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.000731}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.84e-13}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2180000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2180000}, {"name": "Mercury II", "categories": ["air"], "amount": 1490000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1490000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.63e-16}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 6.92e-15}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 6.92e-15}, {"name": "Mercury II", "categories": ["soil"], "amount": 6.92e-15}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 7.32e-15}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 6.91e-14}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 7.32e-15}, {"name": "Mercury II", "categories": ["water"], "amount": 7.32e-15}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.27}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 702}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 455}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 0.82}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 0.347}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 0.347}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 45.5}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.000275}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.000191}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.02}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.358}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0492}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0998}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.0416}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.0416}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.806}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.41}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Methanol", "categories": ["air"], "amount": 0.122}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.122}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.00305}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water"], "amount": 0.0422}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 96.2}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 32500}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.422}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 0.206}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water"], "amount": 0.0678}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 5.42}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 15800}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 12800}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 0.0597}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 0.0575}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 0.0517}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 0.0517}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.4}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.4}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.303}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.2}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.23}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.55}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.0199}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air"], "amount": 55.8}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 55.8}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 566}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 40.4}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 397}, {"name": "Methylamine", "categories": ["air"], "amount": 305}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 305}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water"], "amount": 0.216}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 5890}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 18.4}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 15.7}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water"], "amount": 11.3}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 40000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.21}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 0.856}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090000}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 899000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 6.48e-05}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.81e-05}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.81e-05}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.85}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2270}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2270}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1570}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1570}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.31e-17}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.3e-16}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.3e-16}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.3e-16}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.55e-16}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.07e-15}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.55e-16}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.55e-16}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.014}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00603}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 27.6}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 2.3}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 801}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.584}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.967}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.165}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 606}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 292000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 292000}, {"name": "Nickel II", "categories": ["air"], "amount": 202000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 202000}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.25e-15}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.05e-14}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.05e-14}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.05e-14}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.27e-14}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.05e-13}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.27e-14}, {"name": "Nickel II", "categories": ["water"], "amount": 2.27e-14}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 645}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 531}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 7.28e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 3.32e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.1e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.1e-08}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.1}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.8}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 176}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.00469}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 21.7}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 5.82e-05}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00085}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.133}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 9.68}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 24.9}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 38.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.35}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.34}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.4}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 4.69e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 276}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.8}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 6.44e-05}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 490}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 69.2}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 69.2}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air"], "amount": 0.0207}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.0207}, {"name": "Pentane", "categories": ["water"], "amount": 0.0196}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11100}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 401}, {"name": "Permethrin", "categories": ["water"], "amount": 1160}, {"name": "Phenanthrene", "categories": ["air"], "amount": 31.3}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 37}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49}, {"name": "Phenol", "categories": ["air"], "amount": 1.18}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.00553}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water"], "amount": 0.0981}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 13}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 13}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 5980}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 5980}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.116}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.136}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 47.2}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 272}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4160}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.187}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.84}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.603}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 10.7}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.4}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 7.34}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00153}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.00909}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.000503}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 77.9}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.378}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 50.4}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 77.3}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 77.3}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 63.8}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 54.6}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 6.77}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3440}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 37.6}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 885}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 3.94e-05}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 4.05e-06}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06}, {"name": "Propanal", "categories": ["air"], "amount": 0.622}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.622}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.881}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.21}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.881}, {"name": "Propanal", "categories": ["water"], "amount": 0.881}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air"], "amount": 0.0504}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0504}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.003}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water"], "amount": 0.0302}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.00379}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.15}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.536}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.237}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water"], "amount": 0.487}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.0204}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air"], "amount": 51.4}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 51.4}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0154}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water"], "amount": 0.032}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.00326}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.41}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.74}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Pyrene", "categories": ["air"], "amount": 121}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 140}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 232}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.000429}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 119}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 667}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 211}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 267}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 932}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 932}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.000183}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 26.7}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.000889}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96800}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 96800}, {"name": "Selenium IV", "categories": ["air"], "amount": 67000}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 67000}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.33e-15}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 6.33e-15}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 6.33e-15}, {"name": "Selenium IV", "categories": ["soil"], "amount": 6.33e-15}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 7.02e-15}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 3.23e-14}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 7.02e-15}, {"name": "Selenium IV", "categories": ["water"], "amount": 7.02e-15}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0594}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.0666}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400000}, {"name": "Silver I", "categories": ["air"], "amount": 7180000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7180000}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.29e-14}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 9.9e-14}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 9.9e-14}, {"name": "Silver I", "categories": ["soil"], "amount": 9.9e-14}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.09e-13}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.69e-13}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.09e-13}, {"name": "Silver I", "categories": ["water"], "amount": 1.09e-13}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Simazine", "categories": ["air"], "amount": 9400}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 9.4}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.05}, {"name": "Simazine", "categories": ["water"], "amount": 3.05}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air"], "amount": 15.4}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 15.4}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.32e-21}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water"], "amount": 2.8e-21}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 77.2}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air"], "amount": 0.00511}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00418}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water"], "amount": 0.0139}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 0.00791}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1250}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1490}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1490}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.000647}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.72e-10}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.72e-10}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.61}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2820}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.0907}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.0888}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water"], "amount": 0.0838}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.97}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 99300}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 75900}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 7.63}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 4.7}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.13}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.13}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 178000}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 135000}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.95}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.71}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 7.87}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.00589}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 286}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 47.8}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.313}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.568}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90600}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 90600}, {"name": "Thallium I", "categories": ["air"], "amount": 62700}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 62700}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.02e-13}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.22e-13}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.22e-13}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.22e-13}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.47e-13}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 3.99e-13}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.47e-13}, {"name": "Thallium I", "categories": ["water"], "amount": 2.47e-13}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1090}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.00387}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.00354}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.00279}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.00279}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.000621}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 49}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 0.000115}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water"], "amount": 0.0213}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5860}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 977}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 732}, {"name": "Thiodicarb", "categories": ["water"], "amount": 732}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4360}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2770}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 7.32}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.23}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 964}, {"name": "Thiram", "categories": ["air"], "amount": 564}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.303}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.161}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Thiram", "categories": ["water"], "amount": 1.83}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 86400}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 86400}, {"name": "Tin ion", "categories": ["air"], "amount": 59800}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 59800}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 4.89e-17}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.09e-15}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 8.23e-15}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.09e-15}, {"name": "Tin ion", "categories": ["water"], "amount": 1.09e-15}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air"], "amount": 0.0281}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0281}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.00928}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water"], "amount": 0.0301}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.248}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.248}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.116}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.247}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 871}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 18.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.00155}, {"name": "Triallate", "categories": ["air"], "amount": 47}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 70.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 0.0748}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 152000}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.0075}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 0.0036}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.24}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.00144}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0529}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1.77}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 904}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 9.6e-07}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 1.8e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 25.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6730000}, {"name": "Triflumuron", "categories": ["air"], "amount": 4840000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 84000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 58600}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 11400}, {"name": "Triflumuron", "categories": ["water"], "amount": 11400}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 31.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 31.8}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000264}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.00987}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 6.86e-07}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water"], "amount": 1.29e-05}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.000198}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 292000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 292000}, {"name": "Vanadium V", "categories": ["air"], "amount": 202000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 202000}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.02e-13}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 6.73e-13}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 6.73e-13}, {"name": "Vanadium V", "categories": ["soil"], "amount": 6.73e-13}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 7.44e-13}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.27e-12}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 7.44e-13}, {"name": "Vanadium V", "categories": ["water"], "amount": 7.44e-13}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air"], "amount": 0.0139}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0139}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.00551}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water"], "amount": 0.0183}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95800}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 211000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 211000}, {"name": "Zinc II", "categories": ["air"], "amount": 146000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 146000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.46e-13}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.11e-12}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.11e-12}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.11e-12}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.32e-12}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.61e-12}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.32e-12}, {"name": "Zinc II", "categories": ["water"], "amount": 2.32e-12}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 74.4}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.00806}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0267}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.0187}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.062}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.0351}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.01}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.034}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air"], "amount": 535}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 535}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.405}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water"], "amount": 0.84}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 18.7}]}, {"unit": "kg oil-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "energy resources: non-renewable, fossil no LT", "fossil fuel potential (FFP) no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.22}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.42}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.22}]}, {"unit": "kg P-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "eutrophication: freshwater no LT", "freshwater eutrophication potential (FEP) no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "eutrophication: marine no LT", "marine eutrophication potential (MEP) no LT"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.776}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water"], "amount": 0.23}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water"], "amount": 0.0671}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.297}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.0902}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.297}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "human toxicity: carcinogenic no LT", "human toxicity potential (HTPc) no LT"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00065}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.065}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.081}, {"name": "Acephate", "categories": ["water"], "amount": 0.081}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.00325}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.0313}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.434}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.4}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 49.8}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 9.72}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.72}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.216}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1.45}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 41.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 41.4}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air"], "amount": 0.0322}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.0322}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.7e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water"], "amount": 0.0242}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22400}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 22400}, {"name": "Arsenic ion", "categories": ["air"], "amount": 20900}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 20900}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1730}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 16100}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 16100}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 16100}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 17700}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 40500}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 17700}, {"name": "Arsenic ion", "categories": ["water"], "amount": 17700}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.27}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 0.735}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.54}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.54}, {"name": "Atrazine", "categories": ["water"], "amount": 1.54}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0765}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0765}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0107}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.33}, {"name": "Benzene", "categories": ["air"], "amount": 1.44}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.158}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.354}, {"name": "Benzene", "categories": ["water"], "amount": 0.354}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.0375}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.145}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0284}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0961}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 93.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 93.8}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1150}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 36.5}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 36.5}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.8}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.8}, {"name": "Beryllium II", "categories": ["air"], "amount": 268}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 268}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.54}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.06}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.06}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 0.867}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 4.86}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 0.867}, {"name": "Beryllium II", "categories": ["water"], "amount": 0.867}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air"], "amount": 1.33}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.33}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 171}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 171}, {"name": "Cadmium II", "categories": ["air"], "amount": 310}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 310}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 338}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 15.6}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 15.6}, {"name": "Cadmium II", "categories": ["soil"], "amount": 15.6}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 9.89}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 79}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9.89}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.89}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.0216}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.84}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 3.27}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 3.27}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.293}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.29}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air"], "amount": 1.26}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.26}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.369}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water"], "amount": 0.862}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 0.0799}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.0212}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.0361}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 0.097}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 0.097}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 743000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 743000}, {"name": "Chromium VI", "categories": ["air"], "amount": 667000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 667000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 184000}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 500000}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 500000}, {"name": "Chromium VI", "categories": ["soil"], "amount": 500000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 548000}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1270000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 548000}, {"name": "Chromium VI", "categories": ["water"], "amount": 548000}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 241}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0637}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 80.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 39.9}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 7.95}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 27.1}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.0566}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.0566}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.24e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.0109}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 108000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 108000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 99600000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 99600000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 23200000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 27500000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 27500000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 27500000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 227000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 79300000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 227000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 227000000}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 4}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0676}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0676}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 5.07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.244}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.244}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.652}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.223}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.223}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.78}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 13.4}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 3.2e-05}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0012}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.423}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.93}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.3}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.8}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 3.36}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 12.5}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00626}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.137}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00064}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6}, {"name": "Furan", "categories": ["air"], "amount": 95}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 95}, {"name": "Furfural", "categories": ["air"], "amount": 0.29}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air"], "amount": 0.00483}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.00483}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water"], "amount": 0.00265}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.129}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water"], "amount": 10.2}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.172}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.172}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0234}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0553}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.27}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.27}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air"], "amount": 0.128}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.128}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.7}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.7}, {"name": "Lead II", "categories": ["air"], "amount": 26.5}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 26.5}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.72}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 6.88}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 6.88}, {"name": "Lead II", "categories": ["soil"], "amount": 6.88}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.44}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 16.7}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.44}, {"name": "Lead II", "categories": ["water"], "amount": 1.44}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 12.5}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.222}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4210}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4210}, {"name": "Mercury II", "categories": ["air"], "amount": 3110}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 3110}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 164}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 756}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 756}, {"name": "Mercury II", "categories": ["soil"], "amount": 756}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 734}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7600}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 734}, {"name": "Mercury II", "categories": ["water"], "amount": 734}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 12.3}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 12.3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0881}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 255}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 255}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 135}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 236}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.88}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.147}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.147}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.0171}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.0549}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.4}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.903}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1170}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1170}, {"name": "Nickel II", "categories": ["air"], "amount": 906}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 906}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 210}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 355}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 355}, {"name": "Nickel II", "categories": ["soil"], "amount": 355}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 249}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1190}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 249}, {"name": "Nickel II", "categories": ["water"], "amount": 249}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.0724}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.849}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 33.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 33.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.0684}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.895}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.93}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.93}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.579}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4.64}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.000638}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.0364}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00525}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.486}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.307}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 114}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 114}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 5120}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 3.53}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0588}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.365}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.968}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.0951}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air"], "amount": 1.28}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.28}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00976}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Styrene", "categories": ["water"], "amount": 0.281}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.523}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.13}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air"], "amount": 0.0134}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0134}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.000339}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water"], "amount": 0.00226}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0111}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0371}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0715}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.407}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.8}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air"], "amount": 0.0204}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.000267}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water"], "amount": 0.00229}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 0.241}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.313}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.313}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00964}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.0338}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "human toxicity: non-carcinogenic no LT", "human toxicity potential (HTPnc) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.414}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.9}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.1}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 3.81}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 5.24}, {"name": "2,4-D", "categories": ["water"], "amount": 5.24}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.105}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 1.88}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 1.88}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0377}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00147}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.9e-06}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00878}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.0297}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.19}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 19300}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 16500}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 620}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 773}, {"name": "Acephate", "categories": ["water"], "amount": 773}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.056}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.545}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Acetone", "categories": ["air"], "amount": 0.0878}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0878}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water"], "amount": 0.0132}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0204}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.131}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 310}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 310}, {"name": "Acrolein", "categories": ["air"], "amount": 9490}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 9490}, {"name": "Acrolein", "categories": ["water"], "amount": 294}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.74e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water"], "amount": 0.0752}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air"], "amount": 707}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 707}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.85}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 9.16}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.36}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.36}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 36}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 322}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.48}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.1}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 30.4}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.835}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 0.808}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 25.6}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 6.95}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.65}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.361}, {"name": "Aniline", "categories": ["air"], "amount": 5.32}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 5.32}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.00623}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 4.09}, {"name": "Aniline", "categories": ["water"], "amount": 4.09}, {"name": "Anthracene", "categories": ["air"], "amount": 0.0511}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water"], "amount": 0.723}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42500}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 42500}, {"name": "Antimony ion", "categories": ["air"], "amount": 38600}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 38600}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 10300}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 30400}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 30400}, {"name": "Antimony ion", "categories": ["soil"], "amount": 30400}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 32200}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 65500}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 32200}, {"name": "Antimony ion", "categories": ["water"], "amount": 32200}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 5190000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5190000}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 439000}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 4090000}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 4090000}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 4090000}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4480000}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 10300000}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4480000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4480000}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 6.7}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.9}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.92}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water"], "amount": 6.11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 21000}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 21000}, {"name": "Barium II", "categories": ["air"], "amount": 21000}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 21000}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9980}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 21100}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 21100}, {"name": "Barium II", "categories": ["soil"], "amount": 21100}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 23200}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 32000}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 23200}, {"name": "Barium II", "categories": ["water"], "amount": 23200}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0841}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0331}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.3}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.331}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 2.75}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 2.75}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0475}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28}, {"name": "Benzene", "categories": ["air"], "amount": 1.22}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.301}, {"name": "Benzene", "categories": ["water"], "amount": 0.301}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.505}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.00398}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.107}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1340}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 126}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 126}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 500}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27600}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27600}, {"name": "Beryllium II", "categories": ["air"], "amount": 641000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 641000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 131}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 113}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 113}, {"name": "Beryllium II", "categories": ["soil"], "amount": 113}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 32}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 179}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 32}, {"name": "Beryllium II", "categories": ["water"], "amount": 32}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 372}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.994}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.21}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 72.7}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 72.7}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 101}, {"name": "Bifenthrin", "categories": ["air"], "amount": 65}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 4.23}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 15.9}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 1970}, {"name": "Bifenthrin", "categories": ["water"], "amount": 1970}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.77}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.96}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.5}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.26}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.6}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.6}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.79}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air"], "amount": 6.67}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.67}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air"], "amount": 0.431}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.431}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.000981}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water"], "amount": 0.0541}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 150000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 150000}, {"name": "Cadmium II", "categories": ["air"], "amount": 107000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 107000}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 310000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 14300}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 14300}, {"name": "Cadmium II", "categories": ["soil"], "amount": 14300}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 9090}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 72500}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9090}, {"name": "Cadmium II", "categories": ["water"], "amount": 9090}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.779}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.9}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.16}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.3}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.3}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.5}, {"name": "Carbendazim", "categories": ["air"], "amount": 29.5}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.05}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Carbendazim", "categories": ["water"], "amount": 1.83}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 140}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 823}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 823}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 215}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 667}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 14}, {"name": "Carboxin", "categories": ["air"], "amount": 12.3}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.249}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.855}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Carboxin", "categories": ["water"], "amount": 1.61}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 3.52e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0152}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air"], "amount": 12.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.73e-05}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water"], "amount": 0.619}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 921}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 4.27}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.861}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water"], "amount": 9.89}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air"], "amount": 21.8}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.96}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water"], "amount": 12.8}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 8.14}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.72}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 10}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 10}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 79.8}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 338}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 88.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.748}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.571}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.571}, {"name": "Chromium III", "categories": ["air"], "amount": 0.425}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.425}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.0827}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.131}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.131}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.131}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 0.049}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 0.454}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.049}, {"name": "Chromium III", "categories": ["water"], "amount": 0.049}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5960}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5960}, {"name": "Chromium VI", "categories": ["air"], "amount": 10700}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 10700}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1410}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 3850}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 3850}, {"name": "Chromium VI", "categories": ["soil"], "amount": 3850}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 4220}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 9800}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 4220}, {"name": "Chromium VI", "categories": ["water"], "amount": 4220}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 149}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 149}, {"name": "Copper ion", "categories": ["air"], "amount": 111}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 111}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 83.4}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 31.3}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 31.3}, {"name": "Copper ion", "categories": ["soil"], "amount": 31.3}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 24.3}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 163}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 24.3}, {"name": "Copper ion", "categories": ["water"], "amount": 24.3}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air"], "amount": 0.18}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00479}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.066}, {"name": "Cumene", "categories": ["water"], "amount": 0.066}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0041}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0438}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.48}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.935}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 0.768}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 21.6}, {"name": "Cypermethrin", "categories": ["water"], "amount": 21.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.04}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 31.3}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 253}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 38}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.2}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4.13}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.59}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.59}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 86.9}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 865}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 42.1}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0958}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0958}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.7}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.88}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 17.3}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 41.9}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 41.9}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 66.2}, {"name": "Dimethoate", "categories": ["air"], "amount": 20.3}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.0765}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 14.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.702}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 255}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 30.3}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 68.3}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 68.3}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 46.2}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.554}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 88.7}, {"name": "Diuron", "categories": ["air"], "amount": 78.7}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 2.03}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.36}, {"name": "Diuron", "categories": ["water"], "amount": 12.1}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.00919}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.61}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 28.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0826}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.321}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.163}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.281}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 7.06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 7.06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 361}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 553}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 67.6}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 5.47}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 5.47}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 266}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0844}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0844}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0147}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00288}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0147}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0147}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00143}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 0.244}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2.73}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 22300}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.96}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.31}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.34}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Fipronil", "categories": ["air"], "amount": 1520}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 615}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 1570}, {"name": "Fipronil", "categories": ["water"], "amount": 1570}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.788}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 20.7}, {"name": "Fluorene", "categories": ["air"], "amount": 0.692}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 1.3}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 15.4}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 6.78}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00311}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.447}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00128}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.972}, {"name": "Furan", "categories": ["air"], "amount": 35.5}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 49.2}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 3.53}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.768}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.2}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "Hexane", "categories": ["air"], "amount": 2.2}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.2}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0475}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Hexane", "categories": ["water"], "amount": 1.23}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.504}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 5490}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00218}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0273}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0332}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.104}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 40.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 40.7}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.67}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 0.197}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 0.253}, {"name": "Imazethapyr", "categories": ["water"], "amount": 0.253}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air"], "amount": 57.1}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 2.07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.73}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.73}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 0.113}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42900}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 42900}, {"name": "Lead II", "categories": ["air"], "amount": 31800}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 31800}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 5670}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8260}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8260}, {"name": "Lead II", "categories": ["soil"], "amount": 8260}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1730}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 20000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1730}, {"name": "Lead II", "categories": ["water"], "amount": 1730}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 495}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.197}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 252}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 9.59}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 21.2}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 21.2}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.086}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.22}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.22}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.0736}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.74}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0272}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.2}, {"name": "Mancozeb", "categories": ["air"], "amount": 47.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2.75}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 1.77}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2.43}, {"name": "Mancozeb", "categories": ["water"], "amount": 2.43}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.00733}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1710000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1710000}, {"name": "Mercury II", "categories": ["air"], "amount": 1260000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1260000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 66400}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 307000}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 307000}, {"name": "Mercury II", "categories": ["soil"], "amount": 307000}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 297000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 3080000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 297000}, {"name": "Mercury II", "categories": ["water"], "amount": 297000}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.53}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 75}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1530}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.16}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 402}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 402}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 404}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 404}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 9.31}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 9.31}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2930}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2930}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1550}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2710}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33.1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 33.5}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 33.5}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Methanol", "categories": ["air"], "amount": 0.156}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.156}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000666}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water"], "amount": 0.0194}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.22}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 456}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.72}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 9.35}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water"], "amount": 15.4}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00853}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 89.8}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.11}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.342}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.43}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water"], "amount": 3.37}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.7}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 2.42}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.9}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 12.7}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 0.695}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 1.18}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 1.18}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 77.5}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 9.48}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6530}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 6530}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 5000}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 5000}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 3130}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1890}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1890}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1890}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1130}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 4760}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1130}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1130}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.00213}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.00684}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 213}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.514}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Naphthalene", "categories": ["air"], "amount": 11}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.03}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.206}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 226}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 226}, {"name": "Nickel II", "categories": ["air"], "amount": 174}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 174}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 40.5}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 68.4}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 68.4}, {"name": "Nickel II", "categories": ["soil"], "amount": 68.4}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 48.1}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 230}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 48.1}, {"name": "Nickel II", "categories": ["water"], "amount": 48.1}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.2}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.2}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0148}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 0.0138}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.172}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.05}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.6}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0604}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 8.97}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.71}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.162}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 2.52}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Permethrin", "categories": ["water"], "amount": 10.8}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "Phenol", "categories": ["air"], "amount": 0.493}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.493}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.000864}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.315}, {"name": "Phenol", "categories": ["water"], "amount": 0.315}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 734}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 734}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.32}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 34.6}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 17.8}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 605}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00317}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.181}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.00406}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.251}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 23.2}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 9.62}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.428}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 6.83}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 22.6}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.399}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 27.9}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.881}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.385}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.477}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1.87}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.4}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 7.72}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water"], "amount": 36.6}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 3.2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 2.74}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water"], "amount": 14.8}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 7.19}, {"name": "Pyrene", "categories": ["air"], "amount": 0.624}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 11.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.342}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 0.573}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 31.1}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 31.1}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 14.6}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.531}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.608}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.492}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 10.9}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 129000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 129000}, {"name": "Silver I", "categories": ["air"], "amount": 92400}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 92400}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 186000}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 15200}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 15200}, {"name": "Silver I", "categories": ["soil"], "amount": 15200}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4040}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 33800}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4040}, {"name": "Silver I", "categories": ["water"], "amount": 4040}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 418}, {"name": "Simazine", "categories": ["air"], "amount": 344}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 17.3}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 19.3}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 33.5}, {"name": "Simazine", "categories": ["water"], "amount": 33.5}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air"], "amount": 0.855}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.855}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.0046}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water"], "amount": 0.0211}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 32}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 5.51}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water"], "amount": 17.1}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 24.4}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.47}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.52}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1860}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1560}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 62.5}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 280}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 959}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 0.0552}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 342}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 6.15}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 11.9}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1120000}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1120000}, {"name": "Thallium I", "categories": ["air"], "amount": 1090000}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1090000}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 471000}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1030000}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1030000}, {"name": "Thallium I", "categories": ["soil"], "amount": 1030000}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 1140000}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1850000}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 1140000}, {"name": "Thallium I", "categories": ["water"], "amount": 1140000}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air"], "amount": 26.8}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.72}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.72}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 7.5}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.67}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 4.65}, {"name": "Thiodicarb", "categories": ["water"], "amount": 4.65}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.3}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 15.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.905}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.33}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.91}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.91}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23}, {"name": "Thiram", "categories": ["air"], "amount": 11.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.0675}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.208}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 4.91}, {"name": "Thiram", "categories": ["water"], "amount": 4.91}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067}, {"name": "Toluene", "categories": ["air"], "amount": 0.858}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.858}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0184}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water"], "amount": 0.0714}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.318}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.14}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Triallate", "categories": ["air"], "amount": 9.42}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.76}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 72.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 44.1}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 144}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.78}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 17.9}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 15.8}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.16}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.7}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 128}, {"name": "Trifluralin", "categories": ["water"], "amount": 128}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.381}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63300}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 63300}, {"name": "Vanadium V", "categories": ["air"], "amount": 61900}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 61900}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 9120}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 58700}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 58700}, {"name": "Vanadium V", "categories": ["soil"], "amount": 58700}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 64700}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 111000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 64700}, {"name": "Vanadium V", "categories": ["water"], "amount": 64700}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.68}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air"], "amount": 1.58}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0182}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water"], "amount": 0.0692}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1770000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1770000}, {"name": "Zinc II", "categories": ["air"], "amount": 1970000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1970000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 341000}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2400000}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2400000}, {"name": "Zinc II", "categories": ["soil"], "amount": 2400000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2640000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2970000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2640000}, {"name": "Zinc II", "categories": ["water"], "amount": 2640000}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5.95}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.0062}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.027}]}, {"unit": "kg Co-60-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "ionising radiation no LT", "ionising radiation potential (IRP) no LT"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 0.00292}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 0.000461}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 0.00292}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 0.00292}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.5}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.5}, {"name": "Americium-241", "categories": ["air"], "amount": 55.5}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 55.5}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 0.00364}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 0.0482}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 0.00364}, {"name": "Americium-241", "categories": ["water"], "amount": 0.00364}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0491}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.000891}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00473}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water"], "amount": 8.64}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00582}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 10}, {"name": "Caesium-137", "categories": ["water"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["air"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.0127}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0273}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.0127}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.0127}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00245}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.64}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 3.45}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 4.05e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 4.12e-05}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 207}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 207}, {"name": "Iodine-129", "categories": ["air"], "amount": 207}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 207}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 155}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 155}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 155}, {"name": "Iodine-129", "categories": ["water"], "amount": 155}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.03}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 8.48e-06}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0191}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.88e-06}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 4}, {"name": "Plutonium-238", "categories": ["air"], "amount": 4}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 4}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 4.45}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["air"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 0.00773}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 0.00773}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.00773}, {"name": "Radium-226", "categories": ["water"], "amount": 0.00773}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00145}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.000236}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water"], "amount": 0.03}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.0282}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000455}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.0282}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.0282}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 0.000109}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 0.000109}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water"], "amount": 0.0309}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.73}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.73}, {"name": "Thorium-230", "categories": ["air"], "amount": 2.73}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 2.73}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["air"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["water", "ground-"], "amount": 0.136}, {"name": "Uranium alpha", "categories": ["water", "ocean"], "amount": 0.000833}, {"name": "Uranium alpha", "categories": ["water", "surface water"], "amount": 0.136}, {"name": "Uranium alpha", "categories": ["water"], "amount": 0.136}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["air"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 0.00136}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.145}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.145}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["air"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 0.136}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 0.00203}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.136}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.136}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 0.136}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 0.000833}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.136}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.136}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 8.55e-06}]}, {"unit": "m2*a crop-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "land use no LT", "agricultural land occupation (LOP) no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -36.75}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}]}, {"unit": "kg Cu-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "material resources: metals/minerals no LT", "surplus ore potential (SOP) no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.169}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.169}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.572}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.131}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0228}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 76.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.32}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.32}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.0951}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0951}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.305}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0108}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0104}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 6.57}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.57}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0488}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.0154}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 83.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 83.8}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 317}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.192}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.00283}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 96.7}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 103}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 103}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 7.09}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 7.09}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.79}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.79}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.0823}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0823}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 8.96}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 5.2}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00916}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00576}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 528}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 528}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 13.3}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.428}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0875}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.0378}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 52.9}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 52.9}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 18.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 18.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 1200}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 5.03}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.03}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 7.78}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 25.2}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 3.97}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.153}]}, {"unit": "kg CFC-11-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "ozone depletion no LT", "ozone depletion potential (ODPinfinite) no LT"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.017}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.017}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.16}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.85}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.85}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.58}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.58}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.58}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.58}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.57}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.57}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.00662}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.00662}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.66}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.66}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 7.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 7.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 15.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 15.9}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.04}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.04}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.82}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.82}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.82}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.82}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg PM2.5-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "particulate matter formation no LT", "particulate matter formation potential (PMFP) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.17}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.11}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.29}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.23}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "photochemical oxidant formation: human health no LT", "photochemical oxidant formation potential: humans (HOFP) no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.345}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.131}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.131}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.149}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0653}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.199}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0326}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0326}, {"name": "Acetone", "categories": ["air"], "amount": 0.0218}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Acrolein", "categories": ["air"], "amount": 0.196}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.174}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.0689}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.0689}, {"name": "Benzene", "categories": ["air"], "amount": 0.0363}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0363}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.167}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Butadiene", "categories": ["air"], "amount": 0.323}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.112}, {"name": "Butane", "categories": ["air"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.112}, {"name": "Butanol", "categories": ["air"], "amount": 0.189}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.228}, {"name": "Butene", "categories": ["air"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.228}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.0943}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0943}, {"name": "Cumene", "categories": ["air"], "amount": 0.116}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.102}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.167}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Ethane", "categories": ["air"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00363}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00363}, {"name": "Ethanol", "categories": ["air"], "amount": 0.123}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.123}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0689}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.363}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.134}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.134}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.167}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0109}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Heptane", "categories": ["air"], "amount": 0.127}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.127}, {"name": "Hexane", "categories": ["air"], "amount": 0.145}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.163}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.163}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0266}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0266}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Isoprene", "categories": ["air"], "amount": 0.413}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.413}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0109}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00363}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Methanol", "categories": ["air"], "amount": 0.0471}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.116}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0399}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0399}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Phenol", "categories": ["air"], "amount": -0.0181}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0181}, {"name": "Propanal", "categories": ["air"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.261}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0508}, {"name": "Propane", "categories": ["air"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0508}, {"name": "Propanol", "categories": ["air"], "amount": 0.174}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.424}, {"name": "Propene", "categories": ["air"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.424}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0471}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Styrene", "categories": ["air"], "amount": 0.0181}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0181}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00363}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Toluene", "categories": ["air"], "amount": 0.16}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.105}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.312}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.312}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.283}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.283}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "photochemical oxidant formation: terrestrial ecosystems no LT", "photochemical oxidant formation potential: ecosystems (EOFP) no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.555}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.21}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.21}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.479}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.105}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.304}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.321}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0526}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0526}, {"name": "Acetone", "categories": ["air"], "amount": 0.0351}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "Acrolein", "categories": ["air"], "amount": 0.316}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.316}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.281}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.111}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.111}, {"name": "Benzene", "categories": ["air"], "amount": 0.0585}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0585}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.269}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Butadiene", "categories": ["air"], "amount": 0.52}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.52}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.181}, {"name": "Butane", "categories": ["air"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.181}, {"name": "Butanol", "categories": ["air"], "amount": 0.304}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Butene", "categories": ["air"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.152}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Cumene", "categories": ["air"], "amount": 0.187}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.164}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.269}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.0468}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00585}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00585}, {"name": "Ethanol", "categories": ["air"], "amount": 0.199}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.111}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.111}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.585}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.216}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.216}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.269}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0175}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Heptane", "categories": ["air"], "amount": 0.205}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.205}, {"name": "Hexane", "categories": ["air"], "amount": 0.234}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.263}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.263}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0429}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Isoprene", "categories": ["air"], "amount": 0.666}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.666}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0175}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00585}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Methanol", "categories": ["air"], "amount": 0.076}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.187}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0643}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0643}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Phenol", "categories": ["air"], "amount": -0.0292}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0292}, {"name": "Propanal", "categories": ["air"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.421}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0818}, {"name": "Propane", "categories": ["air"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0818}, {"name": "Propanol", "categories": ["air"], "amount": 0.281}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.684}, {"name": "Propene", "categories": ["air"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.684}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.076}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Styrene", "categories": ["air"], "amount": 0.0292}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0292}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00585}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Toluene", "categories": ["air"], "amount": 0.257}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.17}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.503}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.503}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.456}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.456}]}, {"unit": "cubic meter", "name": ["ReCiPe 2016 v1.03, midpoint (E) no LT", "water use no LT", "water consumption potential (WCP) no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Water", "categories": ["air"], "amount": 1}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg SO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "acidification: terrestrial", "terrestrial acidification potential (TAP)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.552}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.36}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}]}, {"unit": "kg CO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "climate change", "global warming potential (GWP1000)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Chloroform", "categories": ["air"], "amount": 2.74}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.74}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 78.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 78.8}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 78.8}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 78.8}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 218}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 218}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 26.8}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 26.8}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 913}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 913}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 913}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 913}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 913}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1410}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1410}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 131}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 131}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 23}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 23}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 23}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 23}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.15}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 3490}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3490}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 3490}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 3490}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 3490}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 332}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 332}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 332}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 332}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 332}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 13.3}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 13.3}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 88.2}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 88.2}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 88.2}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 88.2}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 88.2}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8580}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8580}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8580}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8580}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8580}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 17800}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17800}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 17800}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 17800}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 17800}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 546}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 546}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 546}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 546}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 546}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.97}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.97}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.394}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.394}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 293}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 293}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 293}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 293}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 293}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 1340}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1340}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 1340}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 1340}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 1340}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 296}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 12700}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12700}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1.49}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.49}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2710}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 24.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 24.6}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 24.6}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 113}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 113}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 113}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 113}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 113}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 4.9}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.9}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.9}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 4.76}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.76}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.76}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 2.04}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.04}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 4.76}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.76}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.76}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.76}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 4.76}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 296}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 11000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 11000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 11000}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 11000}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 875}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 875}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 5660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 5660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 5660}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 5660}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 12800}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 12800}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 34400}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34400}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 34400}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 34400}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 34400}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "ecotoxicity: freshwater", "freshwater ecotoxicity potential (FETP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.000522}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.836}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.11e-05}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.0411}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.203}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.91}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 2.62}, {"name": "2,4-D", "categories": ["water"], "amount": 2.62}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0732}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.154}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0732}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.182}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.154}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0644}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.27}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.27}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0248}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.0144}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.98e-06}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.00477}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.7}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.83e-05}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 4.87e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.0653}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.159}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.00199}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water"], "amount": 14.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0663}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.714}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.89}, {"name": "Acephate", "categories": ["water"], "amount": 0.89}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.96e-05}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.144}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000246}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.000411}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.95e-09}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.169}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air"], "amount": 4.32e-05}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.32e-05}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 6.06e-06}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water"], "amount": 0.00217}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.000193}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.000193}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00874}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.000901}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 0.282}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 5.09}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air"], "amount": 0.084}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.084}, {"name": "Acrolein", "categories": ["water"], "amount": 69.4}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.95e-09}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water"], "amount": 0.132}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0236}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0236}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.000599}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.441}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 11.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0228}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0228}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 25}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.759}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 56}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.309}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 341}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 271}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 147}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1100}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 82800}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 35}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.13}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 39.4}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air"], "amount": 0.00401}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00401}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.11e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "Aniline", "categories": ["water"], "amount": 1.05}, {"name": "Anthracene", "categories": ["air"], "amount": 0.197}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 354}, {"name": "Anthracene", "categories": ["water"], "amount": 354}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.231}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 47.6}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 47.6}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.6}, {"name": "Antimony ion", "categories": ["air"], "amount": 127}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 127}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 98.6}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 306}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 306}, {"name": "Antimony ion", "categories": ["soil"], "amount": 306}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 340}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 340}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 6.58e-17}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 340}, {"name": "Antimony ion", "categories": ["water"], "amount": 340}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 5.55}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55}, {"name": "Arsenic ion", "categories": ["air"], "amount": 21.2}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 21.2}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.72}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 56.4}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 56.4}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 56.4}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 9.62e-18}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water"], "amount": 62.2}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.453}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.83}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14.8}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 85.3}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 179}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 179}, {"name": "Atrazine", "categories": ["water"], "amount": 179}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.452}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.745}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 233}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 0.198}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 27.3}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 156}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 156}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.485}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.485}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.485}, {"name": "Barium II", "categories": ["air"], "amount": 1.11}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.11}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil"], "amount": 2.51}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.32e-18}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.79}, {"name": "Barium II", "categories": ["water"], "amount": 2.79}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.066}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0228}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.144}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0548}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.681}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.681}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 2.08}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1590}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.00268}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00268}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.744}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.72e-05}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water"], "amount": 0.0868}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000158}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.748}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 6.88e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.293}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 24.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.069}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.069}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 15.2}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.411}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.411}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 134}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 134}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.0492}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0338}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.00704}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 4.17e-06}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.285}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 4.51}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.51}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.51}, {"name": "Beryllium II", "categories": ["air"], "amount": 18.8}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 18.8}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.43}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 50.9}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 50.9}, {"name": "Beryllium II", "categories": ["soil"], "amount": 50.9}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.33e-18}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water"], "amount": 55.9}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 251}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 37.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 284}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 21200}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 21200}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.509}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.8}, {"name": "Bifenthrin", "categories": ["air"], "amount": 40.3}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 92.9}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 12200}, {"name": "Bifenthrin", "categories": ["water"], "amount": 12200}, {"name": "Bisphenol A", "categories": ["water"], "amount": 44.9}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.0297}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 9.99}, {"name": "Bromopropane", "categories": ["air"], "amount": 3.63e-05}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.129}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.89}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.88}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 167}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 167}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 11.7}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3.63}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air"], "amount": 0.000144}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000144}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 4.79e-06}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water"], "amount": 0.0183}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.327}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.0771}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 444}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 1.98}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.98}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.98}, {"name": "Cadmium II", "categories": ["air"], "amount": 6.04}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 6.04}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 15.2}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 15.2}, {"name": "Cadmium II", "categories": ["soil"], "amount": 15.2}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.02e-19}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water"], "amount": 16.8}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 9.15}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 116}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 116}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57}, {"name": "Carbendazim", "categories": ["air"], "amount": 7.01}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 4.51}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 26.3}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 46}, {"name": "Carbendazim", "categories": ["water"], "amount": 46}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.705}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 9.93e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.349}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 3.47}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28}, {"name": "Carboxin", "categories": ["air"], "amount": 4.21}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 13.8}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Carboxin", "categories": ["water"], "amount": 26.1}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 6.33e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0948}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 107}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 90.7}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 719}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 4130}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 4130}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 4130}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air"], "amount": 39.5}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 39.5}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 9.72e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 217}, {"name": "Chloramine", "categories": ["water"], "amount": 217}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.66}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.396}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 63.4}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.535}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.0461}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1.66}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.66}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 2.9e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 9}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 8.52e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water"], "amount": 0.162}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.26}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 0.0804}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0804}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.000323}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.78}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.8}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 23.7}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 26.5}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 158}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 673}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 673}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.4}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 329}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1780}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 14700}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 14700}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 33.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10.9}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.342}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.342}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.342}, {"name": "Chromium III", "categories": ["air"], "amount": 0.875}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.875}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.75}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 2.07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 2.07}, {"name": "Chromium III", "categories": ["soil"], "amount": 2.07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.69e-20}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water"], "amount": 2.3}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 12.9}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.9}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.9}, {"name": "Chromium VI", "categories": ["air"], "amount": 33}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 33}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 28.2}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 78}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 78}, {"name": "Chromium VI", "categories": ["soil"], "amount": 78}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.41e-17}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water"], "amount": 86.6}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 14.6}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.829}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.374}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.696}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 0.579}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.579}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.579}, {"name": "Cobalt II", "categories": ["air"], "amount": 2.17}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2.17}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.639}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 5.74}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 5.74}, {"name": "Cobalt II", "categories": ["soil"], "amount": 5.74}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.36e-19}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water"], "amount": 6.34}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 14.5}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.5}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.5}, {"name": "Copper ion", "categories": ["air"], "amount": 55.2}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 55.2}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 147}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 147}, {"name": "Copper ion", "categories": ["soil"], "amount": 147}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 162}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 162}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.71e-18}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 162}, {"name": "Copper ion", "categories": ["water"], "amount": 162}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 9.15e-06}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.558}, {"name": "Cumene", "categories": ["water"], "amount": 0.558}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 7.28e-08}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0546}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 1.29e-08}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.0625}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 21.8}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.288}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.00489}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 259}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 841}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 63300}, {"name": "Cypermethrin", "categories": ["water"], "amount": 63300}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 2.01}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 12.8}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.591}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.69}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0535}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 2.2}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3.04}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 58.9}, {"name": "Deltamethrin", "categories": ["air"], "amount": 53.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 6310}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.139}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.776}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 16.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0153}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5.66}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.172}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.328}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.34}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 17.1}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0427}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.081}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.631}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.631}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 17.6}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 0.943}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 5.77}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 3.28}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 0.283}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.159}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 1.02}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.57e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.57e-06}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.8e-06}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.462}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.00036}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.00036}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.26e-10}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.00271}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.52}, {"name": "Difenoconazole", "categories": ["air"], "amount": 21.5}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 78.5}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 233}, {"name": "Difenoconazole", "categories": ["water"], "amount": 233}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 188}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 299}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2000}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 4860}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 4860}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.0156}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 3.91e-05}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.191}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.55}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 0.613}, {"name": "Dimethoate", "categories": ["air"], "amount": 3.37}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 5.71}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 38.7}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.883}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 2.19e-05}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.974}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 11.8}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 218}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 218}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 218}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 242}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 242}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 99.5}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 477}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 477}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 477}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 65.7}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 17400}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 0.391}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.391}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.7}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 8.71}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 19.6}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 19.6}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.43}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Diuron", "categories": ["air"], "amount": 35.2}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 15.2}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 98.2}, {"name": "Diuron", "categories": ["water"], "amount": 223}, {"name": "Dodecanol", "categories": ["water"], "amount": 22.5}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.318}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 6.84}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.281}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.732}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 12.6}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.58}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 41.1}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 83.8}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 83.8}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1500}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1000}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.000564}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 8.23e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 8.23e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.52e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000425}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 7.03e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0554}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.00517}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.55}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.24e-06}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water"], "amount": 0.00629}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.0468}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.328}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.328}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.592}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.9e-05}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0164}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.0405}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0405}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.27e-06}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.202}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.93e-09}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.425}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.000707}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.000707}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.000177}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0482}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 2.7}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 6.49}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 63.4}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.755}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.57}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 10}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 7.48}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 43.6}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 107}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.638}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.25}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 87.9}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 87.9}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.5}, {"name": "Fluazinam", "categories": ["air"], "amount": 289}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 105}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 743}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water"], "amount": 2260}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 7.99}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99}, {"name": "Fludioxonil", "categories": ["air"], "amount": 23.7}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 9.31}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 69.8}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 275}, {"name": "Fludioxonil", "categories": ["water"], "amount": 275}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.3}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.87}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 618}, {"name": "Fluorene", "categories": ["air"], "amount": 0.0118}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 7.12}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 4.11}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.164}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 30.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0314}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0314}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 4.68e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.907}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.98e-10}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0854}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00758}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.997}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air"], "amount": 1.3e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Furfural", "categories": ["air"], "amount": 0.00703}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 0.207}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.589}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.28}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.351}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water"], "amount": 2.39}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.85}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 32.1}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 32.1}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air"], "amount": 6.53e-09}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.53e-09}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 10.8}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "Hexane", "categories": ["water"], "amount": 0.141}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.37}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.06}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.0226}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water"], "amount": 93.4}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.5e-06}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.302}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.54e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.54e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 6.68e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.155}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.000362}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.000362}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.00621}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.26}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 6.21}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 0.674}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.79}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.95}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Imidacloprid", "categories": ["water"], "amount": 9.16}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72}, {"name": "Indoxacarb", "categories": ["air"], "amount": 11.8}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 34}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 6.11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.49}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 1.71e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.71e-08}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.0373}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0373}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.04e-05}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.175}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 4.85}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 598}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 68.9}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 423}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 48100}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 48100}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 48100}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.00867}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.45}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.0463}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0463}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0463}, {"name": "Lead II", "categories": ["air"], "amount": 0.204}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.204}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0236}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.558}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.558}, {"name": "Lead II", "categories": ["soil"], "amount": 0.558}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.606}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.606}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 6.17e-22}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.606}, {"name": "Lead II", "categories": ["water"], "amount": 0.606}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.538}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 24.6}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.928}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0965}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.63}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.63}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.183}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 6}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 12.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.293}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0307}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.5}, {"name": "Mancozeb", "categories": ["air"], "amount": 14.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 56.7}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 78}, {"name": "Mancozeb", "categories": ["water"], "amount": 78}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.2}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 9.02e-07}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 3.29}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.29}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.29}, {"name": "Mercury II", "categories": ["air"], "amount": 17.2}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 17.2}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 47}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 47}, {"name": "Mercury II", "categories": ["soil"], "amount": 47}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.04e-19}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water"], "amount": 49.8}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.292}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 0.17}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 0.601}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.347}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.99}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 3.34}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 0.0683}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.202}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00275}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.81e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0292}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.48e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000289}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.534}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air"], "amount": 0.000132}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5e-06}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water"], "amount": 0.00493}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.21}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 28}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 8.61}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 47.7}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water"], "amount": 78.6}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.371}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.41}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 21.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 78.6}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 242}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 242}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.000379}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000379}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 8.04e-05}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water"], "amount": 0.0283}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.000365}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.72}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00341}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.0078}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.0078}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.753}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.89}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air"], "amount": 0.063}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.063}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 6.18e-06}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water"], "amount": 0.292}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.327}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 9.37}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 61.8}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 147}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 147}, {"name": "Metolachlor", "categories": ["water"], "amount": 147}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.41}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 149}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 295}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 772}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 520}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 3000}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 5070}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 5070}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 111}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.61}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.0612}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0612}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0612}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.156}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.156}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.134}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.37}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.37}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.37}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9e-20}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.41}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 3.13}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.288}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 4.55}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.000708}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 67.7}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 4.7}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7}, {"name": "Nickel II", "categories": ["air"], "amount": 16.1}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 16.1}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 6.6}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 41.6}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 41.6}, {"name": "Nickel II", "categories": ["soil"], "amount": 41.6}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 46}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 46}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.7e-18}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 46}, {"name": "Nickel II", "categories": ["water"], "amount": 46}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.125}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 0.328}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.27}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.87}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.00135}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.76}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.82}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.0156}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.0641}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.73}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 3.04}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.329}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 0.931}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.00485}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 13}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.033}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0129}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 38.1}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.183}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.692}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.63}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 176}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 176}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air"], "amount": 6.29e-06}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 6.29e-06}, {"name": "Pentane", "categories": ["water"], "amount": 7.18}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 5.08}, {"name": "Permethrin", "categories": ["water"], "amount": 2870}, {"name": "Phenanthrene", "categories": ["air"], "amount": 0.136}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 57}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air"], "amount": 0.00867}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00867}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.23e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.969}, {"name": "Phenol", "categories": ["water"], "amount": 0.969}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.136}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.136}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 19.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 5.52}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 45.2}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 8.88}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 33.2}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 60.6}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00054}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 15.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.000949}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 26.1}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 3.81e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.609}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.01e-05}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.24}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.84}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.455}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.196}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 31.7}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 13.2}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.0541}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 429}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.22}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 17.4}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.0201}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 0.0302}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air"], "amount": 0.000176}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.000176}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 0.102}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 5.1e-05}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.102}, {"name": "Propanal", "categories": ["water"], "amount": 0.102}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air"], "amount": 0.000117}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 5.28e-06}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water"], "amount": 0.00942}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 9.32}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 0.332}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.171}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 3.36}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 15.8}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water"], "amount": 74.9}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.32e-08}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.157}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0218}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.86e-06}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water"], "amount": 0.116}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.000651}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.000214}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.0706}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.91}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 8.24}, {"name": "Pyrene", "categories": ["air"], "amount": 1.18}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1810}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 245}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.0358}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 8.05}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.669}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.03}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 4.49}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 28.3}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 235}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2700}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2700}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.147}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 15.9}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.87}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.0405}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 1.75}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.75}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.75}, {"name": "Selenium IV", "categories": ["air"], "amount": 5.47}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 5.47}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.9}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 13.8}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 13.8}, {"name": "Selenium IV", "categories": ["soil"], "amount": 13.8}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 5.84e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water"], "amount": 15.3}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0962}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.268}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.41}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 46.5}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46.5}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 46.5}, {"name": "Silver I", "categories": ["air"], "amount": 167}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 57.2}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 439}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 439}, {"name": "Silver I", "categories": ["soil"], "amount": 439}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 485}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 485}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 3.89e-18}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 485}, {"name": "Silver I", "categories": ["water"], "amount": 485}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.65}, {"name": "Simazine", "categories": ["air"], "amount": 11.9}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 5.66}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 33.1}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 57.7}, {"name": "Simazine", "categories": ["water"], "amount": 57.7}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.00158}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.00158}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 4.16e-26}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water"], "amount": 0.00822}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 19.9}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.86e-06}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.396}, {"name": "Styrene", "categories": ["water"], "amount": 0.396}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 36}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.285}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.285}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.209}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.52}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.52}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.83}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 13.1}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water"], "amount": 40.5}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 72.2}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 39.2}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 227}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 391}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 391}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 83.4}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 228}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 93.7}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 685}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 2350}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 72.6}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.91}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 22.2}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.00014}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.23}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 9.1}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1}, {"name": "Thallium I", "categories": ["air"], "amount": 21}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 21}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 21.8}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 47.7}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 47.7}, {"name": "Thallium I", "categories": ["soil"], "amount": 47.7}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 53}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 53}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 4.01e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 53}, {"name": "Thallium I", "categories": ["water"], "amount": 53}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 0.538}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.538}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.41}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.737}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 5.16}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiabendazole", "categories": ["water"], "amount": 15.1}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.55}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 9.32e-09}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water"], "amount": 9.04}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 12.6}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 79.2}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 147}, {"name": "Thiodicarb", "categories": ["water"], "amount": 147}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.812}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 10.4}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 15.1}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 3.9}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9}, {"name": "Thiram", "categories": ["air"], "amount": 5.91}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 4.12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 19.8}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 468}, {"name": "Thiram", "categories": ["water"], "amount": 468}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 0.37}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.37}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.37}, {"name": "Tin ion", "categories": ["air"], "amount": 1.6}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1.6}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.213}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 4.38}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 4.38}, {"name": "Tin ion", "categories": ["soil"], "amount": 4.38}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 3.53e-20}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water"], "amount": 4.77}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.72e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.139}, {"name": "Toluene", "categories": ["water"], "amount": 0.139}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.000153}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.000153}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.1e-05}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.345}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 36.6}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 715}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 0.171}, {"name": "Triallate", "categories": ["air"], "amount": 0.164}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.66}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 86.9}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 181}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 74.1}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 192}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1630}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.507}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 7.83}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.1e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.17}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.84}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 255}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 4.9e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.00133}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 12}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1500}, {"name": "Triflumuron", "categories": ["air"], "amount": 4670}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 2530}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 14100}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 22200}, {"name": "Triflumuron", "categories": ["water"], "amount": 22200}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0391}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.438}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.61}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 35.4}, {"name": "Trifluralin", "categories": ["water"], "amount": 35.4}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.675}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.574}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.456}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.13e-11}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.0319}, {"name": "Urea", "categories": ["water"], "amount": 0.0319}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 17.9}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.9}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.9}, {"name": "Vanadium V", "categories": ["air"], "amount": 61.9}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 61.9}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 24.4}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 161}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 161}, {"name": "Vanadium V", "categories": ["soil"], "amount": 161}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 178}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 178}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 7.82e-17}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 178}, {"name": "Vanadium V", "categories": ["water"], "amount": 178}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.545}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Xylene", "categories": ["water"], "amount": 0.155}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 259}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 17.3}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.3}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.3}, {"name": "Zinc II", "categories": ["air"], "amount": 71.1}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 71.1}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 13.3}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 192}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 192}, {"name": "Zinc II", "categories": ["soil"], "amount": 192}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.13e-16}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 211}, {"name": "Zinc II", "categories": ["water"], "amount": 211}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.25}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 52.9}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 4.4e-06}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.492}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.06e-05}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.525}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.29e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.29e-05}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.61e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.0067}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air"], "amount": 0.241}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 0.241}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 4.62e-05}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 1.12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.38}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "ecotoxicity: marine", "marine ecotoxicity potential (METP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.831}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.141}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.00732}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.00125}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.145}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0199}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.105}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "2,4-D", "categories": ["water"], "amount": 0.145}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0711}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.0128}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 0.0883}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 0.0883}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0711}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.0631}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.0128}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 0.0883}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.00603}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.237}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.237}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.616}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0054}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.00144}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00073}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.000314}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000314}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.000997}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.000299}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 0.332}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.0124}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0026}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0026}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.007}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00155}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.00425}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.0485}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.0485}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 11.7}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.63}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0446}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.007}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.0395}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.0492}, {"name": "Acephate", "categories": ["water"], "amount": 0.0492}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.00512}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00512}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0716}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.00944}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000141}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.02e-05}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.0168}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00238}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air"], "amount": 0.000595}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.000595}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.000894}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water"], "amount": 0.000503}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.00283}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00283}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.00388}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00239}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.151}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 0.0853}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air"], "amount": 1.34}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.34}, {"name": "Acrolein", "categories": ["water"], "amount": 3.24}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.0131}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00186}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0034}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0034}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.0445}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.255}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.052}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.99}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.98}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0195}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0195}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.62}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.00546}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9640}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 4960}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 303}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 16200}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.93}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.323}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.59}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air"], "amount": 0.00107}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.139}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water"], "amount": 0.0257}, {"name": "Anthracene", "categories": ["air"], "amount": 4.65}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 306}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water"], "amount": 28.9}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 860000}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860000}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 860000}, {"name": "Antimony ion", "categories": ["air"], "amount": 797000}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 797000}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 212000}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 657000}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 657000}, {"name": "Antimony ion", "categories": ["soil"], "amount": 657000}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 730000}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 730000}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1520000}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 730000}, {"name": "Antimony ion", "categories": ["water"], "amount": 730000}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 187000}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 187000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 187000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 171000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 171000}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 13600}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 135000}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 135000}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 135000}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 148000}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 148000}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 347000}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 148000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 148000}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.67}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.24}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water"], "amount": 14.9}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0375}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.143}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 13.1}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 0.011}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.75}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.26}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 13}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 13}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 18000}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18000}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 18000}, {"name": "Barium II", "categories": ["air"], "amount": 18200}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 18200}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 8730}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 18700}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 18700}, {"name": "Barium II", "categories": ["soil"], "amount": 18700}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 20800}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 20800}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 28900}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 20800}, {"name": "Barium II", "categories": ["water"], "amount": 20800}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.00157}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0296}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0389}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.0132}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0239}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.00305}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 58}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 151}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0233}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0233}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0395}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air"], "amount": 0.00235}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.00235}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.089}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water"], "amount": 0.00485}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.451}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.0377}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.00563}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.66}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.66}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 11}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 21.9}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 26.9}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 26.9}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 12.2}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.00117}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.00336}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.000405}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0322}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.00699}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 94000}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 94000}, {"name": "Beryllium II", "categories": ["air"], "amount": 72800}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 72800}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1700}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 25300}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 25300}, {"name": "Beryllium II", "categories": ["soil"], "amount": 25300}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 27700}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 27700}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 180000}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 27700}, {"name": "Beryllium II", "categories": ["water"], "amount": 27700}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6950}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 11.8}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 60}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4150}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4150}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2520}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1470}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 27.5}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 43.7}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2500}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2500}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.49}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 0.0742}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.00164}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.00138}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.00353}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.977}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.23}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.23}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 13.5}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.971}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.00499}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air"], "amount": 0.000583}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000583}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.00295}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water"], "amount": 0.000557}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.0181}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0296}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.00305}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.49}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 11.1}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 23600}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23600}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 23600}, {"name": "Cadmium II", "categories": ["air"], "amount": 17700}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 17700}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1020}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4510}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4510}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4510}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 5000}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 5000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 46200}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 5000}, {"name": "Cadmium II", "categories": ["water"], "amount": 5000}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.16}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.512}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.42}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.42}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.24}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.46}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.54}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.54}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.039}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.32}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.263}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.137}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Carboxin", "categories": ["air"], "amount": 1.01}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.764}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.44}, {"name": "Carboxin", "categories": ["water"], "amount": 1.44}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 0.00941}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00133}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 485}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 18}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 139}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 795}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 795}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 795}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air"], "amount": 7.51}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.51}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 23.2}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water"], "amount": 5.16}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 0.318}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.0223}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 5.79}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.0296}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.00255}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 0.323}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 0.964}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 0.214}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.176}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water"], "amount": 0.0469}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 0.124}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 0.124}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.215}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 0.0572}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 186}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 182}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 80.8}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 193}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 193}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 176}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 104}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 337}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2680}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2680}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 4.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.907}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.0799}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 2990}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2990}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2990}, {"name": "Chromium III", "categories": ["air"], "amount": 2220}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2220}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 170}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 469}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 469}, {"name": "Chromium III", "categories": ["soil"], "amount": 469}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 520}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 520}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5830}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 520}, {"name": "Chromium III", "categories": ["water"], "amount": 520}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 410000}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 410000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 410000}, {"name": "Chromium VI", "categories": ["air"], "amount": 369000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 369000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 101000}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 279000}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 279000}, {"name": "Chromium VI", "categories": ["soil"], "amount": 279000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 309000}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 309000}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 728000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 309000}, {"name": "Chromium VI", "categories": ["water"], "amount": 309000}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 2.88}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.0504}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.0327}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0387}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 9630}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9630}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9630}, {"name": "Cobalt II", "categories": ["air"], "amount": 7420}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 7420}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 273}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2450}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2450}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2450}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2710}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 2710}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 18700}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2710}, {"name": "Cobalt II", "categories": ["water"], "amount": 2710}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 229000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 229000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 229000}, {"name": "Copper ion", "categories": ["air"], "amount": 175000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 175000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5560}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 53500}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 53500}, {"name": "Copper ion", "categories": ["soil"], "amount": 53500}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 59000}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 59000}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 447000}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 59000}, {"name": "Copper ion", "categories": ["water"], "amount": 59000}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air"], "amount": 0.00063}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.00063}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.331}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water"], "amount": 0.0105}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.42}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.68e-06}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.68e-06}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0342}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000944}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.68e-06}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.12e-07}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.00346}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 151}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.0541}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.000273}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 232}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 12400}, {"name": "Cypermethrin", "categories": ["water"], "amount": 12400}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.167}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.049}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.497}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00127}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.122}, {"name": "Decanoic acid", "categories": ["water"], "amount": 0.0428}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 1140}, {"name": "Deltamethrin", "categories": ["air"], "amount": 852}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 80.7}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 718}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.0078}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.0452}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.957}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.26}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.524}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.0182}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 0.129}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 0.129}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.377}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.54}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0314}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.00448}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.0349}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.0349}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.03}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 0.983}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.69}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.078}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.00224}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 0.0605}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.23e-05}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0179}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0179}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.0496}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.011}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.41e-05}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.41e-05}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 0.000268}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.81e-05}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.2}, {"name": "Difenoconazole", "categories": ["air"], "amount": 21.7}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2.14}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 15.1}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 44.9}, {"name": "Difenoconazole", "categories": ["water"], "amount": 44.9}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 452}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 58.6}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 384}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 933}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 933}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.0163}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.087}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.00631}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.297}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 0.384}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.166}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.0733}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.0381}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0381}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.0232}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.00617}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 45800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 40500}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 40500}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 5940}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 9610}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 9610}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 9610}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 13700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 13700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 136000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 13700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 13700}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00566}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 0.506}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.506}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 0.316}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 0.0745}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 0.482}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.09}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.09}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 0.472}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.3}, {"name": "Diuron", "categories": ["air"], "amount": 10.3}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.84}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.43}, {"name": "Diuron", "categories": ["water"], "amount": 12.3}, {"name": "Dodecanol", "categories": ["water"], "amount": 0.864}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.0208}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.0291}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.00447}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.0262}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 193}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.00395}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.13}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 7.96}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 16.1}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 16.1}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5600}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.0113}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.0113}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.0705}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.0437}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.0177}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0177}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0617}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0185}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 11}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 7.7}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.000901}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water"], "amount": 0.000225}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.00259}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.0182}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.0182}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.0687}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.0384}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.47}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.00262}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00262}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00882}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.00264}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.00829}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.00829}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0216}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.0048}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.0455}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.0101}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.0324}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0178}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.384}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 12.2}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.01}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 0.39}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 0.631}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 141}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 0.225}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.03}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 0.226}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.35}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.35}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 275}, {"name": "Fluazinam", "categories": ["air"], "amount": 236}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 21.7}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 144}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 434}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 434}, {"name": "Fluazinam", "categories": ["water"], "amount": 434}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 16.2}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.2}, {"name": "Fludioxonil", "categories": ["air"], "amount": 12.8}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 5.8}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 22.8}, {"name": "Fludioxonil", "categories": ["water"], "amount": 22.8}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 41}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Fluoranthene", "categories": ["air"], "amount": 14.6}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 57.9}, {"name": "Fluorene", "categories": ["air"], "amount": 0.164}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 0.329}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 0.924}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.0136}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.3}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.025}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.025}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.0237}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00847}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0012}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0237}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0112}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air"], "amount": 2.54e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.54e-05}, {"name": "Furfural", "categories": ["air"], "amount": 0.00776}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.00726}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 0.174}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.145}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.00726}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0923}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.00835}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.0569}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.95}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.16}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.16}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air"], "amount": 9.98e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 9.98e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 0.835}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0629}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water"], "amount": 0.00162}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.242}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.0375}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 13.5}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 10.1}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.27}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.171}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.00553}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.000388}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.000388}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.106}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0037}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0527}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0527}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000148}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 0.189}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.515}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 0.554}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.554}, {"name": "Imidacloprid", "categories": ["air"], "amount": 0.558}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.577}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Imidacloprid", "categories": ["water"], "amount": 0.76}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Indoxacarb", "categories": ["air"], "amount": 27.7}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 0.838}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 6.58}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.338}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air"], "amount": 2.8e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.8e-07}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.00644}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.00644}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0188}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.00418}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.268}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.405}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26300}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 474}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 553}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 10700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 10700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 10700}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.0185}, {"name": "Lauric acid", "categories": ["water"], "amount": 0.0205}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 762}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 762}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 762}, {"name": "Lead II", "categories": ["air"], "amount": 556}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.95}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 93.4}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 93.4}, {"name": "Lead II", "categories": ["soil"], "amount": 93.4}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 101}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 101}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1500}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 101}, {"name": "Lead II", "categories": ["water"], "amount": 101}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.0299}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 130}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.0774}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0629}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.00413}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 0.0389}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 0.0389}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.317}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.0105}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.332}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.332}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.3}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.00696}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.000731}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.75}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.589}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.13}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.31}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.31}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.606}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0664}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.00848}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 66900}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 66900}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 66900}, {"name": "Mercury II", "categories": ["air"], "amount": 48600}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 48600}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 219}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 9280}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 9280}, {"name": "Mercury II", "categories": ["soil"], "amount": 9280}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 9820}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 9820}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 125000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 9820}, {"name": "Mercury II", "categories": ["water"], "amount": 9820}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.0167}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 0.148}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 0.123}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 0.11}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 0.185}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 0.185}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 0.00664}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.534}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.0048}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0621}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.308}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.624}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.00784}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.00784}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0328}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.00829}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00368}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00368}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.905}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.537}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air"], "amount": 0.000451}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000451}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000713}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water"], "amount": 0.000223}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.57}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.08}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.205}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.13}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water"], "amount": 1.87}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 12.8}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 0.918}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.52}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 20.1}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 20.1}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.00837}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00837}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.0159}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water"], "amount": 0.00765}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.022}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.394}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.0385}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.000722}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.000722}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.000669}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.00206}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.00206}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 0.382}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air"], "amount": 0.012}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.012}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.0312}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water"], "amount": 0.00695}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.0183}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.789}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.14}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water"], "amount": 12.2}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.95}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.846}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.21}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 300}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 291}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43.2}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 249}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 421}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 421}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.0819}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 856}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 856}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 856}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 690}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 690}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 115}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 318}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 318}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 318}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 353}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 353}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1610}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 353}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 353}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.0745}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00684}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 0.0855}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.0737}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.0205}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.0755}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.98}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 69100}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 69100}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 69100}, {"name": "Nickel II", "categories": ["air"], "amount": 54900}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 54900}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3630}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 22900}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 22900}, {"name": "Nickel II", "categories": ["soil"], "amount": 22900}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 25300}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 25300}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 133000}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 25300}, {"name": "Nickel II", "categories": ["water"], "amount": 25300}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.111}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 0.11}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 0.106}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 0.155}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.152}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.228}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.118}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.000226}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0922}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00355}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.485}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.0723}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.752}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 0.374}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.56}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.56}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.187}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.000715}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 0.0956}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.0101}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.36}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air"], "amount": 0.000114}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.000114}, {"name": "Pentane", "categories": ["water"], "amount": 0.0817}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 498}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 18.3}, {"name": "Permethrin", "categories": ["water"], "amount": 287}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.43}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.35}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.0589}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air"], "amount": 0.00849}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00849}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water"], "amount": 0.0237}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 30.7}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 30.7}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.68}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.468}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1.94}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.405}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.418}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.0664}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.0152}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.419}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.0322}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.0601}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.278}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.0379}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 16.8}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 16.8}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 20.3}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.59}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 39.1}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.275}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.00111}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 0.00167}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air"], "amount": 0.0024}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.0024}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.0493}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water"], "amount": 0.00535}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.12}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air"], "amount": 0.000566}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000566}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0019}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water"], "amount": 0.00055}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 0.0755}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.00484}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.34}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.31}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.22}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.22}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.22}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.00593}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00593}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.0156}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.00221}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0046}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0046}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0124}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water"], "amount": 0.00276}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 9.96e-06}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.0204}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0367}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.0185}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 0.465}, {"name": "Pyrene", "categories": ["air"], "amount": 21.5}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 156}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.00199}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 0.757}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.0377}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.8}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 13.2}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.25}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 23.3}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 227}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 227}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.01}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 5.7}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 0.322}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.00362}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 23500}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23500}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 23500}, {"name": "Selenium IV", "categories": ["air"], "amount": 18700}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 18700}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1640}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 7830}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 7830}, {"name": "Selenium IV", "categories": ["soil"], "amount": 7830}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 8670}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 8670}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 45100}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 8670}, {"name": "Selenium IV", "categories": ["water"], "amount": 8670}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0149}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.41}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 652000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 652000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 652000}, {"name": "Silver I", "categories": ["air"], "amount": 487000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 487000}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 15000}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 115000}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 115000}, {"name": "Silver I", "categories": ["soil"], "amount": 115000}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 128000}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 128000}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1280000}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 128000}, {"name": "Silver I", "categories": ["water"], "amount": 128000}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.83}, {"name": "Simazine", "categories": ["air"], "amount": 3.46}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.472}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.78}, {"name": "Simazine", "categories": ["water"], "amount": 4.78}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.000253}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.000253}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.000815}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water"], "amount": 0.000116}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air"], "amount": 9.49e-05}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.49e-05}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.238}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water"], "amount": 0.0072}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 1.99}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.33}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.053}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.053}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.00498}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 0.0363}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 0.0363}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.95}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.152}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.36}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 0.207}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.2}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 19.2}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.17}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 12.6}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 21.6}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21.6}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 253}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 224}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 18}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 132}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 451}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.074}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.22}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.97}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.0746}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0746}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.43}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.12}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 470000}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 470000}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 470000}, {"name": "Thallium I", "categories": ["air"], "amount": 458000}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 458000}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 197000}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 431000}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 431000}, {"name": "Thallium I", "categories": ["soil"], "amount": 431000}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 479000}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 479000}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 781000}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 479000}, {"name": "Thallium I", "categories": ["water"], "amount": 479000}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 0.576}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.576}, {"name": "Thiabendazole", "categories": ["air"], "amount": 0.489}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.0175}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.123}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.358}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.358}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.0682}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 0.968}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water"], "amount": 0.215}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4.98}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.54}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.54}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.719}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 0.655}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.16}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 0.863}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.25}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.25}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 15.3}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.3}, {"name": "Thiram", "categories": ["air"], "amount": 9.15}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.234}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.1}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 26}, {"name": "Thiram", "categories": ["water"], "amount": 26}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 6450}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6450}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6450}, {"name": "Tin ion", "categories": ["air"], "amount": 4840}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 4840}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 60.1}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1230}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1230}, {"name": "Tin ion", "categories": ["soil"], "amount": 1230}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1340}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1340}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 12600}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1340}, {"name": "Tin ion", "categories": ["water"], "amount": 1340}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air"], "amount": 0.000331}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000331}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0857}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water"], "amount": 0.00276}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.00787}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.00787}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.333}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.0185}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.22}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 138}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.144}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 2.22}, {"name": "Triallate", "categories": ["air"], "amount": 1}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.517}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 7.74}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 34.8}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 94.5}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 88.7}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.62}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 135}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.0226}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.649}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.162}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.00635}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.319}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 33.7}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 0.000142}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.16e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.31}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2360}, {"name": "Triflumuron", "categories": ["air"], "amount": 2380}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 511}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 2730}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 4260}, {"name": "Triflumuron", "categories": ["water"], "amount": 4260}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.614}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.979}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.61}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.61}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.13}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.0109}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 0.00342}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.00076}, {"name": "Urea", "categories": ["water"], "amount": 0.00076}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.00566}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 880000}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 880000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 880000}, {"name": "Vanadium V", "categories": ["air"], "amount": 861000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 861000}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 124000}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 819000}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 819000}, {"name": "Vanadium V", "categories": ["soil"], "amount": 819000}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 907000}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 907000}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1580000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 907000}, {"name": "Vanadium V", "categories": ["water"], "amount": 907000}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.0468}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air"], "amount": 0.000165}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000165}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0932}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water"], "amount": 0.00293}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 2020000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020000}, {"name": "Zinc II", "categories": ["air"], "amount": 2270000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 2270000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 196000}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2830000}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2830000}, {"name": "Zinc II", "categories": ["soil"], "amount": 2830000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 3100000}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 3100000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3510000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 3100000}, {"name": "Zinc II", "categories": ["water"], "amount": 3100000}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.93}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.297}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0089}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.000559}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000559}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.316}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.00991}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.000307}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.000307}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00403}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.000414}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air"], "amount": 0.0446}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0446}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.12}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water"], "amount": 0.0267}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 5.78}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "ecotoxicity: terrestrial", "terrestrial ecotoxicity potential (TETP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.802}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.76}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.062}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.695}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0416}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.00206}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.00054}, {"name": "2,4-D", "categories": ["water"], "amount": 0.00054}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 9.63e-08}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 4.67e-09}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 33.3}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 9.63e-08}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 69.5}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.0475}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.0475}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0855}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.798}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00627}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.00194}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.0188}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 34.2}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.072}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.39}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.23e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 9.68e-05}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.411}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.647}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.61}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 813}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00233}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000491}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 7.9e-05}, {"name": "Acephate", "categories": ["water"], "amount": 7.9e-05}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0828}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.339}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.42}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.0151}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 125}, {"name": "Acetic acid", "categories": ["air"], "amount": 87}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 87}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.39e-05}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00669}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air"], "amount": 0.0305}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00445}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water"], "amount": 0.0236}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0609}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.305}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 3.7}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15.6}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 495}, {"name": "Acrolein", "categories": ["air"], "amount": 287}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 287}, {"name": "Acrolein", "categories": ["water"], "amount": 423}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.15e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00425}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air"], "amount": 45.7}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 45.7}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.867}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.13}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 8460}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.3}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 146}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.0173}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 123000}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 63100}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1140}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1180}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 3630}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 58.9}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 8.55}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.42}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.13}, {"name": "Aniline", "categories": ["air"], "amount": 0.621}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.621}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.041}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.622}, {"name": "Aniline", "categories": ["water"], "amount": 0.622}, {"name": "Anthracene", "categories": ["air"], "amount": 34.8}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 28.8}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water"], "amount": 71.1}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 671000}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 671000}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 671000}, {"name": "Antimony ion", "categories": ["air"], "amount": 464000}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 464000}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.33e-13}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 4.14e-13}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 4.14e-13}, {"name": "Antimony ion", "categories": ["soil"], "amount": 4.14e-13}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 4.6e-13}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 4.6e-13}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 9.27e-13}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 4.6e-13}, {"name": "Antimony ion", "categories": ["water"], "amount": 4.6e-13}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 143000}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 143000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 143000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 99000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 99000}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.01e-14}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 9.91e-14}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 9.91e-14}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 9.91e-14}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.09e-13}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.09e-13}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.48e-13}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.09e-13}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.09e-13}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.0174}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 22.7}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14.4}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water"], "amount": 10.1}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0553}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 6.69e-05}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 174}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 5.06e-05}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4680}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.000144}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 0.000137}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.09e-05}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.09e-05}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3520}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3520}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3520}, {"name": "Barium II", "categories": ["air"], "amount": 2440}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2440}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 5.14e-15}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.1e-14}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.1e-14}, {"name": "Barium II", "categories": ["soil"], "amount": 1.1e-14}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.22e-14}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.22e-14}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.68e-14}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.22e-14}, {"name": "Barium II", "categories": ["water"], "amount": 1.22e-14}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.72e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.516}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.000631}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.651}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0639}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 346}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 187}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.582}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.091}, {"name": "Benzene", "categories": ["air"], "amount": 0.0871}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0871}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0427}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water"], "amount": 0.0859}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.922}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0129}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0425}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 48.4}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 78.5}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 78.5}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 76.3}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.445}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.445}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.008}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0333}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0189}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.00268}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.0477}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 512000}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 512000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 512000}, {"name": "Beryllium II", "categories": ["air"], "amount": 354000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 354000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.87e-15}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 4.26e-14}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 4.26e-14}, {"name": "Beryllium II", "categories": ["soil"], "amount": 4.26e-14}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.67e-14}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 4.67e-14}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.65e-13}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.67e-14}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.67e-14}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 148000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 96.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 99.6}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 308}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 308}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 9.79}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22500}, {"name": "Bifenthrin", "categories": ["air"], "amount": 13100}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 222}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 227}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 801}, {"name": "Bifenthrin", "categories": ["water"], "amount": 801}, {"name": "Bisphenol A", "categories": ["water"], "amount": 0.0064}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.51e-05}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 7.52e-07}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 0.00957}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.0859}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.0782}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 466}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 42400}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00331}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 0.000666}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 0.000666}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 217}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.9}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.33}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.862}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air"], "amount": 0.035}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.0015}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water"], "amount": 0.0186}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.0321}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0703}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.368}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2900}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 301}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 299000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 299000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 299000}, {"name": "Cadmium II", "categories": ["air"], "amount": 207000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 207000}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 8.32e-16}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 3.69e-15}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 3.69e-15}, {"name": "Cadmium II", "categories": ["soil"], "amount": 3.69e-15}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 4.09e-15}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 4.09e-15}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.06e-14}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 4.09e-15}, {"name": "Cadmium II", "categories": ["water"], "amount": 4.09e-15}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9490}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 12.7}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 5.77}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 5.77}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 10300}, {"name": "Carbendazim", "categories": ["air"], "amount": 8320}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.138}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 0.0873}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 0.0417}, {"name": "Carbendazim", "categories": ["water"], "amount": 0.0417}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 372}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.853}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 7.49}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4270}, {"name": "Carboxin", "categories": ["air"], "amount": 2950}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.666}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.461}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 0.242}, {"name": "Carboxin", "categories": ["water"], "amount": 0.242}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00159}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 163000}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 202}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 199}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 123}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 123}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 123}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 265000}, {"name": "Chloramine", "categories": ["air"], "amount": 219000}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 219000}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.74e-07}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water"], "amount": 3.26e-06}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1680}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 8.8e-06}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 6400}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 6400}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.68e-06}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 0.00068}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air"], "amount": 0.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.219}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water"], "amount": 0.462}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 330}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 55.7}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 55.7}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.413}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 6.87}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 22400}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 21800}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 9330}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9770}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 8820}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 8820}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 6180}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1650}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 786}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 251}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.15e-06}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 65300}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 65300}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 65300}, {"name": "Chromium III", "categories": ["air"], "amount": 45200}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 45200}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.94e-16}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 5.36e-16}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 5.36e-16}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.36e-16}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 5.95e-16}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 5.95e-16}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.12e-15}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 5.95e-16}, {"name": "Chromium III", "categories": ["water"], "amount": 5.95e-16}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 221000}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 221000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 221000}, {"name": "Chromium VI", "categories": ["air"], "amount": 153000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 153000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 8.28e-14}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 2.29e-13}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 2.29e-13}, {"name": "Chromium VI", "categories": ["soil"], "amount": 2.29e-13}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.54e-13}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 2.54e-13}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 5.85e-13}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.54e-13}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.54e-13}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 9.78}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 22}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0329}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 63800}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63800}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63800}, {"name": "Cobalt II", "categories": ["air"], "amount": 44200}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 44200}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.55e-16}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2.29e-15}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2.29e-15}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2.29e-15}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.53e-15}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 2.53e-15}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.5e-14}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.53e-15}, {"name": "Cobalt II", "categories": ["water"], "amount": 2.53e-15}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1880000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1880000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1880000}, {"name": "Copper ion", "categories": ["air"], "amount": 1300000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1300000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.23e-15}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 5.02e-14}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 5.02e-14}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.02e-14}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 5.54e-14}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 5.54e-14}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 3.51e-13}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 5.54e-14}, {"name": "Copper ion", "categories": ["water"], "amount": 5.54e-14}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air"], "amount": 0.0432}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0432}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.0138}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water"], "amount": 0.0466}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.341}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.000203}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000646}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.73e-05}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.27e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1740}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.12e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95800}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 917}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 2830}, {"name": "Cypermethrin", "categories": ["water"], "amount": 2830}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.868}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.04e-05}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 77}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00507}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Decanoic acid", "categories": ["water"], "amount": 0.0114}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 19600}, {"name": "Deltamethrin", "categories": ["air"], "amount": 14700}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1380}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3700}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.14e-12}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.754}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 2.87}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.00301}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.647}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.32e-05}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.32e-05}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 36.9}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 114}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 282}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.000695}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.55e-06}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.55e-06}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1060}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 32.5}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 609}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.923}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Diethanolamine", "categories": ["water"], "amount": 5.94e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 3.49}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00415}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00415}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 242}, {"name": "Diethylamine", "categories": ["air"], "amount": 186}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 186}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.037}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.0767}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.968}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.968}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 7.44e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.000149}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 20400}, {"name": "Difenoconazole", "categories": ["air"], "amount": 16600}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 0.0715}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 0.0654}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0503}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.0503}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 489000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1240}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1040}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 692}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 692}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.741}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.0684}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.302}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 8.15}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 10100}, {"name": "Dimethoate", "categories": ["air"], "amount": 2350}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 7.52}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.232}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.155}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air"], "amount": 888}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 888}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.337}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1610000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1610000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1610000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1420000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1420000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 207000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 330000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 330000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 330000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 210000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 210000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 484000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 210000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 210000}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00217}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 424}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.33e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 6.6e-07}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 6.6e-07}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.114}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 28600}, {"name": "Diuron", "categories": ["air"], "amount": 20400}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.59}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.78}, {"name": "Diuron", "categories": ["water"], "amount": 2.55}, {"name": "Dodecanol", "categories": ["water"], "amount": 7.62}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.215}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 6.87e-05}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.18e-08}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.47}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 468}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 16}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 6710}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 148}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 58.9}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 58.9}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11300}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.444}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.444}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.111}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.194}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.929}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.929}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.184}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.387}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 13.1}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 18}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air"], "amount": 0.072}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0262}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 276}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 5.61e-06}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.53e-11}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.53e-11}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.27}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 14.4}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1520}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.406}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 214}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 214}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 214}, {"name": "Ethylamine", "categories": ["air"], "amount": 168}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 168}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0309}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.064}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.000108}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.000225}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.455}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.57}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.13e-05}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 6.64e-07}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.177}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 638}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.483}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 8.99}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2710}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 729}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 26.8}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 26.8}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 206000}, {"name": "Fluazinam", "categories": ["air"], "amount": 145000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1240}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1140}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 900}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 900}, {"name": "Fluazinam", "categories": ["water"], "amount": 900}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 12600}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12600}, {"name": "Fludioxonil", "categories": ["air"], "amount": 8730}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 1.15}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.45}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.45}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 70900}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 389}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.04}, {"name": "Fluoranthene", "categories": ["air"], "amount": 98.9}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 80.1}, {"name": "Fluorene", "categories": ["air"], "amount": 1.82}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.08}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 190}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 2.06e-06}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 25800}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 142}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air"], "amount": 10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.0506}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.889}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air"], "amount": 66.8}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 66.8}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 4.58e-06}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water"], "amount": 0.000909}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 7.53e-09}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0062}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0939}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 0.00607}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00607}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00607}, {"name": "Furan", "categories": ["air"], "amount": 0.00245}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00245}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 735}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 573}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.26e-10}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.13e-05}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.27e-11}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2440}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1980}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 0.00799}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 0.00799}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air"], "amount": 2.07e-05}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.07e-05}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 256}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air"], "amount": 0.000196}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000196}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.37e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water"], "amount": 0.000194}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.00371}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.379}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 602}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 367}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water"], "amount": 1360}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00795}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0955}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.03}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.03}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0143}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0387}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.178}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000785}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4320}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 5.99e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.17e-10}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Imidacloprid", "categories": ["water"], "amount": 1.98e-10}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 7710}, {"name": "Indoxacarb", "categories": ["air"], "amount": 6020}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 9.87}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.0103}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.302}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-05}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air"], "amount": 88}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 88}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.216}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.2}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 20.2}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 312000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5510}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5640}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 18700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 18700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 18700}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.866}, {"name": "Lauric acid", "categories": ["water"], "amount": 0.00154}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 67200}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67200}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 67200}, {"name": "Lead II", "categories": ["air"], "amount": 46500}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 46500}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 3.26e-18}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.7e-17}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.7e-17}, {"name": "Lead II", "categories": ["soil"], "amount": 7.7e-17}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 8.37e-17}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 8.37e-17}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 8.95e-16}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 8.37e-17}, {"name": "Lead II", "categories": ["water"], "amount": 8.37e-17}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.93e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5100}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.04e-07}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 626}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 6.59e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.1e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.1e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.000589}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.000883}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.000883}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 43}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.18e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.05e-05}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 44400}, {"name": "Mancozeb", "categories": ["air"], "amount": 36600}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.000845}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.59e-05}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 9.45e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 9.45e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.000868}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0677}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.000731}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.84e-13}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2180000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2180000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2180000}, {"name": "Mercury II", "categories": ["air"], "amount": 1490000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1490000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1.63e-16}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 6.92e-15}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 6.92e-15}, {"name": "Mercury II", "categories": ["soil"], "amount": 6.92e-15}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 7.32e-15}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 7.32e-15}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 6.91e-14}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 7.32e-15}, {"name": "Mercury II", "categories": ["water"], "amount": 7.32e-15}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.27}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 702}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 702}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 455}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 0.82}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 0.347}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 0.347}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 45.5}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.000275}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.000191}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.02}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.358}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0492}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0998}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.0416}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.0416}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.806}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.41}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Methanol", "categories": ["air"], "amount": 0.122}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.122}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.00305}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water"], "amount": 0.0422}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 96.2}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 32500}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.422}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 0.206}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water"], "amount": 0.0678}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 5.42}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 15800}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 12800}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 0.0597}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 0.0575}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 0.0517}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 0.0517}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.4}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.4}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.303}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.2}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.23}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.55}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.0199}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air"], "amount": 55.8}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 55.8}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 566}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 40.4}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 397}, {"name": "Methylamine", "categories": ["air"], "amount": 305}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 305}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water"], "amount": 0.216}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 5890}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 18.4}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 15.7}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water"], "amount": 11.3}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 40000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.21}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 0.856}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090000}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 899000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 6.48e-05}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.81e-05}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.81e-05}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.85}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 2270}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2270}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2270}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1570}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1570}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.31e-17}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.3e-16}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.3e-16}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.3e-16}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.55e-16}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.55e-16}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.07e-15}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.55e-16}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.55e-16}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.014}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00603}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 27.6}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 2.3}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 801}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.584}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.967}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.165}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 606}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 292000}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 292000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 292000}, {"name": "Nickel II", "categories": ["air"], "amount": 202000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 202000}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 3.25e-15}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.05e-14}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.05e-14}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.05e-14}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.27e-14}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2.27e-14}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.05e-13}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.27e-14}, {"name": "Nickel II", "categories": ["water"], "amount": 2.27e-14}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 645}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 531}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 7.28e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 3.32e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.1e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.1e-08}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.1}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.8}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 176}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.00469}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 21.7}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 5.82e-05}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00085}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.133}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 9.68}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 24.9}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 38.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.35}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.34}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.4}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 4.69e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 276}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.8}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 6.44e-05}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 490}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 69.2}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 69.2}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air"], "amount": 0.0207}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.0207}, {"name": "Pentane", "categories": ["water"], "amount": 0.0196}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11100}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 401}, {"name": "Permethrin", "categories": ["water"], "amount": 1160}, {"name": "Phenanthrene", "categories": ["air"], "amount": 31.3}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 37}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49}, {"name": "Phenol", "categories": ["air"], "amount": 1.18}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.00553}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water"], "amount": 0.0981}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 13}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 13}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 5980}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 5980}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.116}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.136}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 47.2}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 272}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4160}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.187}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.84}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.603}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 10.7}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.4}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 7.34}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00153}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.00909}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.000503}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 77.9}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.378}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 50.4}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 77.3}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 77.3}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 63.8}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 54.6}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 6.77}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3440}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 37.6}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 885}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 3.94e-05}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 4.05e-06}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.06}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06}, {"name": "Propanal", "categories": ["air"], "amount": 0.622}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.622}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.881}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 0.881}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.21}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.881}, {"name": "Propanal", "categories": ["water"], "amount": 0.881}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air"], "amount": 0.0504}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0504}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.003}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water"], "amount": 0.0302}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.00379}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.15}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.536}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.237}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water"], "amount": 0.487}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.0204}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air"], "amount": 51.4}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 51.4}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0154}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water"], "amount": 0.032}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.00326}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.41}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.74}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Pyrene", "categories": ["air"], "amount": 121}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 140}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 232}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.000429}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 119}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 667}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 211}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 267}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 932}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 932}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.000183}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 26.7}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.000889}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 96800}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96800}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 96800}, {"name": "Selenium IV", "categories": ["air"], "amount": 67000}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 67000}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.33e-15}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 6.33e-15}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 6.33e-15}, {"name": "Selenium IV", "categories": ["soil"], "amount": 6.33e-15}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 7.02e-15}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 7.02e-15}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 3.23e-14}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 7.02e-15}, {"name": "Selenium IV", "categories": ["water"], "amount": 7.02e-15}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0594}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.0666}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 10400000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10400000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 10400000}, {"name": "Silver I", "categories": ["air"], "amount": 7180000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7180000}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.29e-14}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 9.9e-14}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 9.9e-14}, {"name": "Silver I", "categories": ["soil"], "amount": 9.9e-14}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 1.09e-13}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 1.09e-13}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.69e-13}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 1.09e-13}, {"name": "Silver I", "categories": ["water"], "amount": 1.09e-13}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Simazine", "categories": ["air"], "amount": 9400}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 9.4}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.05}, {"name": "Simazine", "categories": ["water"], "amount": 3.05}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air"], "amount": 15.4}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 15.4}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.32e-21}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water"], "amount": 2.8e-21}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 77.2}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air"], "amount": 0.00511}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00418}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water"], "amount": 0.0139}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 0.00791}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1250}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1490}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1490}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.000647}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.72e-10}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.72e-10}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.61}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2820}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.0907}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.0888}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water"], "amount": 0.0838}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.97}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 99300}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 75900}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 7.63}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 4.7}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.13}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.13}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 178000}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 135000}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.95}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.71}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 7.87}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.00589}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 286}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 47.8}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.313}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.568}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 90600}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90600}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 90600}, {"name": "Thallium I", "categories": ["air"], "amount": 62700}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 62700}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.02e-13}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.22e-13}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.22e-13}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.22e-13}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.47e-13}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 2.47e-13}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 3.99e-13}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.47e-13}, {"name": "Thallium I", "categories": ["water"], "amount": 2.47e-13}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1090}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.00387}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.00354}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.00279}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.00279}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.000621}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 49}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 0.000115}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water"], "amount": 0.0213}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5860}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 977}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 732}, {"name": "Thiodicarb", "categories": ["water"], "amount": 732}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4360}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2770}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 7.32}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.23}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 964}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 964}, {"name": "Thiram", "categories": ["air"], "amount": 564}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.303}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.161}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Thiram", "categories": ["water"], "amount": 1.83}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 86400}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 86400}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 86400}, {"name": "Tin ion", "categories": ["air"], "amount": 59800}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 59800}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 4.89e-17}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.09e-15}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1.09e-15}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 8.23e-15}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.09e-15}, {"name": "Tin ion", "categories": ["water"], "amount": 1.09e-15}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air"], "amount": 0.0281}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0281}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.00928}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water"], "amount": 0.0301}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.248}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.248}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.116}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.247}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 871}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 18.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.00155}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 104}, {"name": "Triallate", "categories": ["air"], "amount": 47}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 70.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 0.0748}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 185000}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 152000}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.0075}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 0.0036}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.24}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.00144}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0529}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1.77}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 904}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 9.6e-07}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 1.8e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 25.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6730000}, {"name": "Triflumuron", "categories": ["air"], "amount": 4840000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 84000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 58600}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 11400}, {"name": "Triflumuron", "categories": ["water"], "amount": 11400}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 31.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 31.8}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000264}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.00987}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 6.86e-07}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water"], "amount": 1.29e-05}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.000198}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 292000}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 292000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 292000}, {"name": "Vanadium V", "categories": ["air"], "amount": 202000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 202000}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.02e-13}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 6.73e-13}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 6.73e-13}, {"name": "Vanadium V", "categories": ["soil"], "amount": 6.73e-13}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 7.44e-13}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 7.44e-13}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.27e-12}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 7.44e-13}, {"name": "Vanadium V", "categories": ["water"], "amount": 7.44e-13}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air"], "amount": 0.0139}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0139}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.00551}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water"], "amount": 0.0183}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95800}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 211000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 211000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 211000}, {"name": "Zinc II", "categories": ["air"], "amount": 146000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 146000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.46e-13}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.11e-12}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.11e-12}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.11e-12}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.32e-12}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 2.32e-12}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.61e-12}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.32e-12}, {"name": "Zinc II", "categories": ["water"], "amount": 2.32e-12}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 74.4}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.00806}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0267}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.0187}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.062}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.0351}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.01}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.034}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air"], "amount": 535}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 535}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.405}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water"], "amount": 0.84}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 18.7}]}, {"unit": "kg oil-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "energy resources: non-renewable, fossil", "fossil fuel potential (FFP)"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.22}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.42}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.22}]}, {"unit": "kg P-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "eutrophication: freshwater", "freshwater eutrophication potential (FEP)"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "eutrophication: marine", "marine eutrophication potential (MEP)"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.776}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water"], "amount": 0.23}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water"], "amount": 0.0671}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.297}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.0902}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.297}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "human toxicity: carcinogenic", "human toxicity potential (HTPc)"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00065}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.065}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.081}, {"name": "Acephate", "categories": ["water"], "amount": 0.081}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.00325}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.0313}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.434}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.4}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 49.8}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 9.72}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.72}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.216}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1.45}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 41.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 41.4}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air"], "amount": 0.0322}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.0322}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.7e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water"], "amount": 0.0242}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 22400}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22400}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 22400}, {"name": "Arsenic ion", "categories": ["air"], "amount": 20900}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 20900}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1730}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 16100}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 16100}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 16100}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 17700}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 17700}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 40500}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 17700}, {"name": "Arsenic ion", "categories": ["water"], "amount": 17700}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.27}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 0.735}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.54}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.54}, {"name": "Atrazine", "categories": ["water"], "amount": 1.54}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0765}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0765}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0107}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.33}, {"name": "Benzene", "categories": ["air"], "amount": 1.44}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.158}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.354}, {"name": "Benzene", "categories": ["water"], "amount": 0.354}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.0375}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.145}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0284}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0961}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 93.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 93.8}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1150}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 36.5}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 36.5}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 23.8}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.8}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.8}, {"name": "Beryllium II", "categories": ["air"], "amount": 268}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 268}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.54}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.06}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.06}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 0.867}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 0.867}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 4.86}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 0.867}, {"name": "Beryllium II", "categories": ["water"], "amount": 0.867}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air"], "amount": 1.33}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.33}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 171}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 171}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 171}, {"name": "Cadmium II", "categories": ["air"], "amount": 310}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 310}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 338}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 15.6}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 15.6}, {"name": "Cadmium II", "categories": ["soil"], "amount": 15.6}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 9.89}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 9.89}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 79}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9.89}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.89}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.0216}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.84}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 3.27}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 3.27}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.293}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.29}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air"], "amount": 1.26}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.26}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.369}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water"], "amount": 0.862}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 0.0799}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.0212}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.0361}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 0.097}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 0.097}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 743000}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 743000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 743000}, {"name": "Chromium VI", "categories": ["air"], "amount": 667000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 667000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 184000}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 500000}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 500000}, {"name": "Chromium VI", "categories": ["soil"], "amount": 500000}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 548000}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 548000}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1270000}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 548000}, {"name": "Chromium VI", "categories": ["water"], "amount": 548000}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 241}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0637}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 80.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 39.9}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 7.95}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 27.1}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.0566}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.0566}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.24e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.0109}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 108000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 108000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 108000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 99600000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 99600000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 23200000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 27500000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 27500000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 27500000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 227000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 227000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 79300000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 227000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 227000000}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 4}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0676}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0676}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 5.07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.244}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.244}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.652}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.223}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.223}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.78}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 13.4}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 3.2e-05}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0012}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.423}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.93}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.3}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.8}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 3.36}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 12.5}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00626}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.137}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00064}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6}, {"name": "Furan", "categories": ["air"], "amount": 95}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 95}, {"name": "Furfural", "categories": ["air"], "amount": 0.29}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air"], "amount": 0.00483}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.00483}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water"], "amount": 0.00265}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.129}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water"], "amount": 10.2}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.172}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.172}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0234}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0553}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.27}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.27}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air"], "amount": 0.128}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.128}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 35.7}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.7}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.7}, {"name": "Lead II", "categories": ["air"], "amount": 26.5}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 26.5}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.72}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 6.88}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 6.88}, {"name": "Lead II", "categories": ["soil"], "amount": 6.88}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.44}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 1.44}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 16.7}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.44}, {"name": "Lead II", "categories": ["water"], "amount": 1.44}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 12.5}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.222}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 4210}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4210}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4210}, {"name": "Mercury II", "categories": ["air"], "amount": 3110}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 3110}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 164}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 756}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 756}, {"name": "Mercury II", "categories": ["soil"], "amount": 756}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 734}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 734}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7600}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 734}, {"name": "Mercury II", "categories": ["water"], "amount": 734}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 12.3}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 12.3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0881}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 255}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 255}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 135}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 236}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.88}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.147}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.147}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.0171}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.0549}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.4}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.903}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 1170}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1170}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1170}, {"name": "Nickel II", "categories": ["air"], "amount": 906}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 906}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 210}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 355}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 355}, {"name": "Nickel II", "categories": ["soil"], "amount": 355}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 249}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 249}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1190}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 249}, {"name": "Nickel II", "categories": ["water"], "amount": 249}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.0724}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.849}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 33.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 33.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.0684}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.895}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.93}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.93}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.579}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4.64}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.000638}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.0364}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00525}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.486}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.307}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 114}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 114}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 5120}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 3.53}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0588}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.365}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.968}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.0951}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air"], "amount": 1.28}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.28}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00976}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Styrene", "categories": ["water"], "amount": 0.281}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.523}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.13}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air"], "amount": 0.0134}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0134}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.000339}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water"], "amount": 0.00226}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0111}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0371}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0715}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.407}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.8}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air"], "amount": 0.0204}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.000267}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water"], "amount": 0.00229}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 0.241}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.313}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.313}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00964}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.0338}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "human toxicity: non-carcinogenic", "human toxicity potential (HTPnc)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.414}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.9}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.1}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 3.81}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 5.24}, {"name": "2,4-D", "categories": ["water"], "amount": 5.24}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.105}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 1.88}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 1.88}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0377}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00147}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.9e-06}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00878}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.0297}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.19}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 19300}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 16500}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 620}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 773}, {"name": "Acephate", "categories": ["water"], "amount": 773}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.056}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.545}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Acetone", "categories": ["air"], "amount": 0.0878}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0878}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water"], "amount": 0.0132}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0204}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.131}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 310}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 310}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 310}, {"name": "Acrolein", "categories": ["air"], "amount": 9490}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 9490}, {"name": "Acrolein", "categories": ["water"], "amount": 294}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.74e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water"], "amount": 0.0752}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air"], "amount": 707}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 707}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.85}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 9.16}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.36}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.36}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 36}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 322}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.48}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.1}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 30.4}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.835}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 0.808}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 25.6}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 6.95}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.65}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.361}, {"name": "Aniline", "categories": ["air"], "amount": 5.32}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 5.32}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.00623}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 4.09}, {"name": "Aniline", "categories": ["water"], "amount": 4.09}, {"name": "Anthracene", "categories": ["air"], "amount": 0.0511}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water"], "amount": 0.723}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 42500}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42500}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 42500}, {"name": "Antimony ion", "categories": ["air"], "amount": 38600}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 38600}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 10300}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 30400}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 30400}, {"name": "Antimony ion", "categories": ["soil"], "amount": 30400}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 32200}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 32200}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 65500}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 32200}, {"name": "Antimony ion", "categories": ["water"], "amount": 32200}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 5690000}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 5190000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5190000}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 439000}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 4090000}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 4090000}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 4090000}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4480000}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 4480000}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 10300000}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4480000}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4480000}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 6.7}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.9}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.92}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water"], "amount": 6.11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 21000}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 21000}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 21000}, {"name": "Barium II", "categories": ["air"], "amount": 21000}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 21000}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 9980}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 21100}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 21100}, {"name": "Barium II", "categories": ["soil"], "amount": 21100}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 23200}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 23200}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 32000}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 23200}, {"name": "Barium II", "categories": ["water"], "amount": 23200}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0841}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0331}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.3}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.331}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 2.75}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 2.75}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0475}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28}, {"name": "Benzene", "categories": ["air"], "amount": 1.22}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.301}, {"name": "Benzene", "categories": ["water"], "amount": 0.301}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.505}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.00398}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.107}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1340}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 126}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 126}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 500}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 27600}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27600}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27600}, {"name": "Beryllium II", "categories": ["air"], "amount": 641000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 641000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 131}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 113}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 113}, {"name": "Beryllium II", "categories": ["soil"], "amount": 113}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 32}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 32}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 179}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 32}, {"name": "Beryllium II", "categories": ["water"], "amount": 32}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 372}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.994}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.21}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 72.7}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 72.7}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 101}, {"name": "Bifenthrin", "categories": ["air"], "amount": 65}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 4.23}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 15.9}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 1970}, {"name": "Bifenthrin", "categories": ["water"], "amount": 1970}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.77}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.96}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.5}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.26}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.6}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.6}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.79}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air"], "amount": 6.67}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.67}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air"], "amount": 0.431}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.431}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.000981}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water"], "amount": 0.0541}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 150000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 150000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 150000}, {"name": "Cadmium II", "categories": ["air"], "amount": 107000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 107000}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 310000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 14300}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 14300}, {"name": "Cadmium II", "categories": ["soil"], "amount": 14300}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 9090}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 9090}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 72500}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9090}, {"name": "Cadmium II", "categories": ["water"], "amount": 9090}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.779}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.9}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.16}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.3}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.3}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.5}, {"name": "Carbendazim", "categories": ["air"], "amount": 29.5}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.05}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Carbendazim", "categories": ["water"], "amount": 1.83}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 140}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 823}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 823}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 215}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 667}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 14}, {"name": "Carboxin", "categories": ["air"], "amount": 12.3}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.249}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.855}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Carboxin", "categories": ["water"], "amount": 1.61}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 3.52e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0152}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air"], "amount": 12.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.73e-05}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water"], "amount": 0.619}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 921}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 4.27}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.861}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water"], "amount": 9.89}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air"], "amount": 21.8}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.96}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water"], "amount": 12.8}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 8.14}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.72}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 10}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 10}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 79.8}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 338}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 88.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.748}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.571}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.571}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.571}, {"name": "Chromium III", "categories": ["air"], "amount": 0.425}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.425}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.0827}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.131}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.131}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.131}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 0.049}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 0.049}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 0.454}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.049}, {"name": "Chromium III", "categories": ["water"], "amount": 0.049}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 5960}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5960}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 5960}, {"name": "Chromium VI", "categories": ["air"], "amount": 10700}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 10700}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1410}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 3850}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 3850}, {"name": "Chromium VI", "categories": ["soil"], "amount": 3850}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 4220}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 4220}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 9800}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 4220}, {"name": "Chromium VI", "categories": ["water"], "amount": 4220}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 149}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 149}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 149}, {"name": "Copper ion", "categories": ["air"], "amount": 111}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 111}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 83.4}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 31.3}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 31.3}, {"name": "Copper ion", "categories": ["soil"], "amount": 31.3}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 24.3}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 24.3}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 163}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 24.3}, {"name": "Copper ion", "categories": ["water"], "amount": 24.3}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air"], "amount": 0.18}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00479}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.066}, {"name": "Cumene", "categories": ["water"], "amount": 0.066}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0041}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0438}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.48}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.935}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 0.768}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 21.6}, {"name": "Cypermethrin", "categories": ["water"], "amount": 21.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 25.7}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.04}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 31.3}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 253}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 38}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.2}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4.13}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.59}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.59}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 86.9}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 865}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 42.1}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0958}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0958}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.7}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.88}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 17.3}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 41.9}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 41.9}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 66.2}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 56.2}, {"name": "Dimethoate", "categories": ["air"], "amount": 20.3}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.0765}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 14.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.702}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 255}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 30.3}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 68.3}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 68.3}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 46.2}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.554}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 88.7}, {"name": "Diuron", "categories": ["air"], "amount": 78.7}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 2.03}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.36}, {"name": "Diuron", "categories": ["water"], "amount": 12.1}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.00919}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.61}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 28.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0826}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.321}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.163}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.281}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 7.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.03}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 7.06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 7.06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 361}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 553}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 67.6}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 5.47}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 5.47}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 266}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0844}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0844}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0147}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0147}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00288}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0147}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0147}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00143}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 0.244}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2.73}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 22300}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.96}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.31}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.34}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Fipronil", "categories": ["air"], "amount": 1520}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 615}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 1570}, {"name": "Fipronil", "categories": ["water"], "amount": 1570}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.788}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 20.7}, {"name": "Fluorene", "categories": ["air"], "amount": 0.692}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 1.3}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 15.4}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 6.78}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00311}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.447}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00128}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.972}, {"name": "Furan", "categories": ["air"], "amount": 35.5}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 45.6}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 49.2}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 3.53}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.768}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.2}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "Hexane", "categories": ["air"], "amount": 2.2}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.2}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0475}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Hexane", "categories": ["water"], "amount": 1.23}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.504}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 5490}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00218}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0273}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0332}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.104}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 40.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 40.7}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.67}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 0.197}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 0.253}, {"name": "Imazethapyr", "categories": ["water"], "amount": 0.253}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air"], "amount": 57.1}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 2.07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.73}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.73}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 0.113}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 42900}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42900}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 42900}, {"name": "Lead II", "categories": ["air"], "amount": 31800}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 31800}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 5670}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8260}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8260}, {"name": "Lead II", "categories": ["soil"], "amount": 8260}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1730}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 1730}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 20000}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1730}, {"name": "Lead II", "categories": ["water"], "amount": 1730}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 495}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.197}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 252}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 9.59}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 21.2}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 21.2}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.086}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.22}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.22}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.0736}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.74}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0272}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.2}, {"name": "Mancozeb", "categories": ["air"], "amount": 47.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2.75}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 1.77}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2.43}, {"name": "Mancozeb", "categories": ["water"], "amount": 2.43}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.00733}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 1710000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1710000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1710000}, {"name": "Mercury II", "categories": ["air"], "amount": 1260000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1260000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 66400}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 307000}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 307000}, {"name": "Mercury II", "categories": ["soil"], "amount": 307000}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 297000}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 297000}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 3080000}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 297000}, {"name": "Mercury II", "categories": ["water"], "amount": 297000}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.53}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 75}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1530}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.16}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 402}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 402}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 402}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 404}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 404}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 9.31}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 9.31}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2930}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2930}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1550}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2710}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 33.1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33.1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 33.5}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 33.5}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Methanol", "categories": ["air"], "amount": 0.156}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.156}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000666}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water"], "amount": 0.0194}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.22}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 456}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.72}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 9.35}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water"], "amount": 15.4}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00853}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 89.8}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.11}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.342}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.43}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water"], "amount": 3.37}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.7}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 2.42}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.9}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 12.7}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 0.695}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 1.18}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 1.18}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 77.5}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 9.48}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 6530}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6530}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 6530}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 5000}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 5000}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 3130}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1890}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1890}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1890}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1130}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 1130}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 4760}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1130}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1130}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.00213}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.00684}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 213}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.514}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Naphthalene", "categories": ["air"], "amount": 11}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.03}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.206}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 226}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 226}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 226}, {"name": "Nickel II", "categories": ["air"], "amount": 174}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 174}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 40.5}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 68.4}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 68.4}, {"name": "Nickel II", "categories": ["soil"], "amount": 68.4}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 48.1}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 48.1}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 230}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 48.1}, {"name": "Nickel II", "categories": ["water"], "amount": 48.1}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.2}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.2}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0148}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 0.0138}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.172}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.05}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.6}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0604}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 8.97}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.71}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.162}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 2.52}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Permethrin", "categories": ["water"], "amount": 10.8}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "Phenol", "categories": ["air"], "amount": 0.493}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.493}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.000864}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.315}, {"name": "Phenol", "categories": ["water"], "amount": 0.315}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 734}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 734}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.32}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 34.6}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 17.8}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 605}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00317}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.181}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.00406}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.251}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 23.2}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 9.62}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.428}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 6.83}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 22.6}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.399}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 27.9}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.881}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.385}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.477}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1.87}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.4}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 7.72}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water"], "amount": 36.6}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 3.2}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 2.74}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water"], "amount": 14.8}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 7.19}, {"name": "Pyrene", "categories": ["air"], "amount": 0.624}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 11.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.342}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 0.573}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 31.1}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 31.1}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 14.6}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.531}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.608}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.492}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 10.9}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 129000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 129000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 129000}, {"name": "Silver I", "categories": ["air"], "amount": 92400}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 92400}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 186000}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 15200}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 15200}, {"name": "Silver I", "categories": ["soil"], "amount": 15200}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4040}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 4040}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 33800}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4040}, {"name": "Silver I", "categories": ["water"], "amount": 4040}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 418}, {"name": "Simazine", "categories": ["air"], "amount": 344}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 17.3}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 19.3}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 33.5}, {"name": "Simazine", "categories": ["water"], "amount": 33.5}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air"], "amount": 0.855}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.855}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.0046}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water"], "amount": 0.0211}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 32}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 5.51}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water"], "amount": 17.1}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 24.4}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.47}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.52}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1860}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1560}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 62.5}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 280}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 959}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 0.0552}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 342}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 6.15}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 11.9}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 1120000}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1120000}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1120000}, {"name": "Thallium I", "categories": ["air"], "amount": 1090000}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1090000}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 471000}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1030000}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1030000}, {"name": "Thallium I", "categories": ["soil"], "amount": 1030000}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 1140000}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 1140000}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1850000}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 1140000}, {"name": "Thallium I", "categories": ["water"], "amount": 1140000}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air"], "amount": 26.8}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.72}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.72}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 7.5}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.67}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 4.65}, {"name": "Thiodicarb", "categories": ["water"], "amount": 4.65}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.3}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 15.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.905}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.33}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.91}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.91}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 5.23}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23}, {"name": "Thiram", "categories": ["air"], "amount": 11.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.0675}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.208}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 4.91}, {"name": "Thiram", "categories": ["water"], "amount": 4.91}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067}, {"name": "Toluene", "categories": ["air"], "amount": 0.858}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.858}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0184}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water"], "amount": 0.0714}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.318}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.14}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.54}, {"name": "Triallate", "categories": ["air"], "amount": 9.42}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.76}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 72.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 44.1}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 158}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 144}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.78}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 17.9}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 15.8}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.16}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.7}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 128}, {"name": "Trifluralin", "categories": ["water"], "amount": 128}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.381}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 63300}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63300}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 63300}, {"name": "Vanadium V", "categories": ["air"], "amount": 61900}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 61900}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 9120}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 58700}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 58700}, {"name": "Vanadium V", "categories": ["soil"], "amount": 58700}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 64700}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 64700}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 111000}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 64700}, {"name": "Vanadium V", "categories": ["water"], "amount": 64700}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.68}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air"], "amount": 1.58}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0182}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water"], "amount": 0.0692}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 1770000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1770000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1770000}, {"name": "Zinc II", "categories": ["air"], "amount": 1970000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1970000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 341000}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2400000}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2400000}, {"name": "Zinc II", "categories": ["soil"], "amount": 2400000}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2640000}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 2640000}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2970000}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2640000}, {"name": "Zinc II", "categories": ["water"], "amount": 2640000}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5.95}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.0062}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.027}]}, {"unit": "kg Co-60-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "ionising radiation", "ionising radiation potential (IRP)"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 4.16}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 0.00292}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00292}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 0.000461}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 0.00292}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 0.00292}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 55.5}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.5}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.5}, {"name": "Americium-241", "categories": ["air"], "amount": 55.5}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 55.5}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 0.00364}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 0.00364}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 0.0482}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 0.00364}, {"name": "Americium-241", "categories": ["water"], "amount": 0.00364}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0491}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.000891}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00473}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water"], "amount": 8.64}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00582}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 10}, {"name": "Caesium-137", "categories": ["water"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["air"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 12.9}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.0127}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 0.0127}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0273}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.0127}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.0127}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00245}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.64}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 3.45}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 4.05e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 4.12e-05}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 207}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 207}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 207}, {"name": "Iodine-129", "categories": ["air"], "amount": 207}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 207}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 155}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 155}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 155}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 155}, {"name": "Iodine-129", "categories": ["water"], "amount": 155}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.03}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 8.48e-06}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0191}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.88e-06}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 4}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 4}, {"name": "Plutonium-238", "categories": ["air"], "amount": 4}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 4}, {"name": "Plutonium-alpha", "categories": ["air", "low population density, long-term"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 5}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 4.45}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["air"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.0545}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 0.00773}, {"name": "Radium-226", "categories": ["water", "ground-, long-term"], "amount": 0.00773}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 0.00773}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.00773}, {"name": "Radium-226", "categories": ["water"], "amount": 0.00773}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00145}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.000236}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water"], "amount": 0.03}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.0282}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 0.0282}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000455}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.0282}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.0282}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 0.000109}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 0.000109}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water"], "amount": 0.0309}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 2.73}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.73}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.73}, {"name": "Thorium-230", "categories": ["air"], "amount": 2.73}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 2.73}, {"name": "Uranium alpha", "categories": ["air", "low population density, long-term"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["air"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Uranium alpha", "categories": ["water", "ground-"], "amount": 0.136}, {"name": "Uranium alpha", "categories": ["water", "ground-, long-term"], "amount": 0.136}, {"name": "Uranium alpha", "categories": ["water", "ocean"], "amount": 0.000833}, {"name": "Uranium alpha", "categories": ["water", "surface water"], "amount": 0.136}, {"name": "Uranium alpha", "categories": ["water"], "amount": 0.136}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["air"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 5.82}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "Uranium-234", "categories": ["water", "ground-, long-term"], "amount": 0.145}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 0.00136}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.145}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.145}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["air"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1.27}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 0.136}, {"name": "Uranium-235", "categories": ["water", "ground-, long-term"], "amount": 0.136}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 0.00203}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.136}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.136}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 0.136}, {"name": "Uranium-238", "categories": ["water", "ground-, long-term"], "amount": 0.136}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 0.000833}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.136}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.136}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 8.55e-06}]}, {"unit": "m2*a crop-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "land use", "agricultural land occupation (LOP)"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -36.75}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}]}, {"unit": "kg Cu-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "material resources: metals/minerals", "surplus ore potential (SOP)"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.169}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.169}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.572}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.131}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0228}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 76.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.32}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.32}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.0951}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0951}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.305}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0108}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0104}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 6.57}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.57}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0488}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.0154}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 83.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 83.8}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 317}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.192}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.00283}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 96.7}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 103}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 103}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 7.09}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 7.09}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.79}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.79}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.0823}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0823}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 8.96}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 5.2}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00916}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00576}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 528}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 528}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 13.3}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.428}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0875}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.0378}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 52.9}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 52.9}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 18.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 18.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 1200}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 5.03}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.03}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 7.78}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 25.2}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 3.97}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.153}]}, {"unit": "kg CFC-11-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "ozone depletion", "ozone depletion potential (ODPinfinite)"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.017}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.017}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.017}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.16}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.85}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.85}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.58}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.58}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.58}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.58}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.58}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.06}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.06}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.57}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.57}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.57}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.00662}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.00662}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.66}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.66}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 7.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 7.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 7.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 15.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 15.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 15.9}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.04}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.04}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.82}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.82}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.82}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.82}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg PM2.5-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "particulate matter formation", "particulate matter formation potential (PMFP)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.17}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.11}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.29}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.23}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "photochemical oxidant formation: human health", "photochemical oxidant formation potential: humans (HOFP)"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.345}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.131}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.131}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.149}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0653}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.199}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0326}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0326}, {"name": "Acetone", "categories": ["air"], "amount": 0.0218}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Acrolein", "categories": ["air"], "amount": 0.196}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.174}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.0689}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.0689}, {"name": "Benzene", "categories": ["air"], "amount": 0.0363}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0363}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.167}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Butadiene", "categories": ["air"], "amount": 0.323}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.112}, {"name": "Butane", "categories": ["air"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.112}, {"name": "Butanol", "categories": ["air"], "amount": 0.189}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.228}, {"name": "Butene", "categories": ["air"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.228}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.0943}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0943}, {"name": "Cumene", "categories": ["air"], "amount": 0.116}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.102}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.167}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Ethane", "categories": ["air"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00363}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00363}, {"name": "Ethanol", "categories": ["air"], "amount": 0.123}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.123}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0689}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.363}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.134}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.134}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.167}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0109}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Heptane", "categories": ["air"], "amount": 0.127}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.127}, {"name": "Hexane", "categories": ["air"], "amount": 0.145}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.163}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.163}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0266}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0266}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Isoprene", "categories": ["air"], "amount": 0.413}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.413}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0109}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00363}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Methanol", "categories": ["air"], "amount": 0.0471}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.116}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0399}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0399}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Phenol", "categories": ["air"], "amount": -0.0181}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0181}, {"name": "Propanal", "categories": ["air"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.261}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0508}, {"name": "Propane", "categories": ["air"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0508}, {"name": "Propanol", "categories": ["air"], "amount": 0.174}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.424}, {"name": "Propene", "categories": ["air"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.424}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0471}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Styrene", "categories": ["air"], "amount": 0.0181}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0181}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00363}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Toluene", "categories": ["air"], "amount": 0.16}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.105}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.312}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.312}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.283}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.283}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "photochemical oxidant formation: terrestrial ecosystems", "photochemical oxidant formation potential: ecosystems (EOFP)"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.555}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.21}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.21}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.479}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.105}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.304}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.321}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0526}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0526}, {"name": "Acetone", "categories": ["air"], "amount": 0.0351}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "Acrolein", "categories": ["air"], "amount": 0.316}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.316}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.281}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.111}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.111}, {"name": "Benzene", "categories": ["air"], "amount": 0.0585}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0585}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.269}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Butadiene", "categories": ["air"], "amount": 0.52}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.52}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.181}, {"name": "Butane", "categories": ["air"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.181}, {"name": "Butanol", "categories": ["air"], "amount": 0.304}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Butene", "categories": ["air"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.152}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Cumene", "categories": ["air"], "amount": 0.187}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.164}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.269}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.0468}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00585}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00585}, {"name": "Ethanol", "categories": ["air"], "amount": 0.199}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.111}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.111}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.585}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.216}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.216}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.269}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0175}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Heptane", "categories": ["air"], "amount": 0.205}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.205}, {"name": "Hexane", "categories": ["air"], "amount": 0.234}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.263}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.263}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0429}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Isoprene", "categories": ["air"], "amount": 0.666}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.666}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0175}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00585}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Methanol", "categories": ["air"], "amount": 0.076}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.187}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0643}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0643}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Phenol", "categories": ["air"], "amount": -0.0292}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0292}, {"name": "Propanal", "categories": ["air"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.421}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0818}, {"name": "Propane", "categories": ["air"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0818}, {"name": "Propanol", "categories": ["air"], "amount": 0.281}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.684}, {"name": "Propene", "categories": ["air"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.684}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.076}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Styrene", "categories": ["air"], "amount": 0.0292}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0292}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00585}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Toluene", "categories": ["air"], "amount": 0.257}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.17}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.503}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.503}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.456}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.456}]}, {"unit": "cubic meter", "name": ["ReCiPe 2016 v1.03, midpoint (E)", "water use", "water consumption potential (WCP)"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Water", "categories": ["air"], "amount": 1}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg SO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "acidification: terrestrial no LT", "terrestrial acidification potential (TAP) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.552}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.36}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}]}, {"unit": "kg CO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "climate change no LT", "global warming potential (GWP1000) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 193}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 193}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 938}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9620}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2350}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 96}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 635}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8520}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3690}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 13.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 13.8}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7150}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2110}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 179}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 817}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 36}, {"name": "Methane, fossil", "categories": ["air"], "amount": 36}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 36}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 34}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 34}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 15}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 34}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2020}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17900}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9480}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26100}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "ecotoxicity: freshwater no LT", "freshwater ecotoxicity potential (FETP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.000522}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.836}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.11e-05}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.0411}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.203}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.91}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 2.62}, {"name": "2,4-D", "categories": ["water"], "amount": 2.62}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0732}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.154}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0732}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.182}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.154}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0644}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.27}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.27}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0248}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.0144}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.98e-06}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.00477}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.7}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.83e-05}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 4.87e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.0653}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.159}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.00199}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water"], "amount": 14.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0663}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.714}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.89}, {"name": "Acephate", "categories": ["water"], "amount": 0.89}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.96e-05}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.144}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000246}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.000411}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.95e-09}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.169}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air"], "amount": 4.32e-05}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.32e-05}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 6.06e-06}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water"], "amount": 0.00217}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.000193}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.000193}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00874}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.000901}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 0.282}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 5.09}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air"], "amount": 0.084}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.084}, {"name": "Acrolein", "categories": ["water"], "amount": 69.4}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.95e-09}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water"], "amount": 0.132}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0236}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0236}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.000599}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.441}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 11.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0228}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0228}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 25}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.759}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 56}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.309}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 341}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 271}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 147}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1100}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 82800}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 35}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.13}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 39.4}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air"], "amount": 0.00401}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00401}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.11e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "Aniline", "categories": ["water"], "amount": 1.05}, {"name": "Anthracene", "categories": ["air"], "amount": 0.197}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 354}, {"name": "Anthracene", "categories": ["water"], "amount": 354}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.231}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.3}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.3}, {"name": "Antimony ion", "categories": ["air"], "amount": 45.2}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 45.2}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 45.6}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 92.1}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 92.1}, {"name": "Antimony ion", "categories": ["soil"], "amount": 92.1}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 340}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 2.19e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 340}, {"name": "Antimony ion", "categories": ["water"], "amount": 340}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.99}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.99}, {"name": "Arsenic ion", "categories": ["air"], "amount": 2.1}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 2.1}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.25}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 2.36}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 2.36}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 2.36}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.15e-20}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water"], "amount": 62.2}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.453}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.83}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14.8}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 85.3}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 179}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 179}, {"name": "Atrazine", "categories": ["water"], "amount": 179}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.452}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.745}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 233}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 0.198}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 27.3}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 156}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 156}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.482}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.482}, {"name": "Barium II", "categories": ["air"], "amount": 1.11}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.11}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil"], "amount": 2.51}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 4.57e-21}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.79}, {"name": "Barium II", "categories": ["water"], "amount": 2.79}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.066}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0228}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.144}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0548}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.681}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.681}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 2.08}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1590}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.00268}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00268}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.744}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.72e-05}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water"], "amount": 0.0868}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000158}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.748}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 6.88e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.293}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 24.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.069}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.069}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 15.2}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.411}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.411}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 134}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 134}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.0492}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0338}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.00704}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 4.17e-06}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.285}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.5}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.5}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.678}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.22}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.22}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.22}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.87e-20}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water"], "amount": 55.9}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 251}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 37.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 284}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 21200}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 21200}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.509}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.8}, {"name": "Bifenthrin", "categories": ["air"], "amount": 40.3}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 92.9}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 12200}, {"name": "Bifenthrin", "categories": ["water"], "amount": 12200}, {"name": "Bisphenol A", "categories": ["water"], "amount": 44.9}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.0297}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 9.99}, {"name": "Bromopropane", "categories": ["air"], "amount": 3.63e-05}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.129}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.89}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.88}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 167}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 167}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 11.7}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3.63}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air"], "amount": 0.000144}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000144}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 4.79e-06}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water"], "amount": 0.0183}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.327}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.0771}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 444}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.777}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.777}, {"name": "Cadmium II", "categories": ["air"], "amount": 1.17}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1.17}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.04}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.04}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.04}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.04}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 4.32e-21}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water"], "amount": 16.8}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 9.15}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 116}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 116}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57}, {"name": "Carbendazim", "categories": ["air"], "amount": 7.01}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 4.51}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 26.3}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 46}, {"name": "Carbendazim", "categories": ["water"], "amount": 46}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.705}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 9.93e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.349}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 3.47}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28}, {"name": "Carboxin", "categories": ["air"], "amount": 4.21}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 13.8}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Carboxin", "categories": ["water"], "amount": 26.1}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 6.33e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0948}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 107}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 90.7}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 719}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 4130}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 4130}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 4130}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air"], "amount": 39.5}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 39.5}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 9.72e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 217}, {"name": "Chloramine", "categories": ["water"], "amount": 217}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.66}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.396}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 63.4}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.535}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.0461}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1.66}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.66}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 2.9e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 9}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 8.52e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water"], "amount": 0.162}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.26}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 0.0804}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0804}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.000323}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.78}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.8}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 23.7}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 26.5}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 158}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 673}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 673}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.4}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 329}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1780}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 14700}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 14700}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 33.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10.9}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.202}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.202}, {"name": "Chromium III", "categories": ["air"], "amount": 0.402}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.402}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.418}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.853}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.853}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.853}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.07e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water"], "amount": 2.3}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73}, {"name": "Chromium VI", "categories": ["air"], "amount": 15.5}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 15.5}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 16.1}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 32.9}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 32.9}, {"name": "Chromium VI", "categories": ["soil"], "amount": 32.9}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 8.84e-20}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water"], "amount": 86.6}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 14.6}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.829}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.374}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.696}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.206}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.206}, {"name": "Cobalt II", "categories": ["air"], "amount": 0.224}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 0.224}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.14}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.265}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.265}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.265}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.86e-21}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water"], "amount": 6.34}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.17}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.17}, {"name": "Copper ion", "categories": ["air"], "amount": 5.48}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 5.48}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.28}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 6.17}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 6.17}, {"name": "Copper ion", "categories": ["soil"], "amount": 6.17}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 162}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.32e-20}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 162}, {"name": "Copper ion", "categories": ["water"], "amount": 162}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 9.15e-06}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.558}, {"name": "Cumene", "categories": ["water"], "amount": 0.558}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 7.28e-08}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0546}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 1.29e-08}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.0625}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 21.8}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.288}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.00489}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 259}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 841}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 63300}, {"name": "Cypermethrin", "categories": ["water"], "amount": 63300}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 2.01}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 12.8}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.591}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.69}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0535}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 2.2}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3.04}, {"name": "Deltamethrin", "categories": ["air"], "amount": 53.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 6310}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.139}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.776}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 16.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0153}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5.66}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.172}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.328}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.34}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 17.1}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0427}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.081}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.631}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.631}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 17.6}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 0.943}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 5.77}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 3.28}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 0.283}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.159}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 1.02}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.57e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.57e-06}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.8e-06}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.462}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.00036}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.00036}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.26e-10}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.00271}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.52}, {"name": "Difenoconazole", "categories": ["air"], "amount": 21.5}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 78.5}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 233}, {"name": "Difenoconazole", "categories": ["water"], "amount": 233}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 188}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 299}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2000}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 4860}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 4860}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.0156}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 3.91e-05}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.191}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.55}, {"name": "Dimethoate", "categories": ["air"], "amount": 3.37}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 5.71}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 38.7}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.883}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 2.19e-05}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.974}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 11.8}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 177}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 167}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 37.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 130}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 130}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 130}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 49.7}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 17400}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.391}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.7}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 8.71}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 19.6}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 19.6}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.43}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Diuron", "categories": ["air"], "amount": 35.2}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 15.2}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 98.2}, {"name": "Diuron", "categories": ["water"], "amount": 223}, {"name": "Dodecanol", "categories": ["water"], "amount": 22.5}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.318}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 6.84}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.281}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.732}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 12.6}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.58}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 41.1}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 83.8}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 83.8}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1500}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1000}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.000564}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 8.23e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 8.23e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.52e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000425}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 7.03e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0554}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.00517}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.55}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.24e-06}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water"], "amount": 0.00629}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.0468}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.328}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.328}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.592}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.9e-05}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0164}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.0405}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0405}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.27e-06}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.202}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.93e-09}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.425}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.000707}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.000707}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.000177}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0482}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 2.7}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 6.49}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 63.4}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.755}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.57}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 10}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 7.48}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 43.6}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 107}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.638}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.25}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 87.9}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 87.9}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.5}, {"name": "Fluazinam", "categories": ["air"], "amount": 289}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 105}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 743}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water"], "amount": 2260}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99}, {"name": "Fludioxonil", "categories": ["air"], "amount": 23.7}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 9.31}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 69.8}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 275}, {"name": "Fludioxonil", "categories": ["water"], "amount": 275}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.3}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.87}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 618}, {"name": "Fluorene", "categories": ["air"], "amount": 0.0118}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 7.12}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 4.11}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.164}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 30.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0314}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0314}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 4.68e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.907}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.98e-10}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0854}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00758}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.997}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air"], "amount": 1.3e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Furfural", "categories": ["air"], "amount": 0.00703}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.589}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.28}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.351}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water"], "amount": 2.39}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.85}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 32.1}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 32.1}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air"], "amount": 6.53e-09}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.53e-09}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 10.8}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "Hexane", "categories": ["water"], "amount": 0.141}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.37}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.06}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.0226}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water"], "amount": 93.4}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.5e-06}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.302}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.54e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.54e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 6.68e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.155}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.000362}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.000362}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.00621}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.26}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 6.21}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.79}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.95}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Imidacloprid", "categories": ["water"], "amount": 9.16}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72}, {"name": "Indoxacarb", "categories": ["air"], "amount": 11.8}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 34}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 6.11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.49}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 1.71e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.71e-08}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.0373}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0373}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.04e-05}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.175}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 4.85}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 598}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 68.9}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 423}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 48100}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 48100}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 48100}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.00867}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.45}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0166}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0166}, {"name": "Lead II", "categories": ["air"], "amount": 0.0138}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0138}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.00439}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.00738}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.00738}, {"name": "Lead II", "categories": ["soil"], "amount": 0.00738}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.606}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.29e-23}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.606}, {"name": "Lead II", "categories": ["water"], "amount": 0.606}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.538}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 24.6}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.928}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0965}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.63}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.63}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.183}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 6}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 12.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.293}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0307}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.5}, {"name": "Mancozeb", "categories": ["air"], "amount": 14.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 56.7}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 78}, {"name": "Mancozeb", "categories": ["water"], "amount": 78}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.2}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 9.02e-07}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.34}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34}, {"name": "Mercury II", "categories": ["air"], "amount": 1.01}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.01}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.199}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.286}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.286}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.286}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 3.89e-21}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water"], "amount": 49.8}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.292}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 0.601}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.347}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.99}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 3.34}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 0.0683}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.202}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00275}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.81e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0292}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.48e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000288}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.534}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air"], "amount": 0.000132}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5e-06}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water"], "amount": 0.00493}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.21}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 28}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 8.61}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 47.7}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water"], "amount": 78.6}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.371}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.41}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 21.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 78.6}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 242}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 242}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.000379}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000379}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 8.04e-05}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water"], "amount": 0.0283}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.000365}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.72}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00341}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.0078}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.0078}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.753}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.89}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air"], "amount": 0.063}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.063}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 6.18e-06}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water"], "amount": 0.292}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.327}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 9.37}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 61.8}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 147}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 147}, {"name": "Metolachlor", "categories": ["water"], "amount": 147}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.41}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 149}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 295}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 772}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 520}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 3000}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 5070}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 5070}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 111}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.61}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0363}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0363}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.0724}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.0724}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.0752}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.154}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.154}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.154}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 3.08e-22}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.41}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 3.13}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.288}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 4.55}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.000708}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 67.7}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.71}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71}, {"name": "Nickel II", "categories": ["air"], "amount": 2.16}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 2.16}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.17}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.17}, {"name": "Nickel II", "categories": ["soil"], "amount": 3.17}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 46}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.71e-20}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 46}, {"name": "Nickel II", "categories": ["water"], "amount": 46}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.125}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 0.328}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.27}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.87}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.00135}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.76}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.82}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.0156}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.0641}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.73}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 3.04}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.329}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 0.931}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.00485}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 13}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.033}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0129}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 38.1}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.183}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.692}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.63}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 176}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 176}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air"], "amount": 6.29e-06}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 6.29e-06}, {"name": "Pentane", "categories": ["water"], "amount": 7.18}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 5.08}, {"name": "Permethrin", "categories": ["water"], "amount": 2870}, {"name": "Phenanthrene", "categories": ["air"], "amount": 0.136}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 57}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air"], "amount": 0.00867}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00867}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.23e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.969}, {"name": "Phenol", "categories": ["water"], "amount": 0.969}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.136}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.136}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 19.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 5.52}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 45.2}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 8.88}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 33.2}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 60.6}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00054}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 15.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.000949}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 26.1}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 3.81e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.609}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.01e-05}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.24}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.84}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.455}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.196}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 31.7}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 13.2}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.0541}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 429}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.22}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 17.4}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.0201}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 0.0302}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air"], "amount": 0.000176}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.000176}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 5.1e-05}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.102}, {"name": "Propanal", "categories": ["water"], "amount": 0.102}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air"], "amount": 0.000117}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 5.28e-06}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water"], "amount": 0.00942}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 9.32}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 0.332}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.171}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 3.36}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 15.8}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water"], "amount": 74.9}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.32e-08}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.157}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0218}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.86e-06}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water"], "amount": 0.116}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.000651}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.000214}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.0706}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.91}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 8.24}, {"name": "Pyrene", "categories": ["air"], "amount": 1.18}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1810}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 245}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.0358}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 8.05}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.669}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.03}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 4.49}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 28.3}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 235}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2700}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2700}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.147}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 15.9}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.87}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.0405}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.673}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.673}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.975}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.975}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.843}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.65}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.65}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.65}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 5.99e-21}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water"], "amount": 15.3}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0962}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.268}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.41}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.6}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.6}, {"name": "Silver I", "categories": ["air"], "amount": 19.2}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 19.2}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 13.1}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 25}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 25}, {"name": "Silver I", "categories": ["soil"], "amount": 25}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 485}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.84e-20}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 485}, {"name": "Silver I", "categories": ["water"], "amount": 485}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.65}, {"name": "Simazine", "categories": ["air"], "amount": 11.9}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 5.66}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 33.1}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 57.7}, {"name": "Simazine", "categories": ["water"], "amount": 57.7}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.00158}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.00158}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 4.16e-26}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water"], "amount": 0.00822}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 19.9}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.86e-06}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.396}, {"name": "Styrene", "categories": ["water"], "amount": 0.396}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 36}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.285}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.285}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.209}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.52}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.52}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.83}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 13.1}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water"], "amount": 40.5}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 72.2}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 39.2}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 227}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 391}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 391}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 83.4}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 228}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 93.7}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 685}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 2350}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 72.6}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.91}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 22.2}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.00014}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.23}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.03}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.03}, {"name": "Thallium I", "categories": ["air"], "amount": 20.9}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 20.9}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 21.8}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 47.6}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 47.6}, {"name": "Thallium I", "categories": ["soil"], "amount": 47.6}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 53}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 7.06e-20}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 53}, {"name": "Thallium I", "categories": ["water"], "amount": 53}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.538}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.41}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.737}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 5.16}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiabendazole", "categories": ["water"], "amount": 15.1}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.55}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 9.32e-09}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water"], "amount": 9.04}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 12.6}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 79.2}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 147}, {"name": "Thiodicarb", "categories": ["water"], "amount": 147}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.812}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 10.4}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 15.1}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9}, {"name": "Thiram", "categories": ["air"], "amount": 5.91}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 4.12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 19.8}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 468}, {"name": "Thiram", "categories": ["water"], "amount": 468}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.133}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.133}, {"name": "Tin ion", "categories": ["air"], "amount": 0.113}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 0.113}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.0403}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.0696}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.0696}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.0696}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 7.72e-22}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water"], "amount": 4.77}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.72e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.139}, {"name": "Toluene", "categories": ["water"], "amount": 0.139}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.000153}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.000153}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.1e-05}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.345}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 36.6}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 715}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Triallate", "categories": ["air"], "amount": 0.164}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.66}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 86.9}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 181}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 192}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1630}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.507}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 7.83}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.1e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.17}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.84}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 255}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 4.9e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.00133}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 12}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1500}, {"name": "Triflumuron", "categories": ["air"], "amount": 4670}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 2530}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 14100}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 22200}, {"name": "Triflumuron", "categories": ["water"], "amount": 22200}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0391}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.438}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.61}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 35.4}, {"name": "Trifluralin", "categories": ["water"], "amount": 35.4}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.675}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.574}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.456}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.13e-11}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.0319}, {"name": "Urea", "categories": ["water"], "amount": 0.0319}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.59}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.59}, {"name": "Vanadium V", "categories": ["air"], "amount": 8.23}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 8.23}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 6.16}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 11.9}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 11.9}, {"name": "Vanadium V", "categories": ["soil"], "amount": 11.9}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 178}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 8.2e-20}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 178}, {"name": "Vanadium V", "categories": ["water"], "amount": 178}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.545}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Xylene", "categories": ["water"], "amount": 0.155}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 259}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.28}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.28}, {"name": "Zinc II", "categories": ["air"], "amount": 5.93}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.93}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.82}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 5.14}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 5.14}, {"name": "Zinc II", "categories": ["soil"], "amount": 5.14}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 7.47e-20}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 211}, {"name": "Zinc II", "categories": ["water"], "amount": 211}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.25}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 52.9}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 4.4e-06}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.492}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.06e-05}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.525}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.29e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.29e-05}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.61e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.0067}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air"], "amount": 0.241}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 0.241}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 4.62e-05}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 1.12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.38}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "ecotoxicity: marine no LT", "marine ecotoxicity potential (METP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.831}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.141}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.00732}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.00125}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.145}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0199}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.105}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "2,4-D", "categories": ["water"], "amount": 0.145}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0711}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.0128}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 0.0883}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 0.0883}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0711}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.0631}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.0128}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 0.0883}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.00603}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.237}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.237}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.616}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0054}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.00144}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00073}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.000314}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000314}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.000997}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.000299}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 0.332}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.0124}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0026}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0026}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.007}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00155}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.00425}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.0485}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.0485}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 11.7}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.63}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0446}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.007}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.0395}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.0492}, {"name": "Acephate", "categories": ["water"], "amount": 0.0492}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.00512}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00512}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0716}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.00944}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000141}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.02e-05}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.0168}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00238}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air"], "amount": 0.000595}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.000595}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.000894}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water"], "amount": 0.000503}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.00283}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00283}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.00388}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00239}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.151}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 0.0853}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air"], "amount": 1.34}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.34}, {"name": "Acrolein", "categories": ["water"], "amount": 3.24}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.0131}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00186}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0034}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0034}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.0445}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.255}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.052}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.99}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.98}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0195}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0195}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.62}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.00546}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9640}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 4960}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 303}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 16200}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.93}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.323}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.59}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air"], "amount": 0.00107}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.139}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water"], "amount": 0.0257}, {"name": "Anthracene", "categories": ["air"], "amount": 4.65}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 306}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water"], "amount": 28.9}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 488}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 488}, {"name": "Antimony ion", "categories": ["air"], "amount": 361}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 361}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 39}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 76.3}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 76.3}, {"name": "Antimony ion", "categories": ["soil"], "amount": 76.3}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 460}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1000}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 460}, {"name": "Antimony ion", "categories": ["water"], "amount": 460}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 100}, {"name": "Arsenic ion", "categories": ["air"], "amount": 69.9}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 69.9}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.93}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.93}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.93}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 86.3}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 212}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 86.3}, {"name": "Arsenic ion", "categories": ["water"], "amount": 86.3}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.67}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.24}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water"], "amount": 14.9}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0375}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.143}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 13.1}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 0.011}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.75}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.26}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 13}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 13}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.35}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35}, {"name": "Barium II", "categories": ["air"], "amount": 3.39}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 3.39}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 3.47}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 3.47}, {"name": "Barium II", "categories": ["soil"], "amount": 3.47}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3.93}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 5.61}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3.93}, {"name": "Barium II", "categories": ["water"], "amount": 3.93}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.00157}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0296}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0389}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.0132}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0239}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.00305}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 58}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 151}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0233}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0233}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0395}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air"], "amount": 0.00235}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.00235}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.089}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water"], "amount": 0.00485}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.451}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.0377}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.00563}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.66}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.66}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 11}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 21.9}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 26.9}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 26.9}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 12.2}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.00117}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.00336}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.000405}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0322}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.00699}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 237}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 237}, {"name": "Beryllium II", "categories": ["air"], "amount": 165}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 165}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.515}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.906}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.906}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.906}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 72}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 502}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 72}, {"name": "Beryllium II", "categories": ["water"], "amount": 72}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6950}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 11.8}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 60}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4150}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4150}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2520}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1470}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 27.5}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 43.7}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2500}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2500}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.49}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 0.0742}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.00164}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.00138}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.00353}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.977}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.23}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.23}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 13.5}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.971}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.00499}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air"], "amount": 0.000583}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000583}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.00295}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water"], "amount": 0.000557}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.0181}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0296}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.00305}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.49}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 11.1}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.2}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.2}, {"name": "Cadmium II", "categories": ["air"], "amount": 63.5}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 63.5}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.711}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.36}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.36}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.36}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 19.6}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 196}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 19.6}, {"name": "Cadmium II", "categories": ["water"], "amount": 19.6}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.16}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.512}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.42}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.42}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.24}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.46}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.54}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.54}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.039}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.32}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.263}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.137}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Carboxin", "categories": ["air"], "amount": 1.01}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.764}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.44}, {"name": "Carboxin", "categories": ["water"], "amount": 1.44}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 0.00941}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00133}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 485}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 18}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 139}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 795}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 795}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 795}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air"], "amount": 7.51}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.51}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 23.2}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water"], "amount": 5.16}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 0.318}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.0223}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 5.79}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.0296}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.00255}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 0.323}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 0.964}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 0.214}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.176}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water"], "amount": 0.0469}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 0.124}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 0.124}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.215}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 0.0572}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 186}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 182}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 80.8}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 193}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 193}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 176}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 104}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 337}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2680}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2680}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 4.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.907}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.0799}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.2}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.2}, {"name": "Chromium III", "categories": ["air"], "amount": 10}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.276}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.543}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.543}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.543}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.47}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 30}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.47}, {"name": "Chromium III", "categories": ["water"], "amount": 2.47}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 159}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 159}, {"name": "Chromium VI", "categories": ["air"], "amount": 120}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 120}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 15.7}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 31}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 31}, {"name": "Chromium VI", "categories": ["soil"], "amount": 31}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 130}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 322}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 130}, {"name": "Chromium VI", "categories": ["water"], "amount": 130}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 2.88}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.0504}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.0327}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0387}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.2}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.2}, {"name": "Cobalt II", "categories": ["air"], "amount": 18.9}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 18.9}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.188}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.188}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.188}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 7.85}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 58.3}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 7.85}, {"name": "Cobalt II", "categories": ["water"], "amount": 7.85}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 732}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 732}, {"name": "Copper ion", "categories": ["air"], "amount": 508}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 508}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.19}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.19}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.19}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 193}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1570}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 193}, {"name": "Copper ion", "categories": ["water"], "amount": 193}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air"], "amount": 0.00063}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.00063}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.331}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water"], "amount": 0.0105}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.42}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.68e-06}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.68e-06}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0342}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000944}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.68e-06}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.12e-07}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.00346}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 151}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.0541}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.000273}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 232}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 12400}, {"name": "Cypermethrin", "categories": ["water"], "amount": 12400}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.167}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.049}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.497}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00127}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.122}, {"name": "Decanoic acid", "categories": ["water"], "amount": 0.0428}, {"name": "Deltamethrin", "categories": ["air"], "amount": 852}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 80.7}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 718}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.0078}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.0452}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.957}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.26}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.524}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.0182}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 0.129}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 0.129}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.377}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.54}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0314}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.00448}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.0349}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.0349}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.03}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 0.983}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.69}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.078}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 10.8}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.00224}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 0.0605}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.23e-05}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0179}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0179}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.0496}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.011}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.41e-05}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.41e-05}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 0.000268}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.81e-05}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.2}, {"name": "Difenoconazole", "categories": ["air"], "amount": 21.7}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2.14}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 15.1}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 44.9}, {"name": "Difenoconazole", "categories": ["water"], "amount": 44.9}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 452}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 58.6}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 384}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 933}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 933}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.0163}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.087}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.00631}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.297}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.166}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.0733}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.0381}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0381}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.0232}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.00617}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 40800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1880}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1880}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1880}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 12200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 125000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 12200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 12200}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00566}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.506}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 0.316}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 0.0745}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 0.482}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.09}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.09}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 0.472}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.3}, {"name": "Diuron", "categories": ["air"], "amount": 10.3}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.84}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.43}, {"name": "Diuron", "categories": ["water"], "amount": 12.3}, {"name": "Dodecanol", "categories": ["water"], "amount": 0.864}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.0208}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.0291}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.00447}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.0262}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 193}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.00395}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.13}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 7.96}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 16.1}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 16.1}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5600}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.0113}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.0113}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.0705}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.0437}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.0177}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0177}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0617}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0185}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 11}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 7.7}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.000901}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water"], "amount": 0.000225}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.00259}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.0182}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.0182}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.0687}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.0384}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.47}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.00262}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00262}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00882}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.00264}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.00829}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.00829}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0216}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.0048}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.0455}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.0101}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.0324}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0178}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.384}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 12.2}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.01}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 0.39}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 0.631}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 141}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 0.225}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.03}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 0.226}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.35}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.35}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 275}, {"name": "Fluazinam", "categories": ["air"], "amount": 236}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 21.7}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 144}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 434}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 434}, {"name": "Fluazinam", "categories": ["water"], "amount": 434}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.2}, {"name": "Fludioxonil", "categories": ["air"], "amount": 12.8}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 5.8}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 22.8}, {"name": "Fludioxonil", "categories": ["water"], "amount": 22.8}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 41}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Fluoranthene", "categories": ["air"], "amount": 14.6}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 57.9}, {"name": "Fluorene", "categories": ["air"], "amount": 0.164}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 0.329}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 0.924}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.0136}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.3}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.025}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.025}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.0237}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00847}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0012}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0237}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0112}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air"], "amount": 2.54e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.54e-05}, {"name": "Furfural", "categories": ["air"], "amount": 0.00776}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.00726}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.145}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.00726}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0923}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.00835}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.0569}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.95}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.16}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.16}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air"], "amount": 9.98e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 9.98e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 0.835}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0629}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water"], "amount": 0.00162}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.242}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.0375}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 13.2}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 10.1}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.27}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.171}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.00553}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.000388}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.000388}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.106}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0037}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0527}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0527}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000148}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 0.189}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.515}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.554}, {"name": "Imidacloprid", "categories": ["air"], "amount": 0.558}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.577}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Imidacloprid", "categories": ["water"], "amount": 0.76}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Indoxacarb", "categories": ["air"], "amount": 27.7}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 0.838}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 6.58}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.338}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air"], "amount": 2.8e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.8e-07}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.00644}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.00644}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0188}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.00418}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.268}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.405}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26300}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 474}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 553}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 10700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 10700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 10700}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.0185}, {"name": "Lauric acid", "categories": ["water"], "amount": 0.0205}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41}, {"name": "Lead II", "categories": ["air"], "amount": 3.06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 3.06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.00238}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0039}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0039}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0039}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.593}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.53}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.593}, {"name": "Lead II", "categories": ["water"], "amount": 0.593}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.0299}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 130}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.0774}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0629}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.00413}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 0.0389}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 0.0389}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.317}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.0105}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.332}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.332}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.3}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.00696}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.000731}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.75}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.589}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.13}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.31}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.31}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.606}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0664}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.00848}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 351}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 351}, {"name": "Mercury II", "categories": ["air"], "amount": 240}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 240}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.115}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.161}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.161}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.161}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 51.4}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 709}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 51.4}, {"name": "Mercury II", "categories": ["water"], "amount": 51.4}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.0167}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 0.123}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 0.11}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 0.185}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 0.185}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 0.00664}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.534}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.0048}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0621}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.308}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.624}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.00784}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.00784}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0328}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.00829}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00368}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00368}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.905}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.537}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air"], "amount": 0.000451}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000451}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000713}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water"], "amount": 0.000223}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.57}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.08}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.205}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.13}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water"], "amount": 1.87}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 12.8}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 0.918}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.52}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 20.1}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 20.1}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.00837}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00837}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.0159}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water"], "amount": 0.00765}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.022}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.394}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.0385}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.000722}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.000722}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.000669}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.00206}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.00206}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 0.382}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air"], "amount": 0.012}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.012}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.0312}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water"], "amount": 0.00695}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.0183}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.789}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.14}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water"], "amount": 12.2}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.95}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.846}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.21}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 300}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 291}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43.2}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 249}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 421}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 421}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.0819}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.946}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.946}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.0659}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.13}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.13}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.13}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.56}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.73}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.56}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.56}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.0745}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00684}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 0.0855}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.0737}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.0205}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.0755}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.98}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 150}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 150}, {"name": "Nickel II", "categories": ["air"], "amount": 105}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 105}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.29}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.29}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.29}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 57.1}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 321}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 57.1}, {"name": "Nickel II", "categories": ["water"], "amount": 57.1}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.111}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 0.11}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 0.106}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 0.155}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.152}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.228}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.118}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.000226}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0922}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00355}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.485}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.0723}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.752}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 0.374}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.56}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.56}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.187}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.000715}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 0.0956}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.0101}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.36}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air"], "amount": 0.000114}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.000114}, {"name": "Pentane", "categories": ["water"], "amount": 0.0817}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 498}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 18.3}, {"name": "Permethrin", "categories": ["water"], "amount": 287}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.43}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.35}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.0589}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air"], "amount": 0.00849}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00849}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water"], "amount": 0.0237}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 30.7}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 30.7}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.68}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.468}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1.94}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.405}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.418}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.0664}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.0152}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.419}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.0322}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.0601}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.278}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.0379}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 16.8}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 16.8}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 20.3}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.59}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 39.1}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.275}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.00111}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 0.00167}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air"], "amount": 0.0024}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.0024}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.0493}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water"], "amount": 0.00535}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.12}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air"], "amount": 0.000566}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000566}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0019}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water"], "amount": 0.00055}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 0.0755}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.00484}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.34}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.31}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.22}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.22}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.22}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.00593}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00593}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.0156}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.00221}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0046}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0046}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0124}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water"], "amount": 0.00276}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 9.96e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.0204}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0367}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.0185}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 0.465}, {"name": "Pyrene", "categories": ["air"], "amount": 21.5}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 156}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.00199}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 0.757}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.0377}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.8}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 13.2}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.25}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 23.3}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 227}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 227}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.01}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 5.7}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 0.322}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.00362}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.8}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.8}, {"name": "Selenium IV", "categories": ["air"], "amount": 34.9}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 34.9}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.635}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.21}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.21}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.21}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 19.1}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 106}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 19.1}, {"name": "Selenium IV", "categories": ["water"], "amount": 19.1}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0149}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.41}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2750}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 2750}, {"name": "Silver I", "categories": ["air"], "amount": 1910}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 1910}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 8.5}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 15.8}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 15.8}, {"name": "Silver I", "categories": ["soil"], "amount": 15.8}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 546}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 5930}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 546}, {"name": "Silver I", "categories": ["water"], "amount": 546}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.83}, {"name": "Simazine", "categories": ["air"], "amount": 3.46}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.472}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.78}, {"name": "Simazine", "categories": ["water"], "amount": 4.78}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.000253}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.000253}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.000815}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water"], "amount": 0.000116}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air"], "amount": 9.49e-05}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.49e-05}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.238}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water"], "amount": 0.0072}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 1.99}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.33}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.053}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.053}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.00498}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 0.0363}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 0.0363}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.95}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.152}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.36}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 0.207}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.2}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 19.2}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.17}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 12.6}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 21.6}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21.6}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 253}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 224}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 18}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 132}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 451}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.074}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.22}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.97}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.0746}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0746}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.43}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.12}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 77.9}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 77.9}, {"name": "Thallium I", "categories": ["air"], "amount": 73.7}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 73.7}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 30.1}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 64.3}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 64.3}, {"name": "Thallium I", "categories": ["soil"], "amount": 64.3}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 81}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 137}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 81}, {"name": "Thallium I", "categories": ["water"], "amount": 81}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.576}, {"name": "Thiabendazole", "categories": ["air"], "amount": 0.489}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.0175}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.123}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.358}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.358}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.0682}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 0.968}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water"], "amount": 0.215}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4.98}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.54}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.54}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.719}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 0.655}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.16}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 0.863}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.25}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.25}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.3}, {"name": "Thiram", "categories": ["air"], "amount": 9.15}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.234}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.1}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 26}, {"name": "Thiram", "categories": ["water"], "amount": 26}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.5}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.5}, {"name": "Tin ion", "categories": ["air"], "amount": 17.7}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 17.7}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.0264}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.0444}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.0444}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.0444}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 5.43}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 55.1}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 5.43}, {"name": "Tin ion", "categories": ["water"], "amount": 5.43}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air"], "amount": 0.000331}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000331}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0857}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water"], "amount": 0.00276}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.00787}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.00787}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.333}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.0185}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.22}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 138}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.144}, {"name": "Triallate", "categories": ["air"], "amount": 1}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.517}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 7.74}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 34.8}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 88.7}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.62}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 135}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.0226}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.649}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.162}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.00635}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.319}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 33.7}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 0.000142}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.16e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.31}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2360}, {"name": "Triflumuron", "categories": ["air"], "amount": 2380}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 511}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 2730}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 4260}, {"name": "Triflumuron", "categories": ["water"], "amount": 4260}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.614}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.979}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.61}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.61}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.13}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.0109}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 0.00342}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.00076}, {"name": "Urea", "categories": ["water"], "amount": 0.00076}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.00566}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 218}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 218}, {"name": "Vanadium V", "categories": ["air"], "amount": 154}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 154}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 5.31}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 10}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 10}, {"name": "Vanadium V", "categories": ["soil"], "amount": 10}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 252}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 455}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 252}, {"name": "Vanadium V", "categories": ["water"], "amount": 252}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.0468}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air"], "amount": 0.000165}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000165}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0932}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water"], "amount": 0.00293}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 166}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 166}, {"name": "Zinc II", "categories": ["air"], "amount": 116}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 116}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.41}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.29}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.29}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.29}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 299}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 342}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 299}, {"name": "Zinc II", "categories": ["water"], "amount": 299}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.93}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.297}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0089}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.000559}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000559}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.316}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.00991}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.000307}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.000307}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00403}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.000414}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air"], "amount": 0.0446}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0446}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.12}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water"], "amount": 0.0267}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 5.77}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "ecotoxicity: terrestrial no LT", "terrestrial ecotoxicity potential (TETP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.802}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.76}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.062}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.695}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0416}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.00206}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.00054}, {"name": "2,4-D", "categories": ["water"], "amount": 0.00054}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 9.63e-08}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 4.67e-09}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 33.3}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 9.63e-08}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 69.5}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.0475}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.0475}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0855}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.798}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00627}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.00194}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.0188}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 34.2}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.072}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.39}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.23e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 9.68e-05}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.411}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.647}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.61}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 813}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00233}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000491}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 7.9e-05}, {"name": "Acephate", "categories": ["water"], "amount": 7.9e-05}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0828}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.339}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.42}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.0151}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 125}, {"name": "Acetic acid", "categories": ["air"], "amount": 87}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 87}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.39e-05}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00669}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air"], "amount": 0.0305}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00445}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water"], "amount": 0.0236}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0609}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.305}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 3.7}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15.6}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 495}, {"name": "Acrolein", "categories": ["air"], "amount": 287}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 287}, {"name": "Acrolein", "categories": ["water"], "amount": 423}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.15e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00425}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air"], "amount": 45.7}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 45.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.867}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.13}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 8460}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.3}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 146}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.0173}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 123000}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 63100}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1140}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1180}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 3630}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 58.9}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 8.55}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.42}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.13}, {"name": "Aniline", "categories": ["air"], "amount": 0.621}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.621}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.041}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.622}, {"name": "Aniline", "categories": ["water"], "amount": 0.622}, {"name": "Anthracene", "categories": ["air"], "amount": 34.8}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 28.8}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water"], "amount": 71.1}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 622000}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 622000}, {"name": "Antimony ion", "categories": ["air"], "amount": 431000}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 431000}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.63e-15}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 3.2e-15}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 3.2e-15}, {"name": "Antimony ion", "categories": ["soil"], "amount": 3.2e-15}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 1.68e-14}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 5.79e-15}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1.68e-14}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.68e-14}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 133000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 133000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 91900}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 91900}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.06e-17}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 9.31e-17}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 9.31e-17}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 9.31e-17}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.62e-15}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1.43e-15}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.62e-15}, {"name": "Arsenic ion", "categories": ["water"], "amount": 3.62e-15}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.0174}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 22.7}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14.4}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water"], "amount": 10.1}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0553}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 6.69e-05}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 174}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 5.06e-05}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4680}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.000144}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 0.000137}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.1e-05}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.1e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3270}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3270}, {"name": "Barium II", "categories": ["air"], "amount": 2260}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2260}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 5.57e-17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.19e-16}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.19e-16}, {"name": "Barium II", "categories": ["soil"], "amount": 1.19e-16}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.33e-16}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3e-17}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.33e-16}, {"name": "Barium II", "categories": ["water"], "amount": 1.33e-16}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.72e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.516}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.000631}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.651}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0639}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 346}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 187}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.582}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.091}, {"name": "Benzene", "categories": ["air"], "amount": 0.0871}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0871}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0427}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water"], "amount": 0.0859}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.922}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0129}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0425}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 48.4}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 78.5}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 78.5}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 76.3}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.445}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.445}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.008}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0333}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0189}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.00268}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.0477}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 475000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 475000}, {"name": "Beryllium II", "categories": ["air"], "amount": 329000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 329000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 5.44e-17}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 9.6e-17}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 9.6e-17}, {"name": "Beryllium II", "categories": ["soil"], "amount": 9.6e-17}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 6.62e-15}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 8.32e-15}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 6.62e-15}, {"name": "Beryllium II", "categories": ["water"], "amount": 6.62e-15}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 148000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 96.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 99.6}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 308}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 308}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 9.79}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22500}, {"name": "Bifenthrin", "categories": ["air"], "amount": 13100}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 222}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 227}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 801}, {"name": "Bifenthrin", "categories": ["water"], "amount": 801}, {"name": "Bisphenol A", "categories": ["water"], "amount": 0.0064}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.51e-05}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 7.52e-07}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 0.00957}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.0859}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.0782}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 466}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 42400}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00331}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 0.000666}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 0.000666}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 217}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.9}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.33}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.862}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air"], "amount": 0.035}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.0015}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water"], "amount": 0.0186}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.0321}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0703}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.368}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2900}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 301}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 278000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 278000}, {"name": "Cadmium II", "categories": ["air"], "amount": 192000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 192000}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 3.67e-17}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 7.04e-17}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 7.04e-17}, {"name": "Cadmium II", "categories": ["soil"], "amount": 7.04e-17}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 8.73e-16}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.63e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 8.73e-16}, {"name": "Cadmium II", "categories": ["water"], "amount": 8.73e-16}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9490}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 12.7}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 5.77}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 5.77}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 10300}, {"name": "Carbendazim", "categories": ["air"], "amount": 8320}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.138}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 0.0873}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 0.0417}, {"name": "Carbendazim", "categories": ["water"], "amount": 0.0417}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 372}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.853}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 7.49}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4270}, {"name": "Carboxin", "categories": ["air"], "amount": 2950}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.666}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.461}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 0.242}, {"name": "Carboxin", "categories": ["water"], "amount": 0.242}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00159}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 163000}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 202}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 199}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 123}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 123}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 123}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 265000}, {"name": "Chloramine", "categories": ["air"], "amount": 219000}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 219000}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.74e-07}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water"], "amount": 3.26e-06}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1680}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 8.8e-06}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 6400}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 6400}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.68e-06}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 0.00068}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air"], "amount": 0.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.219}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water"], "amount": 0.462}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 330}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 55.7}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 55.7}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.413}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 6.87}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 22400}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 21800}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 9330}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9770}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 8820}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 8820}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 6180}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1650}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 786}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 251}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.15e-06}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 60600}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 60600}, {"name": "Chromium III", "categories": ["air"], "amount": 41900}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 41900}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.99e-17}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 3.94e-17}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 3.94e-17}, {"name": "Chromium III", "categories": ["soil"], "amount": 3.94e-17}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.54e-16}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.55e-16}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.54e-16}, {"name": "Chromium III", "categories": ["water"], "amount": 1.54e-16}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 205000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 205000}, {"name": "Chromium VI", "categories": ["air"], "amount": 142000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 142000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 7.87e-16}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.56e-15}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.56e-15}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.56e-15}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 5.75e-15}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 2.43e-15}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 5.75e-15}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.75e-15}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 9.78}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 22}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0329}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 59200}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 59200}, {"name": "Cobalt II", "categories": ["air"], "amount": 41000}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 41000}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6.07e-18}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.12e-17}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.12e-17}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.12e-17}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.04e-16}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 5.39e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.04e-16}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.04e-16}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1750000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1750000}, {"name": "Copper ion", "categories": ["air"], "amount": 1210000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1210000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.38e-16}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 2.54e-16}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 2.54e-16}, {"name": "Copper ion", "categories": ["soil"], "amount": 2.54e-16}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.01e-14}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.47e-14}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.01e-14}, {"name": "Copper ion", "categories": ["water"], "amount": 1.01e-14}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air"], "amount": 0.0432}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0432}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.0138}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water"], "amount": 0.0466}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.341}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.000203}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000646}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.73e-05}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.27e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1740}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.12e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95800}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 917}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 2830}, {"name": "Cypermethrin", "categories": ["water"], "amount": 2830}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.868}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.04e-05}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 77}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00507}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Decanoic acid", "categories": ["water"], "amount": 0.0114}, {"name": "Deltamethrin", "categories": ["air"], "amount": 14700}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1380}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3700}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.14e-12}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.754}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 2.87}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.00301}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.647}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.32e-05}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.32e-05}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 36.9}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 114}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 282}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.000695}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.55e-06}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.55e-06}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1060}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 32.5}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 609}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.923}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Diethanolamine", "categories": ["water"], "amount": 5.94e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 3.49}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00415}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00415}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 242}, {"name": "Diethylamine", "categories": ["air"], "amount": 186}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 186}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.037}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.0767}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.968}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.968}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 7.44e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.000149}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 20400}, {"name": "Difenoconazole", "categories": ["air"], "amount": 16600}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 0.0715}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 0.0654}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0503}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.0503}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 489000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1240}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1040}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 692}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 692}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.741}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.0684}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.302}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 8.15}, {"name": "Dimethoate", "categories": ["air"], "amount": 2350}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 7.52}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.232}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.155}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air"], "amount": 888}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 888}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.337}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 453000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 453000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 393000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 393000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 14200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15300}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15300}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 15300}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 53000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 104000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 53000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 53000}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00217}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 424}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.33e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 6.6e-07}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 6.6e-07}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.114}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 28600}, {"name": "Diuron", "categories": ["air"], "amount": 20400}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.59}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.78}, {"name": "Diuron", "categories": ["water"], "amount": 2.55}, {"name": "Dodecanol", "categories": ["water"], "amount": 7.62}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.215}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 6.87e-05}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.18e-08}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.47}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 468}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 16}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 6710}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 148}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 58.9}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 58.9}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11300}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.444}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.444}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.111}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.194}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.929}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.929}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.184}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.387}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 13.1}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 18}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air"], "amount": 0.072}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0262}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 276}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 5.61e-06}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.53e-11}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.53e-11}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.27}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 14.4}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1520}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.406}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 214}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 214}, {"name": "Ethylamine", "categories": ["air"], "amount": 168}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 168}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0309}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.064}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.000108}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.000225}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.455}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.57}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.13e-05}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 6.64e-07}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.177}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 638}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.483}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 8.99}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2710}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 729}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 26.8}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 26.8}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 206000}, {"name": "Fluazinam", "categories": ["air"], "amount": 145000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1240}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1140}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 900}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 900}, {"name": "Fluazinam", "categories": ["water"], "amount": 900}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12600}, {"name": "Fludioxonil", "categories": ["air"], "amount": 8730}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 1.15}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.45}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.45}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 70900}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 389}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.04}, {"name": "Fluoranthene", "categories": ["air"], "amount": 98.9}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 80.1}, {"name": "Fluorene", "categories": ["air"], "amount": 1.82}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.08}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 190}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 2.06e-06}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 25800}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 142}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air"], "amount": 10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.0506}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.889}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air"], "amount": 66.8}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 66.8}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 4.58e-06}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water"], "amount": 0.000909}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 7.53e-09}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0062}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0939}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00607}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00607}, {"name": "Furan", "categories": ["air"], "amount": 0.00245}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00245}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 573}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.26e-10}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.13e-05}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.27e-11}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2440}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1980}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 0.00799}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 0.00799}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air"], "amount": 2.07e-05}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.07e-05}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 256}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air"], "amount": 0.000196}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000196}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.37e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water"], "amount": 0.000194}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.00371}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.379}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 602}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 367}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water"], "amount": 1360}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00795}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0955}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.03}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.03}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0143}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0387}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.178}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000785}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4320}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 5.99e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.17e-10}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Imidacloprid", "categories": ["water"], "amount": 1.98e-10}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 7710}, {"name": "Indoxacarb", "categories": ["air"], "amount": 6020}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 9.87}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.0103}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.302}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-05}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air"], "amount": 88}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 88}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.216}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.2}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 20.2}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 312000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5510}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5640}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 18700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 18700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 18700}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.866}, {"name": "Lauric acid", "categories": ["water"], "amount": 0.00154}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 62400}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 62400}, {"name": "Lead II", "categories": ["air"], "amount": 43200}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 43200}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.23e-19}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.03e-19}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.03e-19}, {"name": "Lead II", "categories": ["soil"], "amount": 2.03e-19}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2.59e-17}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 8.29e-17}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2.59e-17}, {"name": "Lead II", "categories": ["water"], "amount": 2.59e-17}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.93e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5100}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.04e-07}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 626}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 6.59e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.1e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.1e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.000589}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.000883}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.000883}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 43}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.18e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.05e-05}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 44400}, {"name": "Mancozeb", "categories": ["air"], "amount": 36600}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.000845}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.59e-05}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 9.45e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 9.45e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.000868}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0677}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.000731}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.84e-13}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020000}, {"name": "Mercury II", "categories": ["air"], "amount": 1380000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1380000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 5.53e-18}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 7.75e-18}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 7.75e-18}, {"name": "Mercury II", "categories": ["soil"], "amount": 7.75e-18}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2.09e-15}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.58e-15}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2.09e-15}, {"name": "Mercury II", "categories": ["water"], "amount": 2.09e-15}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.27}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 702}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 455}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 0.82}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 0.347}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 0.347}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 45.5}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.000275}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.000191}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.02}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.358}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0492}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0998}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.0416}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.0416}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.806}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.41}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Methanol", "categories": ["air"], "amount": 0.122}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.122}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.00305}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water"], "amount": 0.0422}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 96.2}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 32500}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.422}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 0.206}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water"], "amount": 0.0678}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 5.42}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 15800}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 12800}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 0.0597}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 0.0575}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 0.0517}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 0.0517}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.4}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.4}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.303}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.2}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.23}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.55}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.0199}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air"], "amount": 55.8}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 55.8}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 566}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 40.4}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 397}, {"name": "Methylamine", "categories": ["air"], "amount": 305}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 305}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water"], "amount": 0.216}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 5890}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 18.4}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 15.7}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water"], "amount": 11.3}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 40000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.21}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 0.856}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090000}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 899000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 6.48e-05}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.81e-05}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.81e-05}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.85}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2110}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2110}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1460}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1460}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2.97e-18}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.89e-18}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.89e-18}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 5.89e-18}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.22e-17}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.88e-17}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.22e-17}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.22e-17}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.014}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00603}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 27.6}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 2.3}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 801}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.584}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.967}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.165}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 606}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 271000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 271000}, {"name": "Nickel II", "categories": ["air"], "amount": 187000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 7.13e-17}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.35e-16}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.35e-16}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.35e-16}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.91e-15}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.77e-15}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.91e-15}, {"name": "Nickel II", "categories": ["water"], "amount": 2.91e-15}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 645}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 531}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 7.28e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 3.32e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.1e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.1e-08}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.1}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.8}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 176}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.00469}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 21.7}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 5.82e-05}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00085}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.133}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 9.68}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 24.9}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 38.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.35}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.34}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.4}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 4.69e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 276}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.8}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 6.44e-05}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 490}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 69.2}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 69.2}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air"], "amount": 0.0207}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.0207}, {"name": "Pentane", "categories": ["water"], "amount": 0.0196}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11100}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 401}, {"name": "Permethrin", "categories": ["water"], "amount": 1160}, {"name": "Phenanthrene", "categories": ["air"], "amount": 31.3}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 37}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49}, {"name": "Phenol", "categories": ["air"], "amount": 1.18}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.00553}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water"], "amount": 0.0981}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 13}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 13}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 5980}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 5980}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.116}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.136}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 47.2}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 272}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4160}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.187}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.84}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.603}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 10.7}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.4}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 7.34}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00153}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.00909}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.000503}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 77.9}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.378}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 50.4}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 77.3}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 77.3}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 63.8}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 54.6}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 6.77}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3440}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 37.6}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 885}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 3.94e-05}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 4.05e-06}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06}, {"name": "Propanal", "categories": ["air"], "amount": 0.622}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.622}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.881}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.21}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.881}, {"name": "Propanal", "categories": ["water"], "amount": 0.881}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air"], "amount": 0.0504}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0504}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.003}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water"], "amount": 0.0302}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.00379}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.15}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.536}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.237}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water"], "amount": 0.487}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.0204}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air"], "amount": 51.4}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 51.4}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0154}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water"], "amount": 0.032}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.00326}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.41}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.74}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Pyrene", "categories": ["air"], "amount": 121}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 140}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 232}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.000429}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 119}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 667}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 211}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 267}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 932}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 932}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.000183}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 26.7}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.000889}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 89800}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 89800}, {"name": "Selenium IV", "categories": ["air"], "amount": 62100}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 62100}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 3.35e-17}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 6.4e-17}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 6.4e-17}, {"name": "Selenium IV", "categories": ["soil"], "amount": 6.4e-17}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 8.79e-16}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 8.28e-16}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 8.79e-16}, {"name": "Selenium IV", "categories": ["water"], "amount": 8.79e-16}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0594}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.0666}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9630000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9630000}, {"name": "Silver I", "categories": ["air"], "amount": 6670000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 6670000}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 4.63e-16}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 8.63e-16}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 8.63e-16}, {"name": "Silver I", "categories": ["soil"], "amount": 8.63e-16}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 2.55e-14}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 5.22e-14}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 2.55e-14}, {"name": "Silver I", "categories": ["water"], "amount": 2.55e-14}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Simazine", "categories": ["air"], "amount": 9400}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 9.4}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.05}, {"name": "Simazine", "categories": ["water"], "amount": 3.05}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air"], "amount": 15.4}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 15.4}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.32e-21}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water"], "amount": 2.8e-21}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 77.2}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air"], "amount": 0.00511}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00418}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water"], "amount": 0.0139}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 0.00791}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1250}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1490}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1490}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.000647}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.72e-10}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.72e-10}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.61}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2820}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.0907}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.0888}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water"], "amount": 0.0838}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.97}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 99300}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 75900}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 7.63}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 4.7}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.13}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.13}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 178000}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 135000}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.95}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.71}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 7.87}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.00589}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 286}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 47.8}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.313}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.568}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84100}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 84100}, {"name": "Thallium I", "categories": ["air"], "amount": 58200}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 58200}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.85e-16}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1.9e-15}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1.9e-15}, {"name": "Thallium I", "categories": ["soil"], "amount": 1.9e-15}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.24e-15}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 6.41e-16}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.24e-15}, {"name": "Thallium I", "categories": ["water"], "amount": 2.24e-15}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1090}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.00387}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.00354}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.00279}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.00279}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.000621}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 49}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 0.000115}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water"], "amount": 0.0213}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5860}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 977}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 732}, {"name": "Thiodicarb", "categories": ["water"], "amount": 732}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4360}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2770}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 7.32}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.23}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 964}, {"name": "Thiram", "categories": ["air"], "amount": 564}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.303}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.161}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Thiram", "categories": ["water"], "amount": 1.83}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80200}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 80200}, {"name": "Tin ion", "categories": ["air"], "amount": 55500}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 55500}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1.37e-18}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 2.43e-16}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 4.57e-16}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2.43e-16}, {"name": "Tin ion", "categories": ["water"], "amount": 2.43e-16}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air"], "amount": 0.0281}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0281}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.00928}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water"], "amount": 0.0301}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.248}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.248}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.116}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.247}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 871}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 18.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.00155}, {"name": "Triallate", "categories": ["air"], "amount": 47}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 70.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 0.0748}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 152000}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.0075}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 0.0036}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.24}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.00144}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0529}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1.77}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 904}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 9.6e-07}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 1.8e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 25.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6730000}, {"name": "Triflumuron", "categories": ["air"], "amount": 4840000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 84000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 58600}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 11400}, {"name": "Triflumuron", "categories": ["water"], "amount": 11400}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 31.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 31.8}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000264}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.00987}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 6.86e-07}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water"], "amount": 1.29e-05}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.000198}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 271000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 271000}, {"name": "Vanadium V", "categories": ["air"], "amount": 187000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 2.86e-16}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 5.39e-16}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 5.39e-16}, {"name": "Vanadium V", "categories": ["soil"], "amount": 5.39e-16}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.18e-14}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.4e-15}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.18e-14}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.18e-14}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air"], "amount": 0.0139}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0139}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.00551}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water"], "amount": 0.0183}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95800}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 196000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 196000}, {"name": "Zinc II", "categories": ["air"], "amount": 136000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 136000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.21e-16}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.15e-16}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.15e-16}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.15e-16}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.29e-14}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.32e-15}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.29e-14}, {"name": "Zinc II", "categories": ["water"], "amount": 1.29e-14}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 74.4}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.00806}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0267}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.0187}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.062}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.0351}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.01}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.034}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air"], "amount": 535}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 535}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.405}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water"], "amount": 0.84}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 18.7}]}, {"unit": "kg oil-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "energy resources: non-renewable, fossil no LT", "fossil fuel potential (FFP) no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.22}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.42}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.22}]}, {"unit": "kg P-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "eutrophication: freshwater no LT", "freshwater eutrophication potential (FEP) no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "eutrophication: marine no LT", "marine eutrophication potential (MEP) no LT"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.776}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water"], "amount": 0.23}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water"], "amount": 0.0671}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.297}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.0902}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.297}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "human toxicity: carcinogenic no LT", "human toxicity potential (HTPc) no LT"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00065}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.065}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.081}, {"name": "Acephate", "categories": ["water"], "amount": 0.081}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.00325}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.0313}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.434}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.4}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 49.8}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 9.72}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.72}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.216}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1.45}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 41.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 41.4}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air"], "amount": 0.0322}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.0322}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.7e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water"], "amount": 0.0242}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Arsenic ion", "categories": ["air"], "amount": 852}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 852}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 31.4}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 19.1}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 19.1}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 19.1}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 345}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 29.1}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 345}, {"name": "Arsenic ion", "categories": ["water"], "amount": 345}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.27}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 0.735}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.54}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.54}, {"name": "Atrazine", "categories": ["water"], "amount": 1.54}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0765}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0765}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0107}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.33}, {"name": "Benzene", "categories": ["air"], "amount": 1.44}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.158}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.354}, {"name": "Benzene", "categories": ["water"], "amount": 0.354}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.0375}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.145}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0284}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0961}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 93.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 93.8}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1150}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 36.5}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 36.5}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Beryllium II", "categories": ["air"], "amount": 265}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 265}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.749}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.0621}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.0621}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.0621}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 0.121}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 0.0166}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 0.121}, {"name": "Beryllium II", "categories": ["water"], "amount": 0.121}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air"], "amount": 1.33}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.33}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63}, {"name": "Cadmium II", "categories": ["air"], "amount": 232}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 232}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 110}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.14}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.14}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.14}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.38}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.425}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.38}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.38}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.0216}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.84}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 3.27}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 3.27}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.293}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.29}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air"], "amount": 1.26}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.26}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.369}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water"], "amount": 0.862}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 0.0799}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.0212}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.0361}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 0.097}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 0.097}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25700}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 25700}, {"name": "Chromium VI", "categories": ["air"], "amount": 19900}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 19900}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 4390}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 5720}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 5720}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5720}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 7440}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 660}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 7440}, {"name": "Chromium VI", "categories": ["water"], "amount": 7440}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 241}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0637}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 80.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 39.9}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 7.95}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 27.1}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.0566}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.0566}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.24e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.0109}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 102000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 102000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 92300000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 92300000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 9230000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 7310000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 7310000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 7310000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 226000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 73200000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 226000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 226000000}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 4}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0676}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0676}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 5.07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.244}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.244}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.652}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.223}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.223}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.78}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 13.4}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 3.2e-05}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0012}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.423}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.93}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.3}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.8}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 3.36}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 12.5}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00626}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.137}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00064}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6}, {"name": "Furan", "categories": ["air"], "amount": 95}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 95}, {"name": "Furfural", "categories": ["air"], "amount": 0.29}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air"], "amount": 0.00483}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.00483}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water"], "amount": 0.00265}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.129}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water"], "amount": 10.2}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.172}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.172}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0234}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0553}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.27}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.27}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air"], "amount": 0.128}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.128}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.9}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.9}, {"name": "Lead II", "categories": ["air"], "amount": 18.6}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 18.6}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.949}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0847}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0847}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0847}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.318}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.144}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.318}, {"name": "Lead II", "categories": ["water"], "amount": 0.318}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 12.5}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.222}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.1}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.1}, {"name": "Mercury II", "categories": ["air"], "amount": 69.6}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 69.6}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 29.4}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.21}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.21}, {"name": "Mercury II", "categories": ["soil"], "amount": 1.21}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 139}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 57.4}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 139}, {"name": "Mercury II", "categories": ["water"], "amount": 139}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 12.3}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 12.3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0881}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 255}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 255}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 135}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 236}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.88}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.147}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.147}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.0171}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.0549}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.4}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.903}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 502}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 502}, {"name": "Nickel II", "categories": ["air"], "amount": 373}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 373}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 47.5}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 12.3}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 12.3}, {"name": "Nickel II", "categories": ["soil"], "amount": 12.3}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 22.8}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.49}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 22.8}, {"name": "Nickel II", "categories": ["water"], "amount": 22.8}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.0724}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.849}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 33.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 33.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.0684}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.895}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.93}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.93}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.579}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4.64}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.000638}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.0364}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00525}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.486}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.307}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 114}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 114}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 5120}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 3.53}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0588}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.365}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.968}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.0951}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air"], "amount": 1.28}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.28}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00976}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Styrene", "categories": ["water"], "amount": 0.281}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.523}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.13}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air"], "amount": 0.0134}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0134}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.000339}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water"], "amount": 0.00226}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0111}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0371}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0715}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.407}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.8}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air"], "amount": 0.0204}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.000267}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water"], "amount": 0.00229}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 0.241}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.313}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.313}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00964}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.0338}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "human toxicity: non-carcinogenic no LT", "human toxicity potential (HTPnc) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.414}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.9}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.1}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 3.81}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 5.24}, {"name": "2,4-D", "categories": ["water"], "amount": 5.24}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.105}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 1.88}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 1.88}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0377}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00147}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.9e-06}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00878}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.0297}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.19}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 19300}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 16500}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 620}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 773}, {"name": "Acephate", "categories": ["water"], "amount": 773}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.056}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.545}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Acetone", "categories": ["air"], "amount": 0.0878}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0878}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water"], "amount": 0.0132}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0204}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.131}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 309}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 309}, {"name": "Acrolein", "categories": ["air"], "amount": 9490}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 9490}, {"name": "Acrolein", "categories": ["water"], "amount": 294}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.74e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water"], "amount": 0.0752}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air"], "amount": 707}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 707}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.85}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 9.16}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.36}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.36}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 36}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 322}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.48}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.1}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 30.4}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.835}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 0.808}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 25.6}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 6.95}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.65}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.361}, {"name": "Aniline", "categories": ["air"], "amount": 5.32}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 5.32}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.00623}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 4.09}, {"name": "Aniline", "categories": ["water"], "amount": 4.09}, {"name": "Anthracene", "categories": ["air"], "amount": 0.0511}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water"], "amount": 0.723}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5090}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5090}, {"name": "Antimony ion", "categories": ["air"], "amount": 3860}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3860}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 195}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 657}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 657}, {"name": "Antimony ion", "categories": ["soil"], "amount": 657}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 805}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 50.7}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 805}, {"name": "Antimony ion", "categories": ["water"], "amount": 805}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 141000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 141000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 106000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 106000}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 6550}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 4850}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 4850}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 4850}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 87400}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 7370}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 87400}, {"name": "Arsenic ion", "categories": ["water"], "amount": 87400}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 6.7}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.9}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.92}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water"], "amount": 6.11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1060}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1060}, {"name": "Barium II", "categories": ["air"], "amount": 842}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 842}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 78.5}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 452}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 452}, {"name": "Barium II", "categories": ["soil"], "amount": 452}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 184}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 7.24}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 184}, {"name": "Barium II", "categories": ["water"], "amount": 184}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0841}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0331}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.3}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.331}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 2.75}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 2.75}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0475}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28}, {"name": "Benzene", "categories": ["air"], "amount": 1.22}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.301}, {"name": "Benzene", "categories": ["water"], "amount": 0.301}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.505}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.00398}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.107}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1340}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 126}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 126}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 500}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27500}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27500}, {"name": "Beryllium II", "categories": ["air"], "amount": 641000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 641000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 25.7}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.29}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.29}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.29}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.46}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 0.613}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.46}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.46}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 372}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.994}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.21}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 72.7}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 72.7}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 101}, {"name": "Bifenthrin", "categories": ["air"], "amount": 65}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 4.23}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 15.9}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 1970}, {"name": "Bifenthrin", "categories": ["water"], "amount": 1970}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.77}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.96}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.5}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.26}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.6}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.6}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.79}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air"], "amount": 6.67}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.67}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air"], "amount": 0.431}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.431}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.000981}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water"], "amount": 0.0541}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000}, {"name": "Cadmium II", "categories": ["air"], "amount": 35800}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 35800}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1050}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1050}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1050}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1270}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 390}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1270}, {"name": "Cadmium II", "categories": ["water"], "amount": 1270}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.779}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.9}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.16}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.3}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.3}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.5}, {"name": "Carbendazim", "categories": ["air"], "amount": 29.5}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.05}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Carbendazim", "categories": ["water"], "amount": 1.83}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 140}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 823}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 823}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 215}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 667}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 14}, {"name": "Carboxin", "categories": ["air"], "amount": 12.3}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.249}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.855}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Carboxin", "categories": ["water"], "amount": 1.61}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 3.52e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0152}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air"], "amount": 12.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.73e-05}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water"], "amount": 0.619}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 921}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 4.18}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.861}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water"], "amount": 9.89}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air"], "amount": 21.8}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.96}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water"], "amount": 12.8}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 8.14}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.72}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 10}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 10}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 79.8}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 338}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 88.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.748}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.319}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.319}, {"name": "Chromium III", "categories": ["air"], "amount": 0.238}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.238}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.00785}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.0416}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.0416}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.0416}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 0.00873}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 0.00304}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.00873}, {"name": "Chromium III", "categories": ["water"], "amount": 0.00873}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 430}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 430}, {"name": "Chromium VI", "categories": ["air"], "amount": 5680}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 5680}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 14.2}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 44}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 44}, {"name": "Chromium VI", "categories": ["soil"], "amount": 44}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 57.4}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 5.08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 57.4}, {"name": "Chromium VI", "categories": ["water"], "amount": 57.4}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.3}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.3}, {"name": "Copper ion", "categories": ["air"], "amount": 31}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 31}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 18.6}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.531}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.531}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.531}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.86}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 0.717}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.86}, {"name": "Copper ion", "categories": ["water"], "amount": 2.86}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air"], "amount": 0.18}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00479}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.066}, {"name": "Cumene", "categories": ["water"], "amount": 0.066}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0041}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0438}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.48}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.935}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 0.768}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 21.6}, {"name": "Cypermethrin", "categories": ["water"], "amount": 21.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.04}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 31.3}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 253}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 38}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.2}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4.13}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.59}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.59}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 86.8}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 865}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 42.1}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0958}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0958}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.7}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.88}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 17.3}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 41.9}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 41.9}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 66.2}, {"name": "Dimethoate", "categories": ["air"], "amount": 20.3}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.0765}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 14.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.702}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 255}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 30.3}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 68.3}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 68.3}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 46.2}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.554}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 88.7}, {"name": "Diuron", "categories": ["air"], "amount": 78.7}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 2.03}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.36}, {"name": "Diuron", "categories": ["water"], "amount": 12.1}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.00919}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.61}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 28.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0826}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.321}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.163}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.281}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.92}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.92}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5.95}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.95}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 361}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 553}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 67.6}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 5.47}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 5.47}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 266}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0843}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0843}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00287}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0146}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00143}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 0.244}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2.73}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 22300}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.96}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.31}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.34}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Fipronil", "categories": ["air"], "amount": 1520}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 615}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 1570}, {"name": "Fipronil", "categories": ["water"], "amount": 1570}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.788}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 20.7}, {"name": "Fluorene", "categories": ["air"], "amount": 0.692}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 1.3}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 6.78}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00311}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.447}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00128}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.972}, {"name": "Furan", "categories": ["air"], "amount": 35.5}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 49.2}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 3.53}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.768}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.2}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "Hexane", "categories": ["air"], "amount": 2.2}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.2}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0475}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Hexane", "categories": ["water"], "amount": 1.23}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.504}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 5480}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00218}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0273}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0332}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.104}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 40.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 40.7}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.67}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 0.197}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 0.253}, {"name": "Imazethapyr", "categories": ["water"], "amount": 0.253}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air"], "amount": 57.1}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 2.07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.73}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.73}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 0.113}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29800}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 29800}, {"name": "Lead II", "categories": ["air"], "amount": 22300}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 22300}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1050}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 102}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 102}, {"name": "Lead II", "categories": ["soil"], "amount": 102}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 382}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 173}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 382}, {"name": "Lead II", "categories": ["water"], "amount": 382}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 495}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.197}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 252}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 9.59}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 21.2}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 21.2}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.086}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.22}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.22}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.0736}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.74}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0272}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.2}, {"name": "Mancozeb", "categories": ["air"], "amount": 47.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2.75}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 1.77}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2.43}, {"name": "Mancozeb", "categories": ["water"], "amount": 2.43}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.00733}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 29000}, {"name": "Mercury II", "categories": ["air"], "amount": 24800}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 24800}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 11700}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 489}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 489}, {"name": "Mercury II", "categories": ["soil"], "amount": 489}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 56200}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 23300}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 56200}, {"name": "Mercury II", "categories": ["water"], "amount": 56200}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.53}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 75}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1530}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.16}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 366}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 366}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 369}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 369}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 9.31}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 9.31}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2930}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2930}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1550}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2710}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32.9}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.9}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 33.3}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 33.3}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Methanol", "categories": ["air"], "amount": 0.156}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.156}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000666}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water"], "amount": 0.0194}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.22}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 456}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.72}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 9.35}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water"], "amount": 15.4}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00853}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 89.8}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.11}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.342}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.43}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water"], "amount": 3.37}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.7}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 2.42}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.9}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 12.7}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 0.695}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 1.18}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 1.18}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 77.5}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 9.48}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3550}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 3550}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2630}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2630}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1320}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 419}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 419}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 419}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 85.5}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 9.66}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 85.5}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 85.5}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.00213}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.00684}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 213}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.514}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Naphthalene", "categories": ["air"], "amount": 11}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.03}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.206}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96.3}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 96.3}, {"name": "Nickel II", "categories": ["air"], "amount": 71.5}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 71.5}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 7.3}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.37}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.37}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.37}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 4.4}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 0.673}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 4.4}, {"name": "Nickel II", "categories": ["water"], "amount": 4.4}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.2}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.2}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0148}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 0.0138}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.172}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.05}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.6}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0604}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 8.97}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.71}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.162}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 2.52}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Permethrin", "categories": ["water"], "amount": 10.8}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "Phenol", "categories": ["air"], "amount": 0.493}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.493}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.000864}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.315}, {"name": "Phenol", "categories": ["water"], "amount": 0.315}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 734}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 734}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.32}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 34.6}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 17.8}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 602}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00317}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.181}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.00406}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.251}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 23.2}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 9.61}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.428}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 6.83}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 22.6}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.399}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 27.9}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.881}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.385}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.477}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1.87}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.4}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 7.72}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water"], "amount": 36.6}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 3.2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 2.74}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water"], "amount": 14.8}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 7.19}, {"name": "Pyrene", "categories": ["air"], "amount": 0.624}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 11.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.342}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 0.573}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 31.1}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 31.1}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 14.6}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.531}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.608}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.492}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 10.9}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 68100}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 68100}, {"name": "Silver I", "categories": ["air"], "amount": 48800}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 48800}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 45500}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 756}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 756}, {"name": "Silver I", "categories": ["soil"], "amount": 756}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 689}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 201}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 689}, {"name": "Silver I", "categories": ["water"], "amount": 689}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 418}, {"name": "Simazine", "categories": ["air"], "amount": 344}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 17.3}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 19.3}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 33.5}, {"name": "Simazine", "categories": ["water"], "amount": 33.5}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air"], "amount": 0.855}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.855}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.0046}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water"], "amount": 0.0211}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 32}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 5.51}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water"], "amount": 17.1}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 24.4}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.47}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.52}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1860}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1560}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 62.5}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 280}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 959}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 0.0552}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 342}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 6.15}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 11.9}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Thallium I", "categories": ["air"], "amount": 7300}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 7300}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2480}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 6950}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 6950}, {"name": "Thallium I", "categories": ["soil"], "amount": 6950}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 5950}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 379}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 5950}, {"name": "Thallium I", "categories": ["water"], "amount": 5950}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air"], "amount": 26.8}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.72}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.72}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 7.5}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.67}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 4.65}, {"name": "Thiodicarb", "categories": ["water"], "amount": 4.65}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.3}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 15.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.905}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.33}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.91}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.91}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23}, {"name": "Thiram", "categories": ["air"], "amount": 11.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.0675}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.208}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 4.91}, {"name": "Thiram", "categories": ["water"], "amount": 4.91}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067}, {"name": "Toluene", "categories": ["air"], "amount": 0.858}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.858}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0184}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water"], "amount": 0.0714}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.318}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.14}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Triallate", "categories": ["air"], "amount": 9.42}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.76}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 72.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 44.1}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 144}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.78}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 17.9}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 15.8}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.16}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.7}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 128}, {"name": "Trifluralin", "categories": ["water"], "amount": 128}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.381}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 929}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 929}, {"name": "Vanadium V", "categories": ["air"], "amount": 703}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 703}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 66}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 58.7}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 58.7}, {"name": "Vanadium V", "categories": ["soil"], "amount": 58.7}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 605}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 37.6}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 605}, {"name": "Vanadium V", "categories": ["water"], "amount": 605}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.68}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air"], "amount": 1.58}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0182}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water"], "amount": 0.0692}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11800}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 11800}, {"name": "Zinc II", "categories": ["air"], "amount": 8250}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 8250}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 37700}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 205}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 205}, {"name": "Zinc II", "categories": ["soil"], "amount": 205}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 8240}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 338}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 8240}, {"name": "Zinc II", "categories": ["water"], "amount": 8240}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5.95}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00619}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.027}]}, {"unit": "kg Co-60-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "ionising radiation no LT", "ionising radiation potential (IRP) no LT"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 3.14e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 0.000438}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 3.14e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 3.14e-05}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 54.5}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 0.00345}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 0.0482}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 0.00345}, {"name": "Americium-241", "categories": ["water"], "amount": 0.00345}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0491}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.000891}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00473}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water"], "amount": 8.64}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00582}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 10}, {"name": "Caesium-137", "categories": ["water"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["air"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.00609}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0273}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.00609}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.00609}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00245}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.64}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 4.05e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 4.12e-05}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["air"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 0.287}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 0.287}, {"name": "Iodine-129", "categories": ["water"], "amount": 0.287}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.03}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 8.48e-06}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0191}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.88e-06}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00145}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.000236}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water"], "amount": 0.03}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.0245}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000455}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.0245}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.0245}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 7.91e-05}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 7.91e-05}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water"], "amount": 0.0309}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 8.55e-06}]}, {"unit": "m2*a crop-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "land use no LT", "agricultural land occupation (LOP) no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -36.75}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}]}, {"unit": "kg Cu-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "material resources: metals/minerals no LT", "surplus ore potential (SOP) no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.169}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.169}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.572}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.131}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0228}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 76.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.32}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.32}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.0951}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0951}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.305}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0108}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0104}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 6.57}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.57}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0488}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.0154}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 83.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 83.8}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 317}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.192}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.00283}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 96.7}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 103}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 103}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 7.09}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 7.09}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.79}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.79}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.0823}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0823}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 8.96}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 5.2}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00916}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00576}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 528}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 528}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 13.3}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.428}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0875}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.0378}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 52.9}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 52.9}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 18.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 18.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 1200}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 5.03}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.03}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 7.78}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 25.2}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 3.97}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.153}]}, {"unit": "kg CFC-11-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "ozone depletion no LT", "ozone depletion potential (ODPinfinite) no LT"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.011}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.011}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.178}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.664}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.664}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.134}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.134}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.27}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.067}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.067}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.011}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.061}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.061}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.061}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.061}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.00726}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.00726}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.734}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.734}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.78}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.78}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 8.78}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 8.78}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 14.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 14.1}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.045}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.045}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.587}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.587}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.022}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.895}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.895}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg PM2.5-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "particulate matter formation no LT", "particulate matter formation potential (PMFP) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.17}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.11}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.29}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.23}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "photochemical oxidant formation: human health no LT", "photochemical oxidant formation potential: humans (HOFP) no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.345}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.131}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.131}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.149}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0653}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.199}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0326}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0326}, {"name": "Acetone", "categories": ["air"], "amount": 0.0218}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Acrolein", "categories": ["air"], "amount": 0.196}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.174}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.0689}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.0689}, {"name": "Benzene", "categories": ["air"], "amount": 0.0363}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0363}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.167}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Butadiene", "categories": ["air"], "amount": 0.323}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.112}, {"name": "Butane", "categories": ["air"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.112}, {"name": "Butanol", "categories": ["air"], "amount": 0.189}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.228}, {"name": "Butene", "categories": ["air"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.228}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.0943}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0943}, {"name": "Cumene", "categories": ["air"], "amount": 0.116}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.102}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.167}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Ethane", "categories": ["air"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00363}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00363}, {"name": "Ethanol", "categories": ["air"], "amount": 0.123}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.123}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0689}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.363}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.134}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.134}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.167}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0109}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Heptane", "categories": ["air"], "amount": 0.127}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.127}, {"name": "Hexane", "categories": ["air"], "amount": 0.145}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.163}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.163}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0266}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0266}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Isoprene", "categories": ["air"], "amount": 0.413}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.413}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0109}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00363}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Methanol", "categories": ["air"], "amount": 0.0471}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.116}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0399}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0399}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Phenol", "categories": ["air"], "amount": -0.0181}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0181}, {"name": "Propanal", "categories": ["air"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.261}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0508}, {"name": "Propane", "categories": ["air"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0508}, {"name": "Propanol", "categories": ["air"], "amount": 0.174}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.424}, {"name": "Propene", "categories": ["air"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.424}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0471}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Styrene", "categories": ["air"], "amount": 0.0181}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0181}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00363}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Toluene", "categories": ["air"], "amount": 0.16}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.105}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.312}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.312}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.283}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.283}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "photochemical oxidant formation: terrestrial ecosystems no LT", "photochemical oxidant formation potential: ecosystems (EOFP) no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.555}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.21}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.21}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.479}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.105}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.304}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.321}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0526}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0526}, {"name": "Acetone", "categories": ["air"], "amount": 0.0351}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "Acrolein", "categories": ["air"], "amount": 0.316}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.316}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.281}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.111}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.111}, {"name": "Benzene", "categories": ["air"], "amount": 0.0585}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0585}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.269}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Butadiene", "categories": ["air"], "amount": 0.52}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.52}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.181}, {"name": "Butane", "categories": ["air"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.181}, {"name": "Butanol", "categories": ["air"], "amount": 0.304}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Butene", "categories": ["air"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.152}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Cumene", "categories": ["air"], "amount": 0.187}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.164}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.269}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.0468}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00585}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00585}, {"name": "Ethanol", "categories": ["air"], "amount": 0.199}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.111}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.111}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.585}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.216}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.216}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.269}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0175}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Heptane", "categories": ["air"], "amount": 0.205}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.205}, {"name": "Hexane", "categories": ["air"], "amount": 0.234}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.263}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.263}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0429}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Isoprene", "categories": ["air"], "amount": 0.666}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.666}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0175}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00585}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Methanol", "categories": ["air"], "amount": 0.076}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.187}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0643}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0643}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Phenol", "categories": ["air"], "amount": -0.0292}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0292}, {"name": "Propanal", "categories": ["air"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.421}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0818}, {"name": "Propane", "categories": ["air"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0818}, {"name": "Propanol", "categories": ["air"], "amount": 0.281}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.684}, {"name": "Propene", "categories": ["air"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.684}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.076}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Styrene", "categories": ["air"], "amount": 0.0292}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0292}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00585}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Toluene", "categories": ["air"], "amount": 0.257}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.17}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.503}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.503}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.456}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.456}]}, {"unit": "cubic meter", "name": ["ReCiPe 2016 v1.03, midpoint (H) no LT", "water use no LT", "water consumption potential (WCP) no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Water", "categories": ["air"], "amount": 1}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg SO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "acidification: terrestrial", "terrestrial acidification potential (TAP)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.552}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.36}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}]}, {"unit": "kg CO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "climate change", "global warming potential (GWP1000)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 193}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 193}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 938}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9620}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2350}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 96}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 635}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8520}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3690}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 13.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 13.8}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7150}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2110}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15500}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 179}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 817}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 36}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 36}, {"name": "Methane, fossil", "categories": ["air"], "amount": 36}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 36}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 34}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 34}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 34}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 15}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 34}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2020}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17900}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9480}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26100}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "ecotoxicity: freshwater", "freshwater ecotoxicity potential (FETP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.000522}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.836}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.11e-05}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.0411}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.203}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.91}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 2.62}, {"name": "2,4-D", "categories": ["water"], "amount": 2.62}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0732}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.154}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0732}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.182}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.154}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0644}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.27}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.27}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0248}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.0144}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.98e-06}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.00477}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 3.7}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 1.83e-05}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.0331}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 4.87e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.0653}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.159}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.00199}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water"], "amount": 14.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0663}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.714}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.89}, {"name": "Acephate", "categories": ["water"], "amount": 0.89}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.96e-05}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.144}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000246}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.000411}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.95e-09}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.169}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air"], "amount": 4.32e-05}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.32e-05}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 6.06e-06}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water"], "amount": 0.00217}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.000193}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.000193}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00874}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00874}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.000901}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 0.282}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 0.282}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 5.09}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air"], "amount": 0.084}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.084}, {"name": "Acrolein", "categories": ["water"], "amount": 69.4}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.95e-09}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water"], "amount": 0.132}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0236}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0236}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.000599}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.441}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 11.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0228}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0228}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 25}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.759}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 56}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.309}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 341}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 271}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 147}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1100}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 82800}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 35}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.13}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 39.4}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air"], "amount": 0.00401}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00401}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.11e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "Aniline", "categories": ["water"], "amount": 1.05}, {"name": "Anthracene", "categories": ["air"], "amount": 0.197}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 354}, {"name": "Anthracene", "categories": ["water"], "amount": 354}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.231}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 24.3}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.3}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.3}, {"name": "Antimony ion", "categories": ["air"], "amount": 45.2}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 45.2}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 45.6}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 92.1}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 92.1}, {"name": "Antimony ion", "categories": ["soil"], "amount": 92.1}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 340}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 340}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 2.19e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 340}, {"name": "Antimony ion", "categories": ["water"], "amount": 340}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.99}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.99}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.99}, {"name": "Arsenic ion", "categories": ["air"], "amount": 2.1}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 2.1}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.25}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 2.36}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 2.36}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 2.36}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.15e-20}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 62.2}, {"name": "Arsenic ion", "categories": ["water"], "amount": 62.2}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.453}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.83}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14.8}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 85.3}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 179}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 179}, {"name": "Atrazine", "categories": ["water"], "amount": 179}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.452}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.745}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 233}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 0.198}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 27.3}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 156}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 156}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.482}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.482}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.482}, {"name": "Barium II", "categories": ["air"], "amount": 1.11}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.11}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil"], "amount": 2.51}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 4.57e-21}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.79}, {"name": "Barium II", "categories": ["water"], "amount": 2.79}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.066}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0228}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.144}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0548}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.681}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.681}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 2.08}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 1590}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.00268}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00268}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.744}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.72e-05}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water"], "amount": 0.0868}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000158}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.748}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 6.88e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.293}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 24.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0688}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.069}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.069}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 15.2}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.411}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.411}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 134}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 134}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.0492}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0338}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.00704}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 4.17e-06}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.285}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 1.63}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.63}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63}, {"name": "Beryllium II", "categories": ["air"], "amount": 1.5}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.5}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.678}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.22}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.22}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.22}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.87e-20}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 55.9}, {"name": "Beryllium II", "categories": ["water"], "amount": 55.9}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 251}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 37.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 284}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 21200}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 21200}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.509}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.8}, {"name": "Bifenthrin", "categories": ["air"], "amount": 40.3}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 92.9}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 12200}, {"name": "Bifenthrin", "categories": ["water"], "amount": 12200}, {"name": "Bisphenol A", "categories": ["water"], "amount": 44.9}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.0297}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 9.99}, {"name": "Bromopropane", "categories": ["air"], "amount": 3.63e-05}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.129}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.89}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.88}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 167}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 167}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 11.7}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3.63}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air"], "amount": 0.000144}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000144}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 4.79e-06}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water"], "amount": 0.0183}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.327}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.0771}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 444}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.777}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.777}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.777}, {"name": "Cadmium II", "categories": ["air"], "amount": 1.17}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1.17}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.04}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.04}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.04}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.04}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 4.32e-21}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["water"], "amount": 16.8}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.56}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 9.15}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 116}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 116}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57}, {"name": "Carbendazim", "categories": ["air"], "amount": 7.01}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 4.51}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 26.3}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 46}, {"name": "Carbendazim", "categories": ["water"], "amount": 46}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.705}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000349}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 9.93e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.349}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 3.47}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.28}, {"name": "Carboxin", "categories": ["air"], "amount": 4.21}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 13.8}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Carboxin", "categories": ["water"], "amount": 26.1}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 6.33e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0948}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 107}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 90.7}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 719}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 4130}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 4130}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 4130}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air"], "amount": 39.5}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 39.5}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 9.72e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 217}, {"name": "Chloramine", "categories": ["water"], "amount": 217}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.66}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.396}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 63.4}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.535}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.0461}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.623}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1.66}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.66}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 2.9e-10}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 9}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 9}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 8.52e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water"], "amount": 0.162}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 3.26}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0473}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 0.0804}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0804}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.000323}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 1.78}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 1.78}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.8}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 23.7}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 26.5}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 158}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 673}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 673}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.4}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 329}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1780}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 14700}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 14700}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 33.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10.9}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.202}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.202}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.202}, {"name": "Chromium III", "categories": ["air"], "amount": 0.402}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.402}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.418}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.853}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.853}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.853}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.07e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.3}, {"name": "Chromium III", "categories": ["water"], "amount": 2.3}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 7.73}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.73}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.73}, {"name": "Chromium VI", "categories": ["air"], "amount": 15.5}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 15.5}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 16.1}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 32.9}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 32.9}, {"name": "Chromium VI", "categories": ["soil"], "amount": 32.9}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 8.84e-20}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 86.6}, {"name": "Chromium VI", "categories": ["water"], "amount": 86.6}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 14.6}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.829}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.374}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.696}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 0.206}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.206}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.206}, {"name": "Cobalt II", "categories": ["air"], "amount": 0.224}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 0.224}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.14}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.265}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.265}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.265}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.86e-21}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 6.34}, {"name": "Cobalt II", "categories": ["water"], "amount": 6.34}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 5.17}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.17}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.17}, {"name": "Copper ion", "categories": ["air"], "amount": 5.48}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 5.48}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.28}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 6.17}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 6.17}, {"name": "Copper ion", "categories": ["soil"], "amount": 6.17}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 162}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 162}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.32e-20}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 162}, {"name": "Copper ion", "categories": ["water"], "amount": 162}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 9.15e-06}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.558}, {"name": "Cumene", "categories": ["water"], "amount": 0.558}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 7.28e-08}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0546}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 1.29e-08}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.0625}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 21.8}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.288}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.00489}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 259}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 841}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 63300}, {"name": "Cypermethrin", "categories": ["water"], "amount": 63300}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 2.01}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 12.8}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.591}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.69}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0535}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 2.2}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3.04}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 58.9}, {"name": "Deltamethrin", "categories": ["air"], "amount": 53.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 6310}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.139}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.776}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 16.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0153}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 5.66}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.172}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.328}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.34}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 17.1}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0427}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.081}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.631}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.631}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 17.6}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 0.943}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 5.77}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 3.28}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 0.283}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.159}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 1.02}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.57e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.57e-06}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0313}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.8e-06}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.462}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.27e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.00036}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.00036}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.26e-10}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.00271}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.00271}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.52}, {"name": "Difenoconazole", "categories": ["air"], "amount": 21.5}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 78.5}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 233}, {"name": "Difenoconazole", "categories": ["water"], "amount": 233}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 188}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 299}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2000}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 4860}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 4860}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.0156}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 3.91e-05}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.191}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.191}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.55}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 0.613}, {"name": "Dimethoate", "categories": ["air"], "amount": 3.37}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 5.71}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 38.7}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.883}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0767}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 2.19e-05}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.974}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.974}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 11.8}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 177}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 177}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 167}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 37.3}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 130}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 130}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 130}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 49.7}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 17400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 17400}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 0.391}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.391}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.7}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 8.71}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 19.6}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 19.6}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.43}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Diuron", "categories": ["air"], "amount": 35.2}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 15.2}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 98.2}, {"name": "Diuron", "categories": ["water"], "amount": 223}, {"name": "Dodecanol", "categories": ["water"], "amount": 22.5}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.318}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 6.84}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.281}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.732}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 12.6}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.58}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 41.1}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 83.8}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 83.8}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1500}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1000}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0014}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.000564}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 8.23e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 8.23e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.52e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000425}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 7.03e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0554}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.00517}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.55}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.24e-06}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water"], "amount": 0.00629}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.0468}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.328}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.328}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.592}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.9e-05}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0164}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0157}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.0405}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0405}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 2.27e-06}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.202}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.202}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.93e-09}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.425}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.000707}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.000707}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.000177}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0482}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 2.7}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 6.49}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 63.4}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.755}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.57}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 10}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 7.48}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 43.6}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 107}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.638}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.25}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 87.9}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 87.9}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.5}, {"name": "Fluazinam", "categories": ["air"], "amount": 289}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 105}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 743}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water"], "amount": 2260}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 7.99}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99}, {"name": "Fludioxonil", "categories": ["air"], "amount": 23.7}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 9.31}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 69.8}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 275}, {"name": "Fludioxonil", "categories": ["water"], "amount": 275}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.3}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.87}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 618}, {"name": "Fluorene", "categories": ["air"], "amount": 0.0118}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 7.12}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 4.11}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.164}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 30.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0314}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0314}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 4.68e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.907}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.98e-10}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0854}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0854}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00758}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.997}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.92e-06}, {"name": "Furan", "categories": ["air"], "amount": 1.3e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 1.3e-06}, {"name": "Furfural", "categories": ["air"], "amount": 0.00703}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 0.207}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.589}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.28}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.351}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water"], "amount": 2.39}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.85}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 32.1}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 32.1}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air"], "amount": 6.53e-09}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.53e-09}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 10.8}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "Hexane", "categories": ["water"], "amount": 0.141}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.37}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.06}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.0226}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 93.4}, {"name": "Hydrazine", "categories": ["water"], "amount": 93.4}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.5e-06}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.302}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.54e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.54e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 6.68e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.155}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000365}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.000362}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.000362}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.00621}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.26}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 6.21}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 0.674}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.79}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.95}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Imidacloprid", "categories": ["water"], "amount": 9.16}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.72}, {"name": "Indoxacarb", "categories": ["air"], "amount": 11.8}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 34}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 6.11}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.49}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 1.71e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.71e-08}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0125}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.0373}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0373}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 1.04e-05}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.175}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.175}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 4.85}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 598}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 68.9}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 423}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 48100}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 48100}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 48100}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.00867}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.45}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.0166}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0166}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0166}, {"name": "Lead II", "categories": ["air"], "amount": 0.0138}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0138}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.00439}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.00738}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.00738}, {"name": "Lead II", "categories": ["soil"], "amount": 0.00738}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.606}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.606}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.29e-23}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.606}, {"name": "Lead II", "categories": ["water"], "amount": 0.606}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.538}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 24.6}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.928}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0965}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.63}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.63}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.183}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 6}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 12.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.293}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0307}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.5}, {"name": "Mancozeb", "categories": ["air"], "amount": 14.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 56.7}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 78}, {"name": "Mancozeb", "categories": ["water"], "amount": 78}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.2}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 9.02e-07}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 1.34}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.34}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.34}, {"name": "Mercury II", "categories": ["air"], "amount": 1.01}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1.01}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.199}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.286}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.286}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.286}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 3.89e-21}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 49.8}, {"name": "Mercury II", "categories": ["water"], "amount": 49.8}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.292}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 0.17}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 0.601}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.347}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 1.99}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 3.34}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 0.0683}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.202}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00275}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.81e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0292}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.48e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1.48e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.00053}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000288}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.534}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air"], "amount": 0.000132}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5e-06}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water"], "amount": 0.00493}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.21}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 28}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 8.61}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 47.7}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water"], "amount": 78.6}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.371}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.41}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 21.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 78.6}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 242}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 242}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000377}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.000379}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000379}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 8.04e-05}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 0.0283}, {"name": "Methyl acetate", "categories": ["water"], "amount": 0.0283}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.000365}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.72}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00341}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00241}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.0078}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.0078}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.753}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.89}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air"], "amount": 0.063}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.063}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 6.18e-06}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.292}, {"name": "Methylamine", "categories": ["water"], "amount": 0.292}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.327}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 9.37}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 61.8}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 147}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 147}, {"name": "Metolachlor", "categories": ["water"], "amount": 147}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.41}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 149}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 295}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 772}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 520}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 3000}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 5070}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 5070}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 111}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.61}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.0363}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0363}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0363}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.0724}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.0724}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.0752}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.154}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.154}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.154}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 3.08e-22}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.41}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.41}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 3.13}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.288}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 4.55}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.000708}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 67.7}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 1.71}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.71}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71}, {"name": "Nickel II", "categories": ["air"], "amount": 2.16}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 2.16}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.64}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.17}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.17}, {"name": "Nickel II", "categories": ["soil"], "amount": 3.17}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 46}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 46}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 1.71e-20}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 46}, {"name": "Nickel II", "categories": ["water"], "amount": 46}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.125}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 0.328}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.27}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.87}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.00135}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.76}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.82}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.0156}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.0641}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.73}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 3.04}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.329}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 0.931}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.00485}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 13}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.033}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0129}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 38.1}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.183}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.692}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.63}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 176}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 176}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06e-06}, {"name": "Pentane", "categories": ["air"], "amount": 6.29e-06}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 6.29e-06}, {"name": "Pentane", "categories": ["water"], "amount": 7.18}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 5.08}, {"name": "Permethrin", "categories": ["water"], "amount": 2870}, {"name": "Phenanthrene", "categories": ["air"], "amount": 0.136}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 57}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air"], "amount": 0.00867}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00867}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.23e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.969}, {"name": "Phenol", "categories": ["water"], "amount": 0.969}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.136}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.136}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.14}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 19.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 5.52}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 45.2}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 8.88}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 33.2}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 60.6}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00054}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 15.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.000949}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 26.1}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 3.81e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.609}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.609}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.01e-05}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.24}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.84}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.455}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.201}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 0.196}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 31.7}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 13.2}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.0541}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 429}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.22}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 17.4}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.0201}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 0.0302}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000259}, {"name": "Propanal", "categories": ["air"], "amount": 0.000176}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.000176}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 0.102}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 5.1e-05}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.102}, {"name": "Propanal", "categories": ["water"], "amount": 0.102}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air"], "amount": 0.000117}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 5.28e-06}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00942}, {"name": "Propanol", "categories": ["water"], "amount": 0.00942}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 9.32}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 0.332}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.171}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 3.36}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 15.8}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water"], "amount": 74.9}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.32e-08}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.157}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00812}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0218}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 1.86e-06}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.116}, {"name": "Propylamine", "categories": ["water"], "amount": 0.116}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.000651}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.00111}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.000214}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.0706}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.0706}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.91}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 8.24}, {"name": "Pyrene", "categories": ["air"], "amount": 1.18}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1810}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 245}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.0358}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 8.05}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.669}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.03}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 4.49}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 28.3}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 235}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2700}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2700}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.147}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 15.9}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3.87}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.0405}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 0.673}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.673}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.673}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.975}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.975}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.843}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.65}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.65}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.65}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 5.99e-21}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 15.3}, {"name": "Selenium IV", "categories": ["water"], "amount": 15.3}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0962}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.268}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.41}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 16.6}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.6}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.6}, {"name": "Silver I", "categories": ["air"], "amount": 19.2}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 19.2}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 13.1}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 25}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 25}, {"name": "Silver I", "categories": ["soil"], "amount": 25}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 485}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 485}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.84e-20}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 485}, {"name": "Silver I", "categories": ["water"], "amount": 485}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.65}, {"name": "Simazine", "categories": ["air"], "amount": 11.9}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 5.66}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 33.1}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 57.7}, {"name": "Simazine", "categories": ["water"], "amount": 57.7}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000592}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.00158}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.00158}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 4.16e-26}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 0.00822}, {"name": "Sodium formate", "categories": ["water"], "amount": 0.00822}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 19.9}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.86e-06}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.396}, {"name": "Styrene", "categories": ["water"], "amount": 0.396}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 36}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.285}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.285}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.209}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.52}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.52}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.83}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 13.1}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water"], "amount": 40.5}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 72.2}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 39.2}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 227}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 391}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 391}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 83.4}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 228}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 93.7}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 685}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 2350}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 72.6}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.91}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 22.2}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.00014}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.23}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 9.03}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.03}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.03}, {"name": "Thallium I", "categories": ["air"], "amount": 20.9}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 20.9}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 21.8}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 47.6}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 47.6}, {"name": "Thallium I", "categories": ["soil"], "amount": 47.6}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 53}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 53}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 7.06e-20}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 53}, {"name": "Thallium I", "categories": ["water"], "amount": 53}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 0.538}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.538}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.41}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.737}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 5.16}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiabendazole", "categories": ["water"], "amount": 15.1}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.55}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 9.32e-09}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 9.04}, {"name": "Thiocyanate", "categories": ["water"], "amount": 9.04}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.83}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 12.6}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 79.2}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 147}, {"name": "Thiodicarb", "categories": ["water"], "amount": 147}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.812}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 10.4}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 15.1}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 3.9}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9}, {"name": "Thiram", "categories": ["air"], "amount": 5.91}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 4.12}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 19.8}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 468}, {"name": "Thiram", "categories": ["water"], "amount": 468}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 0.133}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.133}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.133}, {"name": "Tin ion", "categories": ["air"], "amount": 0.113}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 0.113}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.0403}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.0696}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.0696}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.0696}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 7.72e-22}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 4.77}, {"name": "Tin ion", "categories": ["water"], "amount": 4.77}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.72e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.139}, {"name": "Toluene", "categories": ["water"], "amount": 0.139}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000162}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.000153}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.000153}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 7.1e-05}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.345}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.345}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 36.6}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 715}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 0.171}, {"name": "Triallate", "categories": ["air"], "amount": 0.164}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.66}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 86.9}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 181}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 74.1}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 192}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1630}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.507}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 7.83}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.1e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.17}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.84}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 255}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 4.9e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.00133}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 12}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1500}, {"name": "Triflumuron", "categories": ["air"], "amount": 4670}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 2530}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 14100}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 22200}, {"name": "Triflumuron", "categories": ["water"], "amount": 22200}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0391}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.438}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.61}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 35.4}, {"name": "Trifluralin", "categories": ["water"], "amount": 35.4}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.675}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.574}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.456}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.13e-11}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.0319}, {"name": "Urea", "categories": ["water"], "amount": 0.0319}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 6.59}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.59}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.59}, {"name": "Vanadium V", "categories": ["air"], "amount": 8.23}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 8.23}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 6.16}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 11.9}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 11.9}, {"name": "Vanadium V", "categories": ["soil"], "amount": 11.9}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 178}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 178}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 8.2e-20}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 178}, {"name": "Vanadium V", "categories": ["water"], "amount": 178}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.545}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Xylene", "categories": ["water"], "amount": 0.155}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 259}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 112}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 6.28}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.28}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.28}, {"name": "Zinc II", "categories": ["air"], "amount": 5.93}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.93}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.82}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 5.14}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 5.14}, {"name": "Zinc II", "categories": ["soil"], "amount": 5.14}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 7.47e-20}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 211}, {"name": "Zinc II", "categories": ["water"], "amount": 211}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.25}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 52.9}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 4.4e-06}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.492}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.06e-05}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.525}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4e-05}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.29e-05}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.29e-05}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 3.61e-06}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.0067}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.0067}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0839}, {"name": "t-Butylamine", "categories": ["air"], "amount": 0.241}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 0.241}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 4.62e-05}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 1.12}, {"name": "t-Butylamine", "categories": ["water"], "amount": 1.12}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.38}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "ecotoxicity: marine", "marine ecotoxicity potential (METP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.831}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.141}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.00732}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.00125}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.145}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0199}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.105}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "2,4-D", "categories": ["water"], "amount": 0.145}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0711}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.0128}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 0.0883}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 0.0883}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0711}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.0631}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.0128}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 0.0883}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.00603}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.237}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.237}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.616}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0054}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.00144}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00073}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.000314}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000314}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.000997}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.000299}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 0.332}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.0124}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.00189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0026}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0026}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.007}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00155}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.00425}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.151}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.0485}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.0485}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 11.7}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.63}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.63}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0446}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.007}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.0395}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.0492}, {"name": "Acephate", "categories": ["water"], "amount": 0.0492}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00808}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.00512}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00512}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0716}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.00944}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.00944}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000141}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.02e-05}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.0168}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00238}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000602}, {"name": "Acetone", "categories": ["air"], "amount": 0.000595}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.000595}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.000894}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water"], "amount": 0.000503}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.00283}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00283}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.00388}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00239}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.151}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 0.0853}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 0.0853}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air"], "amount": 1.34}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.34}, {"name": "Acrolein", "categories": ["water"], "amount": 3.24}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.0131}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00186}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00186}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0034}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0034}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.0445}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.255}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.052}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.052}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.99}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.98}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0195}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0195}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.62}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.00546}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9640}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 4960}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 303}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 16200}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.93}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.323}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.59}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Aniline", "categories": ["air"], "amount": 0.00107}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.139}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water"], "amount": 0.0257}, {"name": "Anthracene", "categories": ["air"], "amount": 4.65}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 306}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 28.9}, {"name": "Anthracene", "categories": ["water"], "amount": 28.9}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 488}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 488}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 488}, {"name": "Antimony ion", "categories": ["air"], "amount": 361}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 361}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 39}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 76.3}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 76.3}, {"name": "Antimony ion", "categories": ["soil"], "amount": 76.3}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 460}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 460}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1000}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 460}, {"name": "Antimony ion", "categories": ["water"], "amount": 460}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 100}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 100}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 100}, {"name": "Arsenic ion", "categories": ["air"], "amount": 69.9}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 69.9}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.93}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.93}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.93}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 86.3}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 86.3}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 212}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 86.3}, {"name": "Arsenic ion", "categories": ["water"], "amount": 86.3}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.67}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.24}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water"], "amount": 14.9}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0375}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.143}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 13.1}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 0.011}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.75}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.26}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 13}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 13}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.35}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.35}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.35}, {"name": "Barium II", "categories": ["air"], "amount": 3.39}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 3.39}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 3.47}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 3.47}, {"name": "Barium II", "categories": ["soil"], "amount": 3.47}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3.93}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 3.93}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 5.61}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3.93}, {"name": "Barium II", "categories": ["water"], "amount": 3.93}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.00157}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0296}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0389}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.0132}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0239}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.00305}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 58}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 151}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0345}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0233}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0233}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0395}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air"], "amount": 0.00235}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.00235}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.089}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00485}, {"name": "Benzene", "categories": ["water"], "amount": 0.00485}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.451}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.0377}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.00563}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.00563}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.76}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.66}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.66}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 11}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 21.6}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 21.9}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.6}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 26.9}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 26.9}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 12.2}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.00117}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.00336}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.000405}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0322}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.00699}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 237}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 237}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 237}, {"name": "Beryllium II", "categories": ["air"], "amount": 165}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 165}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.515}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.906}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.906}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.906}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 72}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 72}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 502}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 72}, {"name": "Beryllium II", "categories": ["water"], "amount": 72}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6950}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 11.8}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 60}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 4150}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 4150}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2520}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1470}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 27.5}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 43.7}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2500}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2500}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.49}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 0.0742}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.00164}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.00138}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.00353}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.977}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.23}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.23}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 13.5}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.971}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.00499}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air"], "amount": 0.000583}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000583}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.00295}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water"], "amount": 0.000557}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.0181}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0296}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.00305}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.00305}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.49}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 11.1}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 91.2}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.2}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.2}, {"name": "Cadmium II", "categories": ["air"], "amount": 63.5}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 63.5}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.711}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.36}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.36}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.36}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 19.6}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 19.6}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 196}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 19.6}, {"name": "Cadmium II", "categories": ["water"], "amount": 19.6}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.16}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.512}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.42}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.42}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.24}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.08}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.46}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.54}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.54}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.039}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.32}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.263}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.137}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Carboxin", "categories": ["air"], "amount": 1.01}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.764}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.44}, {"name": "Carboxin", "categories": ["water"], "amount": 1.44}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 0.00941}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00133}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 485}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 18}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 139}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 795}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 795}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 795}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33}, {"name": "Chloramine", "categories": ["air"], "amount": 7.51}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.51}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 23.2}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.16}, {"name": "Chloramine", "categories": ["water"], "amount": 5.16}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 0.318}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.0223}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 5.79}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.0296}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 0.00255}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.364}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 0.323}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 0.964}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 0.214}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 0.214}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0447}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.176}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.0469}, {"name": "Chloroform", "categories": ["water"], "amount": 0.0469}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.134}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 0.124}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 0.124}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.215}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 0.0572}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 0.0572}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 186}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 182}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 80.8}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 193}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 193}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 176}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 104}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 337}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2680}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2680}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 4.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.907}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.0799}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 14.2}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.2}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.2}, {"name": "Chromium III", "categories": ["air"], "amount": 10}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.276}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.543}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.543}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.543}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.47}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 2.47}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 30}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.47}, {"name": "Chromium III", "categories": ["water"], "amount": 2.47}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 159}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 159}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 159}, {"name": "Chromium VI", "categories": ["air"], "amount": 120}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 120}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 15.7}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 31}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 31}, {"name": "Chromium VI", "categories": ["soil"], "amount": 31}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 130}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 130}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 322}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 130}, {"name": "Chromium VI", "categories": ["water"], "amount": 130}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 2.88}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.0504}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.0327}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0387}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 27.2}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.2}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.2}, {"name": "Cobalt II", "categories": ["air"], "amount": 18.9}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 18.9}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.188}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.188}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.188}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 7.85}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 7.85}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 58.3}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 7.85}, {"name": "Cobalt II", "categories": ["water"], "amount": 7.85}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 732}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 732}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 732}, {"name": "Copper ion", "categories": ["air"], "amount": 508}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 508}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.19}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.19}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.19}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 193}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 193}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1570}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 193}, {"name": "Copper ion", "categories": ["water"], "amount": 193}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000779}, {"name": "Cumene", "categories": ["air"], "amount": 0.00063}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.00063}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.331}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water"], "amount": 0.0105}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.42}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.68e-06}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.68e-06}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0342}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000944}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000944}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.68e-06}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.12e-07}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.00346}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 151}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.0541}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.000273}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 232}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 12400}, {"name": "Cypermethrin", "categories": ["water"], "amount": 12400}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.167}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.049}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.497}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00127}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.122}, {"name": "Decanoic acid", "categories": ["water"], "amount": 0.0428}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 1140}, {"name": "Deltamethrin", "categories": ["air"], "amount": 852}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 80.7}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 718}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.0078}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.0452}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.957}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.26}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.524}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.0182}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 0.129}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 0.129}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.377}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.54}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0314}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.00448}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.0349}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.0349}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.03}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 0.983}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.69}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.078}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 10.8}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.00224}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 0.0605}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.23e-05}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0179}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0179}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.0496}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.011}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82e-05}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 2.41e-05}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 2.41e-05}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 0.000268}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 3.81e-05}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 3.81e-05}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.2}, {"name": "Difenoconazole", "categories": ["air"], "amount": 21.7}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 2.14}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 15.1}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 44.9}, {"name": "Difenoconazole", "categories": ["water"], "amount": 44.9}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 452}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 58.6}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 384}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 933}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 933}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.0163}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.087}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.00631}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.00631}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.297}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 0.384}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.166}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.0733}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0458}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.0381}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0381}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.0232}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.00617}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.658}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 40800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 40800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35400}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1700}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1880}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1880}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1880}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 12200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 12200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 125000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 12200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 12200}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00566}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 0.506}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.506}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 0.316}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 0.0745}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 0.482}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.09}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.09}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 0.472}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.3}, {"name": "Diuron", "categories": ["air"], "amount": 10.3}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.84}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.43}, {"name": "Diuron", "categories": ["water"], "amount": 12.3}, {"name": "Dodecanol", "categories": ["water"], "amount": 0.864}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.0208}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.0291}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.00447}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.0262}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 193}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.00395}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.13}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 7.09}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 7.96}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 16.1}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 16.1}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5600}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0307}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.0113}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.0113}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.0705}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.0705}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.0437}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0437}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.0177}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0177}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0617}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0185}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 11}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 7.7}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 7.7}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000435}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.000901}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethanol", "categories": ["water"], "amount": 0.000225}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.00259}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.0182}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.0182}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.0687}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.0384}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.47}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00278}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.00262}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00262}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00882}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.00264}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00972}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.00829}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.00829}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0216}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.0048}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.0048}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.0455}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.0101}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.0324}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0178}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.384}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 12.2}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.01}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 0.39}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 0.631}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 141}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 0.225}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.03}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 0.226}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.35}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.35}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 275}, {"name": "Fluazinam", "categories": ["air"], "amount": 236}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 21.7}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 144}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 434}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 434}, {"name": "Fluazinam", "categories": ["water"], "amount": 434}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 16.2}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.2}, {"name": "Fludioxonil", "categories": ["air"], "amount": 12.8}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 5.8}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 22.8}, {"name": "Fludioxonil", "categories": ["water"], "amount": 22.8}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 41}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 8.05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Fluoranthene", "categories": ["air"], "amount": 14.6}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 57.9}, {"name": "Fluorene", "categories": ["air"], "amount": 0.164}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 0.329}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 0.924}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 0.0136}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.3}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.025}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.025}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.0237}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00847}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0012}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0237}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0112}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.29e-05}, {"name": "Furan", "categories": ["air"], "amount": 2.54e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 2.54e-05}, {"name": "Furfural", "categories": ["air"], "amount": 0.00776}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.00726}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 0.174}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.145}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.00726}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0923}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.00835}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.0569}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.95}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.16}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.16}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air"], "amount": 9.98e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 9.98e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 0.835}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0629}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water"], "amount": 0.00162}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.242}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.0375}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 13.2}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 10.1}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.27}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000303}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000245}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.171}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.00553}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.00553}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000472}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.000388}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.000388}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.106}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0037}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0037}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0533}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0527}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0527}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000148}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 0.189}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.515}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 0.554}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.554}, {"name": "Imidacloprid", "categories": ["air"], "amount": 0.558}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.577}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Imidacloprid", "categories": ["water"], "amount": 0.76}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Indoxacarb", "categories": ["air"], "amount": 27.7}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 0.838}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 6.58}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.338}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air"], "amount": 2.8e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.8e-07}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.00644}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.00644}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0188}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.00418}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.00418}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.268}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.405}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.79}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26300}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 474}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 553}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 10700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 10700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 10700}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.0185}, {"name": "Lauric acid", "categories": ["water"], "amount": 0.0205}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 4.41}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41}, {"name": "Lead II", "categories": ["air"], "amount": 3.06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 3.06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.00238}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0039}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0039}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0039}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.593}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.593}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.53}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.593}, {"name": "Lead II", "categories": ["water"], "amount": 0.593}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.0299}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 130}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.0774}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0629}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.00413}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 0.0389}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 0.0389}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.317}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.0105}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.332}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.332}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.3}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.00696}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.000731}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.75}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.589}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.13}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.31}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.31}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.606}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0664}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.00848}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 3.17e-08}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 351}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 351}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 351}, {"name": "Mercury II", "categories": ["air"], "amount": 240}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 240}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.115}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.161}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.161}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.161}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 51.4}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 51.4}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 709}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 51.4}, {"name": "Mercury II", "categories": ["water"], "amount": 51.4}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.0167}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 0.148}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 0.123}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 0.11}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 0.185}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 0.185}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 0.00664}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.534}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.0048}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0621}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.308}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.625}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.624}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00788}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.00784}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.00784}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0328}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.00829}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.00829}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00369}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00368}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00368}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.905}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.537}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.537}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air"], "amount": 0.000451}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000451}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000713}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.000223}, {"name": "Methanol", "categories": ["water"], "amount": 0.000223}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.57}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.08}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.205}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.13}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water"], "amount": 1.87}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 12.8}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 0.918}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6.52}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 20.1}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 20.1}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00848}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.00837}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00837}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.0159}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 0.00765}, {"name": "Methyl acetate", "categories": ["water"], "amount": 0.00765}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.022}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.394}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.0385}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.0385}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000755}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.000722}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.000722}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.000669}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00254}, {"name": "Methyl lactate", "categories": ["air"], "amount": 0.00206}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 0.00206}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.61}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 0.382}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air"], "amount": 0.012}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.012}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.0312}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water"], "amount": 0.00695}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.0183}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.789}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.14}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water"], "amount": 12.2}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.95}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.846}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.21}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 300}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 291}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43.2}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 249}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 421}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 421}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.0819}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 1.31}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.946}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.946}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.0659}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.13}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.13}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.13}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.56}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 0.56}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.73}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.56}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.56}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.0745}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00684}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 0.0855}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.0737}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.0205}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.11}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.0755}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.98}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 150}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 150}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 150}, {"name": "Nickel II", "categories": ["air"], "amount": 105}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 105}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.29}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.29}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.29}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 57.1}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 57.1}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 321}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 57.1}, {"name": "Nickel II", "categories": ["water"], "amount": 57.1}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.111}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 0.11}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 0.106}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 0.155}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.152}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.228}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.118}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.000226}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0922}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00355}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.485}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.0723}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.752}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 0.374}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.56}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.56}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.187}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.000715}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.42}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 0.0956}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.0101}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.41}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.36}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00013}, {"name": "Pentane", "categories": ["air"], "amount": 0.000114}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.000114}, {"name": "Pentane", "categories": ["water"], "amount": 0.0817}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 498}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 18.3}, {"name": "Permethrin", "categories": ["water"], "amount": 287}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.43}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.35}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.0589}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Phenol", "categories": ["air"], "amount": 0.00849}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00849}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water"], "amount": 0.0237}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 30.7}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 30.7}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.68}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.468}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1.94}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.405}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.405}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.418}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.418}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.0664}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.0152}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.419}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.0322}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.0601}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.278}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.0379}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.5}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 16.8}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 16.8}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 20.3}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.59}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 39.1}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.275}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.00111}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 0.00167}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00411}, {"name": "Propanal", "categories": ["air"], "amount": 0.0024}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.0024}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.0493}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.00535}, {"name": "Propanal", "categories": ["water"], "amount": 0.00535}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.12}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air"], "amount": 0.000566}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000566}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0019}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water"], "amount": 0.00055}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 0.0755}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.00484}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.34}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.31}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.22}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.22}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.22}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00804}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.00593}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00593}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.0156}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.00221}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.00221}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00555}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0046}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0046}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0124}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Propylamine", "categories": ["water"], "amount": 0.00276}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 9.96e-06}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.0204}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0367}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.0185}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 0.465}, {"name": "Pyrene", "categories": ["air"], "amount": 21.5}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 156}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.00199}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 0.757}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.0377}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.8}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 13.2}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.25}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 23.3}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 227}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 227}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.01}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 5.7}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 0.322}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.00362}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 49.8}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.8}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.8}, {"name": "Selenium IV", "categories": ["air"], "amount": 34.9}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 34.9}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.635}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 1.21}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 1.21}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.21}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 19.1}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 19.1}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 106}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 19.1}, {"name": "Selenium IV", "categories": ["water"], "amount": 19.1}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0149}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.41}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 2750}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2750}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 2750}, {"name": "Silver I", "categories": ["air"], "amount": 1910}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 1910}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 8.5}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 15.8}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 15.8}, {"name": "Silver I", "categories": ["soil"], "amount": 15.8}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 546}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 546}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 5930}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 546}, {"name": "Silver I", "categories": ["water"], "amount": 546}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.83}, {"name": "Simazine", "categories": ["air"], "amount": 3.46}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.472}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.78}, {"name": "Simazine", "categories": ["water"], "amount": 4.78}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000289}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.000253}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.000253}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.000815}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 0.000116}, {"name": "Sodium formate", "categories": ["water"], "amount": 0.000116}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air"], "amount": 9.49e-05}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.49e-05}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.238}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0072}, {"name": "Styrene", "categories": ["water"], "amount": 0.0072}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 1.99}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.33}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0586}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.053}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.053}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.00498}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 0.0363}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 0.0363}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.95}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.152}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.36}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 0.207}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.2}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 19.2}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.17}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 12.6}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 21.6}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21.6}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 253}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 224}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 18}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 132}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 451}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.074}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.22}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.97}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0751}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.0746}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0746}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.43}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.12}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 77.9}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 77.9}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 77.9}, {"name": "Thallium I", "categories": ["air"], "amount": 73.7}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 73.7}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 30.1}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 64.3}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 64.3}, {"name": "Thallium I", "categories": ["soil"], "amount": 64.3}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 81}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 81}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 137}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 81}, {"name": "Thallium I", "categories": ["water"], "amount": 81}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 0.576}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.576}, {"name": "Thiabendazole", "categories": ["air"], "amount": 0.489}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.0175}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.123}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.358}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.358}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.0682}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 0.968}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 0.215}, {"name": "Thiocyanate", "categories": ["water"], "amount": 0.215}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4.98}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.54}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.54}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.719}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 0.655}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.16}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 0.863}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.25}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.25}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 15.3}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.3}, {"name": "Thiram", "categories": ["air"], "amount": 9.15}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.234}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.1}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 26}, {"name": "Thiram", "categories": ["water"], "amount": 26}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 25.5}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.5}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.5}, {"name": "Tin ion", "categories": ["air"], "amount": 17.7}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 17.7}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.0264}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.0444}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.0444}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.0444}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 5.43}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 5.43}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 55.1}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 5.43}, {"name": "Tin ion", "categories": ["water"], "amount": 5.43}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air"], "amount": 0.000331}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000331}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0857}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water"], "amount": 0.00276}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0084}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.00787}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.00787}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.333}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.0185}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.22}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 138}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.144}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 2.22}, {"name": "Triallate", "categories": ["air"], "amount": 1}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.517}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 7.74}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 34.8}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 94.5}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 88.7}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 9.62}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 135}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.0226}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.649}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.162}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.00635}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.00635}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.319}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 33.7}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 0.000142}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.16e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.31}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2360}, {"name": "Triflumuron", "categories": ["air"], "amount": 2380}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 511}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 2730}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 4260}, {"name": "Triflumuron", "categories": ["water"], "amount": 4260}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.614}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.979}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.61}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.61}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.13}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.0109}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 0.00342}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.00076}, {"name": "Urea", "categories": ["water"], "amount": 0.00076}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.00566}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 218}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 218}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 218}, {"name": "Vanadium V", "categories": ["air"], "amount": 154}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 154}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 5.31}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 10}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 10}, {"name": "Vanadium V", "categories": ["soil"], "amount": 10}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 252}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 252}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 455}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 252}, {"name": "Vanadium V", "categories": ["water"], "amount": 252}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.0468}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000247}, {"name": "Xylene", "categories": ["air"], "amount": 0.000165}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000165}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0932}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00293}, {"name": "Xylene", "categories": ["water"], "amount": 0.00293}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7300}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 88.7}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 166}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 166}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 166}, {"name": "Zinc II", "categories": ["air"], "amount": 116}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 116}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 2.41}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 4.29}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 4.29}, {"name": "Zinc II", "categories": ["soil"], "amount": 4.29}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 299}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 299}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 342}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 299}, {"name": "Zinc II", "categories": ["water"], "amount": 299}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 0.181}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.93}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.297}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0089}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0089}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000838}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.000559}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000559}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.316}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.00991}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.00991}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.000307}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.000307}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00403}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.000414}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.000414}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0553}, {"name": "t-Butylamine", "categories": ["air"], "amount": 0.0446}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0446}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.12}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "t-Butylamine", "categories": ["water"], "amount": 0.0267}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 5.77}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "ecotoxicity: terrestrial", "terrestrial ecotoxicity potential (TETP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.802}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.76}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.062}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.695}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0416}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.00206}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.00054}, {"name": "2,4-D", "categories": ["water"], "amount": 0.00054}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 9.63e-08}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 4.67e-09}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 33.3}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 9.63e-08}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 69.5}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.0475}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.0475}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0855}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.798}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00627}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.00194}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.0188}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 34.2}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.072}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 0.39}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 0.39}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.23e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 9.68e-05}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 0.411}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.647}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.61}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 813}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00233}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000491}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 7.9e-05}, {"name": "Acephate", "categories": ["water"], "amount": 7.9e-05}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0828}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.339}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.42}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.0151}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 125}, {"name": "Acetic acid", "categories": ["air"], "amount": 87}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 87}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.39e-05}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00669}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air"], "amount": 0.0305}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00445}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water"], "amount": 0.0236}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0609}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.305}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 3.7}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15.6}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15.6}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 495}, {"name": "Acrolein", "categories": ["air"], "amount": 287}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 287}, {"name": "Acrolein", "categories": ["water"], "amount": 423}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.15e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00425}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air"], "amount": 45.7}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 45.7}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.867}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.13}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 8460}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.3}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 146}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.0173}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 123000}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 63100}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1140}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1180}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 3630}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 58.9}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 8.55}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.42}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.13}, {"name": "Aniline", "categories": ["air"], "amount": 0.621}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.621}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.041}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.622}, {"name": "Aniline", "categories": ["water"], "amount": 0.622}, {"name": "Anthracene", "categories": ["air"], "amount": 34.8}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 28.8}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water"], "amount": 71.1}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 622000}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 622000}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 622000}, {"name": "Antimony ion", "categories": ["air"], "amount": 431000}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 431000}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 1.63e-15}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 3.2e-15}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 3.2e-15}, {"name": "Antimony ion", "categories": ["soil"], "amount": 3.2e-15}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 1.68e-14}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 1.68e-14}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 5.79e-15}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1.68e-14}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.68e-14}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 133000}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 133000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 133000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 91900}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 91900}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.06e-17}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 9.31e-17}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 9.31e-17}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 9.31e-17}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.62e-15}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 3.62e-15}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1.43e-15}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.62e-15}, {"name": "Arsenic ion", "categories": ["water"], "amount": 3.62e-15}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 0.0174}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 22.7}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14.4}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water"], "amount": 10.1}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0553}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 6.69e-05}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 174}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 5.06e-05}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4680}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.000144}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 0.000137}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.1e-05}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.1e-05}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3270}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3270}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3270}, {"name": "Barium II", "categories": ["air"], "amount": 2260}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 2260}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 5.57e-17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.19e-16}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.19e-16}, {"name": "Barium II", "categories": ["soil"], "amount": 1.19e-16}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.33e-16}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.33e-16}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3e-17}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.33e-16}, {"name": "Barium II", "categories": ["water"], "amount": 1.33e-16}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.72e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.516}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.000631}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 0.651}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0639}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 346}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 187}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.582}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.091}, {"name": "Benzene", "categories": ["air"], "amount": 0.0871}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0871}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0427}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water"], "amount": 0.0859}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.922}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0129}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0425}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 48.4}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 78.7}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 78.5}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 78.5}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 76.3}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.445}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.445}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.008}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0333}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0189}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.00268}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.0477}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 475000}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 475000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 475000}, {"name": "Beryllium II", "categories": ["air"], "amount": 329000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 329000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 5.44e-17}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 9.6e-17}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 9.6e-17}, {"name": "Beryllium II", "categories": ["soil"], "amount": 9.6e-17}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 6.62e-15}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 6.62e-15}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 8.32e-15}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 6.62e-15}, {"name": "Beryllium II", "categories": ["water"], "amount": 6.62e-15}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 148000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 96.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 99.6}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 308}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 308}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 9.79}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22500}, {"name": "Bifenthrin", "categories": ["air"], "amount": 13100}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 222}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 227}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 801}, {"name": "Bifenthrin", "categories": ["water"], "amount": 801}, {"name": "Bisphenol A", "categories": ["water"], "amount": 0.0064}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.51e-05}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 7.52e-07}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 0.00957}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.0859}, {"name": "Bromopropane", "categories": ["water"], "amount": 0.0782}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 466}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 42400}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00331}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 0.000666}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 0.000666}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 217}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.9}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.33}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 0.862}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air"], "amount": 0.035}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.0015}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water"], "amount": 0.0186}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 0.0321}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0703}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.368}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2900}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 301}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 278000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 278000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 278000}, {"name": "Cadmium II", "categories": ["air"], "amount": 192000}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 192000}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 3.67e-17}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 7.04e-17}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 7.04e-17}, {"name": "Cadmium II", "categories": ["soil"], "amount": 7.04e-17}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 8.73e-16}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 8.73e-16}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.63e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 8.73e-16}, {"name": "Cadmium II", "categories": ["water"], "amount": 8.73e-16}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9490}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 12.7}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 5.77}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 5.77}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 10300}, {"name": "Carbendazim", "categories": ["air"], "amount": 8320}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.138}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 0.0873}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 0.0417}, {"name": "Carbendazim", "categories": ["water"], "amount": 0.0417}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 372}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.962}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.853}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.853}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 7.49}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4270}, {"name": "Carboxin", "categories": ["air"], "amount": 2950}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.666}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.461}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 0.242}, {"name": "Carboxin", "categories": ["water"], "amount": 0.242}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00159}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 163000}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 202}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 199}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 123}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 123}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 123}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 265000}, {"name": "Chloramine", "categories": ["air"], "amount": 219000}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 219000}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.74e-07}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water"], "amount": 3.26e-06}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1680}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 8.8e-06}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 7880}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 6400}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 6400}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.68e-06}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 0.00068}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 0.00068}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air"], "amount": 0.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.219}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water"], "amount": 0.462}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 330}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 60.4}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 55.7}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 55.7}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.413}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 6.87}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 6.87}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 22400}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 21800}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 9330}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9770}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 8820}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 8820}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 6180}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1650}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 786}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 251}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.15e-06}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 60600}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 60600}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 60600}, {"name": "Chromium III", "categories": ["air"], "amount": 41900}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 41900}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.99e-17}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 3.94e-17}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 3.94e-17}, {"name": "Chromium III", "categories": ["soil"], "amount": 3.94e-17}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1.54e-16}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1.54e-16}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.55e-16}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1.54e-16}, {"name": "Chromium III", "categories": ["water"], "amount": 1.54e-16}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 205000}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 205000}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 205000}, {"name": "Chromium VI", "categories": ["air"], "amount": 142000}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 142000}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 7.87e-16}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.56e-15}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.56e-15}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.56e-15}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 5.75e-15}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 5.75e-15}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 2.43e-15}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 5.75e-15}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.75e-15}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 9.78}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 22}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0329}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 59200}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 59200}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 59200}, {"name": "Cobalt II", "categories": ["air"], "amount": 41000}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 41000}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6.07e-18}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.12e-17}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.12e-17}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.12e-17}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4.04e-16}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 4.04e-16}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 5.39e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4.04e-16}, {"name": "Cobalt II", "categories": ["water"], "amount": 4.04e-16}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1750000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1750000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1750000}, {"name": "Copper ion", "categories": ["air"], "amount": 1210000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1210000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.38e-16}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 2.54e-16}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 2.54e-16}, {"name": "Copper ion", "categories": ["soil"], "amount": 2.54e-16}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.01e-14}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 1.01e-14}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.47e-14}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.01e-14}, {"name": "Copper ion", "categories": ["water"], "amount": 1.01e-14}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air"], "amount": 0.0432}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0432}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.0138}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water"], "amount": 0.0466}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.341}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.000203}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000646}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 3.73e-05}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.27e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1740}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.12e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95800}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 917}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 2830}, {"name": "Cypermethrin", "categories": ["water"], "amount": 2830}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.868}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.04e-05}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 77}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00507}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Decanoic acid", "categories": ["water"], "amount": 0.0114}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 19600}, {"name": "Deltamethrin", "categories": ["air"], "amount": 14700}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1380}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3700}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.14e-12}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.754}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 2.87}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.00301}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.647}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.32e-05}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.32e-05}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 36.9}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 114}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 282}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.000695}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.55e-06}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.55e-06}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1060}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 32.5}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 609}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.923}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Diethanolamine", "categories": ["water"], "amount": 5.94e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 3.49}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00415}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00415}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 242}, {"name": "Diethylamine", "categories": ["air"], "amount": 186}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 186}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.037}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.0767}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.968}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.968}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 7.44e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.000149}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.000149}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 20400}, {"name": "Difenoconazole", "categories": ["air"], "amount": 16600}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 0.0715}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 0.0654}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0503}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.0503}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 489000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1240}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1040}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 692}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 692}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 0.741}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.0684}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 0.302}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 8.15}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 10100}, {"name": "Dimethoate", "categories": ["air"], "amount": 2350}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 7.52}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.232}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 0.155}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air"], "amount": 888}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 888}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.337}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 453000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 453000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 453000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 393000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 393000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 14200}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15300}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15300}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 15300}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 53000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 53000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 104000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 53000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 53000}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00217}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 424}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.33e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 6.6e-07}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 6.6e-07}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.114}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 28600}, {"name": "Diuron", "categories": ["air"], "amount": 20400}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.59}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.78}, {"name": "Diuron", "categories": ["water"], "amount": 2.55}, {"name": "Dodecanol", "categories": ["water"], "amount": 7.62}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.215}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 6.87e-05}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.18e-08}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.47}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 468}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 16}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 6710}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 148}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 58.9}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 58.9}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11300}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.444}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.444}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.203}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.111}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.194}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.194}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.929}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.929}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.184}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.387}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 13.1}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 18}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 18}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air"], "amount": 0.072}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0262}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 276}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 5.61e-06}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.53e-11}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.53e-11}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.27}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 14.4}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1520}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.406}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 214}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 214}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 214}, {"name": "Ethylamine", "categories": ["air"], "amount": 168}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 168}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0309}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 0.064}, {"name": "Ethylamine", "categories": ["water"], "amount": 0.064}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.000108}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.000225}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.455}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.57}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.13e-05}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 6.64e-07}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 0.177}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 638}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.483}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 8.99}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2710}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 729}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 26.8}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 26.8}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 206000}, {"name": "Fluazinam", "categories": ["air"], "amount": 145000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1240}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1140}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 900}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 900}, {"name": "Fluazinam", "categories": ["water"], "amount": 900}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 12600}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12600}, {"name": "Fludioxonil", "categories": ["air"], "amount": 8730}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 1.15}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1.45}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.45}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 70900}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 389}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.04}, {"name": "Fluoranthene", "categories": ["air"], "amount": 98.9}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 80.1}, {"name": "Fluorene", "categories": ["air"], "amount": 1.82}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.08}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 190}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 2.06e-06}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 25800}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 142}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air"], "amount": 10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.0506}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.889}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air"], "amount": 66.8}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 66.8}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 4.58e-06}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water"], "amount": 0.000909}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 7.53e-09}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0062}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0939}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 0.00607}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00607}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00607}, {"name": "Furan", "categories": ["air"], "amount": 0.00245}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00245}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 735}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 573}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.26e-10}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.13e-05}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.27e-11}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2440}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1980}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 0.00799}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 0.00799}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air"], "amount": 2.07e-05}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.07e-05}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 256}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air"], "amount": 0.000196}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000196}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.37e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water"], "amount": 0.000194}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.00371}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.379}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 602}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 367}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water"], "amount": 1360}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00795}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0955}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0366}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.03}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.03}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0143}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0387}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0387}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.178}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000785}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4320}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 5.99e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.17e-10}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Imidacloprid", "categories": ["water"], "amount": 1.98e-10}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 7710}, {"name": "Indoxacarb", "categories": ["air"], "amount": 6020}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 9.87}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.0103}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.302}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-05}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 124}, {"name": "Isopropylamine", "categories": ["air"], "amount": 88}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 88}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Isopropylamine", "categories": ["water"], "amount": 0.216}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 0.2}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 20.2}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 312000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5510}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5640}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 18700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 18700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 18700}, {"name": "Lauric acid", "categories": ["air"], "amount": 0.866}, {"name": "Lauric acid", "categories": ["water"], "amount": 0.00154}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 62400}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 62400}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 62400}, {"name": "Lead II", "categories": ["air"], "amount": 43200}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 43200}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.23e-19}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.03e-19}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.03e-19}, {"name": "Lead II", "categories": ["soil"], "amount": 2.03e-19}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 2.59e-17}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 2.59e-17}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 8.29e-17}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 2.59e-17}, {"name": "Lead II", "categories": ["water"], "amount": 2.59e-17}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.93e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5100}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.04e-07}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 626}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 6.59e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.1e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.1e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.000589}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.000883}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.000883}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 43}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.18e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.05e-05}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 44400}, {"name": "Mancozeb", "categories": ["air"], "amount": 36600}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.000845}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.59e-05}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 9.45e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 9.45e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.000868}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0677}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 0.000731}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.84e-13}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2020000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020000}, {"name": "Mercury II", "categories": ["air"], "amount": 1380000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1380000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 5.53e-18}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 7.75e-18}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 7.75e-18}, {"name": "Mercury II", "categories": ["soil"], "amount": 7.75e-18}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2.09e-15}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 2.09e-15}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.58e-15}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2.09e-15}, {"name": "Mercury II", "categories": ["water"], "amount": 2.09e-15}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.27}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 702}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 702}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 455}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 0.82}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 0.347}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 0.347}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 45.5}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.000275}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.000191}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.02}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.358}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0492}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0998}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0417}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.0416}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.0416}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.48}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.806}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.41}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.41}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Methanol", "categories": ["air"], "amount": 0.122}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.122}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.00305}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water"], "amount": 0.0422}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 96.2}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 32500}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.422}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 0.206}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water"], "amount": 0.0678}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 5.42}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 15800}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 12800}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 0.0597}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 0.0575}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 0.0517}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 0.0517}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.4}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.4}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.303}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 1.2}, {"name": "Methyl acetate", "categories": ["water"], "amount": 1.2}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.23}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.55}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.0199}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.6}, {"name": "Methyl lactate", "categories": ["air"], "amount": 55.8}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 55.8}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 566}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 40.4}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 397}, {"name": "Methylamine", "categories": ["air"], "amount": 305}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 305}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water"], "amount": 0.216}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 5890}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 18.4}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 15.7}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water"], "amount": 11.3}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 40000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.21}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 0.856}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090000}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 899000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 6.48e-05}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.81e-05}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.81e-05}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.85}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 2110}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2110}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2110}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1460}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1460}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 2.97e-18}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.89e-18}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.89e-18}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 5.89e-18}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.22e-17}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 2.22e-17}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 1.88e-17}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.22e-17}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 2.22e-17}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.014}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00603}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 27.6}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 2.3}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 801}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.584}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.967}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.165}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 606}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 271000}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 271000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 271000}, {"name": "Nickel II", "categories": ["air"], "amount": 187000}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 7.13e-17}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.35e-16}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.35e-16}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.35e-16}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.91e-15}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2.91e-15}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.77e-15}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.91e-15}, {"name": "Nickel II", "categories": ["water"], "amount": 2.91e-15}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 645}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 531}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 7.28e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 3.32e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 1.1e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1.1e-08}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.1}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.8}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 176}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 0.00469}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 21.7}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 5.82e-05}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00085}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.133}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 9.68}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 24.9}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 38.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.35}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.34}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.4}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 4.69e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 276}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.8}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 6.44e-05}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 490}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 69.2}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 69.2}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Pentane", "categories": ["air"], "amount": 0.0207}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.0207}, {"name": "Pentane", "categories": ["water"], "amount": 0.0196}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11100}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 401}, {"name": "Permethrin", "categories": ["water"], "amount": 1160}, {"name": "Phenanthrene", "categories": ["air"], "amount": 31.3}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 37}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49}, {"name": "Phenol", "categories": ["air"], "amount": 1.18}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.00553}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water"], "amount": 0.0981}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 13}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 13}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8510}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 5980}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 5980}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.116}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.136}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 47.2}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 272}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4160}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.187}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.84}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.603}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 10.7}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.4}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 7.34}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00153}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.00909}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.000503}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 77.9}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.378}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 50.4}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.5}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 77.3}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 77.3}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 63.8}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 54.6}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 6.77}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3440}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 37.6}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 885}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 3.94e-05}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 4.05e-06}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.06}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06}, {"name": "Propanal", "categories": ["air"], "amount": 0.622}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.622}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 0.881}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 0.881}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.21}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 0.881}, {"name": "Propanal", "categories": ["water"], "amount": 0.881}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air"], "amount": 0.0504}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0504}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.003}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water"], "amount": 0.0302}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.00379}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.15}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.536}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.237}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water"], "amount": 0.487}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.0204}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.4}, {"name": "Propylamine", "categories": ["air"], "amount": 51.4}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 51.4}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0154}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 0.032}, {"name": "Propylamine", "categories": ["water"], "amount": 0.032}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.00326}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.12}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.41}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.74}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.74}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Pyrene", "categories": ["air"], "amount": 121}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 140}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 232}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.000429}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 119}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 667}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 211}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 267}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 932}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 932}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.000183}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 26.7}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.000889}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 89800}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 89800}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 89800}, {"name": "Selenium IV", "categories": ["air"], "amount": 62100}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 62100}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 3.35e-17}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 6.4e-17}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 6.4e-17}, {"name": "Selenium IV", "categories": ["soil"], "amount": 6.4e-17}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 8.79e-16}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 8.79e-16}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 8.28e-16}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 8.79e-16}, {"name": "Selenium IV", "categories": ["water"], "amount": 8.79e-16}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0594}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.0666}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 9630000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9630000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 9630000}, {"name": "Silver I", "categories": ["air"], "amount": 6670000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 6670000}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 4.63e-16}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 8.63e-16}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 8.63e-16}, {"name": "Silver I", "categories": ["soil"], "amount": 8.63e-16}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 2.55e-14}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 2.55e-14}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 5.22e-14}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 2.55e-14}, {"name": "Silver I", "categories": ["water"], "amount": 2.55e-14}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Simazine", "categories": ["air"], "amount": 9400}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 9.4}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.05}, {"name": "Simazine", "categories": ["water"], "amount": 3.05}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 18.8}, {"name": "Sodium formate", "categories": ["air"], "amount": 15.4}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 15.4}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.32e-21}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 2.8e-21}, {"name": "Sodium formate", "categories": ["water"], "amount": 2.8e-21}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 77.2}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air"], "amount": 0.00511}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00418}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water"], "amount": 0.0139}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 0.00791}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1250}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1490}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 1490}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 0.000647}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 1.72e-10}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.72e-10}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.61}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2820}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.0907}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.0888}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water"], "amount": 0.0838}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.97}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 99300}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 75900}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 7.63}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 4.7}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.13}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.13}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 178000}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 135000}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 8.95}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.71}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 7.87}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.00589}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 286}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 47.8}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.313}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.568}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 84100}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84100}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 84100}, {"name": "Thallium I", "categories": ["air"], "amount": 58200}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 58200}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.85e-16}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1.9e-15}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1.9e-15}, {"name": "Thallium I", "categories": ["soil"], "amount": 1.9e-15}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 2.24e-15}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 2.24e-15}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 6.41e-16}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 2.24e-15}, {"name": "Thallium I", "categories": ["water"], "amount": 2.24e-15}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1090}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.00387}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.00354}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.00279}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.00279}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 0.000621}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 49}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 0.000115}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 0.0213}, {"name": "Thiocyanate", "categories": ["water"], "amount": 0.0213}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5860}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 977}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 732}, {"name": "Thiodicarb", "categories": ["water"], "amount": 732}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4360}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2770}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 7.32}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.23}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 964}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 964}, {"name": "Thiram", "categories": ["air"], "amount": 564}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.303}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.161}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Thiram", "categories": ["water"], "amount": 1.83}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 80200}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80200}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 80200}, {"name": "Tin ion", "categories": ["air"], "amount": 55500}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 55500}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1.37e-18}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 2.43e-16}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 2.43e-16}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 4.57e-16}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2.43e-16}, {"name": "Tin ion", "categories": ["water"], "amount": 2.43e-16}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air"], "amount": 0.0281}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0281}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.00928}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water"], "amount": 0.0301}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.264}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.248}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.248}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.116}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 0.247}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 0.247}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 871}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 18.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.00155}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 104}, {"name": "Triallate", "categories": ["air"], "amount": 47}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 70.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 0.0748}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 185000}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 152000}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.0075}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 0.0036}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.24}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.00144}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0529}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1.77}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 904}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 9.6e-07}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 1.8e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 25.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6730000}, {"name": "Triflumuron", "categories": ["air"], "amount": 4840000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 84000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 58600}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 11400}, {"name": "Triflumuron", "categories": ["water"], "amount": 11400}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 31.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 31.8}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000264}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.00987}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 6.86e-07}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water"], "amount": 1.29e-05}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.000198}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 271000}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 271000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 271000}, {"name": "Vanadium V", "categories": ["air"], "amount": 187000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 2.86e-16}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 5.39e-16}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 5.39e-16}, {"name": "Vanadium V", "categories": ["soil"], "amount": 5.39e-16}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 1.18e-14}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 1.18e-14}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.4e-15}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 1.18e-14}, {"name": "Vanadium V", "categories": ["water"], "amount": 1.18e-14}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air"], "amount": 0.0139}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0139}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.00551}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water"], "amount": 0.0183}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95800}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 886}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 196000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 196000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 196000}, {"name": "Zinc II", "categories": ["air"], "amount": 136000}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 136000}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 1.21e-16}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 2.15e-16}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 2.15e-16}, {"name": "Zinc II", "categories": ["soil"], "amount": 2.15e-16}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1.29e-14}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 1.29e-14}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.32e-15}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1.29e-14}, {"name": "Zinc II", "categories": ["water"], "amount": 1.29e-14}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 74.4}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.00806}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0267}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.0187}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.062}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.0351}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.01}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.034}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.034}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 735}, {"name": "t-Butylamine", "categories": ["air"], "amount": 535}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 535}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.405}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 0.84}, {"name": "t-Butylamine", "categories": ["water"], "amount": 0.84}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 18.7}]}, {"unit": "kg oil-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "energy resources: non-renewable, fossil", "fossil fuel potential (FFP)"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.22}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.42}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.22}]}, {"unit": "kg P-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "eutrophication: freshwater", "freshwater eutrophication potential (FEP)"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "eutrophication: marine", "marine eutrophication potential (MEP)"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.776}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water"], "amount": 0.23}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water"], "amount": 0.0671}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.297}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.0902}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.297}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "human toxicity: carcinogenic", "human toxicity potential (HTPc)"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00065}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.03}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.065}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.081}, {"name": "Acephate", "categories": ["water"], "amount": 0.081}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.00325}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.0313}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.434}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.4}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 49.8}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.896}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 9.72}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.72}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.216}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 1.45}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1.45}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 41.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 41.4}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00215}, {"name": "Aniline", "categories": ["air"], "amount": 0.0322}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.0322}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.7e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0242}, {"name": "Aniline", "categories": ["water"], "amount": 0.0242}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 575}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Arsenic ion", "categories": ["air"], "amount": 852}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 852}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 31.4}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 19.1}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 19.1}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 19.1}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 345}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 345}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 29.1}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 345}, {"name": "Arsenic ion", "categories": ["water"], "amount": 345}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.27}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 0.285}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 0.735}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.54}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.54}, {"name": "Atrazine", "categories": ["water"], "amount": 1.54}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00347}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0765}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0765}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0107}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.33}, {"name": "Benzene", "categories": ["air"], "amount": 1.44}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.158}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.354}, {"name": "Benzene", "categories": ["water"], "amount": 0.354}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.0375}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.145}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.145}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0284}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0961}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.9}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 93.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 93.8}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1150}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 36.5}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 36.5}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 20}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Beryllium II", "categories": ["air"], "amount": 265}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 265}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.749}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.0621}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.0621}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.0621}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 0.121}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 0.121}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 0.0166}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 0.121}, {"name": "Beryllium II", "categories": ["water"], "amount": 0.121}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0294}, {"name": "Butadiene", "categories": ["air"], "amount": 1.33}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.33}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 63}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63}, {"name": "Cadmium II", "categories": ["air"], "amount": 232}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 232}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 110}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1.14}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1.14}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1.14}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.38}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.38}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.425}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.38}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.38}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.0216}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.84}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 3.27}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 3.27}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.293}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.29}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Chloroform", "categories": ["air"], "amount": 1.26}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.26}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.369}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.862}, {"name": "Chloroform", "categories": ["water"], "amount": 0.862}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 0.0799}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.0212}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.0361}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 0.097}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 0.097}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 25700}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25700}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 25700}, {"name": "Chromium VI", "categories": ["air"], "amount": 19900}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 19900}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 4390}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 5720}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 5720}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5720}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 7440}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 7440}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 660}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 7440}, {"name": "Chromium VI", "categories": ["water"], "amount": 7440}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 241}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0637}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 80.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 39.9}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 7.95}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 27.1}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0814}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.0566}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.0566}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.24e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.0109}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.0109}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 102000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 102000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 102000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 92300000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 92300000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 9230000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 7310000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 7310000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 7310000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 226000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 226000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 73200000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 226000000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 226000000}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 4}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0645}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0676}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0676}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.13}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 5.07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.226}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.244}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.244}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.652}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.8}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.8}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.185}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.223}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.223}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.78}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 13.4}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 13.4}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 3.2e-05}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0012}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.423}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.93}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.3}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.8}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 3.36}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 12.5}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00626}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.137}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00064}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6}, {"name": "Furan", "categories": ["air"], "amount": 95}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 95}, {"name": "Furfural", "categories": ["air"], "amount": 0.29}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000412}, {"name": "Hexane", "categories": ["air"], "amount": 0.00483}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.00483}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00265}, {"name": "Hexane", "categories": ["water"], "amount": 0.00265}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.129}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water"], "amount": 10.2}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0173}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.172}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.172}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0234}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0553}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0553}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.39}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 2.27}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 2.27}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air"], "amount": 0.128}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.128}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 24.9}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.9}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.9}, {"name": "Lead II", "categories": ["air"], "amount": 18.6}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 18.6}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.949}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0847}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0847}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0847}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.318}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.318}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.144}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.318}, {"name": "Lead II", "categories": ["water"], "amount": 0.318}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 12.5}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.222}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 72.1}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.1}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.1}, {"name": "Mercury II", "categories": ["air"], "amount": 69.6}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 69.6}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 29.4}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.21}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.21}, {"name": "Mercury II", "categories": ["soil"], "amount": 1.21}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 139}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 139}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 57.4}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 139}, {"name": "Mercury II", "categories": ["water"], "amount": 139}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.98}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 12.3}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 12.3}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0881}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 247}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 255}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 255}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 135}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 236}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.88}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0584}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.147}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.147}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.0171}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.0549}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.0549}, {"name": "Naphthalene", "categories": ["air"], "amount": 2.4}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.903}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 502}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 502}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 502}, {"name": "Nickel II", "categories": ["air"], "amount": 373}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 373}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 47.5}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 12.3}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 12.3}, {"name": "Nickel II", "categories": ["soil"], "amount": 12.3}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 22.8}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 22.8}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.49}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 22.8}, {"name": "Nickel II", "categories": ["water"], "amount": 22.8}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.0724}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.849}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 33.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 33.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.0684}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.895}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.895}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.93}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.93}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.579}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4.64}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.000638}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.0364}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.0364}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00525}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.486}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.486}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.307}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 117}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 114}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 114}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 5120}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 3.53}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0588}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.365}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 0.968}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.0951}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air"], "amount": 1.28}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.28}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00976}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Styrene", "categories": ["water"], "amount": 0.281}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.96}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.523}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.13}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00122}, {"name": "Toluene", "categories": ["air"], "amount": 0.0134}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0134}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.000339}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00226}, {"name": "Toluene", "categories": ["water"], "amount": 0.00226}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0111}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0371}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0715}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.407}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 3.8}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000963}, {"name": "Xylene", "categories": ["air"], "amount": 0.0204}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.000267}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00229}, {"name": "Xylene", "categories": ["water"], "amount": 0.00229}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 0.241}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.313}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.313}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00964}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.0338}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.0338}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "human toxicity: non-carcinogenic", "human toxicity potential (HTPnc)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.414}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.9}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.1}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 3.81}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 5.24}, {"name": "2,4-D", "categories": ["water"], "amount": 5.24}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.105}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 1.88}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 1.88}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0377}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00147}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.9e-06}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00878}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.0297}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.19}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 19300}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 16500}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 620}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 773}, {"name": "Acephate", "categories": ["water"], "amount": 773}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.056}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.545}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Acetone", "categories": ["air"], "amount": 0.0878}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0878}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water"], "amount": 0.0132}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0204}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.131}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 309}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 309}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 309}, {"name": "Acrolein", "categories": ["air"], "amount": 9490}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 9490}, {"name": "Acrolein", "categories": ["water"], "amount": 294}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.74e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water"], "amount": 0.0752}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air"], "amount": 707}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 707}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.85}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 9.16}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.36}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.36}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 36}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 322}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.48}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.1}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 30.4}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.835}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 0.808}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 25.6}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 6.95}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.65}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.361}, {"name": "Aniline", "categories": ["air"], "amount": 5.32}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 5.32}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.00623}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 4.09}, {"name": "Aniline", "categories": ["water"], "amount": 4.09}, {"name": "Anthracene", "categories": ["air"], "amount": 0.0511}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water"], "amount": 0.723}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 5090}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5090}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 5090}, {"name": "Antimony ion", "categories": ["air"], "amount": 3860}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3860}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 195}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 657}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 657}, {"name": "Antimony ion", "categories": ["soil"], "amount": 657}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 805}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 805}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 50.7}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 805}, {"name": "Antimony ion", "categories": ["water"], "amount": 805}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 141000}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 141000}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 141000}, {"name": "Arsenic ion", "categories": ["air"], "amount": 106000}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 106000}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 6550}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 4850}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 4850}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 4850}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 87400}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 87400}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 7370}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 87400}, {"name": "Arsenic ion", "categories": ["water"], "amount": 87400}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 6.7}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.9}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.92}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water"], "amount": 6.11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1060}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1060}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1060}, {"name": "Barium II", "categories": ["air"], "amount": 842}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 842}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 78.5}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 452}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 452}, {"name": "Barium II", "categories": ["soil"], "amount": 452}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 184}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 184}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 7.24}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 184}, {"name": "Barium II", "categories": ["water"], "amount": 184}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0841}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0331}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.3}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.331}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 2.75}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 2.75}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0475}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28}, {"name": "Benzene", "categories": ["air"], "amount": 1.22}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.301}, {"name": "Benzene", "categories": ["water"], "amount": 0.301}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.505}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.00398}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.107}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.6}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1340}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 92.9}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 126}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 126}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 500}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 27500}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27500}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27500}, {"name": "Beryllium II", "categories": ["air"], "amount": 641000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 641000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 25.7}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.29}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.29}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.29}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.46}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 4.46}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 0.613}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.46}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.46}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 372}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.994}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.21}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 72.7}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 72.7}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 101}, {"name": "Bifenthrin", "categories": ["air"], "amount": 65}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 4.23}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 15.9}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 1970}, {"name": "Bifenthrin", "categories": ["water"], "amount": 1970}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.77}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.96}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.5}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.26}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.6}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.6}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.79}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air"], "amount": 6.67}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.67}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air"], "amount": 0.431}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.431}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.000981}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water"], "amount": 0.0541}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 50000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 50000}, {"name": "Cadmium II", "categories": ["air"], "amount": 35800}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 35800}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 100000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1050}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1050}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1050}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1270}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1270}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 390}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1270}, {"name": "Cadmium II", "categories": ["water"], "amount": 1270}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.779}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.9}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.16}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.3}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.3}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.5}, {"name": "Carbendazim", "categories": ["air"], "amount": 29.5}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.05}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Carbendazim", "categories": ["water"], "amount": 1.83}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 140}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 752}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 823}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 823}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 215}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 667}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 667}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 14}, {"name": "Carboxin", "categories": ["air"], "amount": 12.3}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.249}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.855}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Carboxin", "categories": ["water"], "amount": 1.61}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 3.52e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0152}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air"], "amount": 12.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.73e-05}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water"], "amount": 0.619}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 921}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 4.18}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.861}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water"], "amount": 9.89}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air"], "amount": 21.8}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.96}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water"], "amount": 12.8}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 8.14}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.72}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 10}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 10}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 79.8}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 338}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 88.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.748}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.319}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.319}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.319}, {"name": "Chromium III", "categories": ["air"], "amount": 0.238}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.238}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.00785}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.0416}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.0416}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.0416}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 0.00873}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 0.00873}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 0.00304}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.00873}, {"name": "Chromium III", "categories": ["water"], "amount": 0.00873}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 430}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 430}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 430}, {"name": "Chromium VI", "categories": ["air"], "amount": 5680}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 5680}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 14.2}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 44}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 44}, {"name": "Chromium VI", "categories": ["soil"], "amount": 44}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 57.4}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 57.4}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 5.08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 57.4}, {"name": "Chromium VI", "categories": ["water"], "amount": 57.4}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 42.3}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.3}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.3}, {"name": "Copper ion", "categories": ["air"], "amount": 31}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 31}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 18.6}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.531}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.531}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.531}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.86}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 2.86}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 0.717}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.86}, {"name": "Copper ion", "categories": ["water"], "amount": 2.86}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air"], "amount": 0.18}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00479}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.066}, {"name": "Cumene", "categories": ["water"], "amount": 0.066}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0041}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0438}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.48}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.935}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 0.768}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 21.6}, {"name": "Cypermethrin", "categories": ["water"], "amount": 21.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 25.7}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.04}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 31.3}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 253}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 38}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.2}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4.13}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.59}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.59}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 86.8}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 865}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 42.1}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0958}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0958}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.7}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.88}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 17.3}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 41.9}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 41.9}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 66.2}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 56.2}, {"name": "Dimethoate", "categories": ["air"], "amount": 20.3}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.0765}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 14.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.702}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 255}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 30.3}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 68.3}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 68.3}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 46.2}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.554}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 88.7}, {"name": "Diuron", "categories": ["air"], "amount": 78.7}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 2.03}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.36}, {"name": "Diuron", "categories": ["water"], "amount": 12.1}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.00919}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.61}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 28.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0789}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0826}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.292}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.321}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.163}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.281}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 5.92}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.92}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.92}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 5.95}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.95}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 361}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 553}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 553}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 67.6}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 5.47}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 5.47}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 266}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0843}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0843}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00287}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0146}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00143}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 0.244}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2.73}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 22300}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.96}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.31}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.34}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Fipronil", "categories": ["air"], "amount": 1520}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 615}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 1570}, {"name": "Fipronil", "categories": ["water"], "amount": 1570}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.788}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 20.7}, {"name": "Fluorene", "categories": ["air"], "amount": 0.692}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 1.3}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 6.78}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00311}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.447}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00128}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.972}, {"name": "Furan", "categories": ["air"], "amount": 35.5}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 45.6}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 49.2}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 3.53}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.768}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.2}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "Hexane", "categories": ["air"], "amount": 2.2}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.2}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0475}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Hexane", "categories": ["water"], "amount": 1.23}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.504}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 5480}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00218}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0273}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0332}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.104}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.8}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 40.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 40.7}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.67}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 0.197}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 0.253}, {"name": "Imazethapyr", "categories": ["water"], "amount": 0.253}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air"], "amount": 57.1}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 2.07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.73}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.73}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 0.113}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 29800}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29800}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 29800}, {"name": "Lead II", "categories": ["air"], "amount": 22300}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 22300}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1050}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 102}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 102}, {"name": "Lead II", "categories": ["soil"], "amount": 102}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 382}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 382}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 173}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 382}, {"name": "Lead II", "categories": ["water"], "amount": 382}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 495}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.197}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 252}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 9.59}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 21.2}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 21.2}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.086}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.22}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.22}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.0736}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.74}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0272}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.2}, {"name": "Mancozeb", "categories": ["air"], "amount": 47.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2.75}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 1.77}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2.43}, {"name": "Mancozeb", "categories": ["water"], "amount": 2.43}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.00733}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 29000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 29000}, {"name": "Mercury II", "categories": ["air"], "amount": 24800}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 24800}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 11700}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 489}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 489}, {"name": "Mercury II", "categories": ["soil"], "amount": 489}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 56200}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 56200}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 23300}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 56200}, {"name": "Mercury II", "categories": ["water"], "amount": 56200}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.53}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 75}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1530}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.152}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.16}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 366}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 366}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 366}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 369}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 369}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 9.31}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 9.31}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2840}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2930}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2930}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1550}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 2710}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2710}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 32.9}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32.9}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.9}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 33.3}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 33.3}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Methanol", "categories": ["air"], "amount": 0.156}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.156}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000666}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water"], "amount": 0.0194}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.22}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 456}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.72}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 9.35}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water"], "amount": 15.4}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00853}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 89.8}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.11}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.342}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.43}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water"], "amount": 3.37}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.7}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 2.42}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.9}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 12.7}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 0.695}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 1.18}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 1.18}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 77.5}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 9.48}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 3550}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3550}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 3550}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2630}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2630}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1320}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 419}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 419}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 419}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 85.5}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 85.5}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 9.66}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 85.5}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 85.5}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.00213}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.00684}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 213}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.514}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Naphthalene", "categories": ["air"], "amount": 11}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.03}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.206}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 96.3}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96.3}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 96.3}, {"name": "Nickel II", "categories": ["air"], "amount": 71.5}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 71.5}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 7.3}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.37}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.37}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.37}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 4.4}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 4.4}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 0.673}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 4.4}, {"name": "Nickel II", "categories": ["water"], "amount": 4.4}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.2}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.2}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0148}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 0.0138}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.172}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.05}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.6}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0604}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 8.97}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.71}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.162}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 2.52}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Permethrin", "categories": ["water"], "amount": 10.8}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "Phenol", "categories": ["air"], "amount": 0.493}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.493}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.000864}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.315}, {"name": "Phenol", "categories": ["water"], "amount": 0.315}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 734}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 734}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.32}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 34.6}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 17.8}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 602}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00317}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.181}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.00406}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.251}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 23.2}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 9.61}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.428}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 6.83}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 22.6}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.399}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 27.9}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.881}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.385}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.477}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1.87}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.4}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 7.72}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water"], "amount": 36.6}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 3.2}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 2.74}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water"], "amount": 14.8}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 7.19}, {"name": "Pyrene", "categories": ["air"], "amount": 0.624}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 11.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.342}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 0.573}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 31.1}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 31.1}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 14.6}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.531}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.608}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.492}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 10.9}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 68100}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 68100}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 68100}, {"name": "Silver I", "categories": ["air"], "amount": 48800}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 48800}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 45500}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 756}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 756}, {"name": "Silver I", "categories": ["soil"], "amount": 756}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 689}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 689}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 201}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 689}, {"name": "Silver I", "categories": ["water"], "amount": 689}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 418}, {"name": "Simazine", "categories": ["air"], "amount": 344}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 17.3}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 19.3}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 33.5}, {"name": "Simazine", "categories": ["water"], "amount": 33.5}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air"], "amount": 0.855}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.855}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.0046}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water"], "amount": 0.0211}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 32}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 5.51}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water"], "amount": 17.1}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 24.4}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.47}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.52}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1860}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1560}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 62.5}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 280}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 959}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 0.0552}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 342}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 6.15}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 11.9}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 7840}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Thallium I", "categories": ["air"], "amount": 7300}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 7300}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2480}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 6950}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 6950}, {"name": "Thallium I", "categories": ["soil"], "amount": 6950}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 5950}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 5950}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 379}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 5950}, {"name": "Thallium I", "categories": ["water"], "amount": 5950}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air"], "amount": 26.8}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.72}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.72}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 7.5}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.67}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 4.65}, {"name": "Thiodicarb", "categories": ["water"], "amount": 4.65}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.3}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 15.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.905}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.33}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.91}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.91}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 5.23}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23}, {"name": "Thiram", "categories": ["air"], "amount": 11.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.0675}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.208}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 4.91}, {"name": "Thiram", "categories": ["water"], "amount": 4.91}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067}, {"name": "Toluene", "categories": ["air"], "amount": 0.858}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.858}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0184}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water"], "amount": 0.0714}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.318}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.14}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.54}, {"name": "Triallate", "categories": ["air"], "amount": 9.42}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.76}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 72.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 44.1}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 158}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 144}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.78}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 17.9}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 15.8}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.16}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.7}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 128}, {"name": "Trifluralin", "categories": ["water"], "amount": 128}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.381}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 929}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 929}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 929}, {"name": "Vanadium V", "categories": ["air"], "amount": 703}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 703}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 66}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 58.7}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 58.7}, {"name": "Vanadium V", "categories": ["soil"], "amount": 58.7}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 605}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 605}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 37.6}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 605}, {"name": "Vanadium V", "categories": ["water"], "amount": 605}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.68}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air"], "amount": 1.58}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0182}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water"], "amount": 0.0692}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.93}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 11800}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11800}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 11800}, {"name": "Zinc II", "categories": ["air"], "amount": 8250}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 8250}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 37700}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 205}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 205}, {"name": "Zinc II", "categories": ["soil"], "amount": 205}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 8240}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 8240}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 338}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 8240}, {"name": "Zinc II", "categories": ["water"], "amount": 8240}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5.95}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00619}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.027}]}, {"unit": "kg Co-60-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "ionising radiation", "ionising radiation potential (IRP)"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 3.14e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 3.14e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 0.000438}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 3.14e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 3.14e-05}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 54.5}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 0.00345}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 0.00345}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 0.0482}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 0.00345}, {"name": "Americium-241", "categories": ["water"], "amount": 0.00345}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0491}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.000891}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00473}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water"], "amount": 8.64}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.64}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 10}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00582}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 10}, {"name": "Caesium-137", "categories": ["water"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["air"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 1.15}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.00609}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 0.00609}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0273}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.00609}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.00609}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00245}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.64}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000856}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 4.05e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 4.12e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 4.12e-05}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["air"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 10.5}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 0.287}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 0.287}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 0.287}, {"name": "Iodine-129", "categories": ["water"], "amount": 0.287}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.03}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 8.48e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 8.48e-06}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0909}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0191}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 7.88e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.88e-06}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00145}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.000236}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water"], "amount": 0.03}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 2.45}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.0245}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 0.0245}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000455}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.0245}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.0245}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 7.91e-05}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 0.0309}, {"name": "Technetium-99", "categories": ["water"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 7.91e-05}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 0.0309}, {"name": "Technetium-99m", "categories": ["water"], "amount": 0.0309}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 8.55e-06}]}, {"unit": "m2*a crop-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "land use", "agricultural land occupation (LOP)"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -36.75}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}]}, {"unit": "kg Cu-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "material resources: metals/minerals", "surplus ore potential (SOP)"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.169}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.169}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 0.572}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.131}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0228}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 76.7}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 3.2}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.32}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.32}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 11800}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.0951}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0951}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.305}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.0108}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.0104}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 6.57}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.57}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0488}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.0154}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 83.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 83.8}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 317}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 3730}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.192}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.00283}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 96.7}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 103}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 103}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 7.09}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 7.09}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0619}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.491}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.79}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.79}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.79}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.0823}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0823}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 8.96}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29.2}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.89}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 5.2}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 4280}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00916}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.167}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 8770}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00576}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 528}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 528}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6340}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 13.3}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.428}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 153}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.86}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0875}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.0378}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 52.9}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 52.9}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 18.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 18.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 1200}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 5.03}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.03}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.879}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 7.78}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 25.2}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 3.97}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.153}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.153}]}, {"unit": "kg CFC-11-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "ozone depletion", "ozone depletion potential (ODPinfinite)"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.011}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.011}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.011}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.011}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.178}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.664}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.664}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.134}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.134}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.27}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.27}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.067}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.067}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.067}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.011}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.061}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.061}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.061}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.061}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.061}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.00726}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.00726}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.734}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.734}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 8.78}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.78}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.78}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 8.78}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 8.78}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 14.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 14.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 14.1}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.045}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.045}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.587}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.587}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.022}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.895}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.895}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg PM2.5-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "particulate matter formation", "particulate matter formation potential (PMFP)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air"], "amount": 0.24}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air"], "amount": 0.08}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.08}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.17}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.11}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.11}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.29}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.29}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.23}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.23}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "photochemical oxidant formation: human health", "photochemical oxidant formation potential: humans (HOFP)"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.345}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.131}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.131}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.149}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0653}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.199}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0326}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0326}, {"name": "Acetone", "categories": ["air"], "amount": 0.0218}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Acrolein", "categories": ["air"], "amount": 0.196}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.174}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.0689}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.0689}, {"name": "Benzene", "categories": ["air"], "amount": 0.0363}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0363}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.167}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Butadiene", "categories": ["air"], "amount": 0.323}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.112}, {"name": "Butane", "categories": ["air"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.112}, {"name": "Butanol", "categories": ["air"], "amount": 0.189}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.228}, {"name": "Butene", "categories": ["air"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.228}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.0943}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0943}, {"name": "Cumene", "categories": ["air"], "amount": 0.116}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.102}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.167}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Ethane", "categories": ["air"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00363}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00363}, {"name": "Ethanol", "categories": ["air"], "amount": 0.123}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.123}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0689}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.363}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.134}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.134}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.167}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0109}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Heptane", "categories": ["air"], "amount": 0.127}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.127}, {"name": "Hexane", "categories": ["air"], "amount": 0.145}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.163}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.163}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0266}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0266}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Isoprene", "categories": ["air"], "amount": 0.413}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.413}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0109}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00363}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Methanol", "categories": ["air"], "amount": 0.0471}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.116}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0399}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0399}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Phenol", "categories": ["air"], "amount": -0.0181}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0181}, {"name": "Propanal", "categories": ["air"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.261}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0508}, {"name": "Propane", "categories": ["air"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0508}, {"name": "Propanol", "categories": ["air"], "amount": 0.174}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.424}, {"name": "Propene", "categories": ["air"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.424}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0471}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Styrene", "categories": ["air"], "amount": 0.0181}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0181}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00363}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Toluene", "categories": ["air"], "amount": 0.16}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.105}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.312}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.312}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.283}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.283}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "photochemical oxidant formation: terrestrial ecosystems", "photochemical oxidant formation potential: ecosystems (EOFP)"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.555}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.21}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.21}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.479}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.105}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.304}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.321}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0526}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0526}, {"name": "Acetone", "categories": ["air"], "amount": 0.0351}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "Acrolein", "categories": ["air"], "amount": 0.316}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.316}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.281}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.111}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.111}, {"name": "Benzene", "categories": ["air"], "amount": 0.0585}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0585}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.269}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Butadiene", "categories": ["air"], "amount": 0.52}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.52}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.181}, {"name": "Butane", "categories": ["air"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.181}, {"name": "Butanol", "categories": ["air"], "amount": 0.304}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Butene", "categories": ["air"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.152}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Cumene", "categories": ["air"], "amount": 0.187}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.164}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.269}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.0468}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00585}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00585}, {"name": "Ethanol", "categories": ["air"], "amount": 0.199}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.111}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.111}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.585}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.216}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.216}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.269}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0175}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Heptane", "categories": ["air"], "amount": 0.205}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.205}, {"name": "Hexane", "categories": ["air"], "amount": 0.234}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.263}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.263}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0429}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Isoprene", "categories": ["air"], "amount": 0.666}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.666}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0175}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00585}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Methanol", "categories": ["air"], "amount": 0.076}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.187}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0643}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0643}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Phenol", "categories": ["air"], "amount": -0.0292}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0292}, {"name": "Propanal", "categories": ["air"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.421}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0818}, {"name": "Propane", "categories": ["air"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0818}, {"name": "Propanol", "categories": ["air"], "amount": 0.281}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.684}, {"name": "Propene", "categories": ["air"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.684}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.076}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Styrene", "categories": ["air"], "amount": 0.0292}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0292}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00585}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Toluene", "categories": ["air"], "amount": 0.257}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.17}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.503}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.503}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.456}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.456}]}, {"unit": "cubic meter", "name": ["ReCiPe 2016 v1.03, midpoint (H)", "water use", "water consumption potential (WCP)"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Water", "categories": ["air"], "amount": 1}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg SO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "acidification: terrestrial no LT", "terrestrial acidification potential (TAP) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.552}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.36}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}]}, {"unit": "kg CO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "climate change no LT", "global warming potential (GWP1000) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air"], "amount": 60}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 60}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 264}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 264}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 264}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 3710}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 3710}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 578}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 578}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 6940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 6940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 6940}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6490}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6490}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2550}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2550}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 506}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 506}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 506}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 506}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7710}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 7710}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 7710}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 7710}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5020}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5020}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5020}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5020}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 292}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 292}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1870}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1870}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1870}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1870}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5860}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 5860}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 5860}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 5860}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8210}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8210}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8210}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8210}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6090}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6090}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6090}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6090}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 30.2}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 30.2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4590}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4590}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4590}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4590}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7800}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7800}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7800}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7800}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5280}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5280}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 10900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 10900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 10900}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 33}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 33}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10800}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10800}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 543}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 543}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 543}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 543}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2430}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2430}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2430}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2430}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 85}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 85}, {"name": "Methane, fossil", "categories": ["air"], "amount": 85}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 85}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 84}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 84}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 84}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 45}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 45}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 84}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 84}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 84}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3480}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3480}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4880}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 4880}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 4880}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 4880}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10800}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 12800}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6350}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 17500}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 17500}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "ecotoxicity: freshwater no LT", "freshwater ecotoxicity potential (FETP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.000523}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.836}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.11e-05}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.0411}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.204}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.9}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 2.62}, {"name": "2,4-D", "categories": ["water"], "amount": 2.62}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0734}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.155}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0734}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.182}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.155}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0648}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.109}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.27}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.27}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0248}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.0144}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.98e-06}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.00477}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 4.88e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.0653}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.00199}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water"], "amount": 14.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0665}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.713}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.889}, {"name": "Acephate", "categories": ["water"], "amount": 0.889}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.96e-05}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.144}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.95e-09}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.169}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air"], "amount": 4.33e-05}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.33e-05}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 6.06e-06}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water"], "amount": 0.00217}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.000194}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.000194}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00873}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00873}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00873}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 5.11}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air"], "amount": 0.084}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.084}, {"name": "Acrolein", "categories": ["water"], "amount": 69.4}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.94e-09}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water"], "amount": 0.132}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0236}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0236}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.000598}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.441}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 11.5}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0228}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0228}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 25.1}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.759}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 56.3}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.309}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 339}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 269}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 144}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1070}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 82400}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 35.1}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.14}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 39.5}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air"], "amount": 0.00401}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00401}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.11e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "Aniline", "categories": ["water"], "amount": 1.05}, {"name": "Anthracene", "categories": ["air"], "amount": 0.197}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.135}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 354}, {"name": "Anthracene", "categories": ["water"], "amount": 354}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.232}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.86}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.86}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.211}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.365}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.365}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.365}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 59.7}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 8.35e-21}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 59.7}, {"name": "Arsenic ion", "categories": ["water"], "amount": 59.7}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.86}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14.8}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 85.6}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 179}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 179}, {"name": "Atrazine", "categories": ["water"], "amount": 179}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.454}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.747}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 234}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 27.3}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 156}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 156}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.461}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.461}, {"name": "Barium II", "categories": ["air"], "amount": 1.09}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.09}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil"], "amount": 2.51}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.53e-21}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.79}, {"name": "Barium II", "categories": ["water"], "amount": 2.79}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.0659}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0228}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0238}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.055}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.68}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.68}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.00269}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00269}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.744}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.72e-05}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water"], "amount": 0.0868}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000158}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.748}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 6.87e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.293}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 24.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0684}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0684}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.0687}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0687}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 15.2}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.412}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.412}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 134}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 134}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.0491}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0337}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 4.17e-06}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.285}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.877}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.877}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.657}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.657}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.101}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.169}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.169}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.169}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 50}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 7.78e-21}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 50}, {"name": "Beryllium II", "categories": ["water"], "amount": 50}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 249}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 36.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 277}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 21100}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 21100}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 110}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.509}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.1}, {"name": "Bifenthrin", "categories": ["air"], "amount": 39.5}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 13.5}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 89.5}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 12000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 12000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 44.9}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.0298}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 10}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.9}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.95}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 167}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 167}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 11.7}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3.65}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air"], "amount": 0.000143}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000143}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 4.78e-06}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water"], "amount": 0.0183}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.0771}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.302}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.302}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.299}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.299}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.291}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.291}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.291}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 15}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 7.05e-22}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 15}, {"name": "Cadmium II", "categories": ["water"], "amount": 15}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 25.9}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 9.19}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 116}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 116}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58}, {"name": "Carbendazim", "categories": ["air"], "amount": 7.02}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 4.53}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 26.3}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 45.9}, {"name": "Carbendazim", "categories": ["water"], "amount": 45.9}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.708}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 9.94e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.349}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 6.32e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0948}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air"], "amount": 39.4}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 39.4}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 9.74e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 217}, {"name": "Chloramine", "categories": ["water"], "amount": 217}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.67}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.398}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 63.7}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.537}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 8.54e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water"], "amount": 0.162}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.8}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 23.7}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 26.5}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 158}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 673}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 673}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.4}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 329}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1790}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 14700}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 14700}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 33.9}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.45}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0595}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0595}, {"name": "Chromium III", "categories": ["air"], "amount": 0.0847}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.0847}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.0767}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.141}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.141}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.141}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.03}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.15e-22}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.03}, {"name": "Chromium III", "categories": ["water"], "amount": 2.03}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52}, {"name": "Chromium VI", "categories": ["air"], "amount": 3.63}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3.63}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 3.32}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6.11}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6.11}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6.11}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 83.2}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.97e-20}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 83.2}, {"name": "Chromium VI", "categories": ["water"], "amount": 83.2}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.833}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.376}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.699}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.102}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.102}, {"name": "Cobalt II", "categories": ["air"], "amount": 0.0816}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 0.0816}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.0211}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.0368}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.0368}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.0368}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5.67}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 4.45e-22}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5.67}, {"name": "Cobalt II", "categories": ["water"], "amount": 5.67}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.57}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57}, {"name": "Copper ion", "categories": ["air"], "amount": 2.04}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2.04}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.492}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.854}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.854}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.854}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 144}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 9.9e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 144}, {"name": "Copper ion", "categories": ["water"], "amount": 144}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 9.14e-06}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.558}, {"name": "Cumene", "categories": ["water"], "amount": 0.558}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 7.43}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 7.27e-08}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0546}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.0628}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.289}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.0049}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 257}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 110}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 821}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 62900}, {"name": "Cypermethrin", "categories": ["water"], "amount": 62900}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 2.02}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 12.9}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.593}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.73}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0534}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 2.21}, {"name": "Deltamethrin", "categories": ["air"], "amount": 53.3}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 6300}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.139}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 16.4}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.173}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.33}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.33}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.135}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 17.1}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0429}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.0814}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.63}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.63}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 17.6}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 5.79}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 3.27}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 0.282}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.159}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.57e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.57e-06}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0314}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0314}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.81e-06}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.462}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 188}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 300}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1990}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 4860}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 4860}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Dimethoate", "categories": ["air"], "amount": 3.37}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 5.7}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 38.7}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0766}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0766}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.973}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 2.2e-05}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.973}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.973}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.394}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.71}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 8.72}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 19.6}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 19.6}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Diuron", "categories": ["air"], "amount": 35.2}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 15.2}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 98.4}, {"name": "Diuron", "categories": ["water"], "amount": 222}, {"name": "Dodecanol", "categories": ["water"], "amount": 22.5}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.353}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.318}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.113}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 6.86}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.281}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.732}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.58}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 12.4}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.59}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 41}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 83.9}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 83.9}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1490}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.18e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.18e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.52e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000425}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 7.04e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0554}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.00495}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.55}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.24e-06}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water"], "amount": 0.00629}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.047}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.328}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.328}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.24}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.594}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.9e-05}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.94e-09}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.425}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.000708}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.000708}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.000176}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0482}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 2.71}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 6.5}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 63.5}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.58}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 7.5}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 43.7}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 108}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.639}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.26}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.5}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 87.9}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 87.9}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.4}, {"name": "Fluazinam", "categories": ["air"], "amount": 287}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 105}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 743}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water"], "amount": 2260}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.2}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 41}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.863}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 618}, {"name": "Fluorene", "categories": ["air"], "amount": 0.0118}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 7.12}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 4.12}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 31.1}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0315}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0315}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 4.68e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.907}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0853}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.98e-10}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0853}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0853}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.0076}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.996}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.202}, {"name": "Furfural", "categories": ["air"], "amount": 0.00702}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.589}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.28}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.35}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water"], "amount": 2.39}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.85}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 32.1}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 32.1}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air"], "amount": 6.53e-09}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.53e-09}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 10.8}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "Hexane", "categories": ["water"], "amount": 0.141}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.39}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 93.3}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.0227}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 93.3}, {"name": "Hydrazine", "categories": ["water"], "amount": 93.3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.5e-06}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.302}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.52e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.52e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.139}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 6.47e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.139}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.139}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000363}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000363}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.00036}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.00036}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.0062}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.676}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.79}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.95}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 9.15}, {"name": "Imidacloprid", "categories": ["water"], "amount": 9.15}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 6.14}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.51}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 1.71e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.71e-08}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 4.87}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 66.7}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 410}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 47700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 47700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 47700}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00902}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00902}, {"name": "Lead II", "categories": ["air"], "amount": 0.00654}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00654}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.000635}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.000987}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.000987}, {"name": "Lead II", "categories": ["soil"], "amount": 0.000987}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.533}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.66e-24}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.533}, {"name": "Lead II", "categories": ["water"], "amount": 0.533}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.539}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 24.6}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.927}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0967}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.63}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.63}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.184}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 6}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 12.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.292}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0307}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.52}, {"name": "Mancozeb", "categories": ["air"], "amount": 14.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 56.6}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 77.9}, {"name": "Mancozeb", "categories": ["water"], "amount": 77.9}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.21}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.777}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.777}, {"name": "Mercury II", "categories": ["air"], "amount": 0.542}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.542}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0288}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0382}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0382}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0382}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 43.9}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.34e-22}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 43.9}, {"name": "Mercury II", "categories": ["water"], "amount": 43.9}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.294}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.19}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00276}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00276}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.81e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0292}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000266}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.534}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air"], "amount": 0.000132}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.49e-06}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water"], "amount": 0.00493}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.25}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 28.1}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 8.59}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 47.6}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water"], "amount": 78.6}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.372}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.000365}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.72}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00341}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.756}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.91}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air"], "amount": 0.063}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.063}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.291}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 6.19e-06}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.291}, {"name": "Methylamine", "categories": ["water"], "amount": 0.291}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.328}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.63}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 9.41}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 62.2}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 147}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 147}, {"name": "Metolachlor", "categories": ["water"], "amount": 147}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.47}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 148}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 297}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 772}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 523}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 3010}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 5070}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 5070}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 111}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.612}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0111}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0111}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.0158}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.0158}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.0144}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.0265}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.0265}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.0265}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.376}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 5.32e-23}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.376}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.376}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 3.12}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.287}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 4.55}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.000708}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 68}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.783}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.783}, {"name": "Nickel II", "categories": ["air"], "amount": 0.682}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.682}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.256}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.456}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.456}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.456}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 41.7}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.29e-21}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 41.7}, {"name": "Nickel II", "categories": ["water"], "amount": 41.7}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.00135}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.76}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.82}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.0644}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.76}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 3.03}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.322}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.344}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.344}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 6.02}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.00486}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 13}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0329}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0129}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 38.3}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.184}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.69}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 175}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 175}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.1}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 5.08}, {"name": "Permethrin", "categories": ["water"], "amount": 2860}, {"name": "Phenanthrene", "categories": ["air"], "amount": 0.136}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 57}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.07}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air"], "amount": 0.00867}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00867}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.24e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.969}, {"name": "Phenol", "categories": ["water"], "amount": 0.969}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.136}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.136}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.15}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.15}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 19}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 5.54}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 45.3}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 8.86}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 33.3}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 60.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00054}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 15.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.000947}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 26.1}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.608}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 3.81e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.608}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.608}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.01e-05}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.24}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.728}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.86}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 22.5}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 13.3}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 430}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.23}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 17.5}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.0202}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air"], "amount": 0.000117}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00941}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 5.28e-06}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00941}, {"name": "Propanol", "categories": ["water"], "amount": 0.00941}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 9.34}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.17}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.15}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 3.37}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 15.8}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water"], "amount": 74.9}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.32e-08}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.157}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 8.29}, {"name": "Pyrene", "categories": ["air"], "amount": 1.18}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1810}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.81}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.81}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.036}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 8.08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.673}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.03}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 4.5}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 28.4}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 236}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2700}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2700}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.182}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.0406}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.277}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.277}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.267}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.267}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.135}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.242}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.242}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.242}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 13.9}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.36e-21}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 13.9}, {"name": "Selenium IV", "categories": ["water"], "amount": 13.9}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0968}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.41}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.79}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.79}, {"name": "Silver I", "categories": ["air"], "amount": 6.44}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 6.44}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.95}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 3.44}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 3.44}, {"name": "Silver I", "categories": ["soil"], "amount": 3.44}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 431}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.63e-20}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 431}, {"name": "Silver I", "categories": ["water"], "amount": 431}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.65}, {"name": "Simazine", "categories": ["air"], "amount": 11.9}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 5.69}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 33.2}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 57.6}, {"name": "Simazine", "categories": ["water"], "amount": 57.6}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 20}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.86e-06}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.396}, {"name": "Styrene", "categories": ["water"], "amount": 0.396}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 144}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.84}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 13.1}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water"], "amount": 40.5}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.45}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 72.6}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.93}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 22.3}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.00014}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.23}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.31}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.31}, {"name": "Thallium I", "categories": ["air"], "amount": 13.9}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 13.9}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 15.7}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 31.1}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 31.1}, {"name": "Thallium I", "categories": ["soil"], "amount": 31.1}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 52.6}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 3.29e-20}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 52.6}, {"name": "Thallium I", "categories": ["water"], "amount": 52.6}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.539}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.41}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.736}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 5.15}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 15}, {"name": "Thiabendazole", "categories": ["water"], "amount": 15}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 12.7}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 79.1}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 147}, {"name": "Thiodicarb", "categories": ["water"], "amount": 147}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.817}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.92}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.93}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 10.4}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 15.1}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9}, {"name": "Thiram", "categories": ["air"], "amount": 5.91}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 19.8}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 468}, {"name": "Thiram", "categories": ["water"], "amount": 468}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0723}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0723}, {"name": "Tin ion", "categories": ["air"], "amount": 0.0529}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 0.0529}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.00592}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.00944}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.00944}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.00944}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 4.25}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.68e-22}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 4.25}, {"name": "Tin ion", "categories": ["water"], "amount": 4.25}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.71e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.139}, {"name": "Toluene", "categories": ["water"], "amount": 0.139}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 36.7}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 714}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.74}, {"name": "Triallate", "categories": ["air"], "amount": 0.164}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.66}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 86.9}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.506}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 7.86}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.11e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.17}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.86}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 4.91e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.00133}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 12.1}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0391}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.438}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.61}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 35.4}, {"name": "Trifluralin", "categories": ["water"], "amount": 35.4}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.455}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.14e-11}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.0319}, {"name": "Urea", "categories": ["water"], "amount": 0.0319}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.38}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.38}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.95}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.95}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.99}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.99}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.99}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 175}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.22e-20}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 175}, {"name": "Vanadium V", "categories": ["water"], "amount": 175}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.548}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Xylene", "categories": ["water"], "amount": 0.155}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 257}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 110}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.94}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94}, {"name": "Zinc II", "categories": ["air"], "amount": 3.03}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 3.03}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.58}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.972}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.972}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.972}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.9e-20}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 211}, {"name": "Zinc II", "categories": ["water"], "amount": 211}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.26}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 53.1}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 4.4e-06}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.492}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.06e-05}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.525}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.31}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "ecotoxicity: marine no LT", "marine ecotoxicity potential (METP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.833}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.141}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.00731}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.00125}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.145}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.02}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.106}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.146}, {"name": "2,4-D", "categories": ["water"], "amount": 0.146}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0706}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.0127}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 0.0884}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 0.0884}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0706}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.0623}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.0127}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 0.0884}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.00605}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.238}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.238}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0054}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.00144}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.000733}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.000315}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000315}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.000996}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.000299}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.00261}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.00261}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.007}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00155}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.152}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.152}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.0488}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.0488}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 0.631}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 11.7}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.631}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.631}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0443}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00705}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.0397}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.0495}, {"name": "Acephate", "categories": ["water"], "amount": 0.0495}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00807}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00807}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.00514}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00514}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.00943}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0716}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.00943}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.00943}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.0168}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00238}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000601}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000601}, {"name": "Acetone", "categories": ["air"], "amount": 0.000597}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.000597}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.000894}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water"], "amount": 0.000503}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.00388}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00239}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 0.438}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air"], "amount": 1.34}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.34}, {"name": "Acrolein", "categories": ["water"], "amount": 3.24}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00185}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.0131}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00185}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00185}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0034}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0034}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.0446}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.0446}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.0519}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.255}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.0519}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.0519}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.974}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0196}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0196}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.57}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.58}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.00546}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9340}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 4800}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 108}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 267}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 15000}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.325}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.44}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00496}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00496}, {"name": "Aniline", "categories": ["air"], "amount": 0.00107}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.139}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water"], "amount": 0.0257}, {"name": "Anthracene", "categories": ["air"], "amount": 4.67}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 29}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 307}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 29}, {"name": "Anthracene", "categories": ["water"], "amount": 29}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32.3}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.3}, {"name": "Arsenic ion", "categories": ["air"], "amount": 22.4}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 22.4}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0553}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0954}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0954}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0954}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 24}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 71.9}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 24}, {"name": "Arsenic ion", "categories": ["water"], "amount": 24}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.58}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water"], "amount": 14.9}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0373}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.14}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 13.1}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.72}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.283}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.25}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 12.9}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 12.9}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07}, {"name": "Barium II", "categories": ["air"], "amount": 1.05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.49}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.03}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.03}, {"name": "Barium II", "categories": ["soil"], "amount": 1.03}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.25}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.94}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.25}, {"name": "Barium II", "categories": ["water"], "amount": 1.25}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.00158}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0295}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0391}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0239}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.00306}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.0378}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.0378}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0346}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0346}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0234}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0234}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0395}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air"], "amount": 0.00235}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.00235}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.00486}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0891}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00486}, {"name": "Benzene", "categories": ["water"], "amount": 0.00486}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.45}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.0377}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.339}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.339}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.339}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.57}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.57}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.46}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.46}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 10.8}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.2}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.2}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 20.1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 20.1}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 20.5}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.5}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.5}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 26.8}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 26.8}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 12.1}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 12.1}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.00118}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.00334}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0322}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.00699}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 68.3}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.3}, {"name": "Beryllium II", "categories": ["air"], "amount": 47.2}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 47.2}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.0205}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.0341}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.0341}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.0341}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 15.5}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 149}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 15.5}, {"name": "Beryllium II", "categories": ["water"], "amount": 15.5}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6710}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 10.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 51.2}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 3830}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 3830}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 81.6}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2380}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1380}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 24.5}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 37.3}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2180}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2180}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.49}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 0.0744}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.00164}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.88}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.982}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.28}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.28}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.964}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air"], "amount": 0.000583}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000583}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.00295}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water"], "amount": 0.000557}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.00304}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0295}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.00304}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.00304}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.2}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.2}, {"name": "Cadmium II", "categories": ["air"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.0273}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.0492}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.0492}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.0492}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 3.8}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 53.5}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 3.8}, {"name": "Cadmium II", "categories": ["water"], "amount": 3.8}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.15}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.515}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.45}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.45}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.23}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.09}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.251}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.47}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.56}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.56}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.0392}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.33}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.138}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.263}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.138}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.138}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 0.0094}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00133}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.34}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.34}, {"name": "Chloramine", "categories": ["air"], "amount": 7.51}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.51}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.17}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 23.2}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.17}, {"name": "Chloramine", "categories": ["water"], "amount": 5.17}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 0.316}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.0224}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 5.76}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.0298}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.047}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.176}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.047}, {"name": "Chloroform", "categories": ["water"], "amount": 0.047}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 181}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 177}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 78.6}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 105}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 189}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 189}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 173}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 103}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 331}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2640}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2640}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 4.78}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.901}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.0802}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.58}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.58}, {"name": "Chromium III", "categories": ["air"], "amount": 2.48}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.48}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.0116}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.0211}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.0211}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.0211}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 0.456}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 7.82}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.456}, {"name": "Chromium III", "categories": ["water"], "amount": 0.456}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 50}, {"name": "Chromium VI", "categories": ["air"], "amount": 35.1}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 35.1}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.953}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.74}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.74}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.74}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 36.4}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 110}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 36.4}, {"name": "Chromium VI", "categories": ["water"], "amount": 36.4}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.0506}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.0326}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0387}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.84}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 3.84}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.00349}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.00607}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.00607}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.00607}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 1.34}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 13.2}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 1.34}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.34}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 148}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 148}, {"name": "Copper ion", "categories": ["air"], "amount": 103}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 103}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.0774}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.134}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.134}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.134}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 32.5}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 352}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 32.5}, {"name": "Copper ion", "categories": ["water"], "amount": 32.5}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Cumene", "categories": ["air"], "amount": 0.00063}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.00063}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.331}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water"], "amount": 0.0105}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.69e-06}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.69e-06}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000942}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0342}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000942}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000942}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.69e-06}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.00347}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 137}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.0543}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.000272}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7070}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 81.6}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 203}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 11500}, {"name": "Cypermethrin", "categories": ["water"], "amount": 11500}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.166}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.0487}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.499}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00128}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.122}, {"name": "Deltamethrin", "categories": ["air"], "amount": 851}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 80.5}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 717}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.00778}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.96}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.119}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.0183}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 0.13}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 0.13}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.38}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0314}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.0045}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.0351}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.0351}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.06}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.6}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.0783}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 7.1}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.00223}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.23e-05}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.018}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.018}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.0496}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.011}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 444}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 57.4}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 379}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 917}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 917}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.295}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.167}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.137}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0457}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0457}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.0383}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0383}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.0232}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.00618}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.661}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00569}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.508}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 0.315}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 0.0748}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 0.485}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.09}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.09}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 0.475}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.3}, {"name": "Diuron", "categories": ["air"], "amount": 10.3}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.844}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.47}, {"name": "Diuron", "categories": ["water"], "amount": 12.4}, {"name": "Dodecanol", "categories": ["water"], "amount": 0.864}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.0208}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.0292}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.00446}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.0263}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 191}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.00395}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.13}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.86}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 6.99}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 7.84}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 15.9}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 15.9}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5590}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0691}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0691}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0688}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0688}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.0704}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.0704}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.0704}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.0438}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0438}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.0178}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0178}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0618}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0185}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6.86}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 10.2}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6.86}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 6.86}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000434}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000434}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.000224}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.0009}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.000224}, {"name": "Ethanol", "categories": ["water"], "amount": 0.000224}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.00261}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.0182}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.0182}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.069}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.0386}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.471}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00277}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00277}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.00263}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00263}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00882}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.00264}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0165}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0165}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.0455}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.0101}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.0324}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0178}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.382}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.36}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.03}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 0.387}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.556}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 0.626}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 141}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 0.226}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 0.225}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.48}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.33}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.33}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 270}, {"name": "Fluazinam", "categories": ["air"], "amount": 232}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 21.3}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 142}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 428}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 428}, {"name": "Fluazinam", "categories": ["water"], "amount": 428}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.3}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 7.91}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Fluoranthene", "categories": ["air"], "amount": 14.4}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 57.8}, {"name": "Fluorene", "categories": ["air"], "amount": 0.164}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 0.328}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 0.907}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.29}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.36}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0251}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0251}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.0237}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00846}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0012}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0238}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0112}, {"name": "Furfural", "categories": ["air"], "amount": 0.00779}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.00729}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.145}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.00729}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0924}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.00838}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.0569}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.9}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.06}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air"], "amount": 9.98e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 9.98e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 0.84}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0628}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water"], "amount": 0.00162}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.243}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.0373}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.52}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 10.1}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.27}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000246}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000246}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000246}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000246}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.00552}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.171}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.00552}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.00552}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000456}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000456}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.000381}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.000381}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0205}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0901}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0205}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0205}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0521}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0521}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0517}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0517}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000149}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.547}, {"name": "Imidacloprid", "categories": ["air"], "amount": 0.555}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.578}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 0.761}, {"name": "Imidacloprid", "categories": ["water"], "amount": 0.761}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.339}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.291}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air"], "amount": 2.8e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.8e-07}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 24900}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 431}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 495}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 9580}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 9580}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 9580}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06}, {"name": "Lead II", "categories": ["air"], "amount": 0.735}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.735}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 8.07e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.000125}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.000125}, {"name": "Lead II", "categories": ["soil"], "amount": 0.000125}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.101}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.33}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.101}, {"name": "Lead II", "categories": ["water"], "amount": 0.101}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.0298}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 126}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.0774}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0633}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.00414}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 0.0389}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 0.0389}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.317}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.0105}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.334}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.334}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.301}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.00697}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.000734}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.87}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.76}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.593}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.15}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.33}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.33}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.609}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0668}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 87.6}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 87.6}, {"name": "Mercury II", "categories": ["air"], "amount": 59.8}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 59.8}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.00401}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0053}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0053}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0053}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 9.15}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 179}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 9.15}, {"name": "Mercury II", "categories": ["water"], "amount": 9.15}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.0168}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.535}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.00482}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.18}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0624}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.617}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.617}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.618}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.618}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.00783}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.00783}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.00831}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0329}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.00831}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.00831}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.478}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.478}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.476}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.869}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.476}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.476}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air"], "amount": 0.000451}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000451}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.000222}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000712}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.000222}, {"name": "Methanol", "categories": ["water"], "amount": 0.000222}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 0.46}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.58}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.206}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.14}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water"], "amount": 1.87}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.174}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.0221}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.0221}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.0384}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.394}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.0384}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.0384}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000754}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000754}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.000724}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.000724}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.000669}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 0.384}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air"], "amount": 0.012}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.012}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.0312}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water"], "amount": 0.00695}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.0184}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.87}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.783}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.12}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water"], "amount": 12.2}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.93}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.85}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.25}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 288}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 42.9}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 249}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 421}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 421}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.65}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.0824}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.271}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.271}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.189}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.00283}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.00519}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.00519}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.00519}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.104}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 0.642}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.104}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.104}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.0747}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00685}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 0.086}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 7.78}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.0206}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.11}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.99}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.2}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.2}, {"name": "Nickel II", "categories": ["air"], "amount": 30.6}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 30.6}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.053}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.0939}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.0939}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.0939}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 13}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 98.3}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 13}, {"name": "Nickel II", "categories": ["water"], "amount": 13}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.154}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.154}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.228}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.118}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00357}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.488}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.0725}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.701}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.53}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.53}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.43}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.000713}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 0.0948}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.0101}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.39}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.358}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 498}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 18.2}, {"name": "Permethrin", "categories": ["water"], "amount": 287}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.43}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.35}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.0591}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0176}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0176}, {"name": "Phenol", "categories": ["air"], "amount": 0.00849}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00849}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water"], "amount": 0.0237}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.3}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.3}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 30.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 30.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.04}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.54}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.468}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1.95}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.6}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.406}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.406}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.406}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.417}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.417}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.417}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.0664}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.0152}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.419}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.0322}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.0598}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.0376}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.54}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 38.8}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.18}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.273}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.5}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.00112}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.119}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air"], "amount": 0.000569}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000569}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0019}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water"], "amount": 0.00055}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.768}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.00486}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.33}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.278}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.31}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.23}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.23}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.23}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00805}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00805}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.00592}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00592}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.0022}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.0155}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.0022}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.0022}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 0.466}, {"name": "Pyrene", "categories": ["air"], "amount": 21.5}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 156}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.00199}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 0.752}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.0379}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.7}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 13.2}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.23}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 23.2}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 226}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 226}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.0101}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.00363}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.7}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.7}, {"name": "Selenium IV", "categories": ["air"], "amount": 10.2}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 10.2}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.0281}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.0504}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.0504}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.0504}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 4.36}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 32.7}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 4.36}, {"name": "Selenium IV", "categories": ["water"], "amount": 4.36}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0149}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.412}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 720}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 720}, {"name": "Silver I", "categories": ["air"], "amount": 498}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 498}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.313}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.549}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.549}, {"name": "Silver I", "categories": ["soil"], "amount": 0.549}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 104}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1590}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 104}, {"name": "Silver I", "categories": ["water"], "amount": 104}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.78}, {"name": "Simazine", "categories": ["air"], "amount": 3.42}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.469}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.75}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.79}, {"name": "Simazine", "categories": ["water"], "amount": 4.79}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.05}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air"], "amount": 9.5e-05}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.5e-05}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.00719}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.238}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.00719}, {"name": "Styrene", "categories": ["water"], "amount": 0.00719}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.33}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.96}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.151}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.36}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 0.205}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.0743}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.28}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.95}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0749}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0749}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.0748}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0748}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.43}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.12}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.5}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.5}, {"name": "Thallium I", "categories": ["air"], "amount": 19.5}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 19.5}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 5.36}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 10.4}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 10.4}, {"name": "Thallium I", "categories": ["soil"], "amount": 10.4}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 24.9}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 47.6}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 24.9}, {"name": "Thallium I", "categories": ["water"], "amount": 24.9}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.579}, {"name": "Thiabendazole", "categories": ["air"], "amount": 0.489}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.0176}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.123}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.359}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.359}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.26}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.96}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.5}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.01}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.58}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.58}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.717}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 0.645}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.159}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 0.864}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.25}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.25}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.3}, {"name": "Thiram", "categories": ["air"], "amount": 9.15}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.234}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.11}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 26}, {"name": "Thiram", "categories": ["water"], "amount": 26}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.78}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.78}, {"name": "Tin ion", "categories": ["air"], "amount": 4.69}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 4.69}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.000976}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.00155}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.00155}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.00155}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 15}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "Tin ion", "categories": ["water"], "amount": 1.05}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air"], "amount": 0.000331}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000331}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0856}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water"], "amount": 0.00276}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.19}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 128}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.143}, {"name": "Triallate", "categories": ["air"], "amount": 1.01}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.516}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 7.75}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.0226}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.645}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.00636}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.163}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.00636}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.00636}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.317}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 0.000142}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.16e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.28}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.611}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.973}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.6}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.6}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.011}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 0.00342}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.00076}, {"name": "Urea", "categories": ["water"], "amount": 0.00076}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.00569}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 71}, {"name": "Vanadium V", "categories": ["air"], "amount": 49.2}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 49.2}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.311}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.551}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.551}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.551}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 75.9}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 157}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 75.9}, {"name": "Vanadium V", "categories": ["water"], "amount": 75.9}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.0464}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000248}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000248}, {"name": "Xylene", "categories": ["air"], "amount": 0.000165}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000165}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00292}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0931}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00292}, {"name": "Xylene", "categories": ["water"], "amount": 0.00292}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7070}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 81.6}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.5}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.5}, {"name": "Zinc II", "categories": ["air"], "amount": 24.6}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 24.6}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.138}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.231}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.231}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.231}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 71.2}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 81.8}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 71.2}, {"name": "Zinc II", "categories": ["water"], "amount": 71.2}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 0.182}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.95}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.00889}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.296}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.00889}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.00889}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000839}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000839}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.00056}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.00056}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.0099}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.315}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.0099}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.0099}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 4.55}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "ecotoxicity: terrestrial no LT", "terrestrial ecotoxicity potential (TETP) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.802}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.76}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.062}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.695}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0416}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.00206}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.00054}, {"name": "2,4-D", "categories": ["water"], "amount": 0.00054}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.1e-07}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 4.67e-09}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 33.3}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.1e-07}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 69.5}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.0475}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.0475}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0855}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.798}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00627}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.00194}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.0188}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.23e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 9.68e-05}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.647}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.61}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 813}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00233}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000491}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 7.9e-05}, {"name": "Acephate", "categories": ["water"], "amount": 7.9e-05}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0828}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.339}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 125}, {"name": "Acetic acid", "categories": ["air"], "amount": 87}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 87}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.39e-05}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00669}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air"], "amount": 0.0305}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00445}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water"], "amount": 0.0236}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0609}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.305}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 495}, {"name": "Acrolein", "categories": ["air"], "amount": 287}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 287}, {"name": "Acrolein", "categories": ["water"], "amount": 423}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.15e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00425}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air"], "amount": 45.7}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 45.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.867}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.13}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 8460}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.3}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 146}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.0173}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 123000}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 62900}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1110}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1150}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 3460}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 58.9}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 8.55}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.13}, {"name": "Aniline", "categories": ["air"], "amount": 0.621}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.621}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.041}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.622}, {"name": "Aniline", "categories": ["water"], "amount": 0.622}, {"name": "Anthracene", "categories": ["air"], "amount": 34.8}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 28.8}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water"], "amount": 71.1}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 58200}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 58200}, {"name": "Arsenic ion", "categories": ["air"], "amount": 40200}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 40200}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 2.28e-18}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 3.93e-18}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 3.93e-18}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.93e-18}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.12e-15}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 4.06e-16}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.12e-15}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.12e-15}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 22.7}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14.4}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water"], "amount": 10.1}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0553}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 6.61e-05}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 174}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4680}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.000144}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 0.000137}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.09e-05}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.09e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1430}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Barium II", "categories": ["air"], "amount": 991}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 991}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.81e-17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 3.79e-17}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 3.79e-17}, {"name": "Barium II", "categories": ["soil"], "amount": 3.79e-17}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 4.79e-17}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 9.05e-18}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 4.79e-17}, {"name": "Barium II", "categories": ["water"], "amount": 4.79e-17}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.72e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.516}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.000631}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0639}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.582}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.091}, {"name": "Benzene", "categories": ["air"], "amount": 0.0871}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0871}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0427}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water"], "amount": 0.0859}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.922}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0129}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0425}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 48.4}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.2}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 78.2}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 78}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 78}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 75.8}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.443}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.443}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.008}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0333}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.00268}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.0477}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 208000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 208000}, {"name": "Beryllium II", "categories": ["air"], "amount": 144000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 144000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.1e-18}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.48e-18}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.48e-18}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.48e-18}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.73e-15}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.69e-15}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.73e-15}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.73e-15}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 148000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 94.3}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 97.1}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 292}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 292}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 868}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 9.79}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22500}, {"name": "Bifenthrin", "categories": ["air"], "amount": 13100}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 217}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 222}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 751}, {"name": "Bifenthrin", "categories": ["water"], "amount": 751}, {"name": "Bisphenol A", "categories": ["water"], "amount": 0.0064}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.51e-05}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 7.52e-07}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 0.00939}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 466}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 42400}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00331}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 0.000666}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 0.000666}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.9}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.33}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air"], "amount": 0.035}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.0015}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water"], "amount": 0.0186}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0703}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.368}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 122000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 122000}, {"name": "Cadmium II", "categories": ["air"], "amount": 84200}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 84200}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.45e-18}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.6e-18}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.6e-18}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.6e-18}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2.21e-16}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.7e-16}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2.21e-16}, {"name": "Cadmium II", "categories": ["water"], "amount": 2.21e-16}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9490}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 12.7}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 5.77}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 5.77}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 10300}, {"name": "Carbendazim", "categories": ["air"], "amount": 8320}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.138}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 0.0873}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 0.0417}, {"name": "Carbendazim", "categories": ["water"], "amount": 0.0417}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 372}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.852}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.852}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.852}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00159}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 265000}, {"name": "Chloramine", "categories": ["air"], "amount": 219000}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 219000}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.74e-07}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water"], "amount": 3.26e-06}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1680}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air"], "amount": 0.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.219}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water"], "amount": 0.462}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 22400}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 21800}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 9320}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9770}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 8810}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 8810}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 6180}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1650}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 785}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 251}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.15e-06}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26500}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 26500}, {"name": "Chromium III", "categories": ["air"], "amount": 18400}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 18400}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 8.92e-19}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.63e-18}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.63e-18}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.63e-18}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 3.85e-17}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.18e-17}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 3.85e-17}, {"name": "Chromium III", "categories": ["water"], "amount": 3.85e-17}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 89900}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 89900}, {"name": "Chromium VI", "categories": ["air"], "amount": 62200}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 62200}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 4.09e-17}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 7.47e-17}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 7.47e-17}, {"name": "Chromium VI", "categories": ["soil"], "amount": 7.47e-17}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.75e-15}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.02e-16}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.75e-15}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.75e-15}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 9.78}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 22}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0329}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26000}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 26000}, {"name": "Cobalt II", "categories": ["air"], "amount": 18000}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 18000}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.36e-19}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 4.09e-19}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 4.09e-19}, {"name": "Cobalt II", "categories": ["soil"], "amount": 4.09e-19}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 1.06e-16}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.05e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 1.06e-16}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.06e-16}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 766000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 766000}, {"name": "Copper ion", "categories": ["air"], "amount": 530000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 530000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.35e-18}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 9.23e-18}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 9.23e-18}, {"name": "Copper ion", "categories": ["soil"], "amount": 9.23e-18}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.61e-15}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.72e-15}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.61e-15}, {"name": "Copper ion", "categories": ["water"], "amount": 2.61e-15}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air"], "amount": 0.0432}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0432}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.0138}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water"], "amount": 0.0466}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.337}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.000203}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000646}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.27e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1700}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.12e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95500}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 868}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 895}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 2700}, {"name": "Cypermethrin", "categories": ["water"], "amount": 2700}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.868}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.04e-05}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 77}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00507}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Deltamethrin", "categories": ["air"], "amount": 14700}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1380}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3700}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.14e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.647}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.32e-05}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.32e-05}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 36.9}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 114}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 282}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.000695}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.55e-06}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.55e-06}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1060}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 601}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.923}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149}, {"name": "Diethanolamine", "categories": ["water"], "amount": 5.94e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00415}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00415}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 242}, {"name": "Diethylamine", "categories": ["air"], "amount": 186}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 186}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.037}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.0767}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 487000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1030}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 689}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 689}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 8.15}, {"name": "Dimethoate", "categories": ["air"], "amount": 2350}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 7.52}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.232}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air"], "amount": 888}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 888}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.337}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00217}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 424}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.33e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 6.6e-07}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 6.6e-07}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.114}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 28600}, {"name": "Diuron", "categories": ["air"], "amount": 20400}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.59}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.78}, {"name": "Diuron", "categories": ["water"], "amount": 2.55}, {"name": "Dodecanol", "categories": ["water"], "amount": 7.62}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.215}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 6.87e-05}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.18e-08}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.47}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 468}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 16}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 6700}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 146}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 107}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 58.7}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 58.7}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.193}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.111}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.193}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.193}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.929}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.929}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.184}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.387}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 17.2}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 12.4}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 17.2}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 17.2}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air"], "amount": 0.072}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0262}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 276}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 5.61e-06}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.53e-11}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.53e-11}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.27}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 14.4}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1520}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.406}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.000108}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.000225}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.455}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.57}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.13e-05}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 6.5e-07}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 638}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.483}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 8.99}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2710}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 729}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 26.8}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 26.8}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 205000}, {"name": "Fluazinam", "categories": ["air"], "amount": 145000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1210}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1130}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 896}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 896}, {"name": "Fluazinam", "categories": ["water"], "amount": 896}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 70700}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 383}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.04}, {"name": "Fluoranthene", "categories": ["air"], "amount": 98.9}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 80.1}, {"name": "Fluorene", "categories": ["air"], "amount": 1.82}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.08}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 188}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 25800}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 142}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air"], "amount": 10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.0506}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.889}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air"], "amount": 66.8}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 66.8}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 4.58e-06}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water"], "amount": 0.000909}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 7.53e-09}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0062}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0939}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 573}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.26e-10}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.13e-05}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.27e-11}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2430}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1980}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 0.00797}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 0.00797}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air"], "amount": 2.07e-05}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.07e-05}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 256}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air"], "amount": 0.000196}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000196}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.37e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water"], "amount": 0.000194}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.00371}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.379}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 590}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 367}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water"], "amount": 1360}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00795}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0955}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0359}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0359}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.0296}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.0296}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.038}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0139}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.038}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.038}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.174}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.174}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.171}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.171}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000785}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4320}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 5.99e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.17e-10}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Imidacloprid", "categories": ["water"], "amount": 1.98e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.0103}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.302}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-05}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 311000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5390}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5510}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 17600}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 17600}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 17600}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27300}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27300}, {"name": "Lead II", "categories": ["air"], "amount": 18900}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 18900}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.56e-21}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.06e-21}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.06e-21}, {"name": "Lead II", "categories": ["soil"], "amount": 7.06e-21}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 6.3e-18}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.01e-17}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 6.3e-18}, {"name": "Lead II", "categories": ["water"], "amount": 6.3e-18}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.93e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5100}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.04e-07}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 626}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 6.59e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.1e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.1e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.000589}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.000883}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.000883}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 43}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.18e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.05e-05}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 44400}, {"name": "Mancozeb", "categories": ["air"], "amount": 36600}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.000845}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.59e-05}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 9.45e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 9.45e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.000868}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0677}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 880000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 880000}, {"name": "Mercury II", "categories": ["air"], "amount": 601000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 601000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.02e-19}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.67e-19}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.67e-19}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.67e-19}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 5.12e-16}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.45e-16}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 5.12e-16}, {"name": "Mercury II", "categories": ["water"], "amount": 5.12e-16}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.27}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.000275}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.000191}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.02}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.358}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0492}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0998}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.3}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.734}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.3}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.3}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Methanol", "categories": ["air"], "amount": 0.122}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.122}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.00305}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water"], "amount": 0.0422}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 96.2}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 32500}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.422}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 0.206}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water"], "amount": 0.0678}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 5.42}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.23}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.55}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.0199}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 566}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 40.4}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 397}, {"name": "Methylamine", "categories": ["air"], "amount": 305}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 305}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water"], "amount": 0.216}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 5890}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 18.4}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 15.7}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water"], "amount": 11.3}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 40000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.21}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 0.856}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090000}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 899000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 6.48e-05}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.81e-05}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.81e-05}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.85}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 923}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 923}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 639}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 639}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.41e-19}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.57e-19}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.57e-19}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.57e-19}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 6.08e-18}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 4.48e-18}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 6.08e-18}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 6.08e-18}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.014}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00603}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 27.6}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 801}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.584}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.967}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 606}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 119000}, {"name": "Nickel II", "categories": ["air"], "amount": 82100}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 82100}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.9e-18}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 5.13e-18}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 5.13e-18}, {"name": "Nickel II", "categories": ["soil"], "amount": 5.13e-18}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 7.9e-16}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.04e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 7.9e-16}, {"name": "Nickel II", "categories": ["water"], "amount": 7.9e-16}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.1}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.8}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 176}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00085}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.133}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 9.48}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 38.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.35}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.34}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.4}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 4.69e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 276}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.8}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 6.44e-05}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 490}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 69.2}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 69.2}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11100}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 401}, {"name": "Permethrin", "categories": ["water"], "amount": 1160}, {"name": "Phenanthrene", "categories": ["air"], "amount": 31.3}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 37}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.5e-06}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49}, {"name": "Phenol", "categories": ["air"], "amount": 1.18}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.00553}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water"], "amount": 0.0981}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 13}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 13}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8480}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8480}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 5960}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 5960}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.114}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.134}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 47.2}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 272}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4160}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.187}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.84}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.603}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 10.7}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.4}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 7.34}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00153}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.00909}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.000503}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 77.9}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.378}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 50.4}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 53.7}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3440}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 37.6}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 885}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 3.94e-05}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air"], "amount": 0.0504}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0504}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.003}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water"], "amount": 0.0302}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.00379}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.15}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.536}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.237}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water"], "amount": 0.487}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.0204}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Pyrene", "categories": ["air"], "amount": 121}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 140}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.000429}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 119}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 667}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 211}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 267}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 932}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 932}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.000183}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.000889}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39300}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 39300}, {"name": "Selenium IV", "categories": ["air"], "amount": 27200}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 27200}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.38e-18}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 2.48e-18}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 2.48e-18}, {"name": "Selenium IV", "categories": ["soil"], "amount": 2.48e-18}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 2.39e-16}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.82e-16}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 2.39e-16}, {"name": "Selenium IV", "categories": ["water"], "amount": 2.39e-16}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0594}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.0666}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4220000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4220000}, {"name": "Silver I", "categories": ["air"], "amount": 2920000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 2920000}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.77e-17}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 3.09e-17}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 3.09e-17}, {"name": "Silver I", "categories": ["soil"], "amount": 3.09e-17}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 6.42e-15}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.17e-15}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 6.42e-15}, {"name": "Silver I", "categories": ["water"], "amount": 6.42e-15}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Simazine", "categories": ["air"], "amount": 9400}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 9.4}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.05}, {"name": "Simazine", "categories": ["water"], "amount": 3.05}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 76.8}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air"], "amount": 0.00511}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00418}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water"], "amount": 0.0139}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1250}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.61}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2820}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.0907}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.0888}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water"], "amount": 0.0838}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.97}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.00589}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 286}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 47.8}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.313}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.568}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36800}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 36800}, {"name": "Thallium I", "categories": ["air"], "amount": 25500}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 25500}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.49e-16}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.87e-16}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.87e-16}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.87e-16}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 7.53e-16}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.94e-16}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 7.53e-16}, {"name": "Thallium I", "categories": ["water"], "amount": 7.53e-16}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1090}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.00387}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.00354}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.00279}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.00279}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 49}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5860}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 977}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 732}, {"name": "Thiodicarb", "categories": ["water"], "amount": 732}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4360}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2770}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 7.32}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.23}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 964}, {"name": "Thiram", "categories": ["air"], "amount": 564}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.303}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.161}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Thiram", "categories": ["water"], "amount": 1.83}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35100}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 35100}, {"name": "Tin ion", "categories": ["air"], "amount": 24300}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 24300}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 5.19e-20}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 6.15e-17}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 7.45e-17}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 6.15e-17}, {"name": "Tin ion", "categories": ["water"], "amount": 6.15e-17}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air"], "amount": 0.0281}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0281}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.00928}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water"], "amount": 0.0301}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 871}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.00155}, {"name": "Triallate", "categories": ["air"], "amount": 47}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 70.8}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.24}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.00144}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0529}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1.77}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 9.6e-07}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 1.8e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 25.3}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 31.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 31.8}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 6.86e-07}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water"], "amount": 1.29e-05}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.000198}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 119000}, {"name": "Vanadium V", "categories": ["air"], "amount": 82000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 82000}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.42e-17}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2.5e-17}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2.5e-17}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2.5e-17}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 3.93e-15}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.01e-15}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 3.93e-15}, {"name": "Vanadium V", "categories": ["water"], "amount": 3.93e-15}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air"], "amount": 0.0139}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0139}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.00551}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water"], "amount": 0.0183}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95500}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 868}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 86000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 86000}, {"name": "Zinc II", "categories": ["air"], "amount": 59500}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 59500}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 7.36e-18}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.23e-17}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.23e-17}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.23e-17}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 5.02e-15}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 7.11e-16}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 5.02e-15}, {"name": "Zinc II", "categories": ["water"], "amount": 5.02e-15}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 74.4}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.00806}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0267}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.0187}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.062}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 18.3}]}, {"unit": "kg oil-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "energy resources: non-renewable, fossil no LT", "fossil fuel potential (FFP) no LT"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.22}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.42}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.22}]}, {"unit": "kg P-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "eutrophication: freshwater no LT", "freshwater eutrophication potential (FEP) no LT"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "eutrophication: marine no LT", "marine eutrophication potential (MEP) no LT"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.776}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water"], "amount": 0.23}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water"], "amount": 0.0671}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.297}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.0902}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.297}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "human toxicity: carcinogenic no LT", "human toxicity potential (HTPc) no LT"], "exchanges": [{"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.00325}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.0313}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.433}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 41.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 41.4}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.7}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.7}, {"name": "Arsenic ion", "categories": ["air"], "amount": 470}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 470}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.26}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.32}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.32}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.32}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 11.6}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.02e-19}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 11.6}, {"name": "Arsenic ion", "categories": ["water"], "amount": 11.6}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.33}, {"name": "Benzene", "categories": ["air"], "amount": 1.44}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.158}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.354}, {"name": "Benzene", "categories": ["water"], "amount": 0.354}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0284}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0961}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.7}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.7}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 93.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 93.6}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1150}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 36.5}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 36.5}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.1}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.1}, {"name": "Beryllium II", "categories": ["air"], "amount": 259}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 259}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.0118}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.0121}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.0121}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.0121}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 0.046}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.59e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 0.046}, {"name": "Beryllium II", "categories": ["water"], "amount": 0.046}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.75}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.75}, {"name": "Cadmium II", "categories": ["air"], "amount": 194}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 194}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.195}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.201}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.201}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.201}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.0614}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.36e-20}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.0614}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.0614}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.293}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.29}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.815}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.815}, {"name": "Chloroform", "categories": ["air"], "amount": 1.26}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.26}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.861}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.371}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.861}, {"name": "Chloroform", "categories": ["water"], "amount": 0.861}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0408}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 0.0798}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.0212}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.0361}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 0.097}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 0.097}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 80.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 39.9}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 7.94}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 4}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.79}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.653}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.79}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.79}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 12.8}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.22}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 12.8}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 12.8}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 3.2e-05}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0012}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.423}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.93}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00626}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.137}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6}, {"name": "Furan", "categories": ["air"], "amount": 95}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 95}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.129}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water"], "amount": 10.2}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0162}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0162}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.16}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0535}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0231}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0535}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0535}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.87}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.87}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air"], "amount": 0.128}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.128}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.453}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.453}, {"name": "Lead II", "categories": ["air"], "amount": 1.68}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 1.68}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0158}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0161}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0161}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0161}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.0104}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.82e-22}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.0104}, {"name": "Lead II", "categories": ["water"], "amount": 0.0104}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 12.5}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4}, {"name": "Mercury II", "categories": ["air"], "amount": 24.5}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 24.5}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0752}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0769}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0769}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0769}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.386}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.86e-21}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.386}, {"name": "Mercury II", "categories": ["water"], "amount": 0.386}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0884}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 227}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 227}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 217}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 123}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 217}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 217}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.96}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.96}, {"name": "Nickel II", "categories": ["air"], "amount": 31.3}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 31.3}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.07}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.14}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.14}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.14}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.41}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 5.05e-20}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.41}, {"name": "Nickel II", "categories": ["water"], "amount": 3.41}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.0724}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.849}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 32.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 32.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 0.032}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.0023}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.032}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.032}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.92}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.92}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.58}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4.65}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0588}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.365}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air"], "amount": 1.28}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.28}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00975}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Styrene", "categories": ["water"], "amount": 0.281}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.962}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.962}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.525}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.13}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0112}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0371}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "human toxicity: non-carcinogenic no LT", "human toxicity potential (HTPnc) no LT"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.414}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.9}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.1}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 3.81}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 5.24}, {"name": "2,4-D", "categories": ["water"], "amount": 5.24}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.105}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 1.88}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 1.88}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0377}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00147}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.9e-06}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00878}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.0297}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.19}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 19300}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 16500}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 620}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 773}, {"name": "Acephate", "categories": ["water"], "amount": 773}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.056}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.545}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Acetone", "categories": ["air"], "amount": 0.0878}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0878}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water"], "amount": 0.0132}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0204}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.131}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 309}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 309}, {"name": "Acrolein", "categories": ["air"], "amount": 9490}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 9490}, {"name": "Acrolein", "categories": ["water"], "amount": 294}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.74e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water"], "amount": 0.0752}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air"], "amount": 707}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 707}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.85}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 9.16}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.36}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.36}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 36}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 322}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.48}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.1}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 30.4}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.831}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 0.792}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 25.2}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 6.95}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.65}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.361}, {"name": "Aniline", "categories": ["air"], "amount": 5.32}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 5.32}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.00623}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 4.09}, {"name": "Aniline", "categories": ["water"], "amount": 4.09}, {"name": "Anthracene", "categories": ["air"], "amount": 0.0511}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water"], "amount": 0.723}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 103}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 103}, {"name": "Antimony ion", "categories": ["air"], "amount": 343}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 343}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 3.59}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 108}, {"name": "Antimony ion", "categories": ["soil"], "amount": 108}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 129}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.41e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 129}, {"name": "Antimony ion", "categories": ["water"], "amount": 129}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2480}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2480}, {"name": "Arsenic ion", "categories": ["air"], "amount": 8940}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 10.4}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 334}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 334}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 334}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 2920}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1.92e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 2920}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2920}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 6.7}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.9}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.92}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water"], "amount": 6.11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.5}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.5}, {"name": "Barium II", "categories": ["air"], "amount": 102}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 102}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 323}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 323}, {"name": "Barium II", "categories": ["soil"], "amount": 323}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 42.4}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 7.53e-19}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 42.4}, {"name": "Barium II", "categories": ["water"], "amount": 42.4}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.084}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0331}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.3}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.331}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 2.75}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 2.75}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0475}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28}, {"name": "Benzene", "categories": ["air"], "amount": 1.22}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.301}, {"name": "Benzene", "categories": ["water"], "amount": 0.301}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.505}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.00398}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.107}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.3}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.3}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1340}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.9}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 124}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 124}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 498}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27100}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27100}, {"name": "Beryllium II", "categories": ["air"], "amount": 641000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 641000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.00346}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.447}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.447}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.447}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.7}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.91e-16}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.7}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.7}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 372}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.986}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.17}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 71.6}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 71.6}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.926}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 99.8}, {"name": "Bifenthrin", "categories": ["air"], "amount": 64.3}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 15.1}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 1920}, {"name": "Bifenthrin", "categories": ["water"], "amount": 1920}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.77}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.96}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.5}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.26}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.6}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.6}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.79}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air"], "amount": 6.67}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.67}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air"], "amount": 0.431}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.431}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.000981}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water"], "amount": 0.0541}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 403}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 403}, {"name": "Cadmium II", "categories": ["air"], "amount": 1430}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1430}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.612}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 184}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 184}, {"name": "Cadmium II", "categories": ["soil"], "amount": 184}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 55.9}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.01e-18}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 55.9}, {"name": "Cadmium II", "categories": ["water"], "amount": 55.9}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.779}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.9}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.16}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.3}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.3}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.5}, {"name": "Carbendazim", "categories": ["air"], "amount": 29.5}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.05}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Carbendazim", "categories": ["water"], "amount": 1.83}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 140}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 751}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 751}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 822}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 822}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 666}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 215}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 666}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 666}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 14}, {"name": "Carboxin", "categories": ["air"], "amount": 12.3}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.249}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.855}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Carboxin", "categories": ["water"], "amount": 1.61}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 3.52e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0152}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air"], "amount": 12.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.73e-05}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water"], "amount": 0.619}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 921}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 4.18}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.861}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water"], "amount": 9.89}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air"], "amount": 21.8}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.96}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water"], "amount": 12.8}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 8.14}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.71}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 10}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 10}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 79.7}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 338}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 88.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.748}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00623}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00623}, {"name": "Chromium III", "categories": ["air"], "amount": 0.0204}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.85e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.00918}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.00918}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.00918}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 0.000485}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.43e-23}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.000485}, {"name": "Chromium III", "categories": ["water"], "amount": 0.000485}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 240}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 240}, {"name": "Chromium VI", "categories": ["air"], "amount": 5540}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 5540}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.139}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 5.63}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 5.63}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.63}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.43}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.21e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.43}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.43}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.573}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.573}, {"name": "Copper ion", "categories": ["air"], "amount": 2.09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2.09}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.000434}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.0778}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.0778}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.0778}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 0.126}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.26e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 0.126}, {"name": "Copper ion", "categories": ["water"], "amount": 0.126}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air"], "amount": 0.18}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00479}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.066}, {"name": "Cumene", "categories": ["water"], "amount": 0.066}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0041}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0438}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.43}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.935}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.926}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 0.755}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 21.3}, {"name": "Cypermethrin", "categories": ["water"], "amount": 21.3}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.04}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 31.3}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 253}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 38}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.2}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4.13}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.59}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.59}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 86.8}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 862}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 42.1}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0958}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0958}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.7}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.87}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 17.3}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 41.9}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 41.9}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 66.2}, {"name": "Dimethoate", "categories": ["air"], "amount": 20.3}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.0764}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 14.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.702}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 255}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 30.3}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 68.3}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 68.3}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 46.2}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.554}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 88.7}, {"name": "Diuron", "categories": ["air"], "amount": 78.7}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 2.03}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.36}, {"name": "Diuron", "categories": ["water"], "amount": 12.1}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.00919}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.61}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 28.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0772}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0772}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0809}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0809}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.291}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.291}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.32}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.32}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.28}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.162}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.28}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.28}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.18}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.18}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2.21}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2.21}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 524}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 336}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 524}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 524}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 67.6}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 5.47}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 5.47}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 266}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0843}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0843}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00287}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0146}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00143}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 0.244}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2.73}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 22300}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.96}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.31}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.34}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Fipronil", "categories": ["air"], "amount": 1520}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 614}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 1570}, {"name": "Fipronil", "categories": ["water"], "amount": 1570}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.788}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 20.7}, {"name": "Fluorene", "categories": ["air"], "amount": 0.692}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 1.3}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 6.78}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00311}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.447}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00128}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.972}, {"name": "Furan", "categories": ["air"], "amount": 35.5}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 49.2}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 3.53}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.768}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.2}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "Hexane", "categories": ["air"], "amount": 2.2}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.2}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0475}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Hexane", "categories": ["water"], "amount": 1.23}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.504}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 5340}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00218}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0273}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0332}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.104}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 39.6}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 39.6}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.67}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 0.197}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 0.253}, {"name": "Imazethapyr", "categories": ["water"], "amount": 0.253}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air"], "amount": 57.1}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 2.07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.73}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.73}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 0.113}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 537}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 537}, {"name": "Lead II", "categories": ["air"], "amount": 1980}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 1980}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0149}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 19.4}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 19.4}, {"name": "Lead II", "categories": ["soil"], "amount": 19.4}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 12.4}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.17e-19}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 12.4}, {"name": "Lead II", "categories": ["water"], "amount": 12.4}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 495}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.197}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 252}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 9.59}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 21.2}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 21.2}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.086}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.22}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.22}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.0736}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.74}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0272}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.2}, {"name": "Mancozeb", "categories": ["air"], "amount": 47.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2.75}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 1.77}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2.43}, {"name": "Mancozeb", "categories": ["water"], "amount": 2.43}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.00733}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2460}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2460}, {"name": "Mercury II", "categories": ["air"], "amount": 6590}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 31.1}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 31.1}, {"name": "Mercury II", "categories": ["soil"], "amount": 31.1}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 155}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.2e-18}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 155}, {"name": "Mercury II", "categories": ["water"], "amount": 155}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.53}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 75}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1530}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.15}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.15}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.159}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 155}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 155}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 157}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 157}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 9.31}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 9.31}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2590}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2590}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2680}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2680}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 2470}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1400}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 2470}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2470}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 21}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 21}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Methanol", "categories": ["air"], "amount": 0.156}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.156}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000666}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water"], "amount": 0.0194}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.22}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 456}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.72}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 9.35}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water"], "amount": 15.4}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00853}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 89.8}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.11}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.342}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.43}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water"], "amount": 3.37}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.7}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 2.42}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.9}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 12.7}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 0.695}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 1.18}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 1.18}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 77.5}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 9.48}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 64.7}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.7}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 210}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 210}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 95.7}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 95.7}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 95.7}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 26.4}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 3.87e-19}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 26.4}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 26.4}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.00213}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.00684}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 213}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.514}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Naphthalene", "categories": ["air"], "amount": 11}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.03}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.206}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62}, {"name": "Nickel II", "categories": ["air"], "amount": 5.85}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.85}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.00406}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.412}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.412}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.412}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 0.655}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 9.23e-21}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.655}, {"name": "Nickel II", "categories": ["water"], "amount": 0.655}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.2}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.2}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0148}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 22}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 0.0138}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.172}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.05}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.6}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0604}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 8.97}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.71}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.162}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 2.52}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Permethrin", "categories": ["water"], "amount": 10.8}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "Phenol", "categories": ["air"], "amount": 0.493}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.493}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.000864}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.315}, {"name": "Phenol", "categories": ["water"], "amount": 0.315}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 734}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 734}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.3}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 34.6}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 17.8}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 602}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00317}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.181}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.00406}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.251}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 23.2}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 9.61}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.428}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 6.83}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 22.5}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.399}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 27.9}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.881}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.385}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.477}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1.87}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.4}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 7.72}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water"], "amount": 36.6}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 3.2}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 2.74}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water"], "amount": 14.8}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 7.19}, {"name": "Pyrene", "categories": ["air"], "amount": 0.624}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 11.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.342}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 0.573}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 31.1}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 31.1}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 14.4}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.531}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.608}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.492}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 10.9}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 560}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 560}, {"name": "Silver I", "categories": ["air"], "amount": 2040}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 2040}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 105}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 105}, {"name": "Silver I", "categories": ["soil"], "amount": 105}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 66.3}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.21e-18}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 66.3}, {"name": "Silver I", "categories": ["water"], "amount": 66.3}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 418}, {"name": "Simazine", "categories": ["air"], "amount": 344}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 17.3}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 19.3}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 33.5}, {"name": "Simazine", "categories": ["water"], "amount": 33.5}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air"], "amount": 0.855}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.855}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.0046}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water"], "amount": 0.0211}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 32}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 5.51}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water"], "amount": 17.1}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 24.4}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.47}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.52}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1860}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1560}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 62.3}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 280}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 959}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 0.0552}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 342}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 6.15}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 11.9}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 186}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 186}, {"name": "Thallium I", "categories": ["air"], "amount": 395}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 395}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 40.6}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1030}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1030}, {"name": "Thallium I", "categories": ["soil"], "amount": 1030}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 136}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.77e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 136}, {"name": "Thallium I", "categories": ["water"], "amount": 136}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air"], "amount": 26.8}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.72}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.72}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 7.5}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.67}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 4.65}, {"name": "Thiodicarb", "categories": ["water"], "amount": 4.65}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.3}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 15.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.905}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.33}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.91}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.91}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23}, {"name": "Thiram", "categories": ["air"], "amount": 11.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.0675}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.208}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 4.91}, {"name": "Thiram", "categories": ["water"], "amount": 4.91}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067}, {"name": "Toluene", "categories": ["air"], "amount": 0.858}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.858}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0184}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water"], "amount": 0.0714}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.318}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.14}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Triallate", "categories": ["air"], "amount": 9.42}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.76}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 72.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 44}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 144}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.78}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 17.9}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 15.8}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.16}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.7}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 128}, {"name": "Trifluralin", "categories": ["water"], "amount": 128}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.38}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.6}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.6}, {"name": "Vanadium V", "categories": ["air"], "amount": 59}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 59}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.178}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 4.1}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 4.1}, {"name": "Vanadium V", "categories": ["soil"], "amount": 4.1}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 27.6}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.58e-19}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 27.6}, {"name": "Vanadium V", "categories": ["water"], "amount": 27.6}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.68}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air"], "amount": 1.58}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0182}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water"], "amount": 0.0692}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.926}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.94}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.94}, {"name": "Zinc II", "categories": ["air"], "amount": 31.6}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 31.6}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0678}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.758}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.758}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.758}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 24.6}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 8.17e-20}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 24.6}, {"name": "Zinc II", "categories": ["water"], "amount": 24.6}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5.95}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00619}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.027}]}, {"unit": "kg Co-60-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "ionising radiation no LT", "ionising radiation potential (IRP) no LT"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 3.05e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 0.00043}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 3.05e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 3.05e-05}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 54.5}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 0.00336}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 0.0473}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 0.00336}, {"name": "Americium-241", "categories": ["water"], "amount": 0.00336}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0491}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.000891}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00473}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water"], "amount": 8.64}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 9.09}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00582}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 9.09}, {"name": "Caesium-137", "categories": ["water"], "amount": 9.09}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.00345}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0273}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.00345}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.00345}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00245}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.64}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 4.07e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.6e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 4.07e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 4.07e-05}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["air"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 0.252}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 0.0222}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 0.252}, {"name": "Iodine-129", "categories": ["water"], "amount": 0.252}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.03}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 6.03e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 6.03e-06}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0191}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 5.62e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.62e-06}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00145}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.000236}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water"], "amount": 0.03}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["air"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.0127}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000455}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.0127}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.0127}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["air"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 0.00755}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 7.82e-05}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 0.00755}, {"name": "Technetium-99", "categories": ["water"], "amount": 0.00755}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 0.00755}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 7.82e-05}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 0.00755}, {"name": "Technetium-99m", "categories": ["water"], "amount": 0.00755}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 8.55e-06}]}, {"unit": "m2*a crop-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "land use no LT", "agricultural land occupation (LOP) no LT"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -36.75}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}]}, {"unit": "kg Cu-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "material resources: metals/minerals no LT", "surplus ore potential (SOP) no LT"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.101}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.101}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1.03}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0889}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0136}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.614}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 84.2}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 2.77}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0777}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.232}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.232}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 19000}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 19000}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 19000}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.0557}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0557}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.221}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.00607}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00585}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 4.01}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4.01}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0307}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.0089}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 92.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 92.8}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 389}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.134}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.00144}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 108}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 115}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 115}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 6.51}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 6.51}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0382}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0382}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0382}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.483}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.483}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.483}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.483}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 2.42}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 2.42}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.614}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.614}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.614}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.614}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.0376}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0376}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 8.37}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 4.46}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 6370}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6370}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6370}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6370}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00508}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 13800}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 13800}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 13800}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 13800}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00308}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 9730}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 9730}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 672}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 672}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 9730}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 9730}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 12.8}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.318}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 2.42}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0576}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.0234}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 56.6}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 56.6}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 18.5}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 18.5}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 1630}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.689}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.689}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.689}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 5.23}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.23}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.689}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 7.19}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 35.8}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 3.49}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.116}]}, {"unit": "kg CFC-11-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "ozone depletion no LT", "ozone depletion potential (ODPinfinite) no LT"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.007}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.007}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.007}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.396}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.396}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.504}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.504}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.275}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.275}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.165}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.165}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.165}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.165}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.111}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.111}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.111}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.111}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.025}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.025}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.049}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.049}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.049}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.032}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.032}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.032}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.032}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0129}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0129}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.65}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.65}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 15.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 15.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.8}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.8}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 11.8}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 11.8}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.085}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.085}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.421}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.421}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.2}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.2}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg PM2.5-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "particulate matter formation no LT", "particulate matter formation potential (PMFP) no LT"], "exchanges": [{"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "photochemical oxidant formation: human health no LT", "photochemical oxidant formation potential: humans (HOFP) no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.345}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.131}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.131}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.149}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0653}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.199}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0326}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0326}, {"name": "Acetone", "categories": ["air"], "amount": 0.0218}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Acrolein", "categories": ["air"], "amount": 0.196}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.174}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.0689}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.0689}, {"name": "Benzene", "categories": ["air"], "amount": 0.0363}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0363}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.167}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Butadiene", "categories": ["air"], "amount": 0.323}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.112}, {"name": "Butane", "categories": ["air"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.112}, {"name": "Butanol", "categories": ["air"], "amount": 0.189}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.228}, {"name": "Butene", "categories": ["air"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.228}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.0943}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0943}, {"name": "Cumene", "categories": ["air"], "amount": 0.116}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.102}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.167}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Ethane", "categories": ["air"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00363}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00363}, {"name": "Ethanol", "categories": ["air"], "amount": 0.123}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.123}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0689}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.363}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.134}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.134}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.167}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0109}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Heptane", "categories": ["air"], "amount": 0.127}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.127}, {"name": "Hexane", "categories": ["air"], "amount": 0.145}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.163}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.163}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0266}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0266}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Isoprene", "categories": ["air"], "amount": 0.413}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.413}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0109}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00363}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Methanol", "categories": ["air"], "amount": 0.0471}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.116}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0399}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0399}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.145}, {"name": "Pentane", "categories": ["air"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Phenol", "categories": ["air"], "amount": -0.0181}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0181}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.261}, {"name": "Propanal", "categories": ["air"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.261}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0508}, {"name": "Propane", "categories": ["air"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0508}, {"name": "Propanol", "categories": ["air"], "amount": 0.174}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.424}, {"name": "Propene", "categories": ["air"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.424}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0471}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Styrene", "categories": ["air"], "amount": 0.0181}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0181}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00363}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Toluene", "categories": ["air"], "amount": 0.16}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.105}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.312}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.312}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.283}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.283}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "photochemical oxidant formation: terrestrial ecosystems no LT", "photochemical oxidant formation potential: ecosystems (EOFP) no LT"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.555}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.21}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.21}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.479}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.105}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.304}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.321}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0526}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0526}, {"name": "Acetone", "categories": ["air"], "amount": 0.0351}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "Acrolein", "categories": ["air"], "amount": 0.316}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.316}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.281}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.111}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.111}, {"name": "Benzene", "categories": ["air"], "amount": 0.0585}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0585}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.269}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Butadiene", "categories": ["air"], "amount": 0.52}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.52}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.181}, {"name": "Butane", "categories": ["air"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.181}, {"name": "Butanol", "categories": ["air"], "amount": 0.304}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Butene", "categories": ["air"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.152}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Cumene", "categories": ["air"], "amount": 0.187}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.164}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.269}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.0468}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00585}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00585}, {"name": "Ethanol", "categories": ["air"], "amount": 0.199}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.111}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.111}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.585}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.216}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.216}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.269}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0175}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Heptane", "categories": ["air"], "amount": 0.205}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.205}, {"name": "Hexane", "categories": ["air"], "amount": 0.234}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.263}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.263}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0429}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Isoprene", "categories": ["air"], "amount": 0.666}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.666}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0175}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00585}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Methanol", "categories": ["air"], "amount": 0.076}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.187}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0643}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0643}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Pentane", "categories": ["air"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Phenol", "categories": ["air"], "amount": -0.0292}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0292}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.421}, {"name": "Propanal", "categories": ["air"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.421}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0818}, {"name": "Propane", "categories": ["air"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0818}, {"name": "Propanol", "categories": ["air"], "amount": 0.281}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.684}, {"name": "Propene", "categories": ["air"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.684}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.076}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Styrene", "categories": ["air"], "amount": 0.0292}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0292}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00585}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Toluene", "categories": ["air"], "amount": 0.257}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.17}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.503}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.503}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.456}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.456}]}, {"unit": "cubic meter", "name": ["ReCiPe 2016 v1.03, midpoint (I) no LT", "water use no LT", "water consumption potential (WCP) no LT"], "exchanges": [{"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Water", "categories": ["air"], "amount": 1}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg SO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "acidification: terrestrial", "terrestrial acidification potential (TAP)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air"], "amount": 1.96}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.96}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air"], "amount": 0.27}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.27}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.552}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.36}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.36}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}]}, {"unit": "kg CO2-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "climate change", "global warming potential (GWP1000)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air"], "amount": 60}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 60}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 264}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 264}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 264}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 264}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 3710}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 3710}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 578}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 578}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 6940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 6940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 6940}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 6940}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6490}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6490}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2550}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2550}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 506}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 506}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 506}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 506}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 506}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 7710}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7710}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 7710}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 7710}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 7710}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5020}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5020}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5020}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5020}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5020}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 292}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 292}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1870}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1870}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1870}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1870}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1870}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 5860}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5860}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 5860}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 5860}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 5860}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8210}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8210}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8210}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8210}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8210}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6090}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6090}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6090}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6090}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6090}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 30.2}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 30.2}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 4590}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4590}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4590}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4590}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4590}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7800}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7800}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7800}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7800}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7800}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5280}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5280}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 10900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 10900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 10900}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 10900}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 33}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 33}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10800}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10800}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 543}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 543}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 543}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 543}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 543}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2430}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2430}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2430}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2430}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2430}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 85}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 85}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 85}, {"name": "Methane, fossil", "categories": ["air"], "amount": 85}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 85}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 84}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 84}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 84}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 84}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 45}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 45}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 84}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 84}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 84}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 84}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3480}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3480}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 4880}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4880}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 4880}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 4880}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 4880}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6900}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 10800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 10800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 10800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 10800}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 12800}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 12800}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6350}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 17500}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17500}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17500}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 17500}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 17500}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "ecotoxicity: freshwater", "freshwater ecotoxicity potential (FETP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.00121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.000523}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.836}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.836}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000267}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.000263}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 1.11e-05}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.0411}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.0411}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.204}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.361}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 1.9}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 2.62}, {"name": "2,4-D", "categories": ["water"], "amount": 2.62}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0734}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.155}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 1.06}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0734}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.182}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.155}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 1.06}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0648}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.109}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 4.27}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 4.27}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000243}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000265}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 1.4e-05}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0248}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0248}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.0144}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.68e-05}, {"name": "2-Propanol", "categories": ["air"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 6.15e-05}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 2.98e-06}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.00477}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.00477}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0053}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0154}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 4.88e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.0653}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.0653}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00548}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.00213}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.00199}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 14.1}, {"name": "Acenaphthene", "categories": ["water"], "amount": 14.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0665}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.713}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.889}, {"name": "Acephate", "categories": ["water"], "amount": 0.889}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00049}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.000344}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 9.96e-05}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.144}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.144}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0372}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 2.95e-09}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.169}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.169}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.21e-05}, {"name": "Acetone", "categories": ["air"], "amount": 4.33e-05}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 4.33e-05}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 6.06e-06}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.00217}, {"name": "Acetone", "categories": ["water"], "amount": 0.00217}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000187}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.000194}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.000194}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00873}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.00873}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00873}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00873}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 5.11}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acrolein", "categories": ["air"], "amount": 0.084}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.084}, {"name": "Acrolein", "categories": ["water"], "amount": 69.4}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.94e-09}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.132}, {"name": "Acrylate", "categories": ["water"], "amount": 0.132}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00654}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0236}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0236}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00251}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00223}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.000598}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.441}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.441}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 11.5}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0103}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0228}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0228}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 25.1}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.759}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 56.3}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.309}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 339}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 269}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 144}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1070}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 82400}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 35.1}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 3.14}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 39.5}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00161}, {"name": "Aniline", "categories": ["air"], "amount": 0.00401}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00401}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 1.05}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.11e-05}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "Aniline", "categories": ["water"], "amount": 1.05}, {"name": "Anthracene", "categories": ["air"], "amount": 0.197}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 354}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.135}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 354}, {"name": "Anthracene", "categories": ["water"], "amount": 354}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.232}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.86}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.86}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.211}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.365}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.365}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.365}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 59.7}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 59.7}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 8.35e-21}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 59.7}, {"name": "Arsenic ion", "categories": ["water"], "amount": 59.7}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.86}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14.8}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 85.6}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 179}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 179}, {"name": "Atrazine", "categories": ["water"], "amount": 179}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.454}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.747}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 234}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.68}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 27.3}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 156}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 156}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 0.461}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.461}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.461}, {"name": "Barium II", "categories": ["air"], "amount": 1.09}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.09}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 2.51}, {"name": "Barium II", "categories": ["soil"], "amount": 2.51}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 2.79}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.53e-21}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 2.79}, {"name": "Barium II", "categories": ["water"], "amount": 2.79}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.0659}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0228}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0238}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.055}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.68}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.68}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00338}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.00269}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00269}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.744}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.66e-05}, {"name": "Benzene", "categories": ["air"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 3.53e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 1.72e-05}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0868}, {"name": "Benzene", "categories": ["water"], "amount": 0.0868}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.000158}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.748}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.748}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6e-05}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 2.11e-05}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 6.87e-06}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.293}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.293}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0394}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0393}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 24.6}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0684}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0684}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0684}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 0.0687}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0687}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 15.2}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.626}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.412}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.412}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 134}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 134}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.0491}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0337}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 4.17e-06}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.285}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.285}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.877}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.877}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.877}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.657}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.657}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.101}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.169}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.169}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.169}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 50}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 50}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 7.78e-21}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 50}, {"name": "Beryllium II", "categories": ["water"], "amount": 50}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 249}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 36.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 277}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 21100}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 21100}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 110}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.509}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.1}, {"name": "Bifenthrin", "categories": ["air"], "amount": 39.5}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 13.5}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 89.5}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 12000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 12000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 44.9}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.0298}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 10}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 2.9}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.95}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 167}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 167}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 11.7}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3.65}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000149}, {"name": "Butanol", "categories": ["air"], "amount": 0.000143}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000143}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 4.78e-06}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Butanol", "categories": ["water"], "amount": 0.0183}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000196}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000171}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 2.93e-05}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.0771}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.0771}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.302}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.302}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.302}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.299}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.299}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.291}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.291}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.291}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 15}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 15}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 7.05e-22}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 15}, {"name": "Cadmium II", "categories": ["water"], "amount": 15}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 25.9}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 9.19}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 116}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 116}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.58}, {"name": "Carbendazim", "categories": ["air"], "amount": 7.02}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 4.53}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 26.3}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 45.9}, {"name": "Carbendazim", "categories": ["water"], "amount": 45.9}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.708}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 40.9}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.000348}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 9.94e-05}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.349}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.349}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 6.32e-10}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0948}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0948}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.8}, {"name": "Chloramine", "categories": ["air"], "amount": 39.4}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 39.4}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 217}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 9.74e-12}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 217}, {"name": "Chloramine", "categories": ["water"], "amount": 217}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 3.67}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.398}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 63.7}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.537}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.000192}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 8.54e-05}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.162}, {"name": "Chloroform", "categories": ["water"], "amount": 0.162}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.8}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 23.7}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 26.5}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 158}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 673}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 673}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.4}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 329}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 1790}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 14700}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 14700}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 33.9}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 1.45}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.0595}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0595}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0595}, {"name": "Chromium III", "categories": ["air"], "amount": 0.0847}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.0847}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.0767}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.141}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.141}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.141}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.03}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 2.03}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.15e-22}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.03}, {"name": "Chromium III", "categories": ["water"], "amount": 2.03}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 2.52}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52}, {"name": "Chromium VI", "categories": ["air"], "amount": 3.63}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 3.63}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 3.32}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6.11}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6.11}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6.11}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 83.2}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 83.2}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.97e-20}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 83.2}, {"name": "Chromium VI", "categories": ["water"], "amount": 83.2}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.833}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.376}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.699}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 0.102}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.102}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.102}, {"name": "Cobalt II", "categories": ["air"], "amount": 0.0816}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 0.0816}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.0211}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.0368}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.0368}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.0368}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5.67}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 5.67}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 4.45e-22}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5.67}, {"name": "Cobalt II", "categories": ["water"], "amount": 5.67}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 2.57}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.57}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57}, {"name": "Copper ion", "categories": ["air"], "amount": 2.04}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2.04}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.492}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.854}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.854}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.854}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 144}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 144}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 9.9e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 144}, {"name": "Copper ion", "categories": ["water"], "amount": 144}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.53e-05}, {"name": "Cumene", "categories": ["air"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.91e-05}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.558}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 9.14e-06}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.558}, {"name": "Cumene", "categories": ["water"], "amount": 0.558}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 7.43}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.62e-07}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 7.27e-08}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0546}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0546}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.12e-07}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.0628}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.289}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.0049}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 257}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 110}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 821}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 62900}, {"name": "Cypermethrin", "categories": ["water"], "amount": 62900}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 2.02}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 12.9}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.593}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 8.73}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.0534}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 2.21}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 58.9}, {"name": "Deltamethrin", "categories": ["air"], "amount": 53.3}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 6300}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.139}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 16.4}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.173}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.33}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.33}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.135}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 17.1}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0429}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.0814}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.63}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.63}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 17.6}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 5.79}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 3.27}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 0.282}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.159}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22e-06}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1.57e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.57e-06}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0314}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0314}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0314}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0826}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 4.81e-06}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.462}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 188}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 300}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1990}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 4860}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 4860}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 0.613}, {"name": "Dimethoate", "categories": ["air"], "amount": 3.37}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 5.7}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 38.7}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0766}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0766}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0766}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.211}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.973}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.973}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 2.2e-05}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.973}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.973}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 0.394}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.394}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.71}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 8.72}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 19.6}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 19.6}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Diuron", "categories": ["air"], "amount": 35.2}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 15.2}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 98.4}, {"name": "Diuron", "categories": ["water"], "amount": 222}, {"name": "Dodecanol", "categories": ["water"], "amount": 22.5}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.353}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.318}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.113}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 6.86}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.281}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0129}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.0133}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.732}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.58}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 12.4}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 6.59}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 41}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 83.9}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 83.9}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1490}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1000}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 8.18e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.18e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.18e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 8.22e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.52e-05}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.000425}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000425}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000157}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 7.04e-05}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0554}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0554}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 0.00495}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.55}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.55}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.78e-05}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 2.24e-06}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.00629}, {"name": "Ethanol", "categories": ["water"], "amount": 0.00629}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0242}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.047}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.328}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.328}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.24}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.594}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000137}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 2.9e-05}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0164}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0164}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0304}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0822}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.94e-09}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.425}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.425}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000702}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.000708}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.000708}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.000176}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0482}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0482}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 2.71}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 6.5}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 63.5}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 23.7}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.58}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 7.5}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 43.7}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.73}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 108}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.639}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.26}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.5}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 87.9}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 87.9}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 97.4}, {"name": "Fluazinam", "categories": ["air"], "amount": 287}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 105}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 743}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 2260}, {"name": "Fluazinam", "categories": ["water"], "amount": 2260}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 21.2}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 41}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.22}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.863}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 618}, {"name": "Fluorene", "categories": ["air"], "amount": 0.0118}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 7.12}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 4.12}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.235}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 31.1}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 11.1}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0141}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0315}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0315}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 4.68e-05}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.907}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.907}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00618}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0197}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0853}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0853}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 2.98e-10}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0853}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0853}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.0076}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.996}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.202}, {"name": "Furfural", "categories": ["air"], "amount": 0.00702}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 0.207}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.589}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.28}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.35}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.62}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.39}, {"name": "Glyphosate", "categories": ["water"], "amount": 2.39}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.85}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 32.1}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 32.1}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.99e-09}, {"name": "Heptane", "categories": ["air"], "amount": 6.53e-09}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.53e-09}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 10.8}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.09e-08}, {"name": "Hexane", "categories": ["air"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 6.03e-08}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.141}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "Hexane", "categories": ["water"], "amount": 0.141}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.39}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 93.3}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 93.3}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.0227}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 93.3}, {"name": "Hydrazine", "categories": ["water"], "amount": 93.3}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000258}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000616}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 1.5e-06}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.302}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.302}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1.81e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.52e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.52e-05}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.139}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.139}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 6.47e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.139}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.139}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.000363}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000363}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000363}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.00036}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.00036}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.0062}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 0.676}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.676}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.79}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.31}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.95}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 9.15}, {"name": "Imidacloprid", "categories": ["water"], "amount": 9.15}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 6.14}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.51}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.13e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 1.71e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.71e-08}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 4.87}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 66.7}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 410}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 47700}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 47700}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 47700}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.00902}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00902}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00902}, {"name": "Lead II", "categories": ["air"], "amount": 0.00654}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00654}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.000635}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.000987}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.000987}, {"name": "Lead II", "categories": ["soil"], "amount": 0.000987}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.533}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.533}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.66e-24}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.533}, {"name": "Lead II", "categories": ["water"], "amount": 0.533}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.539}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 24.6}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.927}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0967}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.173}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.63}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.63}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.184}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 6}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 12.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.292}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0307}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.52}, {"name": "Mancozeb", "categories": ["air"], "amount": 14.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 10.7}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 56.6}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 77.9}, {"name": "Mancozeb", "categories": ["water"], "amount": 77.9}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 11}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.21}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.777}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.777}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.777}, {"name": "Mercury II", "categories": ["air"], "amount": 0.542}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.542}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0288}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0382}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0382}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0382}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 43.9}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 43.9}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.34e-22}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 43.9}, {"name": "Mercury II", "categories": ["water"], "amount": 43.9}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.294}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 22.4}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.19}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00275}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.00276}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00276}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 3.89e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.81e-05}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0292}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0292}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000493}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.000266}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.534}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.534}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000106}, {"name": "Methanol", "categories": ["air"], "amount": 0.000132}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000132}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.49e-06}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.00493}, {"name": "Methanol", "categories": ["water"], "amount": 0.00493}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.25}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 28.1}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.82}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 8.59}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 47.6}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 78.6}, {"name": "Methomyl", "categories": ["water"], "amount": 78.6}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.372}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00158}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.00125}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.000365}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.72}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.72}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.64e-05}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 4.58e-05}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00341}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.756}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 4.91}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0236}, {"name": "Methylamine", "categories": ["air"], "amount": 0.063}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.063}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.291}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.291}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 6.19e-06}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.291}, {"name": "Methylamine", "categories": ["water"], "amount": 0.291}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.328}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.63}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 9.41}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 62.2}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 147}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 147}, {"name": "Metolachlor", "categories": ["water"], "amount": 147}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.47}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 148}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 297}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 772}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 523}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 3010}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 5070}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 5070}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 111}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.612}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.0111}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0111}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0111}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.0158}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.0158}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.0144}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.0265}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.0265}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.0265}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.376}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 0.376}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 5.32e-23}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.376}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.376}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 3.12}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0208}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.287}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 1.35}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 4.55}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.000708}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 2.34}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 68}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 0.783}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.783}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.783}, {"name": "Nickel II", "categories": ["air"], "amount": 0.682}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 0.682}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.256}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.456}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.456}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.456}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 41.7}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 41.7}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.29e-21}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 41.7}, {"name": "Nickel II", "categories": ["water"], "amount": 41.7}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0143}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.00135}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.76}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.76}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.82}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.0644}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.76}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 3.03}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.322}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.344}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.344}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.344}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 0.203}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 6.02}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.00486}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 13}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 13}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0329}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0129}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 38.3}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.11}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.184}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.69}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 175}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 175}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.1}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 5.08}, {"name": "Permethrin", "categories": ["water"], "amount": 2860}, {"name": "Phenanthrene", "categories": ["air"], "amount": 0.136}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 57}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.07}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00556}, {"name": "Phenol", "categories": ["air"], "amount": 0.00867}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00867}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.969}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 1.24e-05}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.969}, {"name": "Phenol", "categories": ["water"], "amount": 0.969}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.137}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 0.136}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 0.136}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8.15}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.15}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.15}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 19}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 5.54}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 45.3}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 8.86}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 33.3}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 60.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00054}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 15.7}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 15.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.000947}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 26.1}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 26.1}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.608}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.608}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 3.81e-05}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.608}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.608}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 1.01e-05}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.24}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.24}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.728}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.86}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.457}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 22.5}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 13.3}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 430}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.23}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 17.5}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.0202}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.44}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000108}, {"name": "Propanol", "categories": ["air"], "amount": 0.000117}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000117}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00941}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00941}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 5.28e-06}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00941}, {"name": "Propanol", "categories": ["water"], "amount": 0.00941}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 9.34}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.17}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.15}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 3.37}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 15.8}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 74.9}, {"name": "Propiconazole", "categories": ["water"], "amount": 74.9}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00894}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.32e-08}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.157}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.157}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.92}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 8.29}, {"name": "Pyrene", "categories": ["air"], "amount": 1.18}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1810}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.81}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.81}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.036}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 8.08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.673}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.03}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 4.5}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 28.4}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 236}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 2700}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 2700}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.182}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.0406}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 0.277}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.277}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.277}, {"name": "Selenium IV", "categories": ["air"], "amount": 0.267}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 0.267}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.135}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.242}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.242}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.242}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 13.9}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 13.9}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.36e-21}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 13.9}, {"name": "Selenium IV", "categories": ["water"], "amount": 13.9}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0968}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 7.41}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 7.79}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.79}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.79}, {"name": "Silver I", "categories": ["air"], "amount": 6.44}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 6.44}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.95}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 3.44}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 3.44}, {"name": "Silver I", "categories": ["soil"], "amount": 3.44}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 431}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 431}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.63e-20}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 431}, {"name": "Silver I", "categories": ["water"], "amount": 431}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.65}, {"name": "Simazine", "categories": ["air"], "amount": 11.9}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 5.69}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 33.2}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 57.6}, {"name": "Simazine", "categories": ["water"], "amount": 57.6}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 20}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.47e-05}, {"name": "Styrene", "categories": ["air"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 5.36e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.396}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.86e-06}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.396}, {"name": "Styrene", "categories": ["water"], "amount": 0.396}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 143}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 144}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1.84}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 13.1}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 40.5}, {"name": "Tebuconazole", "categories": ["water"], "amount": 40.5}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.45}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 72.6}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 3.93}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 22.3}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.000266}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.00014}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.23}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 6.31}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.31}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.31}, {"name": "Thallium I", "categories": ["air"], "amount": 13.9}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 13.9}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 15.7}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 31.1}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 31.1}, {"name": "Thallium I", "categories": ["soil"], "amount": 31.1}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 52.6}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 52.6}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 3.29e-20}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 52.6}, {"name": "Thallium I", "categories": ["water"], "amount": 52.6}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 0.539}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.539}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1.41}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.736}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 5.15}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 15}, {"name": "Thiabendazole", "categories": ["water"], "amount": 15}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 3.57}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 12.7}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 79.1}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 147}, {"name": "Thiodicarb", "categories": ["water"], "amount": 147}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.817}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2.92}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 1.93}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 10.4}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 15.1}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 15.1}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 3.9}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9}, {"name": "Thiram", "categories": ["air"], "amount": 5.91}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 4.14}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 19.8}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 468}, {"name": "Thiram", "categories": ["water"], "amount": 468}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 0.0723}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0723}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0723}, {"name": "Tin ion", "categories": ["air"], "amount": 0.0529}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 0.0529}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.00592}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.00944}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.00944}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.00944}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 4.25}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 4.25}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 1.68e-22}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 4.25}, {"name": "Tin ion", "categories": ["water"], "amount": 4.25}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74e-05}, {"name": "Toluene", "categories": ["air"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.45e-05}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.139}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 4.71e-06}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.139}, {"name": "Toluene", "categories": ["water"], "amount": 0.139}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 36.7}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 714}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.74}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 0.171}, {"name": "Triallate", "categories": ["air"], "amount": 0.164}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 1.66}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 86.9}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.506}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 7.86}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52e-05}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.35e-05}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 1.11e-05}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.17}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.86}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 4.91e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.00133}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 12.1}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0391}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.438}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 3.61}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 35.4}, {"name": "Trifluralin", "categories": ["water"], "amount": 35.4}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.455}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 0.0319}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 3.14e-11}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.0319}, {"name": "Urea", "categories": ["water"], "amount": 0.0319}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 3.38}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.38}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.38}, {"name": "Vanadium V", "categories": ["air"], "amount": 2.95}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 2.95}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 1.99}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 1.99}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.99}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 175}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 175}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 3.22e-20}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 175}, {"name": "Vanadium V", "categories": ["water"], "amount": 175}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.548}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19e-05}, {"name": "Xylene", "categories": ["air"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.21e-06}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.155}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.13e-06}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.155}, {"name": "Xylene", "categories": ["water"], "amount": 0.155}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 257}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 110}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 3.94}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.94}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.94}, {"name": "Zinc II", "categories": ["air"], "amount": 3.03}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 3.03}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.58}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.972}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.972}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.972}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 211}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.9e-20}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 211}, {"name": "Zinc II", "categories": ["water"], "amount": 211}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 3.26}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 53.1}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66e-05}, {"name": "m-Xylene", "categories": ["air"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.5e-06}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 4.4e-06}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.492}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.492}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.02e-05}, {"name": "o-Xylene", "categories": ["air"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.78e-05}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 1.06e-05}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.525}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.525}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 1.31}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "ecotoxicity: marine", "marine ecotoxicity potential (METP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.123}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.121}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.833}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.141}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.141}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00151}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.00731}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.00125}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.00125}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.145}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.02}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.106}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.146}, {"name": "2,4-D", "categories": ["water"], "amount": 0.146}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0706}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 0.0127}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 0.0884}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 0.0884}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0706}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 0.0623}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 0.0127}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 0.0884}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.00605}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.238}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.238}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00165}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.00132}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0054}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.00144}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.00144}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.000733}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000376}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.000315}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000315}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.000996}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.000299}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.000299}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00322}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.00261}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.00261}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.007}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00155}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00155}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.152}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.152}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.152}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.0488}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.0488}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 0.631}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 0.631}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 11.7}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 0.631}, {"name": "Acenaphthene", "categories": ["water"], "amount": 0.631}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0443}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00705}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.0397}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.0495}, {"name": "Acephate", "categories": ["water"], "amount": 0.0495}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.00807}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00807}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00807}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.00514}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.00514}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.00943}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.00943}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0716}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.00943}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.00943}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00813}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00606}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.0168}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00238}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00238}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.000601}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000601}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000601}, {"name": "Acetone", "categories": ["air"], "amount": 0.000597}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.000597}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.000894}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.000503}, {"name": "Acetone", "categories": ["water"], "amount": 0.000503}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.00284}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.00388}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.00239}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.00239}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 0.438}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31}, {"name": "Acrolein", "categories": ["air"], "amount": 1.34}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1.34}, {"name": "Acrolein", "categories": ["water"], "amount": 3.24}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00185}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.00185}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.0131}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00185}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00185}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00493}, {"name": "Acrylic acid", "categories": ["air"], "amount": 0.0034}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0034}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0512}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 0.0446}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.0446}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 0.0519}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.0519}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.255}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 0.0519}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 0.0519}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.97}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 0.974}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0291}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.0196}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0196}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 4.57}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 3.58}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.00546}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9340}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 4800}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 108}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 267}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 15000}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 2.91}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.325}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 7.44}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.00496}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00496}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00496}, {"name": "Aniline", "categories": ["air"], "amount": 0.00107}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.00107}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.139}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.0257}, {"name": "Aniline", "categories": ["water"], "amount": 0.0257}, {"name": "Anthracene", "categories": ["air"], "amount": 4.67}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 29}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 29}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 307}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 29}, {"name": "Anthracene", "categories": ["water"], "amount": 29}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 0.0197}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 32.3}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 32.3}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 32.3}, {"name": "Arsenic ion", "categories": ["air"], "amount": 22.4}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 22.4}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0553}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0954}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0954}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0954}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 24}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 24}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 71.9}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 24}, {"name": "Arsenic ion", "categories": ["water"], "amount": 24}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.58}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.23}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 7.08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 14.9}, {"name": "Atrazine", "categories": ["water"], "amount": 14.9}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0373}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 0.14}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 13.1}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.72}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.283}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 2.25}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 12.9}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 12.9}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1.07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.07}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.07}, {"name": "Barium II", "categories": ["air"], "amount": 1.05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 0.49}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1.03}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1.03}, {"name": "Barium II", "categories": ["soil"], "amount": 1.03}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.25}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1.25}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.94}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.25}, {"name": "Barium II", "categories": ["water"], "amount": 1.25}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 0.00158}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.0295}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0391}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0239}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.00306}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.0378}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.0378}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0346}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0346}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0346}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.0234}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0234}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0395}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00246}, {"name": "Benzene", "categories": ["air"], "amount": 0.00235}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.00235}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.00486}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.00486}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0891}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.00486}, {"name": "Benzene", "categories": ["water"], "amount": 0.00486}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.45}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.0377}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000575}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.000457}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.339}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.339}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.339}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.339}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 9.57}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.57}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.57}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.46}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.46}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 10.8}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 20.2}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.2}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.2}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 20.1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 20.1}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 20.5}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 45.5}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.5}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.5}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 26.8}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 26.8}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 12.1}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 12.1}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.00118}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.00334}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0322}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.00699}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.00699}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 68.3}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 68.3}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.3}, {"name": "Beryllium II", "categories": ["air"], "amount": 47.2}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 47.2}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.0205}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.0341}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.0341}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.0341}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 15.5}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 15.5}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 149}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 15.5}, {"name": "Beryllium II", "categories": ["water"], "amount": 15.5}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6710}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 10.4}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 51.2}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 3830}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 3830}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 81.6}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 0.127}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2380}, {"name": "Bifenthrin", "categories": ["air"], "amount": 1380}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 24.5}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 37.3}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 2180}, {"name": "Bifenthrin", "categories": ["water"], "amount": 2180}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.49}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 0.0744}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 0.00164}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 1.88}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.23}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.982}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 9.28}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 9.28}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 0.964}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 0.203}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000778}, {"name": "Butanol", "categories": ["air"], "amount": 0.000583}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.000583}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.00295}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.000557}, {"name": "Butanol", "categories": ["water"], "amount": 0.000557}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00272}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00231}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.00304}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.00304}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0295}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.00304}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.00304}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 24.2}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.2}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.2}, {"name": "Cadmium II", "categories": ["air"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 16.8}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.0273}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.0492}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.0492}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.0492}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 3.8}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 3.8}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 53.5}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 3.8}, {"name": "Cadmium II", "categories": ["water"], "amount": 3.8}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 2.15}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.01}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 0.515}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 6.45}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 6.45}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.23}, {"name": "Carbendazim", "categories": ["air"], "amount": 2.09}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.251}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.47}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 2.56}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.56}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.0392}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 2.33}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.149}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.148}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.138}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.138}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.263}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.138}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.138}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 0.0094}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00133}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00133}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 8.34}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.34}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.34}, {"name": "Chloramine", "categories": ["air"], "amount": 7.51}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7.51}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.17}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.17}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 23.2}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.17}, {"name": "Chloramine", "categories": ["water"], "amount": 5.17}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 0.316}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.0224}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 5.76}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.0298}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0445}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.047}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.047}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.176}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.047}, {"name": "Chloroform", "categories": ["water"], "amount": 0.047}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 181}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 177}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 78.6}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 105}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 189}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 189}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 173}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 103}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 331}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2640}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2640}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 4.78}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.901}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.0802}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 3.58}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.58}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.58}, {"name": "Chromium III", "categories": ["air"], "amount": 2.48}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 2.48}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 0.0116}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.0211}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.0211}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.0211}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 0.456}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 0.456}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 7.82}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.456}, {"name": "Chromium III", "categories": ["water"], "amount": 0.456}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 50}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 50}, {"name": "Chromium VI", "categories": ["air"], "amount": 35.1}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 35.1}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.953}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.74}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.74}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.74}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 36.4}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 36.4}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 110}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 36.4}, {"name": "Chromium VI", "categories": ["water"], "amount": 36.4}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 0.0506}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 0.0326}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0387}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 5.55}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.84}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 3.84}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 0.00349}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 0.00607}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 0.00607}, {"name": "Cobalt II", "categories": ["soil"], "amount": 0.00607}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 1.34}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 1.34}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 13.2}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 1.34}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.34}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 148}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 148}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 148}, {"name": "Copper ion", "categories": ["air"], "amount": 103}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 103}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.0774}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.134}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.134}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.134}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 32.5}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 32.5}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 352}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 32.5}, {"name": "Copper ion", "categories": ["water"], "amount": 32.5}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.00078}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078}, {"name": "Cumene", "categories": ["air"], "amount": 0.00063}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.00063}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.331}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0105}, {"name": "Cumene", "categories": ["water"], "amount": 0.0105}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.4}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.96e-06}, {"name": "Cyclohexane", "categories": ["air"], "amount": 4.69e-06}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.69e-06}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000942}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.000942}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0342}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000942}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000942}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.69e-06}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.00347}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 137}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.0543}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 0.000272}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7070}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 81.6}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 203}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 11500}, {"name": "Cypermethrin", "categories": ["water"], "amount": 11500}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 0.166}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 1.06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 0.0487}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 0.499}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00128}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.122}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 1140}, {"name": "Deltamethrin", "categories": ["air"], "amount": 851}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 80.5}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 717}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 0.00778}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 0.96}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.119}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.0183}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 0.13}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 0.13}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 0.38}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 1.53}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0314}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.0045}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 0.0351}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 0.0351}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.06}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 3.6}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.0783}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 7.1}, {"name": "Diethanolamine", "categories": ["water"], "amount": 0.00223}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.77e-05}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.23e-05}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.23e-05}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0215}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.018}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.018}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.0496}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.011}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.011}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 444}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 57.4}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 379}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 917}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 917}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 0.295}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 0.386}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.167}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 0.137}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0457}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0457}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0457}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.0383}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0383}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.0232}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.0232}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.00618}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 0.661}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00569}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 0.508}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.508}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 0.315}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 0.0748}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 0.485}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 1.09}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 1.09}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 0.475}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.19}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.3}, {"name": "Diuron", "categories": ["air"], "amount": 10.3}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 0.844}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.47}, {"name": "Diuron", "categories": ["water"], "amount": 12.4}, {"name": "Dodecanol", "categories": ["water"], "amount": 0.864}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.0208}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.0292}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 0.00446}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.0263}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 191}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.00395}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 0.157}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 0.13}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.86}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 6.99}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 1.34}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 7.84}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 15.9}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 15.9}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5590}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0691}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0691}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0691}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0688}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0688}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.0704}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.0704}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.177}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.0704}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.0704}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.0438}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0438}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0179}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.0178}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.0178}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0618}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.0185}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.0185}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6.86}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 6.86}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 10.2}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6.86}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 6.86}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.000434}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000434}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000434}, {"name": "Ethanol", "categories": ["air"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.000381}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.000224}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.000224}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.0009}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.000224}, {"name": "Ethanol", "categories": ["water"], "amount": 0.000224}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 0.00261}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 0.0182}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 0.0182}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.069}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 0.0386}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.471}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.00277}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00277}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00277}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.00263}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.00263}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00882}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.00264}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.00264}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 0.0165}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0165}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0165}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 0.0149}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.0455}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.0101}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.0101}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0195}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.0194}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.0324}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 0.0178}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 0.0178}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 0.382}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.36}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 3.03}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 0.387}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.556}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 0.626}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 141}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 0.226}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 6.05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.93}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 0.225}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.48}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 7.33}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 7.33}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 270}, {"name": "Fluazinam", "categories": ["air"], "amount": 232}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 21.3}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 142}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 428}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 428}, {"name": "Fluazinam", "categories": ["water"], "amount": 428}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.3}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 7.91}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.102}, {"name": "Fluoranthene", "categories": ["air"], "amount": 14.4}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 57.8}, {"name": "Fluorene", "categories": ["air"], "amount": 0.164}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 0.328}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 0.907}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.0195}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.29}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 2.36}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0371}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.0251}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.0251}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.0237}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0039}, {"name": "Formic acid", "categories": ["air"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00296}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00846}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Formic acid", "categories": ["water"], "amount": 0.0012}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00042}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0238}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0112}, {"name": "Furfural", "categories": ["air"], "amount": 0.00779}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 0.00729}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 0.174}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 0.145}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 0.00729}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 0.102}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0924}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.00838}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.0386}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.0569}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.0569}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.12}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 2.9}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 6.06}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 6.06}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26e-07}, {"name": "Heptane", "categories": ["air"], "amount": 9.98e-08}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 9.98e-08}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 0.84}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18e-06}, {"name": "Hexane", "categories": ["air"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 9.83e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0628}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.00162}, {"name": "Hexane", "categories": ["water"], "amount": 0.00162}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.243}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.0373}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.52}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 10.1}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.27}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.27}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.000246}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.000246}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000304}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.000246}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.000246}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.00552}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00552}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.171}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.00552}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.00552}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.000456}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000456}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000456}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.000381}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.000381}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0205}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.0205}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0901}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0205}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0205}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.0521}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0521}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0521}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0517}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0517}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000149}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 0.547}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.547}, {"name": "Imidacloprid", "categories": ["air"], "amount": 0.555}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 0.578}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 0.761}, {"name": "Imidacloprid", "categories": ["water"], "amount": 0.761}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.339}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.291}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31e-06}, {"name": "Isoprene", "categories": ["air"], "amount": 2.8e-07}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 2.8e-07}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 24900}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 431}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 495}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 9580}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 9580}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 9580}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 1.06}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06}, {"name": "Lead II", "categories": ["air"], "amount": 0.735}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.735}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 8.07e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.000125}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.000125}, {"name": "Lead II", "categories": ["soil"], "amount": 0.000125}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.101}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.101}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.33}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.101}, {"name": "Lead II", "categories": ["water"], "amount": 0.101}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 0.0298}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 126}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.0774}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0633}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 0.00414}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 0.0389}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 0.0389}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.317}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.0105}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.334}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.334}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.301}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.00697}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.000734}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.87}, {"name": "Mancozeb", "categories": ["air"], "amount": 3.76}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.593}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.15}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 4.33}, {"name": "Mancozeb", "categories": ["water"], "amount": 4.33}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.609}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0668}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 87.6}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 87.6}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 87.6}, {"name": "Mercury II", "categories": ["air"], "amount": 59.8}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 59.8}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.00401}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0053}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0053}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0053}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 9.15}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 9.15}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 179}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 9.15}, {"name": "Mercury II", "categories": ["water"], "amount": 9.15}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 0.0168}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.535}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.00482}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 0.18}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.0624}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 0.309}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.617}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.617}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.617}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.618}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.618}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.00786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.00783}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.00783}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.00831}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.00831}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0329}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.00831}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.00831}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.481}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.478}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.478}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.476}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.476}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.869}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.476}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.476}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000476}, {"name": "Methanol", "categories": ["air"], "amount": 0.000451}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.000451}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.000222}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.000222}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000712}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.000222}, {"name": "Methanol", "categories": ["water"], "amount": 0.000222}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 0.46}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.58}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.09}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.206}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 1.14}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.87}, {"name": "Methomyl", "categories": ["water"], "amount": 1.87}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.174}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0296}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 0.0221}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 0.0221}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 0.0384}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.0384}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.394}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 0.0384}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 0.0384}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.000754}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000754}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000754}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.000724}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.000724}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.000669}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 0.384}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0142}, {"name": "Methylamine", "categories": ["air"], "amount": 0.012}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.012}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.0312}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.00695}, {"name": "Methylamine", "categories": ["water"], "amount": 0.00695}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.0184}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.87}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.783}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5.12}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 12.2}, {"name": "Metolachlor", "categories": ["water"], "amount": 12.2}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.93}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.85}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.25}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 288}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 42.9}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 249}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 421}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 421}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 2.65}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 0.0824}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.271}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.271}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.271}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.189}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.00283}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.00519}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.00519}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.00519}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.104}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 0.104}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 0.642}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.104}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.104}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.0747}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0117}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 0.0105}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00685}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 0.086}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 7.78}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.0206}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.11}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 4.99}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 44.2}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.2}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.2}, {"name": "Nickel II", "categories": ["air"], "amount": 30.6}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 30.6}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.053}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.0939}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.0939}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.0939}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 13}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 13}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 98.3}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 13}, {"name": "Nickel II", "categories": ["water"], "amount": 13}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.154}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.154}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.154}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.153}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.228}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.118}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.118}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00357}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 0.488}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.0725}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 0.701}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.6}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 8.53}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 8.53}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.43}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 11}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.000713}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 3.44}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 0.0948}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 0.0101}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.39}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.358}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 498}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 18.2}, {"name": "Permethrin", "categories": ["water"], "amount": 287}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.43}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 7.35}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.0591}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.0176}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0176}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0176}, {"name": "Phenol", "categories": ["air"], "amount": 0.00849}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.00849}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0237}, {"name": "Phenol", "categories": ["water"], "amount": 0.0237}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1.08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 39.3}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.3}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.3}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 30.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 30.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.04}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.54}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 0.468}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 1.95}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 3.6}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.406}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.406}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.406}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.406}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.417}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 0.417}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 2.9}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.417}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.417}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.0664}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 0.0152}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.419}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.0322}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.0322}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.0598}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.0376}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 1.37}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.54}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 38.8}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 1.18}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.273}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.5}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.00112}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 0.119}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000689}, {"name": "Propanol", "categories": ["air"], "amount": 0.000569}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.000569}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0019}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.00055}, {"name": "Propanol", "categories": ["water"], "amount": 0.00055}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.768}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.00486}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.33}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.278}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 1.31}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 6.23}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 6.23}, {"name": "Propiconazole", "categories": ["water"], "amount": 6.23}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.00805}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00805}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00805}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.00592}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.00592}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.0022}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0022}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.0155}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.0022}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.0022}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 0.108}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 0.466}, {"name": "Pyrene", "categories": ["air"], "amount": 21.5}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 156}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1.39}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.00199}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 0.752}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 0.0379}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.7}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 13.2}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 6.23}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 23.2}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 226}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 226}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.0101}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.00363}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 14.7}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.7}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.7}, {"name": "Selenium IV", "categories": ["air"], "amount": 10.2}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 10.2}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 0.0281}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 0.0504}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 0.0504}, {"name": "Selenium IV", "categories": ["soil"], "amount": 0.0504}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 4.36}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 4.36}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 32.7}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 4.36}, {"name": "Selenium IV", "categories": ["water"], "amount": 4.36}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0149}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.412}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 720}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 720}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 720}, {"name": "Silver I", "categories": ["air"], "amount": 498}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 498}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.313}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.549}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.549}, {"name": "Silver I", "categories": ["soil"], "amount": 0.549}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 104}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 104}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1590}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 104}, {"name": "Silver I", "categories": ["water"], "amount": 104}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.78}, {"name": "Simazine", "categories": ["air"], "amount": 3.42}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 0.469}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.75}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 4.79}, {"name": "Simazine", "categories": ["water"], "amount": 4.79}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 4.05}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000295}, {"name": "Styrene", "categories": ["air"], "amount": 9.5e-05}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 9.5e-05}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.00719}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.00719}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.238}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.00719}, {"name": "Styrene", "categories": ["water"], "amount": 0.00719}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 7.33}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.96}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.57}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.151}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 3.36}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.36}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 0.205}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.0743}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 9.28}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 0.359}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 1.95}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0749}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0749}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0749}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.0748}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0748}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.43}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.12}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.12}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 23.5}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.5}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.5}, {"name": "Thallium I", "categories": ["air"], "amount": 19.5}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 19.5}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 5.36}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 10.4}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 10.4}, {"name": "Thallium I", "categories": ["soil"], "amount": 10.4}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 24.9}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 24.9}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 47.6}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 24.9}, {"name": "Thallium I", "categories": ["water"], "amount": 24.9}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 0.579}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.579}, {"name": "Thiabendazole", "categories": ["air"], "amount": 0.489}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.0176}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.123}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.359}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.359}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 0.26}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.96}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.5}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 5.01}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 8.58}, {"name": "Thiodicarb", "categories": ["water"], "amount": 8.58}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.717}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 0.645}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.159}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 0.864}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.25}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.25}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 15.3}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.3}, {"name": "Thiram", "categories": ["air"], "amount": 9.15}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.234}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.11}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 26}, {"name": "Thiram", "categories": ["water"], "amount": 26}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 6.78}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.78}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.78}, {"name": "Tin ion", "categories": ["air"], "amount": 4.69}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 4.69}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 0.000976}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 0.00155}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 0.00155}, {"name": "Tin ion", "categories": ["soil"], "amount": 0.00155}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1.05}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 15}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "Tin ion", "categories": ["water"], "amount": 1.05}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000402}, {"name": "Toluene", "categories": ["air"], "amount": 0.000331}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.000331}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0856}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.00276}, {"name": "Toluene", "categories": ["water"], "amount": 0.00276}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 5.19}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 128}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.143}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 2.21}, {"name": "Triallate", "categories": ["air"], "amount": 1.01}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 0.516}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 7.75}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 0.0226}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.645}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00118}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00109}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.00636}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.00636}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.163}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.00636}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.00636}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 0.317}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 0.000142}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 3.16e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 3.16e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2.28}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 0.611}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 0.973}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 4.6}, {"name": "Trifluralin", "categories": ["water"], "amount": 4.6}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.011}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 0.00076}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 0.00342}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 0.00076}, {"name": "Urea", "categories": ["water"], "amount": 0.00076}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.00569}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 71}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 71}, {"name": "Vanadium V", "categories": ["air"], "amount": 49.2}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 49.2}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.311}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.551}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.551}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.551}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 75.9}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 75.9}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 157}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 75.9}, {"name": "Vanadium V", "categories": ["water"], "amount": 75.9}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 0.0464}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000248}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000248}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000248}, {"name": "Xylene", "categories": ["air"], "amount": 0.000165}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000165}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.00292}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.00292}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0931}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.00292}, {"name": "Xylene", "categories": ["water"], "amount": 0.00292}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7070}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 81.6}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 35.5}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.5}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.5}, {"name": "Zinc II", "categories": ["air"], "amount": 24.6}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 24.6}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.138}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.231}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.231}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.231}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 71.2}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 71.2}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 81.8}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 71.2}, {"name": "Zinc II", "categories": ["water"], "amount": 71.2}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 0.182}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 2.95}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.000183}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.00889}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.00889}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.296}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.00889}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.00889}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.000839}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000839}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000839}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.00056}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.00056}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.0099}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0099}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.315}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.0099}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.0099}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 4.55}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "ecotoxicity: terrestrial", "terrestrial ecotoxicity potential (TETP)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.85}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.802}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 1.76}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 1.76}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1.06}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.062}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 0.695}, {"name": "1-Pentanol", "categories": ["water"], "amount": 0.695}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 1600}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 0.0416}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 0.00206}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 0.00054}, {"name": "2,4-D", "categories": ["water"], "amount": 0.00054}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 1.1e-07}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 4.67e-09}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.1}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 33.3}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 1.1e-07}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 4.67e-09}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 69.5}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.0251}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 0.0475}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 0.0475}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 0.224}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.49}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.19}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.0855}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.798}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.798}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00627}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0369}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0308}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.00194}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 0.0188}, {"name": "2-Propanol", "categories": ["water"], "amount": 0.0188}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 56.9}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 41.1}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 5.23e-07}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 9.68e-05}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 9.68e-05}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.573}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.647}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.61}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.61}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 813}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00233}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.000491}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 7.9e-05}, {"name": "Acephate", "categories": ["water"], "amount": 7.9e-05}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.407}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.258}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0828}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.339}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.339}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 125}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 125}, {"name": "Acetic acid", "categories": ["air"], "amount": 87}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 87}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 3.39e-05}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 0.00669}, {"name": "Acetic acid", "categories": ["water"], "amount": 0.00669}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0309}, {"name": "Acetone", "categories": ["air"], "amount": 0.0305}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0305}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00445}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Acetone", "categories": ["water"], "amount": 0.0236}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.39}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.389}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0609}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.305}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.305}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 495}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 495}, {"name": "Acrolein", "categories": ["air"], "amount": 287}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 287}, {"name": "Acrolein", "categories": ["water"], "amount": 423}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.15e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.00425}, {"name": "Acrylate", "categories": ["water"], "amount": 0.00425}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 72}, {"name": "Acrylic acid", "categories": ["air"], "amount": 45.7}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 45.7}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.64}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.17}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.867}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.13}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.13}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 8460}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 161}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.1}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 7.3}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 7.3}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 116}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 146}, {"name": "Allyl chloride", "categories": ["water"], "amount": 0.0173}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 123000}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 62900}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 1110}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1150}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 3460}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 58.9}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 8.55}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.41}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.13}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.13}, {"name": "Aniline", "categories": ["air"], "amount": 0.621}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.621}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 0.622}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.041}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 0.622}, {"name": "Aniline", "categories": ["water"], "amount": 0.622}, {"name": "Anthracene", "categories": ["air"], "amount": 34.8}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 28.8}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 71.1}, {"name": "Anthracene", "categories": ["water"], "amount": 71.1}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 58200}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 58200}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 58200}, {"name": "Arsenic ion", "categories": ["air"], "amount": 40200}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 40200}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 2.28e-18}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 3.93e-18}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 3.93e-18}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.93e-18}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 1.12e-15}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 1.12e-15}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 4.06e-16}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 1.12e-15}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.12e-15}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 18200}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 22.7}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14.4}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 10.1}, {"name": "Atrazine", "categories": ["water"], "amount": 10.1}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 0.0553}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 6.61e-05}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 174}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4680}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 0.000144}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 0.000137}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 6.09e-05}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 6.09e-05}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 1430}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1430}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Barium II", "categories": ["air"], "amount": 991}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 991}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1.81e-17}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 3.79e-17}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 3.79e-17}, {"name": "Barium II", "categories": ["soil"], "amount": 3.79e-17}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 4.79e-17}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 4.79e-17}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 9.05e-18}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 4.79e-17}, {"name": "Barium II", "categories": ["water"], "amount": 4.79e-17}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 1.72e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.516}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.000631}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.7}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.0639}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.847}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.572}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.582}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.091}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.091}, {"name": "Benzene", "categories": ["air"], "amount": 0.0871}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0871}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0427}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.0859}, {"name": "Benzene", "categories": ["water"], "amount": 0.0859}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.922}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.922}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0485}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0386}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0129}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0425}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0425}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 49.6}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 48.4}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 78.2}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.2}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 78.2}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 78}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 78}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 75.8}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.443}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.443}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.008}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 0.0333}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.00268}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 0.0477}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 0.0477}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 208000}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 208000}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 208000}, {"name": "Beryllium II", "categories": ["air"], "amount": 144000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 144000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.1e-18}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.48e-18}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.48e-18}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.48e-18}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.73e-15}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.73e-15}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.69e-15}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.73e-15}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.73e-15}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 148000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 94.3}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 97.1}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 292}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 292}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 868}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 9.79}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22500}, {"name": "Bifenthrin", "categories": ["air"], "amount": 13100}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 217}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 222}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 751}, {"name": "Bifenthrin", "categories": ["water"], "amount": 751}, {"name": "Bisphenol A", "categories": ["water"], "amount": 0.0064}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.51e-05}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 7.52e-07}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 0.00939}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 466}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 42400}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 0.00331}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 0.000666}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 0.000666}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 1.9}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 4.33}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Butanol", "categories": ["air"], "amount": 0.035}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.035}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.0015}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0186}, {"name": "Butanol", "categories": ["water"], "amount": 0.0186}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.47}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.399}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.0703}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["water"], "amount": 0.368}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 122000}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 122000}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 122000}, {"name": "Cadmium II", "categories": ["air"], "amount": 84200}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 84200}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1.45e-18}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 2.6e-18}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 2.6e-18}, {"name": "Cadmium II", "categories": ["soil"], "amount": 2.6e-18}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 2.21e-16}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 2.21e-16}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.7e-16}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 2.21e-16}, {"name": "Cadmium II", "categories": ["water"], "amount": 2.21e-16}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.237}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9490}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 12.7}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 5.77}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 5.77}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 10300}, {"name": "Carbendazim", "categories": ["air"], "amount": 8320}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.138}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 0.0873}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 0.0417}, {"name": "Carbendazim", "categories": ["water"], "amount": 0.0417}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 372}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.961}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 0.852}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 0.852}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.274}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 0.852}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 0.852}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 8e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.00159}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.00159}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 265000}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 265000}, {"name": "Chloramine", "categories": ["air"], "amount": 219000}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 219000}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.74e-07}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 3.26e-06}, {"name": "Chloramine", "categories": ["water"], "amount": 3.26e-06}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 29.3}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 0.33}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 1680}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.493}, {"name": "Chloroform", "categories": ["air"], "amount": 0.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.491}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.219}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.462}, {"name": "Chloroform", "categories": ["water"], "amount": 0.462}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 22400}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 21800}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 9320}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 9770}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 8810}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 8810}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 6180}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1650}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 785}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 251}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.15e-06}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 0.161}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 26500}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26500}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 26500}, {"name": "Chromium III", "categories": ["air"], "amount": 18400}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 18400}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 8.92e-19}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.63e-18}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.63e-18}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.63e-18}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 3.85e-17}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 3.85e-17}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.18e-17}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 3.85e-17}, {"name": "Chromium III", "categories": ["water"], "amount": 3.85e-17}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 89900}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 89900}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 89900}, {"name": "Chromium VI", "categories": ["air"], "amount": 62200}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 62200}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 4.09e-17}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 7.47e-17}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 7.47e-17}, {"name": "Chromium VI", "categories": ["soil"], "amount": 7.47e-17}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1.75e-15}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 1.75e-15}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 7.02e-16}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1.75e-15}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.75e-15}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 9.78}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 22}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 0.0329}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 26000}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26000}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 26000}, {"name": "Cobalt II", "categories": ["air"], "amount": 18000}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 18000}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2.36e-19}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 4.09e-19}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 4.09e-19}, {"name": "Cobalt II", "categories": ["soil"], "amount": 4.09e-19}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 1.06e-16}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 1.06e-16}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.05e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 1.06e-16}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.06e-16}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 766000}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 766000}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 766000}, {"name": "Copper ion", "categories": ["air"], "amount": 530000}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 530000}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 5.35e-18}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 9.23e-18}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 9.23e-18}, {"name": "Copper ion", "categories": ["soil"], "amount": 9.23e-18}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 2.61e-15}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 2.61e-15}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.72e-15}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 2.61e-15}, {"name": "Copper ion", "categories": ["water"], "amount": 2.61e-15}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0534}, {"name": "Cumene", "categories": ["air"], "amount": 0.0432}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0432}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.0138}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.0466}, {"name": "Cumene", "categories": ["water"], "amount": 0.0466}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 0.337}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00073}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.000203}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.000646}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.000646}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.000574}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 3.27e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1700}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.136}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 4.12e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95500}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 868}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 895}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 2700}, {"name": "Cypermethrin", "categories": ["water"], "amount": 2700}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 0.868}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 2.04e-05}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 77}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.00507}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 0.112}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 19600}, {"name": "Deltamethrin", "categories": ["air"], "amount": 14700}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1380}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3700}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 9.14e-12}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 0.647}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.32e-05}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.32e-05}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 36.9}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 114}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 282}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 0.000695}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 2.55e-06}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 2.55e-06}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1060}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 601}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 0.923}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149}, {"name": "Diethanolamine", "categories": ["water"], "amount": 5.94e-06}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00612}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00415}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00415}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 242}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 242}, {"name": "Diethylamine", "categories": ["air"], "amount": 186}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 186}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.037}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 0.0767}, {"name": "Diethylamine", "categories": ["water"], "amount": 0.0767}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 487000}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1030}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 689}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 689}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 8.15}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 10100}, {"name": "Dimethoate", "categories": ["air"], "amount": 2350}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 7.52}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.232}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1180}, {"name": "Dimethylamine", "categories": ["air"], "amount": 888}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 888}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.337}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 0.7}, {"name": "Dimethylamine", "categories": ["water"], "amount": 0.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.00217}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 926}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 424}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 5.66e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 4.33e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 6.6e-07}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 6.6e-07}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.114}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 28600}, {"name": "Diuron", "categories": ["air"], "amount": 20400}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4.59}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.78}, {"name": "Diuron", "categories": ["water"], "amount": 2.55}, {"name": "Dodecanol", "categories": ["water"], "amount": 7.62}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 0.215}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 6.87e-05}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 2.18e-08}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 1.47}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 468}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 1.03e-10}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 16}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 10500}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 6700}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 146}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 107}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 58.7}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 58.7}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1460000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 11300}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.202}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.193}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.193}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.111}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.193}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.193}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.935}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.929}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.929}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.412}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.409}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.184}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 0.387}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 0.387}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 17.2}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 17.2}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 12.4}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 17.2}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 17.2}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0822}, {"name": "Ethanol", "categories": ["air"], "amount": 0.072}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0262}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0262}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 276}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 5.61e-06}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 2.53e-11}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 2.53e-11}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.27}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 14.4}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1520}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.483}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.457}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.406}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.406}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 663}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 545}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 0.000108}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 0.000225}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 0.000225}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.81}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.455}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.57}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.57}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.13e-05}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 6.5e-07}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 638}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.86}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 0.483}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 8.99}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 2710}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 2}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 32}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 729}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 15.5}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 17.4}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 26.8}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 26.8}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 205000}, {"name": "Fluazinam", "categories": ["air"], "amount": 145000}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 1210}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 1130}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 896}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 896}, {"name": "Fluazinam", "categories": ["water"], "amount": 896}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 70700}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 383}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 4.04}, {"name": "Fluoranthene", "categories": ["air"], "amount": 98.9}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 80.1}, {"name": "Fluorene", "categories": ["air"], "amount": 1.82}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.08}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 188}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 25800}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 142}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Formaldehyde", "categories": ["air"], "amount": 10}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.0506}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.889}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.889}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 94.9}, {"name": "Formic acid", "categories": ["air"], "amount": 66.8}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 66.8}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 4.58e-06}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 0.000909}, {"name": "Formic acid", "categories": ["water"], "amount": 0.000909}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 7.53e-09}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 0.0062}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 0.0939}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 735}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 573}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.77e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1.26e-10}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1510}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 6.13e-05}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 1.27e-10}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 3.27e-11}, {"name": "Glyphosate", "categories": ["water"], "amount": 3.27e-11}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2430}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1980}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 0.00797}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 0.00797}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.61e-05}, {"name": "Heptane", "categories": ["air"], "amount": 2.07e-05}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 2.07e-05}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 256}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000236}, {"name": "Hexane", "categories": ["air"], "amount": 0.000196}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000196}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 4.37e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 0.000194}, {"name": "Hexane", "categories": ["water"], "amount": 0.000194}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.00371}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.379}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 590}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 367}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1360}, {"name": "Hydrazine", "categories": ["water"], "amount": 1360}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.575}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00795}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0955}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0955}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0359}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0359}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0359}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.0296}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.0296}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.038}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.038}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0139}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.038}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.038}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 0.174}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.174}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.174}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.171}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.171}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 0.000785}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5250}, {"name": "Imidacloprid", "categories": ["air"], "amount": 4320}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 5.99e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 6.17e-10}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.98e-10}, {"name": "Imidacloprid", "categories": ["water"], "amount": 1.98e-10}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 0.0103}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 0.302}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000176}, {"name": "Isoprene", "categories": ["air"], "amount": 3.76e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 3.76e-05}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 0.259}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 311000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5390}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 5510}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 17600}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 17600}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 17600}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 27300}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27300}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27300}, {"name": "Lead II", "categories": ["air"], "amount": 18900}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 18900}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 4.56e-21}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.06e-21}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.06e-21}, {"name": "Lead II", "categories": ["soil"], "amount": 7.06e-21}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 6.3e-18}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 6.3e-18}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.01e-17}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 6.3e-18}, {"name": "Lead II", "categories": ["water"], "amount": 6.3e-18}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 3.93e-07}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 5100}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 2.04e-07}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 626}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 6.59e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.1e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.1e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 271}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.000589}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 0.000883}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 0.000883}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 43}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 1.18e-10}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.05e-05}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 44400}, {"name": "Mancozeb", "categories": ["air"], "amount": 36600}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 0.000845}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.59e-05}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 9.45e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 9.45e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 0.000868}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 0.0677}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 880000}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 880000}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 880000}, {"name": "Mercury II", "categories": ["air"], "amount": 601000}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 601000}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.02e-19}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 2.67e-19}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 2.67e-19}, {"name": "Mercury II", "categories": ["soil"], "amount": 2.67e-19}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 5.12e-16}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 5.12e-16}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 7.45e-16}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 5.12e-16}, {"name": "Mercury II", "categories": ["water"], "amount": 5.12e-16}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.27}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 0.000275}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 0.000191}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2.02}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 0.358}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.19}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.71}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5.7}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0492}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.0998}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.0998}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.36}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 1.3}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 1.3}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.734}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 1.3}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 1.3}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Methanol", "categories": ["air"], "amount": 0.122}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.122}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.00305}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0422}, {"name": "Methanol", "categories": ["water"], "amount": 0.0422}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 11.9}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 96.2}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 32500}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 0.422}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 0.206}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 0.0678}, {"name": "Methomyl", "categories": ["water"], "amount": 0.0678}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 5.42}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.32}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 3.96}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.23}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.55}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 4.55}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.025}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.0239}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.0199}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 566}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 40.4}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 397}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 397}, {"name": "Methylamine", "categories": ["air"], "amount": 305}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 305}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.104}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 0.216}, {"name": "Methylamine", "categories": ["water"], "amount": 0.216}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 0.725}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 5890}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 18.4}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 15.7}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 11.3}, {"name": "Metolachlor", "categories": ["water"], "amount": 11.3}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 40000}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 3.21}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 0.856}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090000}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 899000}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.000109}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 6.48e-05}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 2.81e-05}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 2.81e-05}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 26.6}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 8.85}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 923}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 923}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 923}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 639}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 639}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.41e-19}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 2.57e-19}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 2.57e-19}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 2.57e-19}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 6.08e-18}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 6.08e-18}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 4.48e-18}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 6.08e-18}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 6.08e-18}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 0.014}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 362}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 296}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 0.00603}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 27.6}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 801}, {"name": "Naphthalene", "categories": ["air"], "amount": 0.584}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 0.967}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 606}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 119000}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119000}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 119000}, {"name": "Nickel II", "categories": ["air"], "amount": 82100}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 82100}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.9e-18}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 5.13e-18}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 5.13e-18}, {"name": "Nickel II", "categories": ["soil"], "amount": 5.13e-18}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 7.9e-16}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 7.9e-16}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.04e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 7.9e-16}, {"name": "Nickel II", "categories": ["water"], "amount": 7.9e-16}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.2}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 22}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 2.1}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.8}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 176}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 0.00085}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 0.133}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 9.48}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 61.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 32.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 38.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 1.35}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 3.34}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 3.34}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.4}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 4.69e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 276}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.8}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 6.44e-05}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 490}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 69.2}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 69.2}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 11100}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 401}, {"name": "Permethrin", "categories": ["water"], "amount": 1160}, {"name": "Phenanthrene", "categories": ["air"], "amount": 31.3}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 37}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 6.5e-06}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.49}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.49}, {"name": "Phenol", "categories": ["air"], "amount": 1.18}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1.18}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.00553}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.0981}, {"name": "Phenol", "categories": ["water"], "amount": 0.0981}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.3}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 13}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 13}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8480}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8480}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8480}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 5960}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 5960}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.114}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 0.134}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 47.2}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 272}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 4160}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.187}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 2.84}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.84}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.603}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 10.7}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 10.7}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.4}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 7.34}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 7.34}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00153}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 0.00909}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 0.00909}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 0.000503}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 77.9}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.378}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 50.4}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 53.7}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 3440}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 37.6}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 10.1}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 885}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 3.94e-05}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.63}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0614}, {"name": "Propanol", "categories": ["air"], "amount": 0.0504}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0504}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.003}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 0.0302}, {"name": "Propanol", "categories": ["water"], "amount": 0.0302}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 0.00379}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 1.15}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 0.536}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 0.237}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 0.487}, {"name": "Propiconazole", "categories": ["water"], "amount": 0.487}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.2}, {"name": "Propionic acid", "categories": ["air"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 48.7}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.000104}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 0.0204}, {"name": "Propionic acid", "categories": ["water"], "amount": 0.0204}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 1.09}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 11.2}, {"name": "Pyrene", "categories": ["air"], "amount": 121}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 140}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 25.8}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.000429}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 119}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.29}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 667}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 211}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 267}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 932}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 932}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 0.000183}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.000889}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 39300}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39300}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 39300}, {"name": "Selenium IV", "categories": ["air"], "amount": 27200}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 27200}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 1.38e-18}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 2.48e-18}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 2.48e-18}, {"name": "Selenium IV", "categories": ["soil"], "amount": 2.48e-18}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 2.39e-16}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 2.39e-16}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.82e-16}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 2.39e-16}, {"name": "Selenium IV", "categories": ["water"], "amount": 2.39e-16}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.0594}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 0.0666}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 4220000}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4220000}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 4220000}, {"name": "Silver I", "categories": ["air"], "amount": 2920000}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 2920000}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 1.77e-17}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 3.09e-17}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 3.09e-17}, {"name": "Silver I", "categories": ["soil"], "amount": 3.09e-17}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 6.42e-15}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 6.42e-15}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.17e-15}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 6.42e-15}, {"name": "Silver I", "categories": ["water"], "amount": 6.42e-15}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Simazine", "categories": ["air"], "amount": 9400}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 9.4}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 6.06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 3.05}, {"name": "Simazine", "categories": ["water"], "amount": 3.05}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 76.8}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159}, {"name": "Styrene", "categories": ["air"], "amount": 0.00511}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.00511}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00418}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0139}, {"name": "Styrene", "categories": ["water"], "amount": 0.0139}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1250}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 7.61}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2820}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 0.0907}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 0.0888}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 0.0838}, {"name": "Tebuconazole", "categories": ["water"], "amount": 0.0838}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.97}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 0.00589}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 286}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 47.8}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 150}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.597}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.593}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.313}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 0.568}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 0.568}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 36800}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36800}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 36800}, {"name": "Thallium I", "categories": ["air"], "amount": 25500}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 25500}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1.49e-16}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2.87e-16}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2.87e-16}, {"name": "Thallium I", "categories": ["soil"], "amount": 2.87e-16}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 7.53e-16}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 7.53e-16}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.94e-16}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 7.53e-16}, {"name": "Thallium I", "categories": ["water"], "amount": 7.53e-16}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1350}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1090}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.00387}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 0.00354}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 0.00279}, {"name": "Thiabendazole", "categories": ["water"], "amount": 0.00279}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 49}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 5860}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1220}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 977}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 732}, {"name": "Thiodicarb", "categories": ["water"], "amount": 732}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4360}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 2770}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 7.32}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.23}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.07}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.07}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 964}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 964}, {"name": "Thiram", "categories": ["air"], "amount": 564}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.303}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.161}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Thiram", "categories": ["water"], "amount": 1.83}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 35100}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35100}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 35100}, {"name": "Tin ion", "categories": ["air"], "amount": 24300}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 24300}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 5.19e-20}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 6.15e-17}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 6.15e-17}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 7.45e-17}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 6.15e-17}, {"name": "Tin ion", "categories": ["water"], "amount": 6.15e-17}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0342}, {"name": "Toluene", "categories": ["air"], "amount": 0.0281}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0281}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.00928}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0301}, {"name": "Toluene", "categories": ["water"], "amount": 0.0301}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 871}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 0.00155}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 104}, {"name": "Triallate", "categories": ["air"], "amount": 47}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 18.8}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 70.8}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 2.24}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 0.00144}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0565}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.052}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0529}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0529}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1.77}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 9.6e-07}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.8e-05}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 1.8e-05}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 25.3}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 33.7}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 31.8}, {"name": "Trifluralin", "categories": ["water"], "amount": 31.8}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 6.86e-07}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 1.29e-05}, {"name": "Urea", "categories": ["water"], "amount": 1.29e-05}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 0.000198}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 119000}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119000}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 119000}, {"name": "Vanadium V", "categories": ["air"], "amount": 82000}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 82000}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.42e-17}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2.5e-17}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2.5e-17}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2.5e-17}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 3.93e-15}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 3.93e-15}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.01e-15}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 3.93e-15}, {"name": "Vanadium V", "categories": ["water"], "amount": 3.93e-15}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.34}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0209}, {"name": "Xylene", "categories": ["air"], "amount": 0.0139}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0139}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.00551}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0183}, {"name": "Xylene", "categories": ["water"], "amount": 0.0183}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 95500}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 868}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 86000}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 86000}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 86000}, {"name": "Zinc II", "categories": ["air"], "amount": 59500}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 59500}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 7.36e-18}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.23e-17}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.23e-17}, {"name": "Zinc II", "categories": ["soil"], "amount": 1.23e-17}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 5.02e-15}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 5.02e-15}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 7.11e-16}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 5.02e-15}, {"name": "Zinc II", "categories": ["water"], "amount": 5.02e-15}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 14.1}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 74.4}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0305}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0164}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.00806}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 0.0267}, {"name": "m-Xylene", "categories": ["water"], "amount": 0.0267}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0707}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0472}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.0187}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 0.062}, {"name": "o-Xylene", "categories": ["water"], "amount": 0.062}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 18.3}]}, {"unit": "kg oil-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "energy resources: non-renewable, fossil", "fossil fuel potential (FFP)"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 0.22}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.42}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 0.84}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 0.22}]}, {"unit": "kg P-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "eutrophication: freshwater", "freshwater eutrophication potential (FEP)"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.1}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "eutrophication: marine", "marine eutrophication potential (MEP)"], "exchanges": [{"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.776}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.23}, {"name": "Ammonium", "categories": ["water"], "amount": 0.23}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.0671}, {"name": "Nitrate", "categories": ["water"], "amount": 0.0671}, {"name": "Nitrogen", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.297}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.0902}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ground-, long-term"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen, organic bound", "categories": ["water", "surface water"], "amount": 0.297}, {"name": "Nitrogen, organic bound", "categories": ["water"], "amount": 0.297}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "human toxicity: carcinogenic", "human toxicity potential (HTPc)"], "exchanges": [{"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0158}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.391}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.00325}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.0313}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.0313}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.09}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.433}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 41.4}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 41.4}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 28.7}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.7}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.7}, {"name": "Arsenic ion", "categories": ["air"], "amount": 470}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 470}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1.26}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.32}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.32}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1.32}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 11.6}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 11.6}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.02e-19}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 11.6}, {"name": "Arsenic ion", "categories": ["water"], "amount": 11.6}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.33}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.33}, {"name": "Benzene", "categories": ["air"], "amount": 1.44}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.354}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.158}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.354}, {"name": "Benzene", "categories": ["water"], "amount": 0.354}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.106}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.59}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.0284}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.0961}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.0961}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 70.7}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 70.7}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 70.7}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 93.6}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 93.6}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1150}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 128}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 132}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 36.5}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 36.5}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 11.1}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.1}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.1}, {"name": "Beryllium II", "categories": ["air"], "amount": 259}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 259}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.0118}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.0121}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.0121}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.0121}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 0.046}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 0.046}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.59e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 0.046}, {"name": "Beryllium II", "categories": ["water"], "amount": 0.046}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 8.75}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.75}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.75}, {"name": "Cadmium II", "categories": ["air"], "amount": 194}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 194}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.195}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.201}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.201}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.201}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.0614}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 0.0614}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 3.36e-20}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.0614}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.0614}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.989}, {"name": "Chloroethylene", "categories": ["air"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 13.2}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.293}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.29}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.29}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.815}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.815}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.815}, {"name": "Chloroform", "categories": ["air"], "amount": 1.26}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.26}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 0.861}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 0.861}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.371}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 0.861}, {"name": "Chloroform", "categories": ["water"], "amount": 0.861}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0408}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 0.0798}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 0.0212}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 0.0361}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 0.097}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 0.097}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 80.3}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 39.9}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 7.94}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.26}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 2.4}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 4}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.43}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 2.55}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.79}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.79}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.653}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.79}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.79}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 12.8}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 12.8}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 8.22}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 12.8}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 12.8}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00139}, {"name": "Ethanol", "categories": ["air"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 3.2e-05}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 0.0012}, {"name": "Ethanol", "categories": ["water"], "amount": 0.0012}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.23}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.423}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.93}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.93}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "Formaldehyde", "categories": ["air"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 57.4}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00626}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.137}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.137}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6}, {"name": "Furan", "categories": ["air"], "amount": 95}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 95}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 0.129}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 10.2}, {"name": "Hydrazine", "categories": ["water"], "amount": 10.2}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0162}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0162}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0162}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.16}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.0535}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.0535}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0231}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.0535}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.0535}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1.26}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.26}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.26}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1.87}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1.87}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00248}, {"name": "Isoprene", "categories": ["air"], "amount": 0.128}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.128}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.453}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.453}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.453}, {"name": "Lead II", "categories": ["air"], "amount": 1.68}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 1.68}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0158}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 0.0161}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 0.0161}, {"name": "Lead II", "categories": ["soil"], "amount": 0.0161}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.0104}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.0104}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.82e-22}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.0104}, {"name": "Lead II", "categories": ["water"], "amount": 0.0104}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 12.5}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 6.4}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4}, {"name": "Mercury II", "categories": ["air"], "amount": 24.5}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 24.5}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0752}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0769}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0769}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0769}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.386}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.386}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 5.86e-21}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.386}, {"name": "Mercury II", "categories": ["water"], "amount": 0.386}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.186}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.333}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0884}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 0.189}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 0.189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 227}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 227}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 227}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 236}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 217}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 217}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 123}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 217}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 217}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 8.96}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.96}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.96}, {"name": "Nickel II", "categories": ["air"], "amount": 31.3}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 31.3}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.07}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.14}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.14}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.14}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.41}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3.41}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 5.05e-20}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.41}, {"name": "Nickel II", "categories": ["water"], "amount": 3.41}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.754}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.33}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.0724}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 0.849}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 0.849}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 32.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 32.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 0.032}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 0.032}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.0023}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 0.032}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 0.032}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3.92}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 3.92}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 0.58}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 4.65}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.302}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.24}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0588}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 0.365}, {"name": "Propylene oxide", "categories": ["water"], "amount": 0.365}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0301}, {"name": "Styrene", "categories": ["air"], "amount": 1.28}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.28}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.281}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00975}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.281}, {"name": "Styrene", "categories": ["water"], "amount": 0.281}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.962}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.962}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.962}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.63}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.525}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.13}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.13}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0247}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.15}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.0112}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 0.0371}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 0.0371}]}, {"unit": "kg 1,4-DCB-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "human toxicity: non-carcinogenic", "human toxicity potential (HTPnc)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.225}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.614}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.103}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 0.414}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 0.414}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.9}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.1}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 3.81}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 5.24}, {"name": "2,4-D", "categories": ["water"], "amount": 5.24}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.91}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 0.105}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 1.88}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 1.88}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0196}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.188}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 0.0377}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 0.0377}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 0.00147}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00312}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0354}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 3.9e-06}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 0.00878}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 0.00878}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00682}, {"name": "Acenaphthene", "categories": ["air"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 0.225}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.0297}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.19}, {"name": "Acenaphthene", "categories": ["water"], "amount": 1.19}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 19300}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 16500}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 620}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 773}, {"name": "Acephate", "categories": ["water"], "amount": 773}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.273}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.72}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.056}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 0.545}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 0.545}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Acetone", "categories": ["air"], "amount": 0.0878}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0878}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00188}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 0.0132}, {"name": "Acetone", "categories": ["water"], "amount": 0.0132}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.129}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.876}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0204}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 0.131}, {"name": "Acetonitrile", "categories": ["water"], "amount": 0.131}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 309}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 309}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 309}, {"name": "Acrolein", "categories": ["air"], "amount": 9490}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 9490}, {"name": "Acrolein", "categories": ["water"], "amount": 294}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 1.74e-05}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 0.0752}, {"name": "Acrylate", "categories": ["water"], "amount": 0.0752}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.2}, {"name": "Acrylic acid", "categories": ["air"], "amount": 707}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 707}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 89}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.85}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 9.16}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 9.16}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.723}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.36}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 3.36}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 36}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 322}, {"name": "Allyl chloride", "categories": ["water"], "amount": 1.48}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.1}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 30.4}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.831}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 0.792}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 25.2}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 6.95}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 1.65}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.361}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.361}, {"name": "Aniline", "categories": ["air"], "amount": 5.32}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 5.32}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 4.09}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.00623}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 4.09}, {"name": "Aniline", "categories": ["water"], "amount": 4.09}, {"name": "Anthracene", "categories": ["air"], "amount": 0.0511}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.723}, {"name": "Anthracene", "categories": ["water"], "amount": 0.723}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 103}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 103}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 103}, {"name": "Antimony ion", "categories": ["air"], "amount": 343}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 343}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 3.59}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 108}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 108}, {"name": "Antimony ion", "categories": ["soil"], "amount": 108}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 129}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 129}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.41e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 129}, {"name": "Antimony ion", "categories": ["water"], "amount": 129}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 2480}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2480}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 2480}, {"name": "Arsenic ion", "categories": ["air"], "amount": 8940}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 10.4}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 334}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 334}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 334}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 2920}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 2920}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 1.92e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 2920}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2920}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 6.7}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.9}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.92}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 6.11}, {"name": "Atrazine", "categories": ["water"], "amount": 6.11}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 7.42}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 51.5}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.5}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.5}, {"name": "Barium II", "categories": ["air"], "amount": 102}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 102}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 17.7}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 323}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 323}, {"name": "Barium II", "categories": ["soil"], "amount": 323}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 42.4}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 42.4}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 7.53e-19}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 42.4}, {"name": "Barium II", "categories": ["water"], "amount": 42.4}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 0.084}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 0.0331}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 0.25}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.3}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 0.331}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 2.75}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 2.75}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0151}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.332}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 0.0475}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28}, {"name": "Benzene", "categories": ["air"], "amount": 1.22}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.22}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 0.301}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.134}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 0.301}, {"name": "Benzene", "categories": ["water"], "amount": 0.301}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.13}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 0.505}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 0.505}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0903}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.00398}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 0.107}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 82.3}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.3}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.3}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 109}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 1340}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 90.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.9}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.9}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 124}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 124}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 498}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.104}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 27100}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27100}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27100}, {"name": "Beryllium II", "categories": ["air"], "amount": 641000}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 641000}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 0.00346}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 0.447}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 0.447}, {"name": "Beryllium II", "categories": ["soil"], "amount": 0.447}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.7}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.7}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.91e-16}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.7}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.7}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 372}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 0.986}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 1.17}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 71.6}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 71.6}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.926}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 99.8}, {"name": "Bifenthrin", "categories": ["air"], "amount": 64.3}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 15.1}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 1920}, {"name": "Bifenthrin", "categories": ["water"], "amount": 1920}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2.77}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.44}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 7.96}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.5}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 1.26}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.6}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.6}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 0.774}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 3.79}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.148}, {"name": "Butadiene", "categories": ["air"], "amount": 6.67}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 6.67}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0295}, {"name": "Butanol", "categories": ["air"], "amount": 0.431}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.431}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.000981}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 0.0541}, {"name": "Butanol", "categories": ["water"], "amount": 0.0541}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 403}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 403}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 403}, {"name": "Cadmium II", "categories": ["air"], "amount": 1430}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 1430}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.612}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 184}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 184}, {"name": "Cadmium II", "categories": ["soil"], "amount": 184}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 55.9}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 55.9}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.01e-18}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 55.9}, {"name": "Cadmium II", "categories": ["water"], "amount": 55.9}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 0.779}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.9}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.16}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 8.3}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 8.3}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.5}, {"name": "Carbendazim", "categories": ["air"], "amount": 29.5}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 0.352}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.05}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 1.83}, {"name": "Carbendazim", "categories": ["water"], "amount": 1.83}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 140}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 751}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 751}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 751}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 822}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 822}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 666}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 666}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 215}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 666}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 666}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 23.9}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 14}, {"name": "Carboxin", "categories": ["air"], "amount": 12.3}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 0.249}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 0.855}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.61}, {"name": "Carboxin", "categories": ["water"], "amount": 1.61}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "ocean"], "amount": 3.52e-06}, {"name": "Carboxylic acids, unspecified", "categories": ["water", "surface water"], "amount": 0.0152}, {"name": "Carboxylic acids, unspecified", "categories": ["water"], "amount": 0.0152}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.8}, {"name": "Chloramine", "categories": ["air"], "amount": 12.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 1.73e-05}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 0.619}, {"name": "Chloramine", "categories": ["water"], "amount": 0.619}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 921}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 4.18}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.84}, {"name": "Chloroethylene", "categories": ["air"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 16.6}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.861}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 9.89}, {"name": "Chloroethylene", "categories": ["water"], "amount": 9.89}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Chloroform", "categories": ["air"], "amount": 21.8}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 21.8}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 5.96}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 12.8}, {"name": "Chloroform", "categories": ["water"], "amount": 12.8}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 8.14}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 2.18}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.71}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 10}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 10}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 79.7}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 338}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 2790}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 2790}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 88.8}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 0.748}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 0.00623}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00623}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00623}, {"name": "Chromium III", "categories": ["air"], "amount": 0.0204}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 0.0204}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.85e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 0.00918}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 0.00918}, {"name": "Chromium III", "categories": ["soil"], "amount": 0.00918}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 0.000485}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 0.000485}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.43e-23}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 0.000485}, {"name": "Chromium III", "categories": ["water"], "amount": 0.000485}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 240}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 240}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 240}, {"name": "Chromium VI", "categories": ["air"], "amount": 5540}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 5540}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.139}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 5.63}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 5.63}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.63}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 3.43}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 3.43}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.21e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 3.43}, {"name": "Chromium VI", "categories": ["water"], "amount": 3.43}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 0.573}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.573}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.573}, {"name": "Copper ion", "categories": ["air"], "amount": 2.09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 2.09}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 0.000434}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 0.0778}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 0.0778}, {"name": "Copper ion", "categories": ["soil"], "amount": 0.0778}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 0.126}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 0.126}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.26e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 0.126}, {"name": "Copper ion", "categories": ["water"], "amount": 0.126}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0162}, {"name": "Cumene", "categories": ["air"], "amount": 0.18}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 0.066}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00479}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 0.066}, {"name": "Cumene", "categories": ["water"], "amount": 0.066}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0041}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 0.0438}, {"name": "Cyclohexane", "categories": ["water"], "amount": 0.0438}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.185}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4.43}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 0.935}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.926}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 0.755}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 21.3}, {"name": "Cypermethrin", "categories": ["water"], "amount": 21.3}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 1.06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 0.28}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 25.7}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28.5}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 2.04}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 31.3}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 253}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 38}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.2}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 4.13}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.59}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.59}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 0.193}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 86.8}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 862}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 42.1}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00495}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0958}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0958}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 67.7}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.87}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 17.3}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 41.9}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 41.9}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 66.2}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 56.2}, {"name": "Dimethoate", "categories": ["air"], "amount": 20.3}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 29.7}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 7.7}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 0.0764}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 14.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 0.702}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 390}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 255}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 14}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 30.3}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 68.3}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 68.3}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 46.2}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 0.554}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 88.7}, {"name": "Diuron", "categories": ["air"], "amount": 78.7}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 2.03}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 5.36}, {"name": "Diuron", "categories": ["water"], "amount": 12.1}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 0.00919}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4.61}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 0.247}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 148}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 28.5}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.0772}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0772}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0772}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0809}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0809}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.291}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.291}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.291}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.32}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.32}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.28}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.28}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.162}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 0.28}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 0.28}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.3}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 53}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 2.18}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.18}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.18}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 2.21}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 2.21}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 524}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 524}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 336}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 524}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 524}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 131}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 67.6}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 5.47}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 5.47}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 0.293}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 266}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0134}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0843}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0843}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00287}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 0.0146}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 0.0146}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.438}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00143}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 0.244}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 0.244}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 0.429}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 2.73}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 22300}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 12.9}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 0.96}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.31}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 7.34}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1940}, {"name": "Fipronil", "categories": ["air"], "amount": 1520}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 125}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 614}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 1570}, {"name": "Fipronil", "categories": ["water"], "amount": 1570}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 0.404}, {"name": "Fluoranthene", "categories": ["air"], "amount": 0.788}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 20.7}, {"name": "Fluorene", "categories": ["air"], "amount": 0.692}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 1.3}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 0.126}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 6.78}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9}, {"name": "Formaldehyde", "categories": ["air"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.1}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.00311}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 0.447}, {"name": "Formaldehyde", "categories": ["water"], "amount": 0.447}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.00128}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.972}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.972}, {"name": "Furan", "categories": ["air"], "amount": 35.5}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 35.5}, {"name": "Furfural", "categories": ["air"], "amount": 15.9}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 45.6}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 49.2}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.13}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 3.53}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 0.768}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 0.135}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 0.2}, {"name": "Glyphosate", "categories": ["water"], "amount": 0.2}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.188}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.188}, {"name": "Hexane", "categories": ["air"], "amount": 2.2}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.2}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1.23}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 0.0475}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.23}, {"name": "Hexane", "categories": ["water"], "amount": 1.23}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 0.153}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 0.504}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 5340}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0137}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.186}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ground-, long-term"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "ocean"], "amount": 0.00218}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water", "surface water"], "amount": 0.0273}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["water"], "amount": 0.0273}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0657}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.783}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-, long-term"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.0332}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 0.104}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 0.104}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 22.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.7}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 39.6}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 39.6}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.36}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.33}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.67}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 0.197}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 0.253}, {"name": "Imazethapyr", "categories": ["water"], "amount": 0.253}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 63}, {"name": "Imidacloprid", "categories": ["air"], "amount": 57.1}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 11.3}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 2.07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.73}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.73}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 0.113}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 537}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 537}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 537}, {"name": "Lead II", "categories": ["air"], "amount": 1980}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 1980}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0149}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 19.4}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 19.4}, {"name": "Lead II", "categories": ["soil"], "amount": 19.4}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 12.4}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 12.4}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.17e-19}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 12.4}, {"name": "Lead II", "categories": ["water"], "amount": 12.4}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 495}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 0.197}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 252}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 9.59}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 21.2}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 21.2}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 0.086}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.22}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.22}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 0.0736}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 0.74}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 0.0272}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.2}, {"name": "Mancozeb", "categories": ["air"], "amount": 47.5}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 2.75}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 1.77}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2.43}, {"name": "Mancozeb", "categories": ["water"], "amount": 2.43}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.64}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.75}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.00733}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 2460}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2460}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2460}, {"name": "Mercury II", "categories": ["air"], "amount": 6590}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.103}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 31.1}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 31.1}, {"name": "Mercury II", "categories": ["soil"], "amount": 31.1}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 155}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 155}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.2e-18}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 155}, {"name": "Mercury II", "categories": ["water"], "amount": 155}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 7.53}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 75}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1130}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1530}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.15}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.15}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.15}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.159}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 12.8}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 3.35}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 155}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 155}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 155}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 157}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 157}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.95}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 9.31}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 9.31}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2590}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2590}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2590}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2680}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2680}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 2470}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 2470}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1400}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 2470}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2470}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 21}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 21}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Methanol", "categories": ["air"], "amount": 0.156}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.156}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.000666}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 0.0194}, {"name": "Methanol", "categories": ["water"], "amount": 0.0194}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 6.22}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 456}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5.72}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 9.35}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 15.4}, {"name": "Methomyl", "categories": ["water"], "amount": 15.4}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 0.168}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00335}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.011}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 0.00853}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 89.8}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 20.7}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.11}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 0.342}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.43}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 3.37}, {"name": "Metolachlor", "categories": ["water"], "amount": 3.37}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.7}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 0.441}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 2.42}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.9}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 12.7}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 0.191}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 0.695}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 1.18}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 1.18}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 77.5}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 9.48}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 64.7}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 64.7}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.7}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 210}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 210}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 95.7}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 95.7}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 95.7}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 26.4}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 26.4}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 3.87e-19}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 26.4}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 26.4}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00726}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0182}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.00213}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 0.00684}, {"name": "Monochloroethane", "categories": ["water"], "amount": 0.00684}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 213}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 0.514}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 14.3}, {"name": "Naphthalene", "categories": ["air"], "amount": 11}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.03}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 0.206}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 1.62}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62}, {"name": "Nickel II", "categories": ["air"], "amount": 5.85}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.85}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.00406}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 0.412}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 0.412}, {"name": "Nickel II", "categories": ["soil"], "amount": 0.412}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 0.655}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 0.655}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 9.23e-21}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 0.655}, {"name": "Nickel II", "categories": ["water"], "amount": 0.655}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.5}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 71.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.2}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 14.2}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 14.2}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 0.479}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 0.0148}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 22}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.248}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 6.01}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 0.0138}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-, long-term"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 0.172}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 1.05}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 1.05}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 68.6}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 0.0604}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 8.97}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.71}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.14}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 0.162}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 2.52}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 0.555}, {"name": "Permethrin", "categories": ["water"], "amount": 10.8}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 0.201}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "Phenol", "categories": ["air"], "amount": 0.493}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 0.493}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 0.315}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.000864}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 0.315}, {"name": "Phenol", "categories": ["water"], "amount": 0.315}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 694}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 734}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 734}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 29.1}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.3}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 34.6}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 15.3}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 17.8}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 602}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.00317}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 0.181}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 0.181}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.00406}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 0.703}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 0.703}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.251}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 23.2}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 23.2}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 9.61}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 0.428}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 0.619}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 6.83}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 22.5}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 0.399}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 27.9}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 0.881}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 0.385}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 0.477}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.128}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.38}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1.87}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 0.0418}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.4}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.13}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 7.72}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 36.6}, {"name": "Propiconazole", "categories": ["water"], "amount": 36.6}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 3.2}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.1}, {"name": "Propylene oxide", "categories": ["air"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 74.6}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 2.74}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 14.8}, {"name": "Propylene oxide", "categories": ["water"], "amount": 14.8}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 7.19}, {"name": "Pyrene", "categories": ["air"], "amount": 0.624}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 11.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 0.505}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.342}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 0.573}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 0.458}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 2.74}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 31.1}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 31.1}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 14.4}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 0.531}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 0.608}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 0.492}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 10.9}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 560}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 560}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 560}, {"name": "Silver I", "categories": ["air"], "amount": 2040}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 2040}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.305}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 105}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 105}, {"name": "Silver I", "categories": ["soil"], "amount": 105}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 66.3}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 66.3}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.21e-18}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 66.3}, {"name": "Silver I", "categories": ["water"], "amount": 66.3}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 418}, {"name": "Simazine", "categories": ["air"], "amount": 344}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 17.3}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 19.3}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 33.5}, {"name": "Simazine", "categories": ["water"], "amount": 33.5}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0172}, {"name": "Styrene", "categories": ["air"], "amount": 0.855}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.855}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.0046}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 0.0211}, {"name": "Styrene", "categories": ["water"], "amount": 0.0211}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 27.3}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 32}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 5.51}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 17.1}, {"name": "Tebuconazole", "categories": ["water"], "amount": 17.1}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 2.29}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.6}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 24.4}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 0.432}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 1.47}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 2.52}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 2.52}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1860}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 1560}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 62.3}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 280}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 959}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 0.0552}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 342}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 117}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.4}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 6.15}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 11.9}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 11.9}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 186}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 186}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 186}, {"name": "Thallium I", "categories": ["air"], "amount": 395}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 395}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 40.6}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1030}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1030}, {"name": "Thallium I", "categories": ["soil"], "amount": 1030}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 136}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 136}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.77e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 136}, {"name": "Thallium I", "categories": ["water"], "amount": 136}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.5}, {"name": "Thiabendazole", "categories": ["air"], "amount": 26.8}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 0.269}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1.28}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 3.72}, {"name": "Thiabendazole", "categories": ["water"], "amount": 3.72}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.09}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 7.5}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 1.08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.67}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 4.65}, {"name": "Thiodicarb", "categories": ["water"], "amount": 4.65}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.3}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 15.9}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 0.905}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.33}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.91}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.91}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 5.23}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.23}, {"name": "Thiram", "categories": ["air"], "amount": 11.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 0.0675}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 0.208}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 4.91}, {"name": "Thiram", "categories": ["water"], "amount": 4.91}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.067}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.067}, {"name": "Toluene", "categories": ["air"], "amount": 0.858}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.858}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.0184}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 0.0714}, {"name": "Toluene", "categories": ["water"], "amount": 0.0714}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.691}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.85}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.318}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 1.14}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.14}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 21.1}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.12}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.54}, {"name": "Triallate", "categories": ["air"], "amount": 9.42}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.76}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 72.8}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 44}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 158}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 144}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.78}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 17.9}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 15.8}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.49}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5.16}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 13.7}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 128}, {"name": "Trifluralin", "categories": ["water"], "amount": 128}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 0.38}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 134}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 16.6}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16.6}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 16.6}, {"name": "Vanadium V", "categories": ["air"], "amount": 59}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 59}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.178}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 4.1}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 4.1}, {"name": "Vanadium V", "categories": ["soil"], "amount": 4.1}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 27.6}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 27.6}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.58e-19}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 27.6}, {"name": "Vanadium V", "categories": ["water"], "amount": 27.6}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.68}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0681}, {"name": "Xylene", "categories": ["air"], "amount": 1.58}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0182}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 0.0692}, {"name": "Xylene", "categories": ["water"], "amount": 0.0692}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 52.4}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 0.926}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 8.94}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.94}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.94}, {"name": "Zinc II", "categories": ["air"], "amount": 31.6}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 31.6}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0678}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.758}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.758}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.758}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 24.6}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 24.6}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 8.17e-20}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 24.6}, {"name": "Zinc II", "categories": ["water"], "amount": 24.6}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 17}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5.95}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0238}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.178}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00619}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 0.027}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 0.027}]}, {"unit": "kg Co-60-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "ionising radiation", "ionising radiation potential (IRP)"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1.58}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 3.05e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 3.05e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 0.00043}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 3.05e-05}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 3.05e-05}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air"], "amount": 54.5}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 54.5}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 0.00336}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 0.00336}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 0.0473}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 0.00336}, {"name": "Americium-241", "categories": ["water"], "amount": 0.00336}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0491}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0491}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.000891}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.718}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00473}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 8.64}, {"name": "Caesium-134", "categories": ["water"], "amount": 8.64}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["air"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1.27}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 9.09}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 9.09}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00582}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 9.09}, {"name": "Caesium-137", "categories": ["water"], "amount": 9.09}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["air"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 0.614}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.00345}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 0.00345}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0273}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.00345}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.00345}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.0255}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00245}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00245}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.64}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.64}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000855}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 4.07e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 4.07e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.6e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 4.07e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 4.07e-05}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["air"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 8.32}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 0.252}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 0.252}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 0.0222}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 0.252}, {"name": "Iodine-129", "categories": ["water"], "amount": 0.252}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00909}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.03}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000564}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000564}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 6.03e-06}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.03e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.03e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 6.03e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 6.03e-06}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.0191}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.0191}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 5.62e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 5.62e-06}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.62e-06}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0909}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0909}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00145}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00145}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 0.1}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00109}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.000236}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.000236}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.03}, {"name": "Silver-110", "categories": ["water"], "amount": 0.03}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["air"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 1.52}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.0127}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 0.0127}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000455}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.0127}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.0127}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["air"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 0.757}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 0.00755}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 0.00755}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 7.82e-05}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 0.00755}, {"name": "Technetium-99", "categories": ["water"], "amount": 0.00755}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 0.00755}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 0.00755}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 7.82e-05}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 0.00755}, {"name": "Technetium-99m", "categories": ["water"], "amount": 0.00755}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 8.55e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 8.55e-06}]}, {"unit": "m2*a crop-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "land use", "agricultural land occupation (LOP)"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 0.55}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 0.7}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 0.3}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 0.73}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 36.75}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 3.75}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -36.75}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -3.75}]}, {"unit": "kg Cu-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "material resources: metals/minerals", "surplus ore potential (SOP)"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 0.101}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.101}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1.03}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.0889}, {"name": "Barite, 15% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0136}, {"name": "Basalt", "categories": ["natural resource", "in ground"], "amount": 0.614}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 84.2}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 2.77}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.0777}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.232}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.232}, {"name": "Caesium", "categories": ["natural resource", "in ground"], "amount": 19000}, {"name": "Cerium", "categories": ["natural resource", "in ground"], "amount": 19000}, {"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 19000}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.0557}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0557}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 0.221}, {"name": "Clay, bentonite", "categories": ["natural resource", "in ground"], "amount": 0.00607}, {"name": "Clay, unspecified", "categories": ["natural resource", "in ground"], "amount": 0.00585}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 4.01}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 4.01}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 0.0307}, {"name": "Feldspar", "categories": ["natural resource", "in ground"], "amount": 0.0089}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 92.8}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 92.8}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 389}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 5120}, {"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 0.134}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 0.00144}, {"name": "Hafnium", "categories": ["natural resource", "in ground"], "amount": 108}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 115}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 115}, {"name": "Iodine", "categories": ["natural resource", "in water"], "amount": 6.51}, {"name": "Iodine, 0.03% in water", "categories": ["natural resource", "in water"], "amount": 6.51}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 0.0382}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0382}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0382}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.483}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.483}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.483}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.483}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 2.42}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 2.42}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 0.614}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 0.614}, {"name": "Magnesium", "categories": ["natural resource", "in water"], "amount": 0.614}, {"name": "Magnesium, 0.13% in water", "categories": ["natural resource", "in water"], "amount": 0.614}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 0.0376}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0376}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 8.37}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 29}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.85}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 4.46}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 6370}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6370}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6370}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6370}, {"name": "Perlite", "categories": ["natural resource", "in ground"], "amount": 0.00508}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.14}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 13800}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 13800}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 13800}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 13800}, {"name": "Pumice", "categories": ["natural resource", "in ground"], "amount": 0.00308}, {"name": "Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 9730}, {"name": "Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 9730}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 672}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 672}, {"name": "Rhodium", "categories": ["natural resource", "in ground"], "amount": 9730}, {"name": "Rhodium, Rh 1.6E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 9730}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 12.8}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 0.318}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 161}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 2.42}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 0.0576}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 0.0234}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 56.6}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 56.6}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 18.5}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 18.5}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 1630}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.689}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.689}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.689}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 5.23}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.23}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 0.689}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 7.19}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 35.8}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 3.49}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.116}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.116}]}, {"unit": "kg CFC-11-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "ozone depletion", "ozone depletion potential (ODPinfinite)"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 0.007}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.007}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 0.007}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 0.007}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.396}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.396}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.504}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.504}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.275}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.275}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.165}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.165}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.165}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.165}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.165}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.111}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.111}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.111}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.111}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.111}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.025}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.025}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.049}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.049}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.049}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.049}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.032}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.032}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.032}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.032}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.032}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0129}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0129}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1.65}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1.65}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 15.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 15.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 15.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 11.8}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.8}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.8}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 11.8}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 11.8}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.085}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.085}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.421}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.421}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.2}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.2}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg PM2.5-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "particulate matter formation", "particulate matter formation potential (PMFP)"], "exchanges": [{"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "photochemical oxidant formation: human health", "photochemical oxidant formation potential: humans (HOFP)"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.345}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.345}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.131}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.131}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.297}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.149}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.149}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0653}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.16}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.189}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.199}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0326}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0326}, {"name": "Acetone", "categories": ["air"], "amount": 0.0218}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0218}, {"name": "Acrolein", "categories": ["air"], "amount": 0.196}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.196}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.174}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.0689}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.0689}, {"name": "Benzene", "categories": ["air"], "amount": 0.0363}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0363}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.167}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Butadiene", "categories": ["air"], "amount": 0.323}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.323}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.112}, {"name": "Butane", "categories": ["air"], "amount": 0.112}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.112}, {"name": "Butanol", "categories": ["air"], "amount": 0.189}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.189}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.228}, {"name": "Butene", "categories": ["air"], "amount": 0.228}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.228}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.0943}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0943}, {"name": "Cumene", "categories": ["air"], "amount": 0.116}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.102}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.167}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.0653}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0653}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.029}, {"name": "Ethane", "categories": ["air"], "amount": 0.029}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.029}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00363}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00363}, {"name": "Ethanol", "categories": ["air"], "amount": 0.123}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.123}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.0689}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0689}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air"], "amount": 0.363}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.363}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.134}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.134}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0254}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.167}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.167}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0109}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Heptane", "categories": ["air"], "amount": 0.127}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.127}, {"name": "Hexane", "categories": ["air"], "amount": 0.145}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.0984}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.0984}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.163}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.163}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0266}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0266}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Isoprene", "categories": ["air"], "amount": 0.413}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.413}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0109}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00363}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Methanol", "categories": ["air"], "amount": 0.0471}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0254}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0254}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.116}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.116}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0109}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0109}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0399}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0399}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.18}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.145}, {"name": "Pentane", "categories": ["air"], "amount": 0.145}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.145}, {"name": "Phenol", "categories": ["air"], "amount": -0.0181}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0181}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.261}, {"name": "Propanal", "categories": ["air"], "amount": 0.261}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.261}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0508}, {"name": "Propane", "categories": ["air"], "amount": 0.0508}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0508}, {"name": "Propanol", "categories": ["air"], "amount": 0.174}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.174}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.424}, {"name": "Propene", "categories": ["air"], "amount": 0.424}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.424}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.0471}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0471}, {"name": "Styrene", "categories": ["air"], "amount": 0.0181}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0181}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00363}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00363}, {"name": "Toluene", "categories": ["air"], "amount": 0.16}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.16}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.105}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.18}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.312}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.312}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.283}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.283}]}, {"unit": "kg NOx-Eq", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "photochemical oxidant formation: terrestrial ecosystems", "photochemical oxidant formation potential: ecosystems (EOFP)"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.555}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.555}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.21}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.21}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.479}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.479}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.24}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.105}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.257}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.304}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.321}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.321}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.0526}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0526}, {"name": "Acetone", "categories": ["air"], "amount": 0.0351}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0351}, {"name": "Acrolein", "categories": ["air"], "amount": 0.316}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.316}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.281}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.111}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.111}, {"name": "Benzene", "categories": ["air"], "amount": 0.0585}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0585}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.269}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Butadiene", "categories": ["air"], "amount": 0.52}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.52}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.181}, {"name": "Butane", "categories": ["air"], "amount": 0.181}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.181}, {"name": "Butanol", "categories": ["air"], "amount": 0.304}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.304}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Butene", "categories": ["air"], "amount": 0.368}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.152}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.152}, {"name": "Cumene", "categories": ["air"], "amount": 0.187}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.164}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.269}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.105}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.105}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air"], "amount": 0.0468}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.0468}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": -0.00585}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": -0.00585}, {"name": "Ethanol", "categories": ["air"], "amount": 0.199}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.199}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.111}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.111}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air"], "amount": 0.585}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.585}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.216}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.216}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air"], "amount": 0.0409}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.269}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.269}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0175}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Heptane", "categories": ["air"], "amount": 0.205}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.205}, {"name": "Hexane", "categories": ["air"], "amount": 0.234}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 0.159}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 0.263}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 0.263}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 0.0429}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Isoprene", "categories": ["air"], "amount": 0.666}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.666}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0175}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00585}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Methanol", "categories": ["air"], "amount": 0.076}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0409}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0409}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.187}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.187}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0175}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0175}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.0643}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.0643}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 0.29}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air"], "amount": 0.74}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.53}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.234}, {"name": "Pentane", "categories": ["air"], "amount": 0.234}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.234}, {"name": "Phenol", "categories": ["air"], "amount": -0.0292}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": -0.0292}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.421}, {"name": "Propanal", "categories": ["air"], "amount": 0.421}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.421}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0818}, {"name": "Propane", "categories": ["air"], "amount": 0.0818}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0818}, {"name": "Propanol", "categories": ["air"], "amount": 0.281}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.281}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.684}, {"name": "Propene", "categories": ["air"], "amount": 0.684}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.684}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.076}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.076}, {"name": "Styrene", "categories": ["air"], "amount": 0.0292}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.0292}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.00585}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.00585}, {"name": "Toluene", "categories": ["air"], "amount": 0.257}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.257}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.17}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.17}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.29}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.503}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.503}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.456}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.456}]}, {"unit": "cubic meter", "name": ["ReCiPe 2016 v1.03, midpoint (I)", "water use", "water consumption potential (WCP)"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Water", "categories": ["air"], "amount": 1}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "air", "carbon monoxide"], "exchanges": [{"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "air", "lead"], "exchanges": [{"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Lead II", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "air", "methane"], "exchanges": [{"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, fossil", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "air", "N2O"], "exchanges": [{"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "air", "particulates"], "exchanges": [{"name": "Particulate Matter, > 10 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Particulate Matter, > 10 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, > 10 um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, > 10 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, > 10 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "air", "particulates >10 um"], "exchanges": [{"name": "Particulate Matter, > 10 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Particulate Matter, > 10 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, > 10 um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, > 10 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, > 10 um", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "air", "particulates, >2.5 um and <10"], "exchanges": [{"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "air", "zinc"], "exchanges": [{"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Zinc II", "categories": ["air"], "amount": 1}]}, {"unit": "kilo Becquerel", "name": ["selected LCI results, additional", "air, radioactive", "actinides"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Americium-241", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Curium alpha", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Curium-242", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Curium-244", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Neptunium-237", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Plutonium-241", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Protactinium-234", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Thorium-228", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Thorium-232", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Thorium-234", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium alpha", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Actinides, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Actinides, radioactive, unspecified", "categories": ["air"], "amount": 1}, {"name": "Americium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Americium-241", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Americium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Americium-241", "categories": ["air"], "amount": 1}, {"name": "Curium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Curium alpha", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Curium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Curium alpha", "categories": ["air"], "amount": 1}, {"name": "Curium-242", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Curium-242", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Curium-242", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Curium-242", "categories": ["air"], "amount": 1}, {"name": "Curium-244", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Curium-244", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Curium-244", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Curium-244", "categories": ["air"], "amount": 1}, {"name": "Neptunium-237", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Neptunium-237", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Neptunium-237", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Neptunium-237", "categories": ["air"], "amount": 1}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Plutonium-238", "categories": ["air"], "amount": 1}, {"name": "Plutonium-241", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Plutonium-241", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Plutonium-241", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Plutonium-241", "categories": ["air"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["air"], "amount": 1}, {"name": "Protactinium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Protactinium-234", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Protactinium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Protactinium-234", "categories": ["air"], "amount": 1}, {"name": "Thorium-228", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Thorium-228", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Thorium-228", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Thorium-228", "categories": ["air"], "amount": 1}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Thorium-230", "categories": ["air"], "amount": 1}, {"name": "Thorium-232", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Thorium-232", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Thorium-232", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Thorium-232", "categories": ["air"], "amount": 1}, {"name": "Thorium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Thorium-234", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Thorium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Thorium-234", "categories": ["air"], "amount": 1}, {"name": "Uranium alpha", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium alpha", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Uranium alpha", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium alpha", "categories": ["air"], "amount": 1}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-234", "categories": ["air"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-235", "categories": ["air"], "amount": 1}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-238", "categories": ["air"], "amount": 1}]}, {"unit": "kilo Becquerel", "name": ["selected LCI results, additional", "air, radioactive", "aerosole"], "exchanges": [{"name": "Aerosols, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Antimony-124", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Antimony-125", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Barium-140", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cerium-141", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cerium-144", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chromium-51", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-57", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Iodine-135", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Iron-59", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Manganese-54", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Niobium-95", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Potassium-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Promethium-147", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Silver-110", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Strontium-89", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Strontium-90", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Technetium-99", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Zinc-65", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Zirconium-95", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Aerosols, radioactive, unspecified", "categories": ["air"], "amount": 1}, {"name": "Antimony-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Antimony-124", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Antimony-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Antimony-124", "categories": ["air"], "amount": 1}, {"name": "Antimony-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Antimony-125", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Antimony-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Antimony-125", "categories": ["air"], "amount": 1}, {"name": "Barium-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Barium-140", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Barium-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Barium-140", "categories": ["air"], "amount": 1}, {"name": "Cerium-141", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cerium-141", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cerium-141", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cerium-141", "categories": ["air"], "amount": 1}, {"name": "Cerium-144", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cerium-144", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cerium-144", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cerium-144", "categories": ["air"], "amount": 1}, {"name": "Chromium-51", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chromium-51", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chromium-51", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chromium-51", "categories": ["air"], "amount": 1}, {"name": "Cobalt-57", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-57", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cobalt-57", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-57", "categories": ["air"], "amount": 1}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-58", "categories": ["air"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cobalt-60", "categories": ["air"], "amount": 1}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Iodine-129", "categories": ["air"], "amount": 1}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Iodine-131", "categories": ["air"], "amount": 1}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Iodine-133", "categories": ["air"], "amount": 1}, {"name": "Iodine-135", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Iodine-135", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Iodine-135", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Iodine-135", "categories": ["air"], "amount": 1}, {"name": "Iron-59", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Iron-59", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Iron-59", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Iron-59", "categories": ["air"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["air"], "amount": 1}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Lead-210", "categories": ["air"], "amount": 1}, {"name": "Manganese-54", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Manganese-54", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Manganese-54", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Manganese-54", "categories": ["air"], "amount": 1}, {"name": "Niobium-95", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Niobium-95", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Niobium-95", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Niobium-95", "categories": ["air"], "amount": 1}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Polonium-210", "categories": ["air"], "amount": 1}, {"name": "Potassium-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Potassium-40", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Potassium-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Potassium-40", "categories": ["air"], "amount": 1}, {"name": "Promethium-147", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Promethium-147", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Promethium-147", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Promethium-147", "categories": ["air"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["air"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["air"], "amount": 1}, {"name": "Silver-110", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Silver-110", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Silver-110", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Silver-110", "categories": ["air"], "amount": 1}, {"name": "Strontium-89", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Strontium-89", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Strontium-89", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Strontium-89", "categories": ["air"], "amount": 1}, {"name": "Strontium-90", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Strontium-90", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Strontium-90", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Strontium-90", "categories": ["air"], "amount": 1}, {"name": "Technetium-99", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Technetium-99", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Technetium-99", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Technetium-99", "categories": ["air"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["air"], "amount": 1}, {"name": "Zinc-65", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Zinc-65", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Zinc-65", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Zinc-65", "categories": ["air"], "amount": 1}, {"name": "Zirconium-95", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Zirconium-95", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Zirconium-95", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Zirconium-95", "categories": ["air"], "amount": 1}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Caesium-134", "categories": ["air"], "amount": 1}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Caesium-137", "categories": ["air"], "amount": 1}]}, {"unit": "kilo Becquerel", "name": ["selected LCI results, additional", "air, radioactive", "noble gas"], "exchanges": [{"name": "Argon-41", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Krypton-85m", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Krypton-87", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Krypton-88", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Krypton-89", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xenon-131m", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xenon-133m", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xenon-135", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xenon-135m", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xenon-137", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xenon-138", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Argon-41", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Argon-41", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Argon-41", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Argon-41", "categories": ["air"], "amount": 1}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon-14", "categories": ["air"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 1}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Krypton-85", "categories": ["air"], "amount": 1}, {"name": "Krypton-85m", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Krypton-85m", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Krypton-85m", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Krypton-85m", "categories": ["air"], "amount": 1}, {"name": "Krypton-87", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Krypton-87", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Krypton-87", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Krypton-87", "categories": ["air"], "amount": 1}, {"name": "Krypton-88", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Krypton-88", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Krypton-88", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Krypton-88", "categories": ["air"], "amount": 1}, {"name": "Krypton-89", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Krypton-89", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Krypton-89", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Krypton-89", "categories": ["air"], "amount": 1}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Noble gases, radioactive, unspecified", "categories": ["air"], "amount": 1}, {"name": "Xenon-131m", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Xenon-131m", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Xenon-131m", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Xenon-131m", "categories": ["air"], "amount": 1}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Xenon-133", "categories": ["air"], "amount": 1}, {"name": "Xenon-133m", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Xenon-133m", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Xenon-133m", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Xenon-133m", "categories": ["air"], "amount": 1}, {"name": "Xenon-135", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Xenon-135", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Xenon-135", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Xenon-135", "categories": ["air"], "amount": 1}, {"name": "Xenon-135m", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Xenon-135m", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Xenon-135m", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Xenon-135m", "categories": ["air"], "amount": 1}, {"name": "Xenon-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Xenon-137", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Xenon-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Xenon-137", "categories": ["air"], "amount": 1}, {"name": "Xenon-138", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Xenon-138", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Xenon-138", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Xenon-138", "categories": ["air"], "amount": 1}]}, {"unit": "kilo Becquerel", "name": ["selected LCI results, additional", "air, radioactive", "radon (+ radium)"], "exchanges": [{"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Radium-228", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Radon-220", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Radium-226", "categories": ["air"], "amount": 1}, {"name": "Radium-228", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Radium-228", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Radium-228", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Radium-228", "categories": ["air"], "amount": 1}, {"name": "Radon-220", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Radon-220", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Radon-220", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Radon-220", "categories": ["air"], "amount": 1}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Radon-222", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "resource", "carbon, biogenic, fixed"], "exchanges": [{"name": "Carbon dioxide, in air", "categories": ["natural resource", "in air"], "amount": 0.27273}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": -0.27273}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": -0.42857}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": -0.75}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.27273}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": -0.27273}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.27273}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": -0.27273}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.42857}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": -0.42857}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.42857}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": -0.42857}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.75}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": -0.75}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.75}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": -0.75}, {"name": "Carbon dioxide, non-fossil, resource correction", "categories": ["natural resource", "in air"], "amount": 0.27273}]}, {"unit": "cubic meter", "name": ["selected LCI results, additional", "resource", "water"], "exchanges": [{"name": "Water, lake", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, river", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, salt, ocean", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, salt, sole", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, well, in ground", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, in air", "categories": ["natural resource", "in air"], "amount": 1}]}, {"unit": "megajoule", "name": ["selected LCI results, additional", "total", "heat, waste"], "exchanges": [{"name": "Heat, waste", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Heat, waste", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Heat, waste", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Heat, waste", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Heat, waste", "categories": ["air"], "amount": 1}, {"name": "Heat, waste", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Heat, waste", "categories": ["soil", "forestry"], "amount": 1}, {"name": "Heat, waste", "categories": ["soil", "industrial"], "amount": 1}, {"name": "Heat, waste", "categories": ["soil"], "amount": 1}, {"name": "Heat, waste", "categories": ["water", "ground-"], "amount": 1}, {"name": "Heat, waste", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Heat, waste", "categories": ["water", "ocean"], "amount": 1}, {"name": "Heat, waste", "categories": ["water", "surface water"], "amount": 1}, {"name": "Heat, waste", "categories": ["water"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results, additional", "total", "oils, unspecified"], "exchanges": [{"name": "Oils, non-fossil", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Oils, non-fossil", "categories": ["soil", "forestry"], "amount": 1}, {"name": "Oils, non-fossil", "categories": ["soil", "industrial"], "amount": 1}, {"name": "Oils, non-fossil", "categories": ["soil"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 1}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1}]}, {"unit": "kilo Becquerel", "name": ["selected LCI results, additional", "water, radioactive", "actinides"], "exchanges": [{"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-"], "amount": 1}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "ocean"], "amount": 1}, {"name": "Actinides, radioactive, unspecified", "categories": ["water", "surface water"], "amount": 1}, {"name": "Actinides, radioactive, unspecified", "categories": ["water"], "amount": 1}, {"name": "Americium-241", "categories": ["water", "ground-"], "amount": 1}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 1}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 1}, {"name": "Americium-241", "categories": ["water"], "amount": 1}, {"name": "Curium alpha", "categories": ["water", "ground-"], "amount": 1}, {"name": "Curium alpha", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Curium alpha", "categories": ["water", "ocean"], "amount": 1}, {"name": "Curium alpha", "categories": ["water", "surface water"], "amount": 1}, {"name": "Curium alpha", "categories": ["water"], "amount": 1}, {"name": "Neptunium-237", "categories": ["water", "ground-"], "amount": 1}, {"name": "Neptunium-237", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Neptunium-237", "categories": ["water", "ocean"], "amount": 1}, {"name": "Neptunium-237", "categories": ["water", "surface water"], "amount": 1}, {"name": "Neptunium-237", "categories": ["water"], "amount": 1}, {"name": "Plutonium-241", "categories": ["water", "ground-"], "amount": 1}, {"name": "Plutonium-241", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Plutonium-241", "categories": ["water", "ocean"], "amount": 1}, {"name": "Plutonium-241", "categories": ["water", "surface water"], "amount": 1}, {"name": "Plutonium-241", "categories": ["water"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["water", "ground-"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["water", "ocean"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["water", "surface water"], "amount": 1}, {"name": "Plutonium-alpha", "categories": ["water"], "amount": 1}, {"name": "Protactinium-234", "categories": ["water", "ground-"], "amount": 1}, {"name": "Protactinium-234", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Protactinium-234", "categories": ["water", "ocean"], "amount": 1}, {"name": "Protactinium-234", "categories": ["water", "surface water"], "amount": 1}, {"name": "Protactinium-234", "categories": ["water"], "amount": 1}, {"name": "Thorium-228", "categories": ["water", "ground-"], "amount": 1}, {"name": "Thorium-228", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Thorium-228", "categories": ["water", "ocean"], "amount": 1}, {"name": "Thorium-228", "categories": ["water", "surface water"], "amount": 1}, {"name": "Thorium-228", "categories": ["water"], "amount": 1}, {"name": "Thorium-230", "categories": ["water", "ground-"], "amount": 1}, {"name": "Thorium-230", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Thorium-230", "categories": ["water", "ocean"], "amount": 1}, {"name": "Thorium-230", "categories": ["water", "surface water"], "amount": 1}, {"name": "Thorium-230", "categories": ["water"], "amount": 1}, {"name": "Thorium-232", "categories": ["water", "ground-"], "amount": 1}, {"name": "Thorium-232", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Thorium-232", "categories": ["water", "ocean"], "amount": 1}, {"name": "Thorium-232", "categories": ["water", "surface water"], "amount": 1}, {"name": "Thorium-232", "categories": ["water"], "amount": 1}, {"name": "Thorium-234", "categories": ["water", "ground-"], "amount": 1}, {"name": "Thorium-234", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Thorium-234", "categories": ["water", "ocean"], "amount": 1}, {"name": "Thorium-234", "categories": ["water", "surface water"], "amount": 1}, {"name": "Thorium-234", "categories": ["water"], "amount": 1}, {"name": "Uranium alpha", "categories": ["water", "ground-"], "amount": 1}, {"name": "Uranium alpha", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Uranium alpha", "categories": ["water", "ocean"], "amount": 1}, {"name": "Uranium alpha", "categories": ["water", "surface water"], "amount": 1}, {"name": "Uranium alpha", "categories": ["water"], "amount": 1}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 1}, {"name": "Uranium-234", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 1}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 1}, {"name": "Uranium-234", "categories": ["water"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 1}, {"name": "Uranium-235", "categories": ["water"], "amount": 1}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 1}, {"name": "Uranium-238", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 1}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 1}, {"name": "Uranium-238", "categories": ["water"], "amount": 1}]}, {"unit": "kilo Becquerel", "name": ["selected LCI results, additional", "water, radioactive", "nuclides"], "exchanges": [{"name": "Antimony-122", "categories": ["water", "ground-"], "amount": 1}, {"name": "Cadmium-109", "categories": ["water", "ground-"], "amount": 1}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 1}, {"name": "Molybdenum-99", "categories": ["water", "ground-"], "amount": 1}, {"name": "Sodium-24", "categories": ["water", "ground-"], "amount": 1}, {"name": "Technetium-99m", "categories": ["water", "ground-"], "amount": 1}, {"name": "Tellurium-132", "categories": ["water", "ground-"], "amount": 1}, {"name": "Yttrium-90", "categories": ["water", "ground-"], "amount": 1}, {"name": "Antimony-122", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Antimony-122", "categories": ["water", "ocean"], "amount": 1}, {"name": "Antimony-122", "categories": ["water", "surface water"], "amount": 1}, {"name": "Antimony-122", "categories": ["water"], "amount": 1}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 1}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 1}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 1}, {"name": "Antimony-124", "categories": ["water"], "amount": 1}, {"name": "Antimony-125", "categories": ["water", "ground-"], "amount": 1}, {"name": "Antimony-125", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 1}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 1}, {"name": "Antimony-125", "categories": ["water"], "amount": 1}, {"name": "Barium-140", "categories": ["water", "ground-"], "amount": 1}, {"name": "Barium-140", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Barium-140", "categories": ["water", "ocean"], "amount": 1}, {"name": "Barium-140", "categories": ["water", "surface water"], "amount": 1}, {"name": "Barium-140", "categories": ["water"], "amount": 1}, {"name": "Cadmium-109", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Cadmium-109", "categories": ["water", "ocean"], "amount": 1}, {"name": "Cadmium-109", "categories": ["water", "surface water"], "amount": 1}, {"name": "Cadmium-109", "categories": ["water"], "amount": 1}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 1}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 1}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 1}, {"name": "Carbon-14", "categories": ["water"], "amount": 1}, {"name": "Cerium-141", "categories": ["water", "ground-"], "amount": 1}, {"name": "Cerium-141", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Cerium-141", "categories": ["water", "ocean"], "amount": 1}, {"name": "Cerium-141", "categories": ["water", "surface water"], "amount": 1}, {"name": "Cerium-141", "categories": ["water"], "amount": 1}, {"name": "Cerium-144", "categories": ["water", "ground-"], "amount": 1}, {"name": "Cerium-144", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Cerium-144", "categories": ["water", "ocean"], "amount": 1}, {"name": "Cerium-144", "categories": ["water", "surface water"], "amount": 1}, {"name": "Cerium-144", "categories": ["water"], "amount": 1}, {"name": "Chromium-51", "categories": ["water", "ground-"], "amount": 1}, {"name": "Chromium-51", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Chromium-51", "categories": ["water", "ocean"], "amount": 1}, {"name": "Chromium-51", "categories": ["water", "surface water"], "amount": 1}, {"name": "Chromium-51", "categories": ["water"], "amount": 1}, {"name": "Cobalt-57", "categories": ["water", "ground-"], "amount": 1}, {"name": "Cobalt-57", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Cobalt-57", "categories": ["water", "ocean"], "amount": 1}, {"name": "Cobalt-57", "categories": ["water", "surface water"], "amount": 1}, {"name": "Cobalt-57", "categories": ["water"], "amount": 1}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 1}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 1}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 1}, {"name": "Cobalt-58", "categories": ["water"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 1}, {"name": "Cobalt-60", "categories": ["water"], "amount": 1}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 1}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 1}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 1}, {"name": "Iodine-129", "categories": ["water"], "amount": 1}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 1}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 1}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 1}, {"name": "Iodine-131", "categories": ["water"], "amount": 1}, {"name": "Iodine-133", "categories": ["water", "ground-"], "amount": 1}, {"name": "Iodine-133", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Iodine-133", "categories": ["water", "ocean"], "amount": 1}, {"name": "Iodine-133", "categories": ["water", "surface water"], "amount": 1}, {"name": "Iodine-133", "categories": ["water"], "amount": 1}, {"name": "Iron-59", "categories": ["water", "ground-"], "amount": 1}, {"name": "Iron-59", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Iron-59", "categories": ["water", "ocean"], "amount": 1}, {"name": "Iron-59", "categories": ["water", "surface water"], "amount": 1}, {"name": "Iron-59", "categories": ["water"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["water", "ground-"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["water", "ocean"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["water", "surface water"], "amount": 1}, {"name": "Lanthanum-140", "categories": ["water"], "amount": 1}, {"name": "Lead-210", "categories": ["water", "ground-"], "amount": 1}, {"name": "Lead-210", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Lead-210", "categories": ["water", "ocean"], "amount": 1}, {"name": "Lead-210", "categories": ["water", "surface water"], "amount": 1}, {"name": "Lead-210", "categories": ["water"], "amount": 1}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 1}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 1}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 1}, {"name": "Manganese-54", "categories": ["water"], "amount": 1}, {"name": "Manganese-55", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 1}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 1}, {"name": "Manganese-55", "categories": ["water"], "amount": 1}, {"name": "Molybdenum-99", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Molybdenum-99", "categories": ["water", "ocean"], "amount": 1}, {"name": "Molybdenum-99", "categories": ["water", "surface water"], "amount": 1}, {"name": "Molybdenum-99", "categories": ["water"], "amount": 1}, {"name": "Niobium-95", "categories": ["water", "ground-"], "amount": 1}, {"name": "Niobium-95", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Niobium-95", "categories": ["water", "ocean"], "amount": 1}, {"name": "Niobium-95", "categories": ["water", "surface water"], "amount": 1}, {"name": "Niobium-95", "categories": ["water"], "amount": 1}, {"name": "Polonium-210", "categories": ["water", "ground-"], "amount": 1}, {"name": "Polonium-210", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Polonium-210", "categories": ["water", "ocean"], "amount": 1}, {"name": "Polonium-210", "categories": ["water", "surface water"], "amount": 1}, {"name": "Polonium-210", "categories": ["water"], "amount": 1}, {"name": "Potassium-40", "categories": ["water", "ground-"], "amount": 1}, {"name": "Potassium-40", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Potassium-40", "categories": ["water", "ocean"], "amount": 1}, {"name": "Potassium-40", "categories": ["water", "surface water"], "amount": 1}, {"name": "Potassium-40", "categories": ["water"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["water", "ground-"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["water", "ocean"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["water", "surface water"], "amount": 1}, {"name": "Ruthenium-103", "categories": ["water"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 1}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 1}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 1}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 1}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 1}, {"name": "Silver-110", "categories": ["water"], "amount": 1}, {"name": "Sodium-24", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Sodium-24", "categories": ["water", "ocean"], "amount": 1}, {"name": "Sodium-24", "categories": ["water", "surface water"], "amount": 1}, {"name": "Sodium-24", "categories": ["water"], "amount": 1}, {"name": "Strontium-89", "categories": ["water", "ground-"], "amount": 1}, {"name": "Strontium-89", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Strontium-89", "categories": ["water", "ocean"], "amount": 1}, {"name": "Strontium-89", "categories": ["water", "surface water"], "amount": 1}, {"name": "Strontium-89", "categories": ["water"], "amount": 1}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 1}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 1}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 1}, {"name": "Strontium-90", "categories": ["water"], "amount": 1}, {"name": "Technetium-99", "categories": ["water", "ground-"], "amount": 1}, {"name": "Technetium-99", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Technetium-99", "categories": ["water", "ocean"], "amount": 1}, {"name": "Technetium-99", "categories": ["water", "surface water"], "amount": 1}, {"name": "Technetium-99", "categories": ["water"], "amount": 1}, {"name": "Technetium-99m", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Technetium-99m", "categories": ["water", "ocean"], "amount": 1}, {"name": "Technetium-99m", "categories": ["water", "surface water"], "amount": 1}, {"name": "Technetium-99m", "categories": ["water"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["water", "ground-"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["water", "ocean"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["water", "surface water"], "amount": 1}, {"name": "Tellurium-123m", "categories": ["water"], "amount": 1}, {"name": "Tellurium-132", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Tellurium-132", "categories": ["water", "ocean"], "amount": 1}, {"name": "Tellurium-132", "categories": ["water", "surface water"], "amount": 1}, {"name": "Tellurium-132", "categories": ["water"], "amount": 1}, {"name": "Yttrium-90", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Yttrium-90", "categories": ["water", "ocean"], "amount": 1}, {"name": "Yttrium-90", "categories": ["water", "surface water"], "amount": 1}, {"name": "Yttrium-90", "categories": ["water"], "amount": 1}, {"name": "Zinc-65", "categories": ["water", "ground-"], "amount": 1}, {"name": "Zinc-65", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Zinc-65", "categories": ["water", "ocean"], "amount": 1}, {"name": "Zinc-65", "categories": ["water", "surface water"], "amount": 1}, {"name": "Zinc-65", "categories": ["water"], "amount": 1}, {"name": "Zirconium-95", "categories": ["water", "ground-"], "amount": 1}, {"name": "Zirconium-95", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Zirconium-95", "categories": ["water", "ocean"], "amount": 1}, {"name": "Zirconium-95", "categories": ["water", "surface water"], "amount": 1}, {"name": "Zirconium-95", "categories": ["water"], "amount": 1}, {"name": "Caesium-136", "categories": ["water", "ground-"], "amount": 1}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 1}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 1}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 1}, {"name": "Caesium-134", "categories": ["water"], "amount": 1}, {"name": "Caesium-136", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Caesium-136", "categories": ["water", "ocean"], "amount": 1}, {"name": "Caesium-136", "categories": ["water", "surface water"], "amount": 1}, {"name": "Caesium-136", "categories": ["water"], "amount": 1}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 1}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 1}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 1}, {"name": "Caesium-137", "categories": ["water"], "amount": 1}]}, {"unit": "kilo Becquerel", "name": ["selected LCI results, additional", "water, radioactive", "radium"], "exchanges": [{"name": "Radium-224", "categories": ["water", "ground-"], "amount": 1}, {"name": "Radium-224", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Radium-224", "categories": ["water", "ocean"], "amount": 1}, {"name": "Radium-224", "categories": ["water", "surface water"], "amount": 1}, {"name": "Radium-224", "categories": ["water"], "amount": 1}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 1}, {"name": "Radium-226", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 1}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 1}, {"name": "Radium-226", "categories": ["water"], "amount": 1}, {"name": "Radium-228", "categories": ["water", "ground-"], "amount": 1}, {"name": "Radium-228", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Radium-228", "categories": ["water", "ocean"], "amount": 1}, {"name": "Radium-228", "categories": ["water", "surface water"], "amount": 1}, {"name": "Radium-228", "categories": ["water"], "amount": 1}]}, {"unit": "kilo Becquerel", "name": ["selected LCI results, additional", "water, radioactive", "tritium"], "exchanges": [{"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 1}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results", "air", "CO2, fossil"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results", "air", "nitrogen oxides"], "exchanges": [{"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results", "air", "NMVOC"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "2-Aminopropanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "N-Bromoacetamide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Terpenes", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "1,4-Butanediol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 1}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "1-Pentanol", "categories": ["air"], "amount": 1}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "1-Pentene", "categories": ["air"], "amount": 1}, {"name": "2-Aminopropanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "2-Aminopropanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "2-Aminopropanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "2-Aminopropanol", "categories": ["air"], "amount": 1}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "2-Propanol", "categories": ["air"], "amount": 1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acenaphthene", "categories": ["air"], "amount": 1}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetic acid", "categories": ["air"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 1}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetone", "categories": ["air"], "amount": 1}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acetonitrile", "categories": ["air"], "amount": 1}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acrolein", "categories": ["air"], "amount": 1}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Aldehydes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 1}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Aniline", "categories": ["air"], "amount": 1}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Anthranilic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzal chloride", "categories": ["air"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene", "categories": ["air"], "amount": 1}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 1}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Butadiene", "categories": ["air"], "amount": 1}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Butane", "categories": ["air"], "amount": 1}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Butanol", "categories": ["air"], "amount": 1}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Butyrolactone", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Butyrolactone", "categories": ["air"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroform", "categories": ["air"], "amount": 1}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 1}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cumene", "categories": ["air"], "amount": 1}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cyanoacetic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 1}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Diethyl ether", "categories": ["air"], "amount": 1}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Diethylamine", "categories": ["air"], "amount": 1}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dimethyl malonate", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dimethylamine", "categories": ["air"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 1}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dipropylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane", "categories": ["air"], "amount": 1}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 1}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 1}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 1}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethanol", "categories": ["air"], "amount": 1}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Chloroethylene", "categories": ["air"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyl cellulose", "categories": ["air"], "amount": 1}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethylamine", "categories": ["air"], "amount": 1}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethyne", "categories": ["air"], "amount": 1}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Formamide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Formamide", "categories": ["air"], "amount": 1}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Formic acid", "categories": ["air"], "amount": 1}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Furan", "categories": ["air"], "amount": 1}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Heptane", "categories": ["air"], "amount": 1}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hexamethyldisilizane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 1}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hexane", "categories": ["air"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, cyclic", "categories": ["air"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, alkanes, unspecified", "categories": ["air"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, aliphatic, unsaturated", "categories": ["air"], "amount": 1}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Hydrocarbons, chlorinated", "categories": ["air"], "amount": 1}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Isoprene", "categories": ["air"], "amount": 1}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Isopropylamine", "categories": ["air"], "amount": 1}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Lactic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Lactic acid", "categories": ["air"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 1}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 1}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 1}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methanesulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 1}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methanol", "categories": ["air"], "amount": 1}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 1}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methyl borate", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methyl borate", "categories": ["air"], "amount": 1}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methyl formate", "categories": ["air"], "amount": 1}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methyl lactate", "categories": ["air"], "amount": 1}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 1}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "m-Xylene", "categories": ["air"], "amount": 1}, {"name": "N-Bromoacetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "N-Bromoacetamide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "N-Bromoacetamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "N-Bromoacetamide", "categories": ["air"], "amount": 1}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "o-Nitrotoluene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 1}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "o-Xylene", "categories": ["air"], "amount": 1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Paraffins", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Paraffins", "categories": ["air"], "amount": 1}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Pentane", "categories": ["air"], "amount": 1}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol", "categories": ["air"], "amount": 1}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Propanal", "categories": ["air"], "amount": 1}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Propane", "categories": ["air"], "amount": 1}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Propanol", "categories": ["air"], "amount": 1}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Propene", "categories": ["air"], "amount": 1}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Propionic acid", "categories": ["air"], "amount": 1}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Propylamine", "categories": ["air"], "amount": 1}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Styrene", "categories": ["air"], "amount": 1}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1}, {"name": "Terpenes", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Terpenes", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Terpenes", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Terpenes", "categories": ["air"], "amount": 1}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Toluene", "categories": ["air"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 1}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Trimethylamine", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Xylene", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Butene", "categories": ["air"], "amount": 1}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results", "air", "particulates, < 2.5 um"], "exchanges": [{"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results", "air", "sulphur dioxide"], "exchanges": [{"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}]}, {"unit": "square meter-year", "name": ["selected LCI results", "resource", "land occupation"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, inland waterbody, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, lake, artificial", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, lake, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, river, artificial", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, river, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, seabed, drilling and mining", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, seabed, infrastructure", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, seabed, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, seabed, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 1}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results", "soil", "cadmium"], "exchanges": [{"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 1}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 1}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 1}, {"name": "Cadmium II", "categories": ["soil"], "amount": 1}]}, {"unit": "kilogram", "name": ["selected LCI results", "water", "BOD"], "exchanges": [{"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 1}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ocean"], "amount": 1}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 1}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 1}]}, {"unit": "kg SO2-Eq", "name": ["TRACI v2.1 no LT", "acidification no LT", "acidification potential (AP) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.88}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 0.88}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.6}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 1.88}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 0.98}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "Ammonia", "categories": ["air"], "amount": 1.88}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.88}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.88}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.6}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 1.88}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.98}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.98}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 0.98}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.51}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 0.88}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.7}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.51}]}, {"unit": "kg CO2-Eq", "name": ["TRACI v2.1 no LT", "climate change no LT", "global warming potential (GWP100) no LT"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 31}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1430}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 146}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4470}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 725}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 124}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2310}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 77}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 609}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7370}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3500}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1890}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7140}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1810}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 14400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.7}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10900}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 151}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 675}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 25}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 13}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 25}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1400}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7390}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4750}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14800}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17200}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 22800}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 31}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31}, {"name": "Chloroform", "categories": ["air"], "amount": 31}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1430}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1430}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 146}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 146}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 146}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4470}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4470}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4470}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 725}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 725}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 725}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 124}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 124}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2310}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2310}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2310}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 77}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 77}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 77}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 609}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 609}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 609}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7370}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7370}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7370}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3500}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 25}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 25}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1890}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1890}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1890}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7140}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7140}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7140}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1810}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 14400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 14400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.7}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10900}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10900}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10900}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 151}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 151}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 151}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 675}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 675}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 675}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 25}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25}, {"name": "Methane, fossil", "categories": ["air"], "amount": 25}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1400}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1400}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1400}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7390}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7390}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7390}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4750}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4750}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4750}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14800}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 22800}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22800}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 22800}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9160}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 25}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 25}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 25}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6130}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6130}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6130}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 10000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6130}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}]}, {"unit": "CTUe", "name": ["TRACI v2.1 no LT", "ecotoxicity: freshwater no LT", "ecotoxicity: freshwater no LT"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 0.8775848512654951}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.2138324120021953}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 181.9075712591964}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.2015005445608996}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.08050924933313827}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.254007818655599}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 14.57226883990429}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.02057192429268348}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 44.86884533105171}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3.463136417313835}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 252.348005989373}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.2884053887747148}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.789914178245758}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 10.51595427132834}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 7610.914674467282}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.07926608118214395}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.7429286993574472}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 133.5325887123976}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 8495.54699383616}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 104.6451854713886}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 14.54163513494238}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 354.9073927687746}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9281.126560757553}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 11852.49487695412}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 589.3948166506241}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 5287.316291691801}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.2768527285333682}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.007767568424149}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 30.64354091462214}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 76174.05877769532}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 49.33836188247038}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 11406.42648689972}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 44920.27412758143}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 819.7509007338075}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 607.2172724431911}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 21.12348480949339}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 358.5619854441121}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 30.75838944840877}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 49.52827455565405}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.142499093507869}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.06418485563858191}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 393.2620781735379}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.02960079052028783}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 626.6336235602134}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 342.0626108851369}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 170.4959917947524}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 200.4375969397927}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1612.809976002705}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 740.7226250635325}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5733.526330050867}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 73.99025029637986}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 1.099457188718305}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 869.047924983249}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 946.6271789803518}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 4.530428514254813}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.1103140502570142}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 28.37379925546212}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 30.31622064749225}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3921.689844317012}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 9712.291690087604}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 10008.3409620644}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 3071.942564795764}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 54554.08444179271}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 243.1041592084075}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 21581.81316640977}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.307478615380807}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 14691.33243836168}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1108.358159155425}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 45.5357521343301}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 758.7943034284156}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.282103029633416}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 86.41294637134375}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 57823.87667902809}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1727.7527485528}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 4.726464448796084}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 517.1464161788688}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 41802.21762058009}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1294.592667971015}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 8.478125631943172}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 585.8376259220464}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 479.7232752068333}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 269.8800361636692}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 8.872703308182082}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1705.944379403221}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.02444359396289091}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 23090.11676949549}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 55247.57233198472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.09072745464528173}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 21165.24040867214}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 4817.156768616905}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.0005956516966396799}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.139142623596091}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 1274.349804666132}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.43105910115}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 242.1677132175915}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 280.3192620671686}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1409.81393453216}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1092.537654248142}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6021.469169790082}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 476.0762071251128}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 295.5913486073072}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 285.0918569313737}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 9193.9391566954}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1534.677339349654}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.001810619293954376}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.1144243155943202}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.05140551479732774}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1921.726540567452}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 169738.0330996828}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 5.522477872065067}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 44.03938064652566}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 1747.275462019705}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 20486.62834899995}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 953.8311664072469}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3621.596791466811}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 14.03134667561534}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 24.1739950254825}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.2448524808191659}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 2567.019241103498}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 142941.0086394065}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.4070434169266591}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 147.2625253918797}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 7450.357907441243}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 365.7065026003539}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4019.340356854712}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 2172.993614418999}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 49.82093402571822}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4538.020496175222}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 23.96460189472988}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 19.07758889487456}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 97.07350922464629}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 112006.4298371197}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 4551.225016771204}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1.195316447320791}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.2049979606873083}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.5761458960501793}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.1517133038329646}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.3648712141456175}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 1911.479851134369}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.1544202484527623}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.7251438323523012}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.02507849558456108}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 560.0652844546449}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 202.5805655846324}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 17345.46423299769}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.1131699171131654}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.2314499196529845}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 15.72316015661396}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.831131324712536}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.007830674545406}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1449.887243649723}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 30.6061907842425}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 199.3503595055195}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 384.0826700760281}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 211651.2754214526}, {"name": "Fenpropimorph", "categories": ["soil", "agricultural"], "amount": 9.828730914507553}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 5875.232765914128}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 813.4815314949818}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 32315.10687636696}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 164.6428088934566}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 264.3378908849616}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 2660.182571676538}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 6137.049375526823}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 10219.64558731738}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 10054.75335824089}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8386.99402138463}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1116.704605603812}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 93.87049959879023}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 21.61353929202834}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 27.62498707813234}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.692326330663305}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.204408879684776}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 10.74402720120148}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.002780419102079553}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 16.82211773606099}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 2834.661658070369}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 103.9440772563542}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 62492.71879037761}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.689789773020432e-05}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000212391668063849}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 26679.15205781307}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 97.81784007514993}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 1035.78217843629}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 210.7204230986387}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1044.859483343018}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.492463680746446e-05}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.1837665662054698}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 9461.352075023213}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 161.2421325372742}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 90.09562197378223}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 133638.4039148149}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 173.6636086815864}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 20981.64182489484}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 11123.30312164782}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1966.815667934147}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 54.97824943249207}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2289.781128695832}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 194.2419717336017}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 266.8531151611314}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 255.2536459219005}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 124.972879067274}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.03475883743778153}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 12065.86764199895}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 225.0913468971116}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 507.8834624303366}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 49.03887088689834}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 23.16387391030672}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5393.370771034089}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 220.3742730046184}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 458.7787841928451}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2770.650280769631}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 11.64994372654887}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.09701543553922609}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.06319133789530491}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.066749126374071}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.2256583397003862}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 14094.53501477213}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5304.732009017731}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.576607505371597}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.627629520066924}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.4648226458486904}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.05772829211702672}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.5293089457355553}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.241083646031596}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1915.770898287329}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6441.702873071918}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 745.4217086790785}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 117.3470372332802}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1267.945098912815}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 4.142297319983587}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 2202.555054811937}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 17.36188717583213}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.02048579141810639}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 5483.033142421826}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 126.204653290908}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 6082.160616288364}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 215.530846628909}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 10.95063499429621}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 831.6182398811038}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 27.44900717314156}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 129.4728531083732}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 21.85550567506843}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5616.262910845849}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1425.345429804084}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 89.98044993017646}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.03214225332310074}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 156.2309363343042}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 83124.28654811245}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2932.025785932296}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.01405462319777067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 781.1036719132035}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 248.7435612489268}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 23.64350250995657}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1194.236920982726}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4549.47374020951}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6039.639430136761}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 477399.9008965495}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5658.102396456461}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6318.72190294688}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 167.1412846504503}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 30.15181210211107}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1116.900694905618}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1357.496732517177}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 349.5500940362426}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 19162.55653687737}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 42.7335814184926}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 453001.2590687819}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 24118.17780320264}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 498.1355562687057}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 6.27104198098271}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.3756669264925559}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 60375.4789920879}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.09329253568558199}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 15.0525551268929}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 310.2595888492157}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 285.0691571123865}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 10.74667451392387}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.09530603937019211}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.304292415914342}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 196.1001637111407}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3507.530003092889}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 11.64309685739373}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.089616392083714}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 35.50249751350101}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 153.002197788183}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 145.5141013045667}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 19.51291094687104}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 937.4124331458914}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3701.972218600403}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 2964.10862813788}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 47.18626876611939}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 80059.48955413517}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 194088.6647216774}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 12634.63998176688}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.5344892610003127}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.01989143055500136}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 5256.022376072727}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 1581.689868003643}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 79.02918388573273}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 449.8637672191722}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.02728675157938322}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1.181066780750985}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 4553.227967332995}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 449.513177271165}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3383.333752775135}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 41283.75821110152}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 4664.853112587411}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 53712.03118447676}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 53644.78974286943}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 14085.29382753462}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 862.9181673768969}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 41325.57198507784}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1025.563114206294}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 1341.206521620715}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 15803.20422885043}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1347.130200589376}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 2978.232970570632}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.01312671903662141}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.189790201702494}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4220.835040030409}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 319.761373813401}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 6056.636505875188}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 175.1738657117861}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 38.44382376434176}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 52549.72510443091}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1315.304465367724}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 41.04517950738141}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.3873282178246341}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 592.5107503648138}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 14604.33432925477}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.02195787684501589}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 163.5021226398655}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 10.24292353353621}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 46228.73229960291}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 112885.975123505}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1059.06456811332}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.01127378886742958}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 16684.36401546222}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 38584.58479284478}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8353349461994352}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8564598987324652}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 0.8564598987324652}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2105961714821809}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2122142917421881}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.2122142917421881}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1987837354452568}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2001421400030782}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.2001421400030782}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07940962035659084}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07995943484486456}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.07995943484486456}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2515462305914359}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2527770246235175}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.2527770246235175}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02097858564911251}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02077525497089799}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.02077525497089799}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.596102855224183}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.029619636269009}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3.029619636269009}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2964306179555203}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2924180033651176}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.2924180033651176}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.24915716949021}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.38255572040928}, {"name": "Acetic acid", "categories": ["air"], "amount": 10.38255572040928}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07903469686530108}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07915038902372251}, {"name": "Acetone", "categories": ["air"], "amount": 0.07915038902372251}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7405705157733234}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7417496075653853}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.7417496075653853}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 108.5753066810495}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 106.610246076219}, {"name": "Acrolein", "categories": ["air"], "amount": 106.610246076219}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.25668631068422}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.8991607228133}, {"name": "Acrylic acid", "categories": ["air"], "amount": 13.8991607228133}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.581812659746831}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29479011408549}, {"name": "Aniline", "categories": ["air"], "amount": 2.29479011408549}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 76801.41673494274}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 76487.73775631902}, {"name": "Antimony ion", "categories": ["air"], "amount": 76487.73775631902}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 612.0648333104592}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 609.6410528768251}, {"name": "Barium II", "categories": ["air"], "amount": 609.6410528768251}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.150215968593328}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.146357531050598}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 3.146357531050598}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06381234348924905}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06399859956391549}, {"name": "Benzene", "categories": ["air"], "amount": 0.06399859956391549}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02715051504412197}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0283756527822049}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0283756527822049}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 621.9127738018589}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 624.2731986810361}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 624.2731986810361}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 341.0291147599081}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 341.5458628225225}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 341.5458628225225}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.53308030257735}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 107.0145360486649}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 107.0145360486649}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1631.165194036358}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1621.987585019532}, {"name": "Beryllium II", "categories": ["air"], "amount": 1621.987585019532}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1079422117109683}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1091281309839912}, {"name": "Butanol", "categories": ["air"], "amount": 0.1091281309839912}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.51755226171699}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.91688645460462}, {"name": "Butyrolactone", "categories": ["air"], "amount": 29.91688645460462}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3955.3597378302}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3938.524791073606}, {"name": "Cadmium II", "categories": ["air"], "amount": 3938.524791073606}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.306544061219061}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.307011338299934}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.307011338299934}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14212.49001792392}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14451.9112281428}, {"name": "Chloramine", "categories": ["air"], "amount": 14451.9112281428}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 749.484412123745}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 754.1393577760803}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 754.1393577760803}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2817944482566569}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2819487389450365}, {"name": "Chloroform", "categories": ["air"], "amount": 0.2819487389450365}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.38751997406055}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 85.40023317270214}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 85.40023317270214}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 521.3592427382235}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 519.2528294585461}, {"name": "Chromium III", "categories": ["air"], "amount": 519.2528294585461}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 42142.76445969223}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 41972.49104013616}, {"name": "Chromium VI", "categories": ["air"], "amount": 41972.49104013616}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1722.64845735768}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1714.296418380451}, {"name": "Cobalt II", "categories": ["air"], "amount": 1714.296418380451}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 23320.1199541408}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23205.11836181814}, {"name": "Copper ion", "categories": ["air"], "amount": 23205.11836181814}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07407715125994449}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.08240230295261311}, {"name": "Cumene", "categories": ["air"], "amount": 0.08240230295261311}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0004053534730581415}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0005005025848489107}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.0005005025848489107}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001828930352428226}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001819774823191301}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.001819774823191301}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1167804826184969}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1156023991064085}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.1156023991064085}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04687070229168087}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0491381085445043}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.0491381085445043}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.58843899352387}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.88121700950319}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 23.88121700950319}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2509904810898764}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2479214809545211}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.2479214809545211}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 106410.8280586294}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124675.918349018}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 124675.918349018}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.4122155889058901}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.4096295029162746}, {"name": "Dipropylamine", "categories": ["air"], "amount": 0.4096295029162746}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.00739236833539}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.04249063160497}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 19.04249063160497}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.123718029785784}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.159517238553287}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.159517238553287}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2049083929924067}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2049531768398575}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.2049531768398575}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5752241915552043}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5756850438026918}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.5756850438026918}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1515465576547518}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1516299307438582}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.1516299307438582}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3644040113605773}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3646376127530974}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.3646376127530974}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1512219067684273}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1528210776105948}, {"name": "Ethanol", "categories": ["air"], "amount": 0.1528210776105948}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.721533745751081}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7233387890516911}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.7233387890516911}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02461940407511504}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02484894982983806}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1132683885527904}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1132191528329779}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.1132191528329779}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2283644888594898}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2299072042562372}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.2299072042562372}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.84161932370827}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.28238974016111}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 14.28238974016111}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.647116009740433}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.739123667226484}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.739123667226484}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.006214759280132}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.007022716912769}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.007022716912769}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.98236362523197}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.80367535168215}, {"name": "Formaldehyde", "categories": ["air"], "amount": 26.80367535168215}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.670056297578443}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.681191314120874}, {"name": "Formamide", "categories": ["air"], "amount": 1.681191314120874}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.96030446924476}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.082356674464767}, {"name": "Formic acid", "categories": ["air"], "amount": 9.082356674464767}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00233100240176665}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002555710751923102}, {"name": "Furan", "categories": ["air"], "amount": 0.002555710751923102}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37442513185235e-06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.013616143102833e-05}, {"name": "Heptane", "categories": ["air"], "amount": 1.013616143102833e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.764006726917132e-05}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001350158676665101}, {"name": "Hexane", "categories": ["air"], "amount": 0.0001350158676665101}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.889288509229414e-05}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.69087609498793e-05}, {"name": "Isoprene", "categories": ["air"], "amount": 5.69087609498793e-05}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1913796782043254}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1875731222048976}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.1875731222048976}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 176.0628890390114}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 174.8632488602989}, {"name": "Lead II", "categories": ["air"], "amount": 174.8632488602989}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 12297.33466876407}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12181.60115538151}, {"name": "Mercury II", "categories": ["air"], "amount": 12181.60115538151}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.63811189353482}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.64402781004184}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 11.64402781004184}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.09691431191311192}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.096964873726169}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.096964873726169}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06313117662421644}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06316125725976068}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.06316125725976068}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.066550640300604}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.066649883337338}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.066649883337338}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2222578820703635}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2239581108853748}, {"name": "Methanol", "categories": ["air"], "amount": 0.2239581108853748}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5758394729395236}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5762234891555603}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.5762234891555603}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.666858460762592}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.647243990414758}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.647243990414758}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.46155176678081}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.4631872063147502}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05768350587806599}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05770589899754636}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.05770589899754636}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5287208171662259}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5290148814508906}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.5290148814508906}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.149514801273819}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.195299223652707}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.195299223652707}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 118.3029799473779}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117.825008590329}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 117.825008590329}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.85521540325064}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.998756361617114}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.998756361617114}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01644680338878204}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01846629740344422}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.01846629740344422}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6137.384704776678}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6109.772660532521}, {"name": "Nickel II", "categories": ["air"], "amount": 6109.772660532521}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.87398543741971}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.91231021585796}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 10.91231021585796}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.0403857669706}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.24469647005608}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 27.24469647005608}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02856291329365311}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03035258330837692}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.03035258330837692}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.005981654617209129}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0100181389074899}, {"name": "Pentane", "categories": ["air"], "amount": 0.0100181389074899}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.56100072833934}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.60225161914795}, {"name": "Phenol", "categories": ["air"], "amount": 19.60225161914795}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1135.06293035613}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1164.649925669428}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1164.649925669428}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3414.137148231604}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3981.805444220557}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3981.805444220557}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3883891614083377}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3820280439504468}, {"name": "Propanal", "categories": ["air"], "amount": 0.3820280439504468}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.09173941151547893}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.09251597360053046}, {"name": "Propanol", "categories": ["air"], "amount": 0.09251597360053046}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.32276953922103}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.53472202657245}, {"name": "Propionic acid", "categories": ["air"], "amount": 10.53472202657245}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0936882576844585}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0944971485273253}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0944971485273253}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.302369905869175}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.303331160891758}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.303331160891758}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 2989.82139002033}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2976.965009079105}, {"name": "Selenium IV", "categories": ["air"], "amount": 2976.965009079105}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 80815.45971238834}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80437.47463326177}, {"name": "Silver I", "categories": ["air"], "amount": 80437.47463326177}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5220678704830352}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.528278565741674}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.528278565741674}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01113863650583113}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01551503353041624}, {"name": "Styrene", "categories": ["air"], "amount": 0.01551503353041624}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 77.99165987461768}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.51042188017522}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 78.51042188017522}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02733696432541367}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02731185795239844}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.02731185795239844}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.187538026540893}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.184302403645939}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1.184302403645939}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 14197.91850382319}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14141.60616567891}, {"name": "Thallium I", "categories": ["air"], "amount": 14141.60616567891}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1364.56823186714}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1355.849216228258}, {"name": "Tin ion", "categories": ["air"], "amount": 1355.849216228258}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01242112714578335}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01277392309120238}, {"name": "Toluene", "categories": ["air"], "amount": 0.01277392309120238}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1862689954431346}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1880295985728143}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.1880295985728143}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02412878618071882}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02304333151286735}, {"name": "Trimethylamine", "categories": ["air"], "amount": 0.02304333151286735}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 46651.9104446765}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46440.3213721397}, {"name": "Vanadium V", "categories": ["air"], "amount": 46440.3213721397}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01001834721027202}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0106460680388508}, {"name": "Xylene", "categories": ["air"], "amount": 0.0106460680388508}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16872.47176386005}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16778.41788966113}, {"name": "Zinc II", "categories": ["air"], "amount": 16778.41788966113}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 95791.0334096898}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 95791.0334096898}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 95791.0334096898}, {"name": "Antimony ion", "categories": ["soil"], "amount": 95791.0334096898}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 763.1005379036917}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 763.1005379036917}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 763.1005379036917}, {"name": "Barium II", "categories": ["soil"], "amount": 763.1005379036917}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2044.440961644406}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2044.440961644406}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2044.440961644406}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2044.440961644406}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 4936.045752744441}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4936.045752744441}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4936.045752744441}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4936.045752744441}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 650.1791381610516}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 650.1791381610516}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 650.1791381610516}, {"name": "Chromium III", "categories": ["soil"], "amount": 650.1791381610516}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 52555.16047834999}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 52555.16047834999}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 52555.16047834999}, {"name": "Chromium VI", "categories": ["soil"], "amount": 52555.16047834999}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2153.790769076094}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2153.790769076094}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2153.790769076094}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2153.790769076094}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 29164.3719150002}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 29164.3719150002}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 29164.3719150002}, {"name": "Copper ion", "categories": ["soil"], "amount": 29164.3719150002}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 103.9440772563541}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 221.4977918869544}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 221.4977918869544}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 221.4977918869544}, {"name": "Lead II", "categories": ["soil"], "amount": 221.4977918869544}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 15597.06514527675}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 15597.06514527675}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 15597.06514527675}, {"name": "Mercury II", "categories": ["soil"], "amount": 15597.06514527675}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 147.5338595951268}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 147.5338595951268}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 147.5338595951268}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 147.5338595951268}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 7664.978129157914}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 7664.978129157914}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 7664.978129157914}, {"name": "Nickel II", "categories": ["soil"], "amount": 7664.978129157914}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 3731.258616355279}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 3731.258616355279}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 3731.258616355279}, {"name": "Selenium IV", "categories": ["soil"], "amount": 3731.258616355279}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 100987.4333791871}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 100987.4333791871}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 100987.4333791871}, {"name": "Silver I", "categories": ["soil"], "amount": 100987.4333791871}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 92.49135491050366}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 17701.23878238672}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 17701.23878238672}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 17701.23878238672}, {"name": "Thallium I", "categories": ["soil"], "amount": 17701.23878238672}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1714.419845085274}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1714.419845085274}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1714.419845085274}, {"name": "Tin ion", "categories": ["soil"], "amount": 1714.419845085274}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 58269.36995740739}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 58269.36995740739}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 58269.36995740739}, {"name": "Vanadium V", "categories": ["soil"], "amount": 58269.36995740739}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 21139.016907883}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 21139.016907883}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 21139.016907883}, {"name": "Zinc II", "categories": ["soil"], "amount": 21139.016907883}, {"name": "1,4-Butanediol", "categories": ["water", "ground-"], "amount": 7.309331982177244}, {"name": "1,4-Butanediol", "categories": ["water", "ocean"], "amount": 1.248882374560439e-06}, {"name": "1,4-Butanediol", "categories": ["water", "surface water"], "amount": 7.309331982177244}, {"name": "1,4-Butanediol", "categories": ["water"], "amount": 7.309331982177244}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 15.56803807841913}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.002520549204345182}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 15.56803807841913}, {"name": "1-Pentanol", "categories": ["water"], "amount": 15.56803807841913}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.538837125972611}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00335253332002659}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.538837125972611}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.538837125972611}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 2.463416524643162}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.001220970724126882}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.463416524643162}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.463416524643162}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 21.41549990781206}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.005394488871534738}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 21.41549990781206}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 21.41549990781206}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.004742775832089053}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 14.57226883990429}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 14.57226883990429}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 6.025672019133131}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.001430914704633103}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 6.025672019133131}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 6.025672019133131}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 4115.812246738143}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.3650804722641475}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 4115.812246738143}, {"name": "Acenaphthene", "categories": ["water"], "amount": 4115.812246738143}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 47.17247193643288}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.01970473668361181}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 47.17247193643288}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 47.17247193643288}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 49.8391256657786}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.001346583925108664}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 49.8391256657786}, {"name": "Acetic acid", "categories": ["water"], "amount": 49.8391256657786}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.213309066286874}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00354663492385342}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.213309066286874}, {"name": "Acetone", "categories": ["water"], "amount": 1.213309066286874}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.85687366902346}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.03638707634094205}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.85687366902346}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.85687366902346}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.4281565226924716}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 133.5325887123976}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 133.5325887123976}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.3291367968857636}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 354.9073927687746}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 354.9073927687746}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.2768527285333682}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.2768527285333682}, {"name": "Ammonium", "categories": ["water"], "amount": 0.2768527285333682}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 630.6490501003661}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.005920846167889754}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 630.6490501003661}, {"name": "Aniline", "categories": ["water"], "amount": 630.6490501003661}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 190273.569646014}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.413485288877518e-15}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 190273.569646014}, {"name": "Antimony ion", "categories": ["water"], "amount": 190273.569646014}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1526.106910531414}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.44533885720615e-17}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1526.106910531414}, {"name": "Barium II", "categories": ["water"], "amount": 1526.106910531414}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 65.98305934698593}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.01300464851461105}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 65.98305934698593}, {"name": "Benzene", "categories": ["water"], "amount": 65.98305934698593}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.07512966638299223}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 393.2620781735379}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 393.2620781735379}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 174.8943287390434}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.002464844829783555}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 174.8943287390434}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 174.8943287390434}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.004034926712582468}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 200.4375969397927}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 200.4375969397927}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3719.353478727086}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.698940162778656e-17}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3719.353478727086}, {"name": "Beryllium II", "categories": ["water"], "amount": 3719.353478727086}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ocean"], "amount": 1.099457188718305}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 1.099457188718305}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 1.099457188718305}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.515563794986257}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.0009907214728192108}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.515563794986257}, {"name": "Butanol", "categories": ["water"], "amount": 5.515563794986257}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.006307298171177202}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 28.37379925546212}, {"name": "Butyl acetate", "categories": ["water"], "amount": 28.37379925546212}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 154.6464492362184}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.003074540289545074}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 154.6464492362184}, {"name": "Butyrolactone", "categories": ["water"], "amount": 154.6464492362184}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.269701024482803e-17}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9712.291690087604}, {"name": "Cadmium II", "categories": ["water"], "amount": 9712.291690087604}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 153.423085686842}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.2301713115378994}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 153.423085686842}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 153.423085686842}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 71953.13213721043}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.639684148519675e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 71953.13213721043}, {"name": "Chloramine", "categories": ["water"], "amount": 71953.13213721043}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 2928.070246727622}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 0.01331058556154036}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 2928.070246727622}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 2928.070246727622}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 41.17887996234599}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.05346887318892965}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 41.17887996234599}, {"name": "Chloroform", "categories": ["water"], "amount": 41.17887996234599}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 553.8045238771879}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.1633434498419037}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 553.8045238771879}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 553.8045238771879}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 104644.2763631995}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.321069755873469e-16}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 104644.2763631995}, {"name": "Chromium VI", "categories": ["water"], "amount": 104644.2763631995}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.6999035997213e-18}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1294.592667971015}, {"name": "Chromium III", "categories": ["water"], "amount": 1294.592667971015}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4099.422993937983}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 9.294818137998669e-18}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4099.422993937983}, {"name": "Cobalt II", "categories": ["water"], "amount": 4099.422993937983}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 0.02444359396289091}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.02444359396289091}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 0.02444359396289091}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.032014489240348e-16}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 55247.57233198472}, {"name": "Copper ion", "categories": ["water"], "amount": 55247.57233198472}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 665.07018807497}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00654705716437468}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 665.07018807497}, {"name": "Cumene", "categories": ["water"], "amount": 665.07018807497}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 48.68874262240333}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.901575437806032e-05}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 48.68874262240333}, {"name": "Cyclohexane", "categories": ["water"], "amount": 48.68874262240333}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 65.4673526161865}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.004052797913288156}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 65.4673526161865}, {"name": "Diethylamine", "categories": ["water"], "amount": 65.4673526161865}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.7571023925387067}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.076379285437717e-08}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.7571023925387067}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.7571023925387067}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.004920283223557545}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 44.03938064652566}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 44.03938064652566}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 86.1910342993174}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.007842872377220936}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 86.1910342993174}, {"name": "Dimethylamine", "categories": ["water"], "amount": 86.1910342993174}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 375.1534011135178}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.01936380362338582}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 375.1534011135178}, {"name": "Dipropylamine", "categories": ["water"], "amount": 375.1534011135178}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 21.69292210943689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.05449182557035542}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 21.69292210943689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 21.69292210943689}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 15.1182300429514}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0288539804571156}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 15.1182300429514}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 15.1182300429514}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 19.48984505254134}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 1911.479851134369}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1911.479851134369}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.113644032158621}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.0009829088296230753}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.113644032158621}, {"name": "Ethanol", "categories": ["water"], "amount": 3.113644032158621}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 607.0532699656612}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.1820676947716516}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 607.0532699656612}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 607.0532699656612}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 83.06252177743589}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.004508805516406364}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 83.06252177743589}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 83.06252177743589}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 5.866490471077769}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.007921420745347173}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 5.866490471077769}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 5.866490471077769}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 31.32457020494882}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.005423784183281309}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 31.32457020494882}, {"name": "Ethylamine", "categories": ["water"], "amount": 31.32457020494882}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 392.9821815828094}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.965083807032327e-05}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 392.9821815828094}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 392.9821815828094}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 33.88259088785986}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.001494502831336749}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 33.88259088785986}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 33.88259088785986}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 23.53458418808319}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.08584670868619829}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 23.53458418808319}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 23.53458418808319}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 297.4211231191256}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.02444359396289091}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 297.4211231191256}, {"name": "Formaldehyde", "categories": ["water"], "amount": 297.4211231191256}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 7.034963091073586}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 5.705025696484766e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 7.034963091073586}, {"name": "Formamide", "categories": ["water"], "amount": 7.034963091073586}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 44.39859781105648}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.002145198583164613}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 44.39859781105648}, {"name": "Formic acid", "categories": ["water"], "amount": 44.39859781105648}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.0835600185333866}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 2834.661658070369}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 2834.661658070369}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 64.77661364783435}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 3.383973580798461e-06}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 64.77661364783435}, {"name": "Hexane", "categories": ["water"], "amount": 64.77661364783435}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 6.846979098663159}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 26679.15205781307}, {"name": "Hydrazine", "categories": ["water"], "amount": 26679.15205781307}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 63.90756305906466}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.009828470980897184}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 63.90756305906466}, {"name": "Isopropylamine", "categories": ["water"], "amount": 63.90756305906466}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 374.7120873071274}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.387235797684917e-19}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 374.7120873071274}, {"name": "Lead II", "categories": ["water"], "amount": 374.7120873071274}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 22085.57778071964}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.784986131013021e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 22085.57778071964}, {"name": "Mercury II", "categories": ["water"], "amount": 22085.57778071964}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 14.60862113153174}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.01963179925773588}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 14.60862113153174}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 14.60862113153174}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 66.36990322738332}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.2768527285333682}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 66.36990322738332}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 66.36990322738332}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 2.647038698610819}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.001491372671790422}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.647038698610819}, {"name": "Methanol", "categories": ["water"], "amount": 2.647038698610819}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 15.34645981479058}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.04031712580225662}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 15.34645981479058}, {"name": "Methyl acetate", "categories": ["water"], "amount": 15.34645981479058}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 672.693769619161}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.2054215481766319}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 672.693769619161}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 672.693769619161}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 44.59940012119169}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.01134610669754899}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 44.59940012119169}, {"name": "Methylamine", "categories": ["water"], "amount": 44.59940012119169}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 17.65946300182532}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.04549309991283589}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 17.65946300182532}, {"name": "Methyl formate", "categories": ["water"], "amount": 17.65946300182532}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 293.7594298234865}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 7.400133899177125e-19}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 293.7594298234865}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 293.7594298234865}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 293.3776396173267}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.001490728140588046}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 293.3776396173267}, {"name": "m-Xylene", "categories": ["water"], "amount": 293.3776396173267}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.52134113462786e-17}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 14879.59311199594}, {"name": "Nickel II", "categories": ["water"], "amount": 14879.59311199594}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.00688339400715688}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.00688339400715688}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.00688339400715688}, {"name": "Nitrate", "categories": ["water"], "amount": 0.00688339400715688}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 179.4248510392836}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.309274509026099}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 179.4248510392836}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 179.4248510392836}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 220.7674809050472}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.002582955432705416}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 220.7674809050472}, {"name": "o-Xylene", "categories": ["water"], "amount": 220.7674809050472}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 933.0530804389432}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.009892341023183461}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 933.0530804389432}, {"name": "Phenol", "categories": ["water"], "amount": 933.0530804389432}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.0921337373485053}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5658.102396456461}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 5658.102396456461}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.1045744038991924}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6318.72190294688}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 6318.72190294688}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.0056688120125778}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 167.1412846504503}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 167.1412846504503}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.0002020006648088936}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 30.15181210211107}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 30.15181210211107}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 85.64783358764737}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.02490554580033791}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 85.64783358764737}, {"name": "Propanal", "categories": ["water"], "amount": 85.64783358764737}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 2.972313814787912}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.001307042873961017}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 2.972313814787912}, {"name": "Propanol", "categories": ["water"], "amount": 2.972313814787912}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 70.66263770958471}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.005583894842615893}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 70.66263770958471}, {"name": "Propionic acid", "categories": ["water"], "amount": 70.66263770958471}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 17.47003580483835}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.002360737046396844}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 17.47003580483835}, {"name": "Propylamine", "categories": ["water"], "amount": 17.47003580483835}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 29.00523942102665}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.08163257831926521}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 29.00523942102665}, {"name": "Propylene oxide", "categories": ["water"], "amount": 29.00523942102665}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 7324.676499052727}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.995943866375667e-17}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 7324.676499052727}, {"name": "Selenium IV", "categories": ["water"], "amount": 7324.676499052727}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.402179763282325e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 194088.6647216774}, {"name": "Silver I", "categories": ["water"], "amount": 194088.6647216774}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 2.298905883657707}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.027354434890899e-11}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 2.298905883657707}, {"name": "Sodium formate", "categories": ["water"], "amount": 2.298905883657707}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 185.2223220672366}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.001002274275879541}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 185.2223220672366}, {"name": "Styrene", "categories": ["water"], "amount": 185.2223220672366}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.633173494491574}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.002408606308693329}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.633173494491574}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.633173494491574}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 125.389297733242}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.05066477815976527}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 125.389297733242}, {"name": "t-Butylamine", "categories": ["water"], "amount": 125.389297733242}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 35389.40773048787}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.076390236808797e-16}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 35389.40773048787}, {"name": "Thallium I", "categories": ["water"], "amount": 35389.40773048787}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 3.154337154426072}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 1341.206521620715}, {"name": "Thiocyanate", "categories": ["water"], "amount": 1341.206521620715}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 4.307601208164204e-18}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2978.232970570632}, {"name": "Tin ion", "categories": ["water"], "amount": 2978.232970570632}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 55.92445707351384}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.001163678105324353}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 55.92445707351384}, {"name": "Toluene", "categories": ["water"], "amount": 55.92445707351384}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 188.8615742592643}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.03413771793559374}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 188.8615742592643}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 188.8615742592643}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 8.459234894130866e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.3873282178246341}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.3873282178246341}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 19.8654420495975}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.001738326829849284}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 19.8654420495975}, {"name": "Trimethylamine", "categories": ["water"], "amount": 19.8654420495975}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 8.80967294413328e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 10.24292353353621}, {"name": "Urea", "categories": ["water"], "amount": 10.24292353353621}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.148558709333134e-15}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 112885.975123505}, {"name": "Vanadium V", "categories": ["water"], "amount": 112885.975123505}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 77.43346253602645}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.000905963060821646}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 77.43346253602645}, {"name": "Xylene", "categories": ["water"], "amount": 77.43346253602645}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.269787771434788e-15}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 38584.58479284478}, {"name": "Zinc II", "categories": ["water"], "amount": 38584.58479284478}, {"name": "Allyl chloride", "categories": ["water"], "amount": 150.1079947071333}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1719.720222223451}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.42180531899135}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 339.3177771685547}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.464759480792751}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1288.408479475332}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9534.98244550603}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6746.64791261522}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4323.582103514876}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1920.935035757191}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6050.100803294812}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2426.799900775043}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5826075617235112}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 103.1690866711481}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 658.9867108518033}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 295.110806887749}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 3770.74503760381}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.39328139256551}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 192.9994421315874}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1283.109173004815}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.43105910115}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 4084.80999349844}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 411.1785638000277}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1134.31504453951}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 868.2752462991879}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1240.168412731042}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 96.22935832108888}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1333.794437530065}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8673.147587446569}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 105.7442921549162}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2258.577662651688}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.30247552090953}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3287.781362024641}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 4345.118683028117}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.41222339222807}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1170.784617284218}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 259125.7443834203}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 910.5227642951912}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 381628.0695570859}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 14879.59311199594}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 1388.798808044774}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 2625.615837830791}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 10478.71448236993}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.1851813694424153}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 893.1260307287811}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.202464924754399}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 23322.8108860617}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 28046.64296314354}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 98.00404444479724}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 116.1553590378122}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 4596.606592873776}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 32480.45563500515}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 18.90675745348257}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 2525.614960786939}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 381053.756490467}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 17300.82408154319}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 48797.72881487814}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1194.664831687612}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 129.8491927625}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 6449.382805161986}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 16.82211773606099}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 15771.03438358962}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.0005956516966396799}, {"name": "Anthracene", "categories": ["air"], "amount": 689.4793351985059}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 3940.56662007329}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 34.65132120921942}, {"name": "Fluorene", "categories": ["air"], "amount": 12.27113194390776}, {"name": "Phenanthrene", "categories": ["air"], "amount": 115.017007344514}, {"name": "Pyrene", "categories": ["air"], "amount": 4294.24886340959}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1481.802305363551}, {"name": "Permethrin", "categories": ["water"], "amount": 1176813.749427655}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1770.728466550261}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 68297.38935812125}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 596.7339847712511}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 91897.69629774714}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 381628.0695570859}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 22312.42771020496}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.570672609949578}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 63.32820237413264}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 2922.880909460317}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 95840.4890269539}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2825.690058737243}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1867.69528509152}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 885597.4579147273}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 261934.6501763573}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 793687.2517576887}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 11721.2764715593}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 261934.6501763573}, {"name": "Anthracene", "categories": ["water"], "amount": 261934.6501763573}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 63.72561642428929}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.108990132190594}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.097524476396035}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.097524476396035}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.086058820601476}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1364774634533391}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.1363314054471138}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.1361853474408884}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1363314054471138}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 5924305.464267534}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 5924305.464267534}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 5924305.464267534}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 6480.187851432215}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 11721.2764715593}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 321.0837044593862}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 321.0837044593862}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.38106559585892}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 167.3503950070972}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 1331.729675100105}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 1331.729675100105}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 87654.21841746844}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 87654.21841746844}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 45969.77190324557}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 45969.77190324557}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1890.997987814396}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1890.997987814396}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2983.340578117419}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 140682.2143556849}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 67251.75644838254}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 458078.2228452191}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 458078.2228452191}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1878.967084318772}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 8248662.897277911}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 8248662.897277911}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1882.513912510247}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1882.513912510247}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 98.13575974852127}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1146.324132457719}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 16426.37842918017}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 16426.37842918017}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 93.17018395949655}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1953.432724062253}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1953.432724062253}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 28978.79147878355}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 576370.0956537924}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 138991256.4948792}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 138991256.4948792}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 445.0525531360675}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1364.081351704098}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1364.081351704098}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 68297.38935812125}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 269.5687685163206}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 306.8304790458599}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 1284.044970611836}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 1284.044970611836}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 41.2052502910758}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 88.02185681860134}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 423.9184783730436}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 423.9184783730436}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 200.6632712138781}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 200.6632712138781}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1091.878313398631}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 6605.10827156456}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 4192.56916576577}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 5025.580484578368}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4954.653737808047}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 3306.003841246809}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 3306.003841246809}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 3306.003841246811}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 3306.003841246809}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.02484894982983806}, {"name": "Dodecanol", "categories": ["water"], "amount": 3749.979052280719}, {"name": "Methylamine", "categories": ["air"], "amount": 0.4631872063147502}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 1787.614875322394}, {"name": "Diethanolamine", "categories": ["water"], "amount": 47.48316173699653}, {"name": "Lauric acid", "categories": ["water"], "amount": 396.8495249613188}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.218603851057523}, {"name": "Bisphenol A", "categories": ["water"], "amount": 5164.053001364086}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 338.7546787101137}, {"name": "Decanoic acid", "categories": ["water"], "amount": 544.7151488850361}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 348.5975053782652}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.04243380534804181}, {"name": "Bromopropane", "categories": ["water"], "amount": 62.08150529213951}, {"name": "Pentane", "categories": ["water"], "amount": 3316.000340744768}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 60.2602599219066}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 1012.158272232078}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 10.62994183706053}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.809895601426584}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 3608.514399873804}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 7524.59097898142}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 17692.71991226143}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 151.9217829487129}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 277.5811274348549}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 67.94968762886948}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 11.74031766790603}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 41.63950745005277}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 6.380549915543228}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.110467312347667}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.43105910115}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 17.61817888345146}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 519.9169499579817}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 462.6141544024052}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 667.4508171795883}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 256.6187264278454}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 688.8493308084136}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 191.4784749746858}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 896.0155197840094}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 220.0746406137207}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 978.6706716213416}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 47.87089443452015}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 368.5055720651172}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 27.63215887859339}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 14637.01870132028}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 2679.652290484734}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4596.973563069243}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 135496.2877774281}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 60.05551581713758}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 340.8238059814992}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 139.743683840574}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 90.25244320281742}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 247.080898335337}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.164195646209774e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 202.5363748858674}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 7814.400450649689}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 60338.55641058663}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 59.18085009536366}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 2021.568372283682}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 63.6029276133736}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 17.08718864832988}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 39055.4266518726}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 37.78775488874359}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 154.9531994675222}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 28564.74263134682}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 425.2411885424924}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 800.6442731112385}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 6.627239928286746}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 58.26685774532077}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 9.871765892958619}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3109.551806374172}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 45.47596618363305}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 88.43619999028196}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 8.945286375635815}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 198.1727823892715}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1329.271457589259}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1165.755883481279}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1165.755883481279}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5.594456835591205}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3869.414265752627}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 660.1015637530886}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 35254.33595357371}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 6.060645578653228}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2652.294466729171}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 155.3169569503851}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2065.527613201848}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 1311676.67283577}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 43.65950850166547}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 14652.48701207039}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1481.802305363551}, {"name": "Glyphosate", "categories": ["water"], "amount": 321.0837044593862}, {"name": "Furfural", "categories": ["air"], "amount": 2.994688529144927}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.0005754938316363201}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 102591.0227392867}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 16710.46877105274}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 299.7246775317666}, {"name": "Acrolein", "categories": ["water"], "amount": 33534.6606743059}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 73119.18508268046}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 214425.9455341111}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 2482265.202124142}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 17925.69315299158}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2161.12690001112}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 465601.1895579348}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 256351.7586333342}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 5013.960858196362}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 1164.405589426061}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 156.609998406489}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 109070.2137821239}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 106854.7382085568}, {"name": "Deltamethrin", "categories": ["air"], "amount": 18270.90377643331}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 137.9609286337795}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 45019.21828707153}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 156.5868145416603}, {"name": "Thiram", "categories": ["air"], "amount": 3487.09119242013}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 680.3382059666377}, {"name": "Dimethoate", "categories": ["air"], "amount": 565.3671018741634}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 10256.03111479418}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 3290.521101304506}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 580679.0755597618}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 578.5552891124179}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 12.45381366258556}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 0.9296482554629171}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 18509.83366775568}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 352.6219011986358}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 677723.6247863976}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 126.8153264651498}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 236.8213632164033}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 652.9659515364764}, {"name": "Triallate", "categories": ["air"], "amount": 70.5292128510318}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 24676.38544100864}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7861577.049642152}, {"name": "Fluthiacet-methyl", "categories": ["soil", "agricultural"], "amount": 8843.6064391503}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 197.6421400831339}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.006031730774872183}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 197.6421400831339}, {"name": "Acrylate", "categories": ["water"], "amount": 197.6421400831339}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1028.90082834915}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 461.5004209859798}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.614598038355485}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 9492.070804737907}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 22312.42771020496}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 140682.2143556849}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 16489.92772977458}, {"name": "Fluoranthene", "categories": ["air"], "amount": 652.6589407329947}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 6272.9715083078}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1365.686057862491}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 2443.471188068153}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1272.861621485645}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 16909.6986708454}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 170.5124376107749}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17079.27810755454}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16994.48838919997}, {"name": "Arsenic ion", "categories": ["air"], "amount": 16994.48838919997}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 21361.43085375938}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 21361.43085375938}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 21361.43085375938}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 21361.43085375938}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 14.17870128823651}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 14979.14911439295}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 224.3936913413862}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 224.3936913413862}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 214.7564051054538}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 234.0309775773185}, {"name": "Arsenic ion", "categories": ["water"], "amount": 40390.21833995568}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 40390.21833995568}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.544049566471797e-16}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 40390.21833995568}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 269.5687685163206}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 306.8304790458599}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 273.3402549601409}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 1284.044970611836}, {"name": "Cyproconazole", "categories": ["air"], "amount": 269.1921234948197}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 461525.7995451029}, {"name": "Fipronil", "categories": ["air"], "amount": 24946.80841592302}, {"name": "Difenoconazole", "categories": ["air"], "amount": 5047.081443672492}, {"name": "Fluazinam", "categories": ["air"], "amount": 8694.834640824494}, {"name": "Alkylbenzene (c10-c15)", "categories": ["air"], "amount": 0.0128939299191559}, {"name": "Bifenthrin", "categories": ["air"], "amount": 104301.4031316026}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 214425.9455341111}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 229044.8670110711}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 6937.999417314811}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 433.3011115853852}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 5410.473444818626}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 1692.370322105299}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 10161.39599965984}, {"name": "Cyproconazole", "categories": ["water"], "amount": 9577.424063018774}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 490012232.4898244}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 490012232.4898244}, {"name": "Thiodicarb", "categories": ["water"], "amount": 90607.09381668059}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 242.1677132175915}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 9577.424063018774}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 677723.6247863973}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4345.118683028117}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 90607.09381668059}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 208.0099377493797}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 214425.9455341111}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 4084.80999349844}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 2012896.836828182}, {"name": "Fipronil", "categories": ["water"], "amount": 2012896.836828182}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 32315.10687636695}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 11724.17496709372}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 138991256.4948792}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 133638.4039148149}, {"name": "Clethodim", "categories": ["water"], "amount": 3290.521101304506}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 8.47812563194317}, {"name": "Bifenthrin", "categories": ["water"], "amount": 6606218.617699357}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 5733.526330050868}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 62054.42635973194}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.2201431500013523}, {"name": "Alkylbenzene (c10-c15)", "categories": ["soil", "agricultural"], "amount": 0.001225154162618609}, {"name": "Flumioxazin", "categories": ["water"], "amount": 465601.1895579348}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 119052.5066021618}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 10054.75335824089}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 1921.726540567452}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4199.332645013528}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 6606218.617699357}, {"name": "Difenoconazole", "categories": ["water"], "amount": 119052.5066021618}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 11630.69718048504}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 11630.69718048504}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 350.2601340869226}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 50408635.72852894}, {"name": "Cypermethrin", "categories": ["water"], "amount": 50408635.72852894}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 70127.43105910115}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 35089624.32889574}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 48797.72881487816}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 254034.3763665275}, {"name": "Alkylbenzene (c10-c15)", "categories": ["soil", "forestry"], "amount": 0.001225154162618609}, {"name": "Alkylbenzene (c10-c15)", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003364855008159178}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 264.3378908849616}, {"name": "Fluazinam", "categories": ["water"], "amount": 229044.8670110711}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 229044.8670110711}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 21427.90288337684}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 6441.702873071918}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 21427.90288337684}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5368.865226164379}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 5256.022376072729}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 2205.142040314403}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2205.142040314404}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 45019.21828707153}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 12727.75055993713}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 12727.75055993713}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1638.053325943434}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 11741.38139340764}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1748.637207224227}, {"name": "Abamectin", "categories": ["air"], "amount": 2598.46244104342}, {"name": "Carbendazim", "categories": ["air"], "amount": 10852.56996777327}, {"name": "Diuron", "categories": ["air"], "amount": 2888.804996395477}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 78960.85556831793}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 601.8082411386335}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 440.9403852378933}, {"name": "Mancozeb", "categories": ["air"], "amount": 643.9325476832689}, {"name": "Simazine", "categories": ["air"], "amount": 6445.767730097668}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1652.390895357039}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 157.0990183009986}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 57427.32208907067}, {"name": "Triflumuron", "categories": ["air"], "amount": 357063.9983622727}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 94.81597922687283}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 652.484313842212}, {"name": "2,4-D", "categories": ["water"], "amount": 860.3532958193812}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 215.530846628909}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 652.484313842212}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 181.9075712591965}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 860.3532958193812}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 156.0787844892613}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 105.7795183243561}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 41283.75821110154}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 971085.7741076944}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 22959.18536992275}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 22959.18536992275}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 443.4328889862159}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 50981.86740021227}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 1748.637207224227}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 7290.249047189391}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 126.8153264651498}, {"name": "Mancozeb", "categories": ["water"], "amount": 52198.60382641312}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.48692300987379}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 296.2223883807765}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 8861705.758070096}, {"name": "Triflumuron", "categories": ["water"], "amount": 8861705.758070096}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 12634.63998176688}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 78114.00168833337}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 316702.2724546606}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 1311676.67283577}, {"name": "Simazine", "categories": ["water"], "amount": 78114.00168833337}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6103.638662480231}, {"name": "Carbendazim", "categories": ["water"], "amount": 741427.7150626526}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 54554.08444179271}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 6344.183794782181}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 741427.7150626526}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 52198.60382641312}, {"name": "Acephate", "categories": ["water"], "amount": 627.195875552428}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 252.3480059893731}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 627.195875552428}, {"name": "Abamectin", "categories": ["water"], "amount": 83744.41729932558}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 83744.41729932558}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 7290.249047189391}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 44.86884533105171}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1152874.806639649}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1152874.806639649}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1990.5565774533}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 57823.87667902808}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 76269.5273348387}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 85233.29894167076}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 50096.23828354297}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 85233.29894167076}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 50096.23828354297}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 35.50249751350102}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1388.798808044774}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1325.809809271895}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 186.1098958796736}, {"name": "Diuron", "categories": ["water"], "amount": 60117.49064131446}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4019.340356854711}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2537.106748929052}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 164.6428088934565}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 29260.23441730404}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 29260.23441730404}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 105.7795183243561}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1926.848485380624}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2337.137375441219}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 90.65429257599124}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1164.405589426061}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 744.3119833717473}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 114698.9733126001}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 234.4645680742805}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 10161.39599965984}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1996.038632885548}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 592.5107503648137}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 15803.20422885043}, {"name": "Trifluralin", "categories": ["water"], "amount": 106854.7382085568}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1618.136671590677}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 114698.9733126001}, {"name": "Thiram", "categories": ["water"], "amount": 580679.0755597618}, {"name": "Carboxin", "categories": ["water"], "amount": 24676.38544100864}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 285.0691571123865}, {"name": "Propiconazole", "categories": ["water"], "amount": 22312.42771020496}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 130.7345834584192}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 155.3169569503851}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 212.7268734842694}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1050.027742038335}, {"name": "Thiabendazole", "categories": ["water"], "amount": 34009.52164954976}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 2660.182571676538}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 507.8834624303366}, {"name": "Fludioxonil", "categories": ["water"], "amount": 101091.3793961789}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2161.12690001112}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3231.447758209919}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6272.9715083078}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 172128.6715681628}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 6206819.068762222}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 105993.6811591121}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 103.9440772563541}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5957.959915036762}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 5304.732009017731}, {"name": "Metolachlor", "categories": ["water"], "amount": 67251.75644838254}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 819.7509007338074}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1365.686057862491}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 11406.42648689973}, {"name": "Tebuconazole", "categories": ["water"], "amount": 68297.38935812125}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 73119.18508268046}, {"name": "Methomyl", "categories": ["water"], "amount": 28978.79147878355}, {"name": "Atrazine", "categories": ["water"], "amount": 87654.21841746844}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 114698.9733126001}, {"name": "Indoxacarb", "categories": ["air"], "amount": 3180.233169520662}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 2611.582905498304}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 391.0220181975797}, {"name": "Carboxin", "categories": ["air"], "amount": 382.2650622793749}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1618.136671590677}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 34009.52164954976}, {"name": "Thiabendazole", "categories": ["air"], "amount": 435.3659085727342}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 4283.465110687773}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 172128.6715681628}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1678.718356240116}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 101091.3793961789}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 6206819.068762222}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 28978.79147878355}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3162.808823016142}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 67251.75644838254}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 206.6045490576516}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 5957.959915036762}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2337.13737544122}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 90.65429257599124}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 105993.6811591121}, {"name": "EPTC", "categories": ["air"], "amount": 6.607687147297698}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 1692.965263424659}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.341352636846492}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 299.7246775317666}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 169738.0330996829}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 11976364.83353115}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 11976364.83353115}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 203864.2011423413}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 96.65682185355104}, {"name": "Imidacloprid", "categories": ["air"], "amount": 122.0267139353446}, {"name": "Imidacloprid", "categories": ["water"], "amount": 3139.182427479564}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 96.65682185355104}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.4592395098901}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 3139.182427479564}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.754061574190309}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 586.9844535727717}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.738785679816528}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.746423627003418}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.746423627003418}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.486803588069124}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 586.9844535727717}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 586.9844535727717}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.09436249505718262}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 62.8497116571606}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 16219.05948883446}]}, {"unit": "kg N-Eq", "name": ["TRACI v2.1 no LT", "eutrophication no LT", "eutrophication potential no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.1186}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.7793}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.03602286665830313}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.38}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 0.3548239598401077}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 1.12}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1186}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1186}, {"name": "Ammonia", "categories": ["air"], "amount": 0.1186}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03602286665830313}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03602286665830313}, {"name": "Nitrate", "categories": ["air"], "amount": 0.03602286665830313}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3548239598401077}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3548239598401077}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 0.3548239598401077}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12}, {"name": "Phosphorus", "categories": ["air"], "amount": 1.12}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.7793}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.7793}, {"name": "Ammonium", "categories": ["water"], "amount": 0.7793}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ocean"], "amount": 0.05}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.05}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 0.05}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.2367}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.2367}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.2367}, {"name": "Nitrate", "categories": ["water"], "amount": 0.2367}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.9864}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.9864}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.9864}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.9864}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 2.38}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.38}, {"name": "Phosphate", "categories": ["water"], "amount": 2.38}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 7.29}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 7.29}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 7.29}, {"name": "Phosphorus", "categories": ["water"], "amount": 7.29}, {"name": "Nitrogen", "categories": ["air"], "amount": 0.150118105922054}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.06858}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.30952380952381}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 0.3656515775836821}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.03448275862068965}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.291021896827}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.04429}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04429}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04429}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.04429}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.03448275862068965}]}, {"unit": "CTUh", "name": ["TRACI v2.1 no LT", "human toxicity: carcinogenic no LT", "human toxicity: carcinogenic no LT"], "exchanges": [{"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.258356435850049e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.810343693630874e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.108229711482085e-07}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.406776750306832e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2.78915073207082e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.531067896539896e-08}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.027258220363476e-06}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.391376256206991e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.741896373164023e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 8.425367609910162e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.129833856759318e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.530366768160435e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 4.495136026480151e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0001154905641553532}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.125912223315778e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0002517637983367946}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.590052583598152e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.120982712696918e-08}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.021433535791055e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.989787988125033e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.52942318370799e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.004698149455494108}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.593967130167531e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.58465069072757e-05}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.883745633244235e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 29.62159655713153}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 5.543725597722587e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.304325226657223e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.515513820065576e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.820926395991358e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.865899488335459e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.922728378391743e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.596495340709977e-06}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.636272033325984e-09}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.034153076279244e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.29033235365814e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.060433564876759e-08}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.219169907269833e-06}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.860699582481577e-06}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.542168575439161e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.27974191527352e-05}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.793118991683174e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.759132709331032e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.348363361545353e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.656983589874939e-05}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 6.565468056143749e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3.134880215609319e-08}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.006891195363459961}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.932656172736234e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.915733739067202e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.798065885996774e-05}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.415614863811376e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.617550177034878e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.597517150337729e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.991958352298951e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.301372125432608e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.448863732121582e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 6.77182969489933e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.135991803003744e-05}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 9.266833864499727e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.107308407737939e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.876127648548086e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.007215305408294e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.102667814352975e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.172670404170017e-12}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.825512353035547e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.010106372215797e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.179807173393732e-09}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.510708826824056e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.510708826824056e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.614819710071137e-10}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.803608046820304e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.803608046820304e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.211603307527637e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.806268293479877e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.806268293479877e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.198616480471286e-07}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.970256426817655e-07}, {"name": "Benzene", "categories": ["air"], "amount": 2.970256426817655e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.553188659505964e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.342576361354958e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.342576361354958e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813342215092388e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.171854491626412e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.171854491626412e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.480841728508682e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.487988877494416e-05}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.487988877494416e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.152031023523993e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.350543719529656e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.350543719529656e-05}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.663642941217963e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71274326363979e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 5.71274326363979e-07}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001818862514436914}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000216825024890243}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.000216825024890243}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.622051888446287e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.30591993828566e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.30591993828566e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004206523646445761}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004452336550969934}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.004452336550969934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.698730877983314e-09}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.176809360521283e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.176809360521283e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.49436227943477}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.05797941828315}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 29.05797941828315}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.986157966582645e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.264941782152616e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.264941782152616e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.211276877132605e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.257801051894914e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.257801051894914e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.157030538606932e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.065608436963135e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.065608436963135e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.291959421499929e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.556442908745643e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.556442908745643e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.426564375976271e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.146231932155865e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.146231932155865e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.749094908834605e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.335911643613174e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.335911643613174e-08}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.383754462042533e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.137323739765118e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 2.137323739765118e-09}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.630932527089968e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74862316449412e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.74862316449412e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.228180370229732e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.259256361943936e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.259256361943936e-07}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.358317111505462e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.998132638013652e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.417626751024006e-07}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.30466291186117e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 8.30466291186117e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.385689828449256e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.340368779142043e-05}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.340368779142043e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.385145978752628e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.209128256574392e-05}, {"name": "Furan", "categories": ["air"], "amount": 3.209128256574392e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.927864590212017e-10}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.929527253521877e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.929527253521877e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.457944521561068e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81471403380482e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 6.81471403380482e-08}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.727440495785806e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.692212042830373e-05}, {"name": "Lead II", "categories": ["air"], "amount": 2.692212042830373e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007219396090920078}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00705529572719002}, {"name": "Mercury II", "categories": ["air"], "amount": 0.00705529572719002}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.921138703663494e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.426897438199864e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.426897438199864e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.415557203584623e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.665645471325912e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.665645471325912e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.535914078209065e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666989982102919e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.666989982102919e-05}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.684302113659421e-08}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.049958488735399e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.049958488735399e-08}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.73466103000816e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.176105603521519e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 5.176105603521519e-05}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.089268905852151e-07}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.053222020461472e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.053222020461472e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.058142032342093e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.025050192320522e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 6.025050192320522e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.701161768393508e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.001266946913059e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 4.001266946913059e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.201906152438696e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.654607280088317e-07}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.654607280088317e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.658751485139641e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.119014101298451e-07}, {"name": "Styrene", "categories": ["air"], "amount": 5.119014101298451e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.770063405932431e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.39837077473109e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 6.39837077473109e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.181190803144065e-12}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.176930603657041e-12}, {"name": "Toluene", "categories": ["air"], "amount": 3.176930603657041e-12}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.920338056744807e-10}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.751070088945139e-09}, {"name": "Xylene", "categories": ["air"], "amount": 4.751070088945139e-09}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.130421025115689e-24}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.130421025115689e-24}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.130421025115689e-24}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.130421025115689e-24}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.0004817920255441872}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.081071442613549e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.081071442613549e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 8.081071442613549e-07}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.005412813058171186}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.005344319431615542}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.005344319431615542}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.005344319431615542}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 7.554690612036464e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.019393851208752e-07}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.019393851208752e-07}, {"name": "Lead II", "categories": ["soil"], "amount": 2.019393851208752e-07}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.02000443622421823}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 8.480180131105149e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 8.480180131105149e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 8.480180131105149e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.0001057249924546784}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.971608380599197e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.971608380599197e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.971608380599197e-05}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.826115595073202e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.546279067803446e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.826115595073202e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 8.826115595073202e-08}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.118711178853875e-08}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.406776750306832e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.406776750306832e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 6.906904090605212e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.650034416037056e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 6.906904090605212e-08}, {"name": "Aniline", "categories": ["water"], "amount": 6.906904090605212e-08}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.42356468162967e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 2.485989030729586e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.42356468162967e-07}, {"name": "Benzene", "categories": ["water"], "amount": 2.42356468162967e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.885503448857824e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 8.425367609910162e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 8.425367609910162e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.731751629412889e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 5.138840164335435e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.731751629412889e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.731751629412889e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.93228723043305e-25}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.059335183438447e-26}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.93228723043305e-25}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.93228723043305e-25}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 5.904155315475577e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.590052583598152e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.590052583598152e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.903478386107413e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 3.450637848030204e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.903478386107413e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 3.903478386107413e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.01064124692009222}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.0006276395027482738}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.01064124692009222}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.01064124692009222}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.653828513869859e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.697745543090239e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.653828513869859e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.653828513869859e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.633658746290207e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 5.295941693917522e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.633658746290207e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.633658746290207e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.379471582042169e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.596495340709977e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.596495340709977e-06}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.542682490085931e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 4.642550296405149e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.542682490085931e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 2.542682490085931e-09}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.574102322678905e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 5.226226981162908e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.574102322678905e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.574102322678905e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.485354373704319e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 7.712639527568175e-08}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.485354373704319e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 5.485354373704319e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.171588118574856e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.346365427938616e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.171588118574856e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 4.171588118574856e-08}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.715898825955418e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.847420342319156e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.715898825955418e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.715898825955418e-06}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.240884639256756e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.313683154064868e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.240884639256756e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.240884639256756e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.932661183632631e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.627426369587102e-11}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.932661183632631e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.932661183632631e-09}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.539549199989667e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.759132709331032e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.759132709331032e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.416247532922595e-07}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.103686639122781e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.416247532922595e-07}, {"name": "Lead II", "categories": ["water"], "amount": 3.416247532922595e-07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0001200800766910644}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.562717654660303e-05}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0001200800766910644}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0001200800766910644}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.823172927233115e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 9.656004694601315e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.823172927233115e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.823172927233115e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.16253257954551e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.175874687009049e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.16253257954551e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.16253257954551e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.241027359047357e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.743499587732249e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.241027359047357e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 2.241027359047357e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.932692703765708e-06}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.82737301857641e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 3.82737301857641e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.141909863354914e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.593718642068913e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.141909863354914e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.141909863354914e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 1.68836291963403e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.448863732121582e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.448863732121582e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.158734719783597e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 7.696674523054334e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.158734719783597e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.158734719783597e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.298293064042074e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.483666754706709e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.298293064042074e-08}, {"name": "Styrene", "categories": ["water"], "amount": 1.298293064042074e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.836736453785565e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.55467521351487e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.836736453785565e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.836736453785565e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.28796619460418e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.113876458507679e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.28796619460418e-09}, {"name": "Toluene", "categories": ["water"], "amount": 3.28796619460418e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.87817103743376e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 7.916174553493899e-11}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.87817103743376e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.87817103743376e-09}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.968325208963409e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72488671036636e-07}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 2.392344824587944e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.621112923743258e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.320457549765049e-07}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.332600353770246e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.650089002101258e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.029317585575104e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.82737301857641e-05}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.973370618914708e-11}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.53421227997533e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.428324535107701e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.938388614878956e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.056713149956801e-05}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.036581063539157e-06}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 3.418467484412382e-05}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.885964682958992e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.016317313235812e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.016317313235812e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.544038158175725e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 99.99414879423145}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 99.99414879423145}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 99.99414879423145}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 58.95214315432209}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 3.418467484412382e-05}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 3.729187954993366e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 3.729187954993366e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.091983626884058e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.091983626884058e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 0.2099867486507813}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 0.2099867486507813}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 0.3853312280989407}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 0.2099867486507813}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.998132638013652e-08}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 6.70288219492184e-06}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 2.611054452589474e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.621871552334511e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.84435814580476e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.772967486180558e-06}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.45035777450514e-05}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.829873065189469e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.991301788381765e-06}, {"name": "Furfural", "categories": ["air"], "amount": 4.345660720828529e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000814006573092419}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.743864159015686e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 1.175041748019131e-08}, {"name": "Naphthalene", "categories": ["air"], "amount": 6.351082658161222e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 9.0374626837381e-09}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0004239869897004578}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002423359861413617}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0003331614879209097}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0003331614879209097}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0003918347177884975}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0001951433794005633}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0001951433794005633}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0001951433794005633}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.003301182299098833}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 9.054524788040105e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.054524788040105e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.841001937321709e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 9.268047638758503e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0003689773290724312}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0003689773290724312}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.027003498025857e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0003689773290724312}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.79028281626522e-08}, {"name": "Acephate", "categories": ["water"], "amount": 2.487029067227868e-07}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.000639990423461e-07}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.487029067227868e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1.180107657027561e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.180107657027561e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.156335309274065e-08}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.199108512379478e-08}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.603853150604743e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.743864159015686e-06}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 4.86195939010831e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 3.729187954993366e-06}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.063590628352086e-05}]}, {"unit": "CTUh", "name": ["TRACI v2.1 no LT", "human toxicity: non-carcinogenic no LT", "human toxicity: non-carcinogenic no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.221076129596055e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.142401308517337e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.978195641238402e-09}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 4.242610285742846e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.392679541749306e-08}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.0003506147224737884}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.291621899121178e-07}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 9.671865584621795e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.724699410100045e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001407920377821338}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 9.708016844111831e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.278012890782212e-06}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.441349515389442e-05}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 8.82185338479455e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.744152507265701e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.0001865653238287938}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.514976898553216e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.19084656422507e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 5.689293488473177e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.515382826785763e-05}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 5.676396328314889e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.844869704874264e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 6.18998015965328e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.400280279713202e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.200731318738333e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 8.725444005900088e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.005344304385922e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.577843586162677e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.461714521851474e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.08556031719987929}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 3.549401920473224e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.097035277749298e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 6.026343492200264e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.194360540124425e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.684866776379766e-06}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.268631067940004e-08}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.04446630584551008}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.0004265994736482847}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.331091643438784e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 7.571136900989693e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.06629840746109e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.502069450836323e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 5.314798975805516e-05}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.785363458207277e-07}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.736951474249164e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.713956025626985e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.609540134884209e-07}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.735780904390812e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3.565453936392286e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.0007484149900566027}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 3.026742397087114e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.323373836409855e-05}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 8.626757056549432e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.022846032548176e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.136492607015195e-08}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.595972050549893e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.412043071588323e-07}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 2.974983061189815e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.118891180273046e-06}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0001475471753224561}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.342994347623155e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.247396040510806e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.498026636437909e-07}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 2.79449501214572e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.591732719588198e-06}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.651364096032627e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.637434146055799e-07}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.826205918331096e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.073190640596592e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.070497681191723e-06}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.371995092225478e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 7.803732452170765e-08}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.559092878798325e-05}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.863591764893856e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.761903462851979e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.903804534245596e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.732734234853651e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.417559462914081e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.743048310639527e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.622815872259569e-06}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.826956875329245e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.000123511601348606}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.62866364623693e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.356326701865415e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 8.174257362148937e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.971696268633912e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.481954957610653e-08}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 5.575094411019923e-08}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 1.411858312894749e-05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 5.323422874735585e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 6.161216540279184e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.667275702097867e-07}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 7.003289558100547e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.072282123260385e-07}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 7.626626274319757e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.43993461441268e-07}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.287458114490947e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.055388420802181e-09}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.009320644029522146}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 7.605788809947128e-05}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.041281305536015e-06}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.81691200463969e-08}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.242773848988688e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.09122357691481e-07}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 8.864197911606767e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 4.678376160539588e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.420612989098232e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.629121758973386e-12}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.8153105050720473}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.675136537433405e-07}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.276099938183971e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.0001138668835910055}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 9.572570783224532e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.043266588879628e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.316535823373809e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 6.555101209491677e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.0001591725529778709}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.807840507128964e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.633290926906425e-08}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 6.136174078421357e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 4.064579782070168e-06}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.267694828859509e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 5.928814044257169e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.402647336673159e-07}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.378150453428547e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.001633262508687558}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.637567039119838e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 6.274346569125752e-05}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.403709626048452e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 6.44497918258497e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.161171165923385e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 7.853821142005302e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 4.761064687909049e-08}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.864963689477978e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 3.568861582664458e-06}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.532400963236454e-09}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.927100588651506e-06}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.066968540665983e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.034208590064141e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.538196875085421e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.409357809495091e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.720982836621032e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.377798891435364e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.295936341190667e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 7.482238451868906e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 6.451763747794766e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.139721212223564e-07}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 4.846972051332177e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.755277587417682e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 9.8941374874774e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.118251739234456e-05}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.586997283128361e-07}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.157115414301461e-05}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.697393976400055e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.869763954880581e-07}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.430064249385157e-06}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.733327422786888e-07}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.267165613887981e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 7.687017975228025e-06}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 7.173262376334914e-09}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 8.305315265868153e-06}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 4.365751690113955e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.02532945731247778}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.0003549487632190929}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 8.772833490592437e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 2.014471645695883e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.847650620033796e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.664867632416609e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 4.972297832105879e-05}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.0004120225015791997}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.0007185436202832339}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6.560228411780649e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.934694045738182e-07}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.886539373366524e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 9.618820249928871e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.895456861166723e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.684472648263908e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 5.628295663165025e-07}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2.108889397842234e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.620316404487003e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 6.720802511205441e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.381327127979634e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.796899460458428e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.691500916649405e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.0001943856207712839}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.161573837165723e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.09611314831482e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.01523298640624192}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.001281390275351284}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.452706437984015e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.193835976157869e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.193835976157869e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.164203985881873e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.097308019913294e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.097308019913294e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.089916056276619e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.800835573688484e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.800835573688484e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.711552710245e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.881388585072839e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.881388585072839e-07}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.830038575962134e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.250952080291964e-09}, {"name": "Acetone", "categories": ["air"], "amount": 6.250952080291964e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9643392814793e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.344519345789673e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 6.344519345789673e-08}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.555937164383953e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0007317398747325888}, {"name": "Acrolein", "categories": ["air"], "amount": 0.0007317398747325888}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.277250463673861e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.117870945239609e-05}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.117870945239609e-05}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.761300342797525e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.908827553468379e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.908827553468379e-07}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001545128350605106}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001705390794446522}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.0001705390794446522}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.858263234853601e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.186823030819682e-05}, {"name": "Barium II", "categories": ["air"], "amount": 4.186823030819682e-05}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.869535458606569e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.343616912786929e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.343616912786929e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.035107125922855e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.521210156653091e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.521210156653091e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44454892341174e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.498948968100198e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.498948968100198e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.332387129371907e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.455115357767291e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.455115357767291e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.164614537071418e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.313164529461446e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.313164529461446e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008545819649387387}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04705306842463334}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.04705306842463334}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.489551726476562e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.548811468222657e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 8.548811468222657e-07}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.027705915933207e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.885700829766663e-08}, {"name": "Butanol", "categories": ["air"], "amount": 2.885700829766663e-08}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04649648722728665}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04548139653639836}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.04548139653639836}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.673630444843396e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.994214710324456e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.994214710324456e-05}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.797438724649864e-07}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.29140109142857e-07}, {"name": "Chloramine", "categories": ["air"], "amount": 5.29140109142857e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.265621290520827e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.320259077339534e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 1.320259077339534e-06}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58957475884972e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.577514347621003e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 2.577514347621003e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.306889836534118e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0004157419442109719}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.0004157419442109719}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.364906299642294e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.344140068026075e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.344140068026075e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.015397717353837e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.11219290214178e-08}, {"name": "Cumene", "categories": ["air"], "amount": 1.11219290214178e-08}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.861988584783585e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.161345732746777e-08}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.161345732746777e-08}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.031975385909731e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.588578971849514e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 6.588578971849514e-09}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.351879383031965e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.971404085507607e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.971404085507607e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.422197346035162e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.59205040444357e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.59205040444357e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64237670710105e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.773090620673323e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.773090620673323e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.922753117081016e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.327743675967333e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 3.327743675967333e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.608387850544461e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.519435478469864e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.519435478469864e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.400047590272472e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.231410315643408e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.231410315643408e-06}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.822728876801231e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.225696261519081e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.225696261519081e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56494780209889e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.064107410376518e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.064107410376518e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.540819918737348e-08}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.710678846985801e-07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.710678846985801e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.544741567459898e-07}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.578881857423269e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.578881857423269e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.623285776000493e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.351131596006365e-07}, {"name": "Hexane", "categories": ["air"], "amount": 1.351131596006365e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.009567805412798749}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.009444224721160448}, {"name": "Lead II", "categories": ["air"], "amount": 0.009444224721160448}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.854546007662333}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8349282563671901}, {"name": "Mercury II", "categories": ["air"], "amount": 0.8349282563671901}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.722141993797854e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.554415176449204e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.554415176449204e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.800721786157885e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.186646284691209e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 9.186646284691209e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.164130613995683e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.798398251395983e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 7.798398251395983e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.295973587569983e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.306254705471896e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.306254705471896e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.409692145162997e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.482396677327338e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.482396677327338e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000150482729407102}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001548276411924865}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.0001548276411924865}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.772484980404277e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.790162743766621e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.790162743766621e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.126492194353136e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02297007317087e-08}, {"name": "Methanol", "categories": ["air"], "amount": 1.02297007317087e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.383971900335308e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.030460094465199e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 9.030460094465199e-10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001690823306431838}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001662042907559698}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.001662042907559698}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.246372725695135e-10}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.131102155844676e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.131102155844676e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.664341831724058e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.912756498823721e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.912756498823721e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.502020571214635e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.177920856609969e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 5.177920856609969e-06}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.320563130799197e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.864960470147144e-08}, {"name": "Phenol", "categories": ["air"], "amount": 4.864960470147144e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.716903396071092e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.218943116346062e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.218943116346062e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.069227613077719e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.723513252256542e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.723513252256542e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.102494393890102e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.894756184559063e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.894756184559063e-06}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0263545115796338}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02584198444605579}, {"name": "Silver I", "categories": ["air"], "amount": 0.02584198444605579}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.319210197060257e-09}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.023831873833243e-07}, {"name": "Styrene", "categories": ["air"], "amount": 1.023831873833243e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.987101806731701e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.073180400353483e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.073180400353483e-08}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0006931417743826864}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0007058426973329602}, {"name": "Thallium I", "categories": ["air"], "amount": 0.0007058426973329602}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.903683505289912e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.304594300228931e-08}, {"name": "Toluene", "categories": ["air"], "amount": 5.304594300228931e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.350967643951052e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.365276812780914e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.365276812780914e-07}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.230682656706652e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.461091786678029e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.461091786678029e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.136724307213791e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1048927895181e-07}, {"name": "Xylene", "categories": ["air"], "amount": 1.1048927895181e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01595821309049346}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01559559974836769}, {"name": "Zinc II", "categories": ["air"], "amount": 0.01559559974836769}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.0002094603584268039}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.000183318467436291}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.000183318467436291}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.000183318467436291}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.911452194283206e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 4.907988749833895e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 4.907988749833895e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 4.907988749833895e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.13942743874014e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.442333520247059e-06}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.442333520247059e-06}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.442333520247059e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.1292612751460015}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.0002168092338262172}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.0002168092338262172}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.0002168092338262172}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.782669101518235e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.520111160723548e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.520111160723548e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.520111160723548e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.218383674504603e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.202966272221139e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.202966272221139e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.202966272221139e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.741521065525488e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.553936772202815e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.553936772202815e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.553936772202815e-07}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 5.194719296383719e-08}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.02650169997898971}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.083992281415829e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.083992281415829e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 7.083992281415829e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.368004808330223}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.01003832704950333}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.01003832704950333}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.01003832704950333}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.004662036571511168}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.847979845997768e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.847979845997768e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.847979845997768e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 5.949475966080398e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.109485695156325e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.109485695156325e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.109485695156325e-06}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.07315695569427592}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.0001846855128300004}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.0001846855128300004}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0001846855128300004}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.0008941449055217264}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.0008928049591685979}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.0008928049591685979}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.0008928049591685979}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.0001395425791044612}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.0001003377756956081}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.0001003377756956081}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.0001003377756956081}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.04352557247671509}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.0007020246775150156}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.0007020246775150156}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.0007020246775150156}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.038098730414904e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 4.885150423259475e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.038098730414904e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.038098730414904e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.924925858235224e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 1.755411400048051e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.924925858235224e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.924925858235224e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.58346765720981e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 2.879516213953051e-08}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.58346765720981e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.58346765720981e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.530019865060971e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.35988962527705e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.530019865060971e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.530019865060971e-07}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.863154111699243e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.284208441107347e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.863154111699243e-09}, {"name": "Acetone", "categories": ["water"], "amount": 5.863154111699243e-09}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 5.721675558887881e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.470170839944064e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 5.721675558887881e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 5.721675558887881e-08}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.037161984140659e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.278012890782212e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.278012890782212e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 3.411629127516181e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.308970630556439e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 3.411629127516181e-06}, {"name": "Aniline", "categories": ["water"], "amount": 3.411629127516181e-06}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.0003641328205736979}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.679966884016287e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.0003641328205736979}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.0003641328205736979}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.815371862412766e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.027646396022553e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.815371862412766e-05}, {"name": "Barium II", "categories": ["water"], "amount": 9.815371862412766e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.136890786331367e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.294960185401997e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.136890786331367e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.136890786331367e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.059504671760577e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 8.725444005900088e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 8.725444005900088e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.725295546990031e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.37687836602732e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.725295546990031e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.725295546990031e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.44322034490847e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.069153246761613e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.44322034490847e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.44322034490847e-06}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 3.75496697451903e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 5.898442237466312e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 3.75496697451903e-08}, {"name": "Butanol", "categories": ["water"], "amount": 3.75496697451903e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.0001584041670005643}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.0004265994736482847}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.0004265994736482847}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.749326067209468e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.659882348209684e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.749326067209468e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 3.749326067209468e-05}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.234715992783451e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 8.826973826968142e-11}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.234715992783451e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 5.234715992783451e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.174926138213845e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.795826347063662e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.174926138213845e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 1.174926138213845e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.395264973032938e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.412769507101826e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.395264973032938e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.395264973032938e-05}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.458143010834842e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 3.026742397087114e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 3.026742397087114e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.219606440516642e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 8.626757056549432e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 8.626757056549432e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2.767189760363356e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 7.280610973935055e-10}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2.767189760363356e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.767189760363356e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.299953983938089e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 6.35445705661448e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.299953983938089e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1.299953983938089e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.621566470905957e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.360566418060404e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.621566470905957e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.621566470905957e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.694398897752627e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.417559462914081e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.417559462914081e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.432293305766979e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.24515316294891e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.432293305766979e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.432293305766979e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.277283465761985e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 2.404498845655725e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.277283465761985e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.277283465761985e-06}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.302442950512341e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.289412599718562e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.302442950512341e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.302442950512341e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.872786723738894e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 5.641078147934529e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.872786723738894e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 1.872786723738894e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.235884859811734e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.365567221814513e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.235884859811734e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 3.235884859811734e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.629812601254424e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.310024095211606e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.629812601254424e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.629812601254424e-07}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.0001198412639522681}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.0001088766917969901}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.0001198412639522681}, {"name": "Lead II", "categories": ["water"], "amount": 0.0001198412639522681}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.01421435704570649}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.01131976984161415}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.01421435704570649}, {"name": "Mercury II", "categories": ["water"], "amount": 0.01421435704570649}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.000347251974289e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.100958176738442e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.000347251974289e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.000347251974289e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.0001416233637047218}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 3.905528422285198e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.0001416233637047218}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.0001416233637047218}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.053508057002389e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.962829458065847e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.053508057002389e-08}, {"name": "Methanol", "categories": ["water"], "amount": 1.053508057002389e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 7.6618368734787e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.936085280865146e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 7.6618368734787e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 7.6618368734787e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 8.311034023864305e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.465911420374546e-11}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 8.311034023864305e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 8.311034023864305e-10}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.213049174069575e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.153782493482439e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 2.153782493482439e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.613933988242454e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 7.835146660455351e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.613933988242454e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.613933988242454e-06}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.445230029912323e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 4.29623471206074e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.445230029912323e-07}, {"name": "Phenol", "categories": ["water"], "amount": 1.445230029912323e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.448472089483651e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 6.451763747794766e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 6.451763747794766e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 1.521286530292675e-09}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.139721212223564e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.139721212223564e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.122686194734411e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.327871485536874e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.122686194734411e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.122686194734411e-06}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.72046594869137e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.0003549487632190929}, {"name": "Silver I", "categories": ["water"], "amount": 0.0003549487632190929}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 6.905562739995133e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.382198990353596e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 6.905562739995133e-09}, {"name": "Styrene", "categories": ["water"], "amount": 6.905562739995133e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 7.968250916430617e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 2.680460418188266e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 7.968250916430617e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 7.968250916430617e-09}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.001784950709509547}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.0001049202120331686}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.001784950709509547}, {"name": "Thallium I", "categories": ["water"], "amount": 0.001784950709509547}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.78381889396906e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.85164323324186e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.78381889396906e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.78381889396906e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.746386821103701e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 2.679122057626619e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.746386821103701e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.746386821103701e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.204785546242881e-05}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.0001943856207712839}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.0001943856207712839}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.565173748460817e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.088863470699424e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.565173748460817e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.565173748460817e-08}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.0003022239733263844}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.001281390275351284}, {"name": "Zinc II", "categories": ["water"], "amount": 0.001281390275351284}, {"name": "Allyl chloride", "categories": ["water"], "amount": 8.429017961928794e-07}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.575815948545172e-06}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.745557815704155e-07}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.190721318298059e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.525304066537304e-06}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.067154181198038e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.012074046590263e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.316057574160154e-06}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.435820878572442e-07}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08293365611197e-06}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.868035842995189e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.697851013747082e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.595972050549893e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.693131810971133e-06}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.201611994080305e-06}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2.816218458009491e-06}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.645635268000873e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63321509311328e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003679179000157798}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.046721419301423e-06}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.426094698261276e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.215475115327741e-08}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.417141884636277e-07}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.447187570462221e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.153782493482439e-06}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.374871613818311e-07}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 4.858573792004901e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.232653909130515e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.076913084469074e-07}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 1.098197427047431e-05}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.893858831703959e-05}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.830333293317086e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.515390246796504e-08}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.317274405383888e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.319900117822828e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.0002356486037648856}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.023248103304168e-07}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.733944065031746e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.170757064025455e-08}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.072282123260385e-07}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.136492607015195e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 7.540611166253686e-09}, {"name": "Fluorene", "categories": ["air"], "amount": 6.340370005987742e-08}, {"name": "Pyrene", "categories": ["air"], "amount": 1.489693829921784e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.586426681913503e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 1.631349575654322e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.750910801247326e-07}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 8.186768257097815e-06}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.447187570462221e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.683266154297907e-05}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.56814171253634e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 3.910337206983045e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.72845770920059e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3.017980058822788e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.392964575665403e-06}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.482463566307345e-07}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.482463566307345e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.482463566307345e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 1.800005530365967e-08}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.270965132618554e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 5.475489186926091e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.475489186926091e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.68001324123363e-06}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.604649759954404e-07}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.604649759954404e-07}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.994433971000697e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 6.904100488552844e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 9.247059606854275e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 9.247059606854275e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 4.323051960569407e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 4.323051960569407e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 5.25676679463365e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 5.25676679463365e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.10045882856477e-06}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.10045882856477e-06}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.271877000596303e-06}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.128144482277807e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.128144482277807e-07}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.213463018854875e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.213463018854875e-05}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.99893220957287e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.572897957726884e-06}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.532693380731927e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.532693380731927e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.365689585903067e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 6.329528656865639e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 6.329528656865639e-07}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.219103112365215e-05}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.59254506133548e-06}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 5.185841392896754e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 5.185841392896754e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 8.186768257097815e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.240830704261376e-06}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.240830704261376e-06}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.933001245358469e-07}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.138756788903267e-05}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 3.226840929334478e-06}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5.617973852047992e-07}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.98609244395069e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.021437295419715e-05}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 3.38781973718152e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 3.959834347313802e-07}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.06955463935264e-09}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.316621333548514e-07}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 9.835774382303201e-08}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.595972050549893e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.192936095744531e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 2.260416714415452e-07}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 3.215640671142427e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.868990699782283e-07}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 1.498981009243825e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.648174791572838e-08}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.0008512395590675332}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 9.584426882536254e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.705301486509108e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.030977784498545e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.116961768802979e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 2.836856103544123e-07}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 4.106090218171466e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 4.154990716553336e-06}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.64090010082572e-07}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.399814139209636e-05}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 9.042640413963346e-08}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.501788900034522e-05}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.331865725371847e-07}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.961110952175252e-06}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.429268504182158e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 6.143703152798936e-08}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 5.642471818862786e-08}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.891316381353075e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.896103550308627e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.896103550308627e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.288581154974675e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 3.84109937728943e-05}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1.907208464708583e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 8.462352362389337e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.320986861490519e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.341411800477886e-06}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.604649759954404e-07}, {"name": "Furfural", "categories": ["air"], "amount": 1.502187012899557e-06}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000278655965657986}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.0001054070920551702}, {"name": "Acrolein", "categories": ["water"], "amount": 6.665051256104808e-05}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.979396590106392e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 4.170034845461837e-06}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.079383503825776e-07}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 5.933871636014717e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.10703904259797e-05}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.700857114830215e-05}, {"name": "Deltamethrin", "categories": ["air"], "amount": 2.432114271407734e-06}, {"name": "Thiram", "categories": ["air"], "amount": 3.318833067587056e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 6.65621990575715e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.450336556007289e-06}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.301205936966423e-06}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 4.397306157507253e-06}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.524584877853752e-06}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.203689565370465e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.608249320505897e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 3.929501850601008e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 5.254464374508087e-08}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.439496017501393e-06}, {"name": "Triallate", "categories": ["air"], "amount": 1.994797541734314e-06}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.091220173205946e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.502432842368696e-06}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.471577940283187e-07}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.42728831149469e-09}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.471577940283187e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 1.471577940283187e-07}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.466253946095121e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 8.76621004275217e-07}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.737390532413698e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.548065464886148e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.683266154297907e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.56759273851638e-07}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 2.162947071866905e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 4.102888901350442e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.102888901350442e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.089080284497417e-07}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.178952670852749e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 4.116697518203466e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.087613472078912e-08}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.01707196669309744}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01652093401257881}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01679645035283812}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.01679645035283812}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.02902479391025908}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.01445506514078247}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.01445506514078247}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.01445506514078247}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.875018079860632e-10}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.02733165400536528}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.02733165400536528}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.002242224813352487}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.02733165400536528}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 2.394134592823284e-06}, {"name": "Fipronil", "categories": ["air"], "amount": 1.910879822549913e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6.603079099676502e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 6.628803962248291e-07}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 1.18788292144222e-06}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.542085219156014e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.542085219156014e-05}, {"name": "Thiodicarb", "categories": ["water"], "amount": 3.322385105029873e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.190174350805327e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 1.721769764963922e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.322385105029873e-06}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0003273415770833903}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0003273415770833903}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 5.255691825727848e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.231831213671491e-05}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.0001387743810178501}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.275032384402566e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.5357581337796e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.0001387743810178501}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.407920302864048e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.407920302864048e-06}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 9.916909830059196e-09}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.60170128255564e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.107716619993772e-08}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.137011181366541e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 5.81904376994444e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.749333623130484e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 5.81904376994444e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.139218513803301e-07}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 2.60541471313881e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 5.076479545965154e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 1.503426278564477e-06}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.503426278564477e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.980260479937435e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.136691225952927e-07}, {"name": "Abamectin", "categories": ["air"], "amount": 0.0001725827242074209}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.922422872468747e-07}, {"name": "Diuron", "categories": ["air"], "amount": 3.259613204005238e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.745137730238623e-06}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.21290900099841e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 2.908673679003343e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.481452941847803e-05}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 6.706953745214803e-05}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.012542568378856e-07}, {"name": "2,4-D", "categories": ["water"], "amount": 3.800292070574911e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.523251019689758e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.800292070574911e-06}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 9.451186537882574e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.0002222818707172169}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.200431623087333e-05}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 7.314690101647855e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.727606151626637e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.006454018811787e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 2.183509523736084e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.631114310854442e-07}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.005393071807381e-07}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.547858321258661e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.807959891916134e-05}, {"name": "Simazine", "categories": ["water"], "amount": 2.807959891916134e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23717950402929e-05}, {"name": "Carbendazim", "categories": ["water"], "amount": 1.507634127146642e-06}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.10931733055766e-07}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.042170789321885e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 1.507634127146642e-06}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2.183509523736084e-06}, {"name": "Acephate", "categories": ["water"], "amount": 0.0006929586731928581}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.0002788074209685239}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.0006929586731928581}, {"name": "Abamectin", "categories": ["water"], "amount": 0.0002700521066349231}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 0.0002700521066349231}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.727606151626637e-06}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 1.446893607321647e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 3.556735419273804e-06}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 3.556735419273804e-06}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001620187425254965}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.485087760053352e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.566963258352636e-06}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.052788519995491e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.052788519995491e-06}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 8.543925095773046e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.863180093933961e-08}, {"name": "Diuron", "categories": ["water"], "amount": 6.641210189646113e-06}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4.443117925008929e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.492764463068921e-06}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.61889504397069e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 2.079383503825776e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.738343513116037e-08}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.095367633065906e-08}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.531692830560872e-07}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.202054972942742e-07}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.700857114830215e-05}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 7.156099907291373e-08}, {"name": "Thiram", "categories": ["water"], "amount": 4.397306157507253e-06}, {"name": "Carboxin", "categories": ["water"], "amount": 1.091220173205946e-06}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 2.151319341991782e-07}, {"name": "Propiconazole", "categories": ["water"], "amount": 1.683266154297907e-05}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.434007646080272e-09}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.497246823486204e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.408833344831208e-06}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.177731145541553e-05}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.777631760132063e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 4.877774301563965e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000505990199856692}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 9.11101710044291e-06}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 5.194719296383719e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.130467916894167e-07}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.231718232604536e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.271877000596303e-06}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.637115130288959e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 5.636214459363166e-07}, {"name": "Tebuconazole", "categories": ["water"], "amount": 8.186768257097815e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 1.219103112365215e-05}, {"name": "Atrazine", "categories": ["water"], "amount": 4.323051960569407e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 1.694696047548674e-07}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.466373767111429e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.408833344831208e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 4.47052065944512e-07}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.766161270751631e-05}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 4.877774301563965e-05}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000505990199856692}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.219103112365215e-05}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.023976515844457e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.271877000596303e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.784835524267392e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.498539442643486e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.210676286439279e-05}, {"name": "EPTC", "categories": ["air"], "amount": 6.649389301397486e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.309719104482974e-06}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.156952398184586e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.317911034561375e-07}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.276352767088789e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.276352767088789e-06}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.441468942770363e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.136859738611991e-07}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.206020145097143e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.504975663962942e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 7.712931396797648e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.641569414103807e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.504975663962942e-06}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.748064230554958e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 7.176224143375262e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.156742828687684e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.95240352962132e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.95240352962132e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.416239543216468e-09}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 7.176224143375262e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 7.176224143375262e-08}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.488443545833287e-06}]}, {"unit": "kg CFC-11-Eq", "name": ["TRACI v2.1 no LT", "ozone depletion no LT", "ozone depletion potential (ODP) no LT"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.51}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 7.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 16}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.04}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.51}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.51}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.51}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 7.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 16}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 16}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 0.02}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.04}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "PM2.5-Eq", "name": ["TRACI v2.1 no LT", "particulate matter formation no LT", "particulate matter formation potential (PMFP) no LT"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.06666666666666667}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0003555555555555556}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.06111111111111111}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06666666666666667}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06666666666666667}, {"name": "Ammonia", "categories": ["air"], "amount": 0.06666666666666667}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.0003555555555555556}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06111111111111111}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06111111111111111}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.06111111111111111}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0003555555555555556}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.007222222222222222}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007222222222222222}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.007222222222222222}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.007222222222222222}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 0.2277777777777778}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2277777777777778}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2277777777777778}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 0.2277777777777778}]}, {"unit": "kg O3-Eq", "name": ["TRACI v2.1 no LT", "photochemical oxidant formation no LT", "maximum incremental reactivity (MIR) no LT"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 2.71774358974359}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 2.827076923076923}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.207435897435896}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.502284615384615}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.508666666666667}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 14.08402564102564}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.6142051282051282}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.161666666666667}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.88079487179487}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.53923076923077}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.6848717948717948}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.3559102564102564}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 7.450692307692309}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 11.37761538461539}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.7207282051282051}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.03776923076923}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 12.61210256410256}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.151030769230769}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.880410256410257}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 0.9558948717948718}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.2461333333333334}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.05562230769230769}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 19.11820512820513}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.02150871794871795}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.515538461538462}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.250128205128205}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.75671794871795}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.354641025641025}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.173097435897437}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.2806461538461539}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.2146461538461538}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.525694871794872}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 8.99502564102564}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.827435897435898}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.03084512820512822}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.6393897435897435}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.626125641025641}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.781384615384616}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.70951282051282}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.03916948717948718}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.9543666666666665}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.455846153846153}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0659951282051282}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 9.149615384615382}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.074415384615384}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.24385641025641}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 10.60682051282051}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 7.234589743589743}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.01871564102564103}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.04142923076923077}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.01437948717948718}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.03832076923076923}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.01437948717948718}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.6723358974358974}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.07200153846153845}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 11.47817948717949}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.697358974358974}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.481325641025641}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.05699948717948718}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.673564102564102}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.2872358974358974}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 6.809051282051282}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.750333333333334}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.05646230769230769}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.59535897435897}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 7.640128205128203}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.312930769230769}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.75648717948718}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 7.081051282051282}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.4894589743589743}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 2.497358974358974}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 11.66471794871795}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1.223110256410257}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.2939897435897437}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.732928205128205}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.7344487179487179}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 4.004717948717949}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.915102564102564}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 6.315641025641025}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 7.764282051282052}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71774358974359}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71774358974359}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 2.71774358974359}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.827076923076923}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.827076923076923}, {"name": "1-Pentanol", "categories": ["air"], "amount": 2.827076923076923}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.207435897435896}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.207435897435896}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.207435897435896}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.502284615384615}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.502284615384615}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.502284615384615}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.508666666666667}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.508666666666667}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.508666666666667}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.08402564102564}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.08402564102564}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 14.08402564102564}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.6142051282051282}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.6142051282051282}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.6142051282051282}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.161666666666667}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.161666666666667}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.161666666666667}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.88079487179487}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.88079487179487}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.88079487179487}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.53923076923077}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.53923076923077}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 6.53923076923077}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.6848717948717948}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.6848717948717948}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.6848717948717948}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3559102564102564}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3559102564102564}, {"name": "Acetone", "categories": ["air"], "amount": 0.3559102564102564}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.450692307692309}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.450692307692309}, {"name": "Acrolein", "categories": ["air"], "amount": 7.450692307692309}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.37761538461539}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.37761538461539}, {"name": "Acrylic acid", "categories": ["air"], "amount": 11.37761538461539}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7207282051282051}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7207282051282051}, {"name": "Benzene", "categories": ["air"], "amount": 0.7207282051282051}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.03776923076923}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.03776923076923}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.03776923076923}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.61210256410256}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.61210256410256}, {"name": "Butadiene", "categories": ["air"], "amount": 12.61210256410256}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.151030769230769}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.151030769230769}, {"name": "Butane", "categories": ["air"], "amount": 1.151030769230769}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.880410256410257}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.880410256410257}, {"name": "Butanol", "categories": ["air"], "amount": 2.880410256410257}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9558948717948718}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9558948717948718}, {"name": "Butyrolactone", "categories": ["air"], "amount": 0.9558948717948718}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2461333333333334}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2461333333333334}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.2461333333333334}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.05562230769230769}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.11820512820513}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.11820512820513}, {"name": "Chlorine", "categories": ["air"], "amount": 19.11820512820513}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02150871794871795}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02150871794871795}, {"name": "Chloroform", "categories": ["air"], "amount": 0.02150871794871795}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.515538461538462}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.515538461538462}, {"name": "Cumene", "categories": ["air"], "amount": 2.515538461538462}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.250128205128205}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.250128205128205}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.250128205128205}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.75671794871795}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.75671794871795}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.75671794871795}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.354641025641025}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.354641025641025}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.354641025641025}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.173097435897437}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.173097435897437}, {"name": "Dimethylamine", "categories": ["air"], "amount": 3.173097435897437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2806461538461539}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2806461538461539}, {"name": "Ethane", "categories": ["air"], "amount": 0.2806461538461539}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2146461538461538}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2146461538461538}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.2146461538461538}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.525694871794872}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.525694871794872}, {"name": "Ethanol", "categories": ["air"], "amount": 1.525694871794872}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.99502564102564}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.99502564102564}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.827435897435898}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.827435897435898}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.827435897435898}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03084512820512822}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03084512820512822}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.03084512820512822}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.6393897435897435}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.6393897435897435}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.626125641025641}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.626125641025641}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.626125641025641}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.781384615384616}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.781384615384616}, {"name": "Ethylamine", "categories": ["air"], "amount": 5.781384615384616}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.70951282051282}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.70951282051282}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 3.70951282051282}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03916948717948718}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03916948717948718}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.03916948717948718}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9543666666666665}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9543666666666665}, {"name": "Ethyne", "categories": ["air"], "amount": 0.9543666666666665}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.455846153846153}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.455846153846153}, {"name": "Formaldehyde", "categories": ["air"], "amount": 9.455846153846153}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0659951282051282}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0659951282051282}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0659951282051282}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.149615384615382}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.149615384615382}, {"name": "Furan", "categories": ["air"], "amount": 9.149615384615382}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.074415384615384}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.074415384615384}, {"name": "Heptane", "categories": ["air"], "amount": 1.074415384615384}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24385641025641}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24385641025641}, {"name": "Hexane", "categories": ["air"], "amount": 1.24385641025641}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.60682051282051}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.60682051282051}, {"name": "Isoprene", "categories": ["air"], "amount": 10.60682051282051}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.234589743589743}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.234589743589743}, {"name": "Isopropylamine", "categories": ["air"], "amount": 7.234589743589743}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01437948717948718}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01437948717948718}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.01437948717948718}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01871564102564103}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01871564102564103}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.01871564102564103}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04142923076923077}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04142923076923077}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.04142923076923077}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01437948717948718}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01437948717948718}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.01437948717948718}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03832076923076923}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03832076923076923}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.03832076923076923}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.6723358974358974}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.6723358974358974}, {"name": "Methanol", "categories": ["air"], "amount": 0.6723358974358974}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07200153846153845}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07200153846153845}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.07200153846153845}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.47817948717949}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.47817948717949}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 11.47817948717949}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.697358974358974}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.697358974358974}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.481325641025641}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.481325641025641}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.481325641025641}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05699948717948718}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05699948717948718}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.05699948717948718}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.673564102564102}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.673564102564102}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.673564102564102}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2872358974358974}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2872358974358974}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.2872358974358974}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.809051282051282}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.809051282051282}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 6.809051282051282}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.750333333333334}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.750333333333334}, {"name": "m-Xylene", "categories": ["air"], "amount": 9.750333333333334}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05646230769230769}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05646230769230769}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.05646230769230769}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59535897435897}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.59535897435897}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.59535897435897}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.640128205128203}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.640128205128203}, {"name": "o-Xylene", "categories": ["air"], "amount": 7.640128205128203}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.312930769230769}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.312930769230769}, {"name": "Pentane", "categories": ["air"], "amount": 1.312930769230769}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.75648717948718}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.75648717948718}, {"name": "Phenol", "categories": ["air"], "amount": 2.75648717948718}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.081051282051282}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.081051282051282}, {"name": "Propanal", "categories": ["air"], "amount": 7.081051282051282}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.4894589743589743}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.4894589743589743}, {"name": "Propane", "categories": ["air"], "amount": 0.4894589743589743}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.497358974358974}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.497358974358974}, {"name": "Propanol", "categories": ["air"], "amount": 2.497358974358974}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.66471794871795}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.66471794871795}, {"name": "Propene", "categories": ["air"], "amount": 11.66471794871795}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.223110256410257}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.223110256410257}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.223110256410257}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2939897435897437}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2939897435897437}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.2939897435897437}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.732928205128205}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.732928205128205}, {"name": "Styrene", "categories": ["air"], "amount": 1.732928205128205}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7344487179487179}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7344487179487179}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.7344487179487179}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.004717948717949}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.004717948717949}, {"name": "Toluene", "categories": ["air"], "amount": 4.004717948717949}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.915102564102564}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.915102564102564}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.915102564102564}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.315641025641025}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.315641025641025}, {"name": "Trimethylamine", "categories": ["air"], "amount": 6.315641025641025}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.764282051282052}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.764282051282052}, {"name": "Xylene", "categories": ["air"], "amount": 7.764282051282052}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.250128205128205}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01437948717948718}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01437948717948718}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.05562230769230769}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.01437948717948718}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05562230769230769}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.01437948717948718}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 1.260882051282051}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.236333333333333}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.236333333333333}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.236333333333333}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.236333333333333}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8345769230769228}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.8345769230769228}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.8345769230769228}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8345769230769228}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8067717948717951}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8067717948717951}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.8067717948717951}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.8067717948717951}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.6393897435897435}, {"name": "Methylamine", "categories": ["air"], "amount": 7.697358974358974}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.05905051282051282}, {"name": "Nitric oxide", "categories": ["air"], "amount": 24.79358974358974}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.4244974358974359}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.230015384615385}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 2.392307692307691}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.411179487179487}, {"name": "Ethylene", "categories": ["air"], "amount": 8.99502564102564}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.344487179487179}, {"name": "Butene", "categories": ["air"], "amount": 9.726589743589745}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.726589743589745}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.726589743589745}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 9.726589743589745}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.59535897435897}, {"name": "EPTC", "categories": ["air"], "amount": 1.665346153846154}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.665346153846154}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.1783651282051282}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1783651282051282}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1783651282051282}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.1783651282051282}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 24.79358974358974}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.79358974358974}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.79358974358974}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 24.79358974358974}]}, {"unit": "kg SO2-Eq", "name": ["TRACI v2.1", "acidification", "acidification potential (AP)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.88}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 0.88}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.6}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 1.88}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 0.98}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 0.65}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 1.88}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "Ammonia", "categories": ["air"], "amount": 1.88}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.88}, {"name": "Hydrochloric acid", "categories": ["air", "low population density, long-term"], "amount": 0.88}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.88}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6}, {"name": "Hydrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 1.6}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.6}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["air", "low population density, long-term"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.88}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 1.88}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.98}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 0.98}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.98}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 0.98}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.65}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 0.65}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.8}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.51}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 0.88}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.7}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.51}]}, {"unit": "kg CO2-Eq", "name": ["TRACI v2.1", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 31}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1430}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 146}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 4470}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 725}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 124}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2310}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 77}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 609}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7370}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3500}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 5}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1890}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7140}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1810}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 14400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.7}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 10900}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 151}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 675}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 25}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 13}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 25}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1400}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7390}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 4750}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14800}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17200}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 22800}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 31}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 31}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 31}, {"name": "Chloroform", "categories": ["air"], "amount": 31}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1430}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1430}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1430}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1430}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 146}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 146}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 146}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 146}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4470}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 4470}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4470}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 4470}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6130}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 725}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 725}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 725}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 725}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 124}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 124}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 124}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2310}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2310}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2310}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2310}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 77}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 77}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 77}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 77}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 609}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 609}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 609}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 609}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7370}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7370}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7370}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7370}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12200}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12200}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3500}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3500}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 25}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 25}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 25}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 5}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1890}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1890}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1890}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1890}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7140}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7140}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7140}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7140}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1810}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1810}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1810}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1810}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 14400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 14400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 14400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 8.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.7}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.7}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 10900}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 10900}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10900}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 10900}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 151}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 151}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 151}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 151}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 675}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 675}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 675}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 675}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 25}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 25}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25}, {"name": "Methane, fossil", "categories": ["air"], "amount": 25}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 13}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 13}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1400}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1400}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1400}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1400}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7390}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7390}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7390}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7390}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 4750}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 4750}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4750}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4750}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14800}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14800}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17200}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17200}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17200}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 22800}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 22800}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22800}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 22800}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9160}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 25}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 25}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 25}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 25}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 1}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 10000}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 10000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6130}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6130}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6130}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 10000}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6130}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}]}, {"unit": "CTUe", "name": ["TRACI v2.1", "ecotoxicity: freshwater", "ecotoxicity: freshwater"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 0.8775848512654951}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.2138324120021953}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 181.9075712591964}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.2015005445608996}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.08050924933313827}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.254007818655599}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 14.57226883990429}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.02057192429268348}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 44.86884533105171}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3.463136417313835}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 252.348005989373}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.2884053887747148}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.789914178245758}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 10.51595427132834}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 7610.914674467282}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.07926608118214395}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.7429286993574472}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 133.5325887123976}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 8495.54699383616}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 104.6451854713886}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 14.54163513494238}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 354.9073927687746}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9281.126560757553}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 11852.49487695412}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 589.3948166506241}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 5287.316291691801}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.2768527285333682}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.007767568424149}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 30.64354091462214}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 76174.05877769532}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 49.33836188247038}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 11406.42648689972}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 44920.27412758143}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 819.7509007338075}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 607.2172724431911}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 21.12348480949339}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 358.5619854441121}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 30.75838944840877}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 49.52827455565405}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.142499093507869}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.06418485563858191}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 393.2620781735379}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.02960079052028783}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 626.6336235602134}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 342.0626108851369}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 170.4959917947524}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 200.4375969397927}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1612.809976002705}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 740.7226250635325}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5733.526330050867}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 73.99025029637986}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 1.099457188718305}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 869.047924983249}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 946.6271789803518}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 4.530428514254813}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.1103140502570142}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 28.37379925546212}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 30.31622064749225}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3921.689844317012}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 9712.291690087604}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 10008.3409620644}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 3071.942564795764}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 54554.08444179271}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 243.1041592084075}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 21581.81316640977}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.307478615380807}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 14691.33243836168}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1108.358159155425}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 45.5357521343301}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 758.7943034284156}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.282103029633416}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 86.41294637134375}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 57823.87667902809}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1727.7527485528}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 4.726464448796084}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 517.1464161788688}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 41802.21762058009}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 1294.592667971015}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 8.478125631943172}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 585.8376259220464}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 479.7232752068333}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 269.8800361636692}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 8.872703308182082}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1705.944379403221}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.02444359396289091}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 23090.11676949549}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 55247.57233198472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.09072745464528173}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 21165.24040867214}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 4817.156768616905}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.0005956516966396799}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.139142623596091}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 1274.349804666132}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.43105910115}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 242.1677132175915}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 280.3192620671686}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1409.81393453216}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1092.537654248142}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6021.469169790082}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 476.0762071251128}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 295.5913486073072}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 285.0918569313737}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 9193.9391566954}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1534.677339349654}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.001810619293954376}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.1144243155943202}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.05140551479732774}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1921.726540567452}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 169738.0330996828}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 5.522477872065067}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 44.03938064652566}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 1747.275462019705}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 20486.62834899995}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 953.8311664072469}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3621.596791466811}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 14.03134667561534}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 24.1739950254825}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.2448524808191659}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 2567.019241103498}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 142941.0086394065}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.4070434169266591}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 147.2625253918797}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 7450.357907441243}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 365.7065026003539}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4019.340356854712}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 2172.993614418999}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 49.82093402571822}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4538.020496175222}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 23.96460189472988}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 19.07758889487456}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 97.07350922464629}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 112006.4298371197}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 4551.225016771204}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1.195316447320791}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.2049979606873083}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.5761458960501793}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.1517133038329646}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.3648712141456175}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 1911.479851134369}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.1544202484527623}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.7251438323523012}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.02507849558456108}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 560.0652844546449}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 202.5805655846324}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 17345.46423299769}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.1131699171131654}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.2314499196529845}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 15.72316015661396}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.831131324712536}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.007830674545406}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1449.887243649723}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 30.6061907842425}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 199.3503595055195}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 384.0826700760281}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 211651.2754214526}, {"name": "Fenpropimorph", "categories": ["soil", "agricultural"], "amount": 9.828730914507553}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 5875.232765914128}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 813.4815314949818}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 32315.10687636696}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 164.6428088934566}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 264.3378908849616}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 2660.182571676538}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 6137.049375526823}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 10219.64558731738}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 10054.75335824089}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8386.99402138463}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1116.704605603812}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 93.87049959879023}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 21.61353929202834}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 27.62498707813234}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.692326330663305}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.204408879684776}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 10.74402720120148}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.002780419102079553}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 16.82211773606099}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 2834.661658070369}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 103.9440772563542}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 62492.71879037761}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.689789773020432e-05}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000212391668063849}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 26679.15205781307}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 97.81784007514993}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 1035.78217843629}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 210.7204230986387}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1044.859483343018}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.492463680746446e-05}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.1837665662054698}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 9461.352075023213}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 161.2421325372742}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 90.09562197378223}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 133638.4039148149}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 173.6636086815864}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 20981.64182489484}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 11123.30312164782}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1966.815667934147}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 54.97824943249207}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2289.781128695832}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 194.2419717336017}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 266.8531151611314}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 255.2536459219005}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 124.972879067274}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.03475883743778153}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 12065.86764199895}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 225.0913468971116}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 507.8834624303366}, {"name": "Metaldehyde", "categories": ["soil", "agricultural"], "amount": 49.03887088689834}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 23.16387391030672}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5393.370771034089}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 220.3742730046184}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 458.7787841928451}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2770.650280769631}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 11.64994372654887}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.09701543553922609}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.06319133789530491}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.066749126374071}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.2256583397003862}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 14094.53501477213}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 5304.732009017731}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.576607505371597}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.627629520066924}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 0.4648226458486904}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.05772829211702672}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.5293089457355553}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.241083646031596}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1915.770898287329}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6441.702873071918}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 745.4217086790785}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 117.3470372332802}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1267.945098912815}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 4.142297319983587}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 2202.555054811937}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 17.36188717583213}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.02048579141810639}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 5483.033142421826}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 126.204653290908}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 6082.160616288364}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 215.530846628909}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 10.95063499429621}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 831.6182398811038}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 27.44900717314156}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 129.4728531083732}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 21.85550567506843}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5616.262910845849}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1425.345429804084}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 89.98044993017646}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.03214225332310074}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 156.2309363343042}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 83124.28654811245}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2932.025785932296}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.01405462319777067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 781.1036719132035}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 248.7435612489268}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 23.64350250995657}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1194.236920982726}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4549.47374020951}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6039.639430136761}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 477399.9008965495}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5658.102396456461}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6318.72190294688}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 167.1412846504503}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 30.15181210211107}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1116.900694905618}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 1357.496732517177}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 349.5500940362426}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 19162.55653687737}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 42.7335814184926}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 453001.2590687819}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 24118.17780320264}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 498.1355562687057}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 6.27104198098271}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.3756669264925559}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 60375.4789920879}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.09329253568558199}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 15.0525551268929}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 310.2595888492157}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 285.0691571123865}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 10.74667451392387}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.09530603937019211}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.304292415914342}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 196.1001637111407}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3507.530003092889}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 11.64309685739373}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.089616392083714}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 35.50249751350101}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 153.002197788183}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 145.5141013045667}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 19.51291094687104}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 937.4124331458914}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3701.972218600403}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 2964.10862813788}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 47.18626876611939}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 80059.48955413517}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 194088.6647216774}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 12634.63998176688}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.5344892610003127}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.01989143055500136}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 5256.022376072727}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 1581.689868003643}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 79.02918388573273}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 449.8637672191722}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.02728675157938322}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1.181066780750985}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 4553.227967332995}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 449.513177271165}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3383.333752775135}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 41283.75821110152}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 4664.853112587411}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 53712.03118447676}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 53644.78974286943}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 14085.29382753462}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 862.9181673768969}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 41325.57198507784}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1025.563114206294}, {"name": "Thiocyanate", "categories": ["water", "ground-"], "amount": 1341.206521620715}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 15803.20422885043}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1347.130200589376}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 2978.232970570632}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.01312671903662141}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 0.189790201702494}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4220.835040030409}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 319.761373813401}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 6056.636505875188}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 175.1738657117861}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 38.44382376434176}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 52549.72510443091}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1315.304465367724}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 41.04517950738141}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.3873282178246341}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 592.5107503648138}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 14604.33432925477}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.02195787684501589}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 163.5021226398655}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 10.24292353353621}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 46228.73229960291}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 112885.975123505}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1059.06456811332}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.01127378886742958}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 16684.36401546222}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 38584.58479284478}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8353349461994352}, {"name": "1,4-Butanediol", "categories": ["air", "low population density, long-term"], "amount": 0.8564598987324652}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8564598987324652}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 0.8564598987324652}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2105961714821809}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.2122142917421881}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2122142917421881}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.2122142917421881}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1987837354452568}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.2001421400030782}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2001421400030782}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.2001421400030782}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07940962035659084}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.07995943484486456}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07995943484486456}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.07995943484486456}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2515462305914359}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.2527770246235175}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2527770246235175}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.2527770246235175}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02097858564911251}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.02077525497089799}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02077525497089799}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.02077525497089799}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.596102855224183}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 3.029619636269009}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.029619636269009}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3.029619636269009}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2964306179555203}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.2924180033651176}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2924180033651176}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.2924180033651176}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.24915716949021}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 10.38255572040928}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.38255572040928}, {"name": "Acetic acid", "categories": ["air"], "amount": 10.38255572040928}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07903469686530108}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.07915038902372251}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07915038902372251}, {"name": "Acetone", "categories": ["air"], "amount": 0.07915038902372251}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7405705157733234}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.7417496075653853}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7417496075653853}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.7417496075653853}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 108.5753066810495}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 106.610246076219}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 106.610246076219}, {"name": "Acrolein", "categories": ["air"], "amount": 106.610246076219}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.25668631068422}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 13.8991607228133}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.8991607228133}, {"name": "Acrylic acid", "categories": ["air"], "amount": 13.8991607228133}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.581812659746831}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 2.29479011408549}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29479011408549}, {"name": "Aniline", "categories": ["air"], "amount": 2.29479011408549}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 76801.41673494274}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 76487.73775631902}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 76487.73775631902}, {"name": "Antimony ion", "categories": ["air"], "amount": 76487.73775631902}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 612.0648333104592}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 609.6410528768251}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 609.6410528768251}, {"name": "Barium II", "categories": ["air"], "amount": 609.6410528768251}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.150215968593328}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.146357531050598}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.146357531050598}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 3.146357531050598}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06381234348924905}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.06399859956391549}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06399859956391549}, {"name": "Benzene", "categories": ["air"], "amount": 0.06399859956391549}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02715051504412197}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.0283756527822049}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0283756527822049}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0283756527822049}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 621.9127738018589}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 624.2731986810361}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 624.2731986810361}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 624.2731986810361}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 341.0291147599081}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 341.5458628225225}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 341.5458628225225}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 341.5458628225225}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.53308030257735}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 107.0145360486649}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 107.0145360486649}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 107.0145360486649}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1631.165194036358}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 1621.987585019532}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1621.987585019532}, {"name": "Beryllium II", "categories": ["air"], "amount": 1621.987585019532}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1079422117109683}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.1091281309839912}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1091281309839912}, {"name": "Butanol", "categories": ["air"], "amount": 0.1091281309839912}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.51755226171699}, {"name": "Butyrolactone", "categories": ["air", "low population density, long-term"], "amount": 29.91688645460462}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.91688645460462}, {"name": "Butyrolactone", "categories": ["air"], "amount": 29.91688645460462}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3955.3597378302}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 3938.524791073606}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3938.524791073606}, {"name": "Cadmium II", "categories": ["air"], "amount": 3938.524791073606}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.306544061219061}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.307011338299934}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.307011338299934}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.307011338299934}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14212.49001792392}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 14451.9112281428}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14451.9112281428}, {"name": "Chloramine", "categories": ["air"], "amount": 14451.9112281428}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 749.484412123745}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 754.1393577760803}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 754.1393577760803}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 754.1393577760803}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2817944482566569}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.2819487389450365}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2819487389450365}, {"name": "Chloroform", "categories": ["air"], "amount": 0.2819487389450365}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.38751997406055}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 85.40023317270214}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 85.40023317270214}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 85.40023317270214}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 521.3592427382235}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 519.2528294585461}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 519.2528294585461}, {"name": "Chromium III", "categories": ["air"], "amount": 519.2528294585461}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 42142.76445969223}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 41972.49104013616}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 41972.49104013616}, {"name": "Chromium VI", "categories": ["air"], "amount": 41972.49104013616}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1722.64845735768}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 1714.296418380451}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1714.296418380451}, {"name": "Cobalt II", "categories": ["air"], "amount": 1714.296418380451}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 23320.1199541408}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 23205.11836181814}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23205.11836181814}, {"name": "Copper ion", "categories": ["air"], "amount": 23205.11836181814}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07407715125994449}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.08240230295261311}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.08240230295261311}, {"name": "Cumene", "categories": ["air"], "amount": 0.08240230295261311}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0004053534730581415}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.0005005025848489107}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0005005025848489107}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.0005005025848489107}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001828930352428226}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.001819774823191301}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001819774823191301}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.001819774823191301}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1167804826184969}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.1156023991064085}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1156023991064085}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.1156023991064085}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04687070229168087}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 0.0491381085445043}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0491381085445043}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.0491381085445043}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.58843899352387}, {"name": "Dimethyl malonate", "categories": ["air", "low population density, long-term"], "amount": 23.88121700950319}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.88121700950319}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 23.88121700950319}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2509904810898764}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.2479214809545211}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2479214809545211}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.2479214809545211}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 106410.8280586294}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 124675.918349018}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 124675.918349018}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 124675.918349018}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.4122155889058901}, {"name": "Dipropylamine", "categories": ["air", "low population density, long-term"], "amount": 0.4096295029162746}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.4096295029162746}, {"name": "Dipropylamine", "categories": ["air"], "amount": 0.4096295029162746}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.00739236833539}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 19.04249063160497}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.04249063160497}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 19.04249063160497}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.123718029785784}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1.159517238553287}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.159517238553287}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.159517238553287}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2049083929924067}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.2049531768398575}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2049531768398575}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.2049531768398575}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5752241915552043}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.5756850438026918}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5756850438026918}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.5756850438026918}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1515465576547518}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.1516299307438582}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1516299307438582}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.1516299307438582}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3644040113605773}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.3646376127530974}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3646376127530974}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.3646376127530974}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1512219067684273}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.1528210776105948}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1528210776105948}, {"name": "Ethanol", "categories": ["air"], "amount": 0.1528210776105948}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.721533745751081}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.7233387890516911}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7233387890516911}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.7233387890516911}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02461940407511504}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.02484894982983806}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02484894982983806}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1132683885527904}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.1132191528329779}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1132191528329779}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.1132191528329779}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2283644888594898}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.2299072042562372}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2299072042562372}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.2299072042562372}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.84161932370827}, {"name": "Ethylene diamine", "categories": ["air", "low population density, long-term"], "amount": 14.28238974016111}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.28238974016111}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 14.28238974016111}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.647116009740433}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.739123667226484}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.739123667226484}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.739123667226484}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.006214759280132}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.007022716912769}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.007022716912769}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.007022716912769}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.98236362523197}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 26.80367535168215}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.80367535168215}, {"name": "Formaldehyde", "categories": ["air"], "amount": 26.80367535168215}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.670056297578443}, {"name": "Formamide", "categories": ["air", "low population density, long-term"], "amount": 1.681191314120874}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.681191314120874}, {"name": "Formamide", "categories": ["air"], "amount": 1.681191314120874}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.96030446924476}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 9.082356674464767}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.082356674464767}, {"name": "Formic acid", "categories": ["air"], "amount": 9.082356674464767}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00233100240176665}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 0.002555710751923102}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.002555710751923102}, {"name": "Furan", "categories": ["air"], "amount": 0.002555710751923102}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37442513185235e-06}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1.013616143102833e-05}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.013616143102833e-05}, {"name": "Heptane", "categories": ["air"], "amount": 1.013616143102833e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.764006726917132e-05}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.0001350158676665101}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001350158676665101}, {"name": "Hexane", "categories": ["air"], "amount": 0.0001350158676665101}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.889288509229414e-05}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 5.69087609498793e-05}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.69087609498793e-05}, {"name": "Isoprene", "categories": ["air"], "amount": 5.69087609498793e-05}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1913796782043254}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 0.1875731222048976}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1875731222048976}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.1875731222048976}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 176.0628890390114}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 174.8632488602989}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 174.8632488602989}, {"name": "Lead II", "categories": ["air"], "amount": 174.8632488602989}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 12297.33466876407}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 12181.60115538151}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12181.60115538151}, {"name": "Mercury II", "categories": ["air"], "amount": 12181.60115538151}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.63811189353482}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 11.64402781004184}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.64402781004184}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 11.64402781004184}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.09691431191311192}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.096964873726169}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.096964873726169}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.096964873726169}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06313117662421644}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.06316125725976068}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06316125725976068}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.06316125725976068}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.066550640300604}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.066649883337338}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.066649883337338}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.066649883337338}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2222578820703635}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.2239581108853748}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2239581108853748}, {"name": "Methanol", "categories": ["air"], "amount": 0.2239581108853748}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5758394729395236}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.5762234891555603}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5762234891555603}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.5762234891555603}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.666858460762592}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 2.647243990414758}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.647243990414758}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.647243990414758}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.46155176678081}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 0.4631872063147502}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.4631872063147502}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05768350587806599}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.05770589899754636}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05770589899754636}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.05770589899754636}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5287208171662259}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.5290148814508906}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5290148814508906}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.5290148814508906}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.149514801273819}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 2.195299223652707}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.195299223652707}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.195299223652707}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 118.3029799473779}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 117.825008590329}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 117.825008590329}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 117.825008590329}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.85521540325064}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 3.998756361617114}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.998756361617114}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.998756361617114}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01644680338878204}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.01846629740344422}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01846629740344422}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.01846629740344422}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6137.384704776678}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 6109.772660532521}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6109.772660532521}, {"name": "Nickel II", "categories": ["air"], "amount": 6109.772660532521}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.87398543741971}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 10.91231021585796}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.91231021585796}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 10.91231021585796}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.0403857669706}, {"name": "o-Nitrotoluene", "categories": ["air", "low population density, long-term"], "amount": 27.24469647005608}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.24469647005608}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 27.24469647005608}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02856291329365311}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.03035258330837692}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03035258330837692}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.03035258330837692}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.005981654617209129}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.0100181389074899}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0100181389074899}, {"name": "Pentane", "categories": ["air"], "amount": 0.0100181389074899}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.56100072833934}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 19.60225161914795}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.60225161914795}, {"name": "Phenol", "categories": ["air"], "amount": 19.60225161914795}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1135.06293035613}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1164.649925669428}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1164.649925669428}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1164.649925669428}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3414.137148231604}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3981.805444220557}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3981.805444220557}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3981.805444220557}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3883891614083377}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.3820280439504468}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3820280439504468}, {"name": "Propanal", "categories": ["air"], "amount": 0.3820280439504468}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.09173941151547893}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.09251597360053046}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.09251597360053046}, {"name": "Propanol", "categories": ["air"], "amount": 0.09251597360053046}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.32276953922103}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 10.53472202657245}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.53472202657245}, {"name": "Propionic acid", "categories": ["air"], "amount": 10.53472202657245}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0936882576844585}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0944971485273253}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0944971485273253}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0944971485273253}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.302369905869175}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.303331160891758}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.303331160891758}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.303331160891758}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 2989.82139002033}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 2976.965009079105}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2976.965009079105}, {"name": "Selenium IV", "categories": ["air"], "amount": 2976.965009079105}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 80815.45971238834}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 80437.47463326177}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80437.47463326177}, {"name": "Silver I", "categories": ["air"], "amount": 80437.47463326177}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5220678704830352}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 0.528278565741674}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.528278565741674}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.528278565741674}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01113863650583113}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.01551503353041624}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01551503353041624}, {"name": "Styrene", "categories": ["air"], "amount": 0.01551503353041624}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 77.99165987461768}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 78.51042188017522}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 78.51042188017522}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 78.51042188017522}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02733696432541367}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.02731185795239844}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02731185795239844}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.02731185795239844}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.187538026540893}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 1.184302403645939}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.184302403645939}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1.184302403645939}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 14197.91850382319}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 14141.60616567891}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14141.60616567891}, {"name": "Thallium I", "categories": ["air"], "amount": 14141.60616567891}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1364.56823186714}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 1355.849216228258}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1355.849216228258}, {"name": "Tin ion", "categories": ["air"], "amount": 1355.849216228258}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01242112714578335}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.01277392309120238}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01277392309120238}, {"name": "Toluene", "categories": ["air"], "amount": 0.01277392309120238}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1862689954431346}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 0.1880295985728143}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1880295985728143}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 0.1880295985728143}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02412878618071882}, {"name": "Trimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.02304333151286735}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02304333151286735}, {"name": "Trimethylamine", "categories": ["air"], "amount": 0.02304333151286735}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 46651.9104446765}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 46440.3213721397}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46440.3213721397}, {"name": "Vanadium V", "categories": ["air"], "amount": 46440.3213721397}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01001834721027202}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0106460680388508}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0106460680388508}, {"name": "Xylene", "categories": ["air"], "amount": 0.0106460680388508}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16872.47176386005}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 16778.41788966113}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16778.41788966113}, {"name": "Zinc II", "categories": ["air"], "amount": 16778.41788966113}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 95791.0334096898}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 95791.0334096898}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 95791.0334096898}, {"name": "Antimony ion", "categories": ["soil"], "amount": 95791.0334096898}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 763.1005379036917}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 763.1005379036917}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 763.1005379036917}, {"name": "Barium II", "categories": ["soil"], "amount": 763.1005379036917}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2044.440961644406}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2044.440961644406}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2044.440961644406}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2044.440961644406}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 4936.045752744441}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4936.045752744441}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4936.045752744441}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4936.045752744441}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 650.1791381610516}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 650.1791381610516}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 650.1791381610516}, {"name": "Chromium III", "categories": ["soil"], "amount": 650.1791381610516}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 52555.16047834999}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 52555.16047834999}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 52555.16047834999}, {"name": "Chromium VI", "categories": ["soil"], "amount": 52555.16047834999}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2153.790769076094}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2153.790769076094}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2153.790769076094}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2153.790769076094}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 29164.3719150002}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 29164.3719150002}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 29164.3719150002}, {"name": "Copper ion", "categories": ["soil"], "amount": 29164.3719150002}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 103.9440772563541}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 221.4977918869544}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 221.4977918869544}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 221.4977918869544}, {"name": "Lead II", "categories": ["soil"], "amount": 221.4977918869544}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 15597.06514527675}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 15597.06514527675}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 15597.06514527675}, {"name": "Mercury II", "categories": ["soil"], "amount": 15597.06514527675}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 147.5338595951268}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 147.5338595951268}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 147.5338595951268}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 147.5338595951268}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 7664.978129157914}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 7664.978129157914}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 7664.978129157914}, {"name": "Nickel II", "categories": ["soil"], "amount": 7664.978129157914}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 3731.258616355279}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 3731.258616355279}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 3731.258616355279}, {"name": "Selenium IV", "categories": ["soil"], "amount": 3731.258616355279}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 100987.4333791871}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 100987.4333791871}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 100987.4333791871}, {"name": "Silver I", "categories": ["soil"], "amount": 100987.4333791871}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 92.49135491050366}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 17701.23878238672}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 17701.23878238672}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 17701.23878238672}, {"name": "Thallium I", "categories": ["soil"], "amount": 17701.23878238672}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1714.419845085274}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1714.419845085274}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1714.419845085274}, {"name": "Tin ion", "categories": ["soil"], "amount": 1714.419845085274}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 58269.36995740739}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 58269.36995740739}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 58269.36995740739}, {"name": "Vanadium V", "categories": ["soil"], "amount": 58269.36995740739}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 21139.016907883}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 21139.016907883}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 21139.016907883}, {"name": "Zinc II", "categories": ["soil"], "amount": 21139.016907883}, {"name": "1,4-Butanediol", "categories": ["water", "ground-"], "amount": 7.309331982177244}, {"name": "1,4-Butanediol", "categories": ["water", "ground-, long-term"], "amount": 7.309331982177244}, {"name": "1,4-Butanediol", "categories": ["water", "ocean"], "amount": 1.248882374560439e-06}, {"name": "1,4-Butanediol", "categories": ["water", "surface water"], "amount": 7.309331982177244}, {"name": "1,4-Butanediol", "categories": ["water"], "amount": 7.309331982177244}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 15.56803807841913}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 15.56803807841913}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.002520549204345182}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 15.56803807841913}, {"name": "1-Pentanol", "categories": ["water"], "amount": 15.56803807841913}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 8.538837125972611}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 8.538837125972611}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00335253332002659}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.538837125972611}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.538837125972611}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 2.463416524643162}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 2.463416524643162}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.001220970724126882}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.463416524643162}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.463416524643162}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 21.41549990781206}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-, long-term"], "amount": 21.41549990781206}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.005394488871534738}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 21.41549990781206}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 21.41549990781206}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 14.57226883990429}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.004742775832089053}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 14.57226883990429}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 14.57226883990429}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 6.025672019133131}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 6.025672019133131}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.001430914704633103}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 6.025672019133131}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 6.025672019133131}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 4115.812246738143}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 4115.812246738143}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.3650804722641475}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 4115.812246738143}, {"name": "Acenaphthene", "categories": ["water"], "amount": 4115.812246738143}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 47.17247193643288}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 47.17247193643288}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.01970473668361181}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 47.17247193643288}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 47.17247193643288}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 49.8391256657786}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 49.8391256657786}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.001346583925108664}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 49.8391256657786}, {"name": "Acetic acid", "categories": ["water"], "amount": 49.8391256657786}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 1.213309066286874}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 1.213309066286874}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00354663492385342}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.213309066286874}, {"name": "Acetone", "categories": ["water"], "amount": 1.213309066286874}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.85687366902346}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 9.85687366902346}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.03638707634094205}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.85687366902346}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.85687366902346}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 133.5325887123976}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.4281565226924716}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 133.5325887123976}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 133.5325887123976}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 354.9073927687746}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.3291367968857636}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 354.9073927687746}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 354.9073927687746}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.2768527285333682}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.2768527285333682}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.2768527285333682}, {"name": "Ammonium", "categories": ["water"], "amount": 0.2768527285333682}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 630.6490501003661}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 630.6490501003661}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.005920846167889754}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 630.6490501003661}, {"name": "Aniline", "categories": ["water"], "amount": 630.6490501003661}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 190273.569646014}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 190273.569646014}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.413485288877518e-15}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 190273.569646014}, {"name": "Antimony ion", "categories": ["water"], "amount": 190273.569646014}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1526.106910531414}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 1526.106910531414}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.44533885720615e-17}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1526.106910531414}, {"name": "Barium II", "categories": ["water"], "amount": 1526.106910531414}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 65.98305934698593}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 65.98305934698593}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.01300464851461105}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 65.98305934698593}, {"name": "Benzene", "categories": ["water"], "amount": 65.98305934698593}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 393.2620781735379}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.07512966638299223}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 393.2620781735379}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 393.2620781735379}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 174.8943287390434}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 174.8943287390434}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.002464844829783555}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 174.8943287390434}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 174.8943287390434}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 200.4375969397927}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.004034926712582468}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 200.4375969397927}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 200.4375969397927}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 3719.353478727086}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 3719.353478727086}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.698940162778656e-17}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3719.353478727086}, {"name": "Beryllium II", "categories": ["water"], "amount": 3719.353478727086}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-, long-term"], "amount": 1.099457188718305}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ocean"], "amount": 1.099457188718305}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 1.099457188718305}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 1.099457188718305}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.515563794986257}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 5.515563794986257}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.0009907214728192108}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.515563794986257}, {"name": "Butanol", "categories": ["water"], "amount": 5.515563794986257}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 28.37379925546212}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.006307298171177202}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 28.37379925546212}, {"name": "Butyl acetate", "categories": ["water"], "amount": 28.37379925546212}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 154.6464492362184}, {"name": "Butyrolactone", "categories": ["water", "ground-, long-term"], "amount": 154.6464492362184}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.003074540289545074}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 154.6464492362184}, {"name": "Butyrolactone", "categories": ["water"], "amount": 154.6464492362184}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 9712.291690087604}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.269701024482803e-17}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9712.291690087604}, {"name": "Cadmium II", "categories": ["water"], "amount": 9712.291690087604}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 153.423085686842}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 153.423085686842}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.2301713115378994}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 153.423085686842}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 153.423085686842}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 71953.13213721043}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 71953.13213721043}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.639684148519675e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 71953.13213721043}, {"name": "Chloramine", "categories": ["water"], "amount": 71953.13213721043}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 2928.070246727622}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 2928.070246727622}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 0.01331058556154036}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 2928.070246727622}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 2928.070246727622}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 41.17887996234599}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 41.17887996234599}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.05346887318892965}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 41.17887996234599}, {"name": "Chloroform", "categories": ["water"], "amount": 41.17887996234599}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 553.8045238771879}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 553.8045238771879}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.1633434498419037}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 553.8045238771879}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 553.8045238771879}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 104644.2763631995}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 104644.2763631995}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.321069755873469e-16}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 104644.2763631995}, {"name": "Chromium VI", "categories": ["water"], "amount": 104644.2763631995}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 1294.592667971015}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.6999035997213e-18}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1294.592667971015}, {"name": "Chromium III", "categories": ["water"], "amount": 1294.592667971015}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 4099.422993937983}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 4099.422993937983}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 9.294818137998669e-18}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4099.422993937983}, {"name": "Cobalt II", "categories": ["water"], "amount": 4099.422993937983}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-, long-term"], "amount": 0.02444359396289091}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 0.02444359396289091}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.02444359396289091}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 0.02444359396289091}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 55247.57233198472}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.032014489240348e-16}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 55247.57233198472}, {"name": "Copper ion", "categories": ["water"], "amount": 55247.57233198472}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 665.07018807497}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 665.07018807497}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00654705716437468}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 665.07018807497}, {"name": "Cumene", "categories": ["water"], "amount": 665.07018807497}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 48.68874262240333}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 48.68874262240333}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.901575437806032e-05}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 48.68874262240333}, {"name": "Cyclohexane", "categories": ["water"], "amount": 48.68874262240333}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 65.4673526161865}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 65.4673526161865}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.004052797913288156}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 65.4673526161865}, {"name": "Diethylamine", "categories": ["water"], "amount": 65.4673526161865}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 0.7571023925387067}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.7571023925387067}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.076379285437717e-08}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 0.7571023925387067}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 0.7571023925387067}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 44.03938064652566}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.004920283223557545}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 44.03938064652566}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 44.03938064652566}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 86.1910342993174}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 86.1910342993174}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.007842872377220936}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 86.1910342993174}, {"name": "Dimethylamine", "categories": ["water"], "amount": 86.1910342993174}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 375.1534011135178}, {"name": "Dipropylamine", "categories": ["water", "ground-, long-term"], "amount": 375.1534011135178}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.01936380362338582}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 375.1534011135178}, {"name": "Dipropylamine", "categories": ["water"], "amount": 375.1534011135178}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 21.69292210943689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 21.69292210943689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.05449182557035542}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 21.69292210943689}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 21.69292210943689}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 15.1182300429514}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 15.1182300429514}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0288539804571156}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 15.1182300429514}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 15.1182300429514}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 1911.479851134369}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 19.48984505254134}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 1911.479851134369}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1911.479851134369}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.113644032158621}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 3.113644032158621}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.0009829088296230753}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.113644032158621}, {"name": "Ethanol", "categories": ["water"], "amount": 3.113644032158621}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 607.0532699656612}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 607.0532699656612}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.1820676947716516}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 607.0532699656612}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 607.0532699656612}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 83.06252177743589}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 83.06252177743589}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.004508805516406364}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 83.06252177743589}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 83.06252177743589}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 5.866490471077769}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 5.866490471077769}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.007921420745347173}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 5.866490471077769}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 5.866490471077769}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 31.32457020494882}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 31.32457020494882}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.005423784183281309}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 31.32457020494882}, {"name": "Ethylamine", "categories": ["water"], "amount": 31.32457020494882}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 392.9821815828094}, {"name": "Ethylene diamine", "categories": ["water", "ground-, long-term"], "amount": 392.9821815828094}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 4.965083807032327e-05}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 392.9821815828094}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 392.9821815828094}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 33.88259088785986}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 33.88259088785986}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.001494502831336749}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 33.88259088785986}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 33.88259088785986}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 23.53458418808319}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 23.53458418808319}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.08584670868619829}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 23.53458418808319}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 23.53458418808319}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 297.4211231191256}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 297.4211231191256}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.02444359396289091}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 297.4211231191256}, {"name": "Formaldehyde", "categories": ["water"], "amount": 297.4211231191256}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 7.034963091073586}, {"name": "Formamide", "categories": ["water", "ground-, long-term"], "amount": 7.034963091073586}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 5.705025696484766e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 7.034963091073586}, {"name": "Formamide", "categories": ["water"], "amount": 7.034963091073586}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 44.39859781105648}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 44.39859781105648}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.002145198583164613}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 44.39859781105648}, {"name": "Formic acid", "categories": ["water"], "amount": 44.39859781105648}, {"name": "Glutaraldehyde", "categories": ["water", "ground-, long-term"], "amount": 2834.661658070369}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.0835600185333866}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 2834.661658070369}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 2834.661658070369}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 64.77661364783435}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 64.77661364783435}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 3.383973580798461e-06}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 64.77661364783435}, {"name": "Hexane", "categories": ["water"], "amount": 64.77661364783435}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 26679.15205781307}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 6.846979098663159}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 26679.15205781307}, {"name": "Hydrazine", "categories": ["water"], "amount": 26679.15205781307}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 63.90756305906466}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 63.90756305906466}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.009828470980897184}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 63.90756305906466}, {"name": "Isopropylamine", "categories": ["water"], "amount": 63.90756305906466}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 374.7120873071274}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 374.7120873071274}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.387235797684917e-19}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 374.7120873071274}, {"name": "Lead II", "categories": ["water"], "amount": 374.7120873071274}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 22085.57778071964}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 22085.57778071964}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.784986131013021e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 22085.57778071964}, {"name": "Mercury II", "categories": ["water"], "amount": 22085.57778071964}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 14.60862113153174}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 14.60862113153174}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.01963179925773588}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 14.60862113153174}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 14.60862113153174}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 66.36990322738332}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 66.36990322738332}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.2768527285333682}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 66.36990322738332}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 66.36990322738332}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 2.647038698610819}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 2.647038698610819}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.001491372671790422}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.647038698610819}, {"name": "Methanol", "categories": ["water"], "amount": 2.647038698610819}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 15.34645981479058}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 15.34645981479058}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.04031712580225662}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 15.34645981479058}, {"name": "Methyl acetate", "categories": ["water"], "amount": 15.34645981479058}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 672.693769619161}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 672.693769619161}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.2054215481766319}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 672.693769619161}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 672.693769619161}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 44.59940012119169}, {"name": "Methylamine", "categories": ["water", "ground-, long-term"], "amount": 44.59940012119169}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.01134610669754899}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 44.59940012119169}, {"name": "Methylamine", "categories": ["water"], "amount": 44.59940012119169}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 17.65946300182532}, {"name": "Methyl formate", "categories": ["water", "ground-, long-term"], "amount": 17.65946300182532}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.04549309991283589}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 17.65946300182532}, {"name": "Methyl formate", "categories": ["water"], "amount": 17.65946300182532}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 293.7594298234865}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 293.7594298234865}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 7.400133899177125e-19}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 293.7594298234865}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 293.7594298234865}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 293.3776396173267}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 293.3776396173267}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.001490728140588046}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 293.3776396173267}, {"name": "m-Xylene", "categories": ["water"], "amount": 293.3776396173267}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 14879.59311199594}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.52134113462786e-17}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 14879.59311199594}, {"name": "Nickel II", "categories": ["water"], "amount": 14879.59311199594}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.00688339400715688}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.00688339400715688}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.00688339400715688}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.00688339400715688}, {"name": "Nitrate", "categories": ["water"], "amount": 0.00688339400715688}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 179.4248510392836}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 179.4248510392836}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.309274509026099}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 179.4248510392836}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 179.4248510392836}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 220.7674809050472}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 220.7674809050472}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.002582955432705416}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 220.7674809050472}, {"name": "o-Xylene", "categories": ["water"], "amount": 220.7674809050472}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 933.0530804389432}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 933.0530804389432}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.009892341023183461}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 933.0530804389432}, {"name": "Phenol", "categories": ["water"], "amount": 933.0530804389432}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 5658.102396456461}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.0921337373485053}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5658.102396456461}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 5658.102396456461}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 6318.72190294688}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.1045744038991924}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6318.72190294688}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 6318.72190294688}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 167.1412846504503}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.0056688120125778}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 167.1412846504503}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 167.1412846504503}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 30.15181210211107}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.0002020006648088936}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 30.15181210211107}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 30.15181210211107}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 85.64783358764737}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 85.64783358764737}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.02490554580033791}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 85.64783358764737}, {"name": "Propanal", "categories": ["water"], "amount": 85.64783358764737}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 2.972313814787912}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 2.972313814787912}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.001307042873961017}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 2.972313814787912}, {"name": "Propanol", "categories": ["water"], "amount": 2.972313814787912}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 70.66263770958471}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 70.66263770958471}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.005583894842615893}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 70.66263770958471}, {"name": "Propionic acid", "categories": ["water"], "amount": 70.66263770958471}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 17.47003580483835}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 17.47003580483835}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.002360737046396844}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 17.47003580483835}, {"name": "Propylamine", "categories": ["water"], "amount": 17.47003580483835}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 29.00523942102665}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 29.00523942102665}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.08163257831926521}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 29.00523942102665}, {"name": "Propylene oxide", "categories": ["water"], "amount": 29.00523942102665}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 7324.676499052727}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 7324.676499052727}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.995943866375667e-17}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 7324.676499052727}, {"name": "Selenium IV", "categories": ["water"], "amount": 7324.676499052727}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 194088.6647216774}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.402179763282325e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 194088.6647216774}, {"name": "Silver I", "categories": ["water"], "amount": 194088.6647216774}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 2.298905883657707}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 2.298905883657707}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.027354434890899e-11}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 2.298905883657707}, {"name": "Sodium formate", "categories": ["water"], "amount": 2.298905883657707}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 185.2223220672366}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 185.2223220672366}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.001002274275879541}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 185.2223220672366}, {"name": "Styrene", "categories": ["water"], "amount": 185.2223220672366}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 6.633173494491574}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 6.633173494491574}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.002408606308693329}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.633173494491574}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.633173494491574}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 125.389297733242}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 125.389297733242}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.05066477815976527}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 125.389297733242}, {"name": "t-Butylamine", "categories": ["water"], "amount": 125.389297733242}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 35389.40773048787}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 35389.40773048787}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.076390236808797e-16}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 35389.40773048787}, {"name": "Thallium I", "categories": ["water"], "amount": 35389.40773048787}, {"name": "Thiocyanate", "categories": ["water", "ground-, long-term"], "amount": 1341.206521620715}, {"name": "Thiocyanate", "categories": ["water", "ocean"], "amount": 3.154337154426072}, {"name": "Thiocyanate", "categories": ["water", "surface water"], "amount": 1341.206521620715}, {"name": "Thiocyanate", "categories": ["water"], "amount": 1341.206521620715}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 2978.232970570632}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 4.307601208164204e-18}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2978.232970570632}, {"name": "Tin ion", "categories": ["water"], "amount": 2978.232970570632}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 55.92445707351384}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 55.92445707351384}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.001163678105324353}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 55.92445707351384}, {"name": "Toluene", "categories": ["water"], "amount": 55.92445707351384}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 188.8615742592643}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 188.8615742592643}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.03413771793559374}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 188.8615742592643}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 188.8615742592643}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.3873282178246341}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 8.459234894130866e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.3873282178246341}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.3873282178246341}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 19.8654420495975}, {"name": "Trimethylamine", "categories": ["water", "ground-, long-term"], "amount": 19.8654420495975}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.001738326829849284}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 19.8654420495975}, {"name": "Trimethylamine", "categories": ["water"], "amount": 19.8654420495975}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 10.24292353353621}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 8.80967294413328e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 10.24292353353621}, {"name": "Urea", "categories": ["water"], "amount": 10.24292353353621}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 112885.975123505}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.148558709333134e-15}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 112885.975123505}, {"name": "Vanadium V", "categories": ["water"], "amount": 112885.975123505}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 77.43346253602645}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 77.43346253602645}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.000905963060821646}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 77.43346253602645}, {"name": "Xylene", "categories": ["water"], "amount": 77.43346253602645}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 38584.58479284478}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.269787771434788e-15}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 38584.58479284478}, {"name": "Zinc II", "categories": ["water"], "amount": 38584.58479284478}, {"name": "Allyl chloride", "categories": ["water"], "amount": 150.1079947071333}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1719.720222223451}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.42180531899135}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 339.3177771685547}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.464759480792751}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1288.408479475332}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9534.98244550603}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6746.64791261522}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4323.582103514876}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1920.935035757191}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6050.100803294812}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2426.799900775043}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5826075617235112}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 103.1690866711481}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 658.9867108518033}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 295.110806887749}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 3770.74503760381}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.39328139256551}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 192.9994421315874}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1283.109173004815}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.43105910115}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 4084.80999349844}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 411.1785638000277}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1134.31504453951}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 868.2752462991879}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1240.168412731042}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 96.22935832108888}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1333.794437530065}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8673.147587446569}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 105.7442921549162}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2258.577662651688}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.30247552090953}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3287.781362024641}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 4345.118683028117}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.41222339222807}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1170.784617284218}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 259125.7443834203}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 910.5227642951912}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 381628.0695570859}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 14879.59311199594}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 1388.798808044774}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 2625.615837830791}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 10478.71448236993}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.1851813694424153}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 893.1260307287811}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.202464924754399}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 23322.8108860617}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 28046.64296314354}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 98.00404444479724}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 116.1553590378122}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 4596.606592873776}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 32480.45563500515}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 18.90675745348257}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 2525.614960786939}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 381053.756490467}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 17300.82408154319}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 48797.72881487814}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1194.664831687612}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 129.8491927625}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 6449.382805161986}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 16.82211773606099}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 15771.03438358962}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.0005956516966396799}, {"name": "Anthracene", "categories": ["air"], "amount": 689.4793351985059}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 3940.56662007329}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 34.65132120921942}, {"name": "Fluorene", "categories": ["air"], "amount": 12.27113194390776}, {"name": "Phenanthrene", "categories": ["air"], "amount": 115.017007344514}, {"name": "Pyrene", "categories": ["air"], "amount": 4294.24886340959}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1481.802305363551}, {"name": "Permethrin", "categories": ["water"], "amount": 1176813.749427655}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1770.728466550261}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 68297.38935812125}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 596.7339847712511}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 91897.69629774714}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 381628.0695570859}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 22312.42771020496}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 1.570672609949578}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 63.32820237413264}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 2922.880909460317}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 95840.4890269539}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2825.690058737243}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1867.69528509152}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 885597.4579147273}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 261934.6501763573}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 793687.2517576887}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 11721.2764715593}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 261934.6501763573}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 261934.6501763573}, {"name": "Anthracene", "categories": ["water"], "amount": 261934.6501763573}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 63.72561642428929}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.108990132190594}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 4.097524476396035}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 4.097524476396035}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.097524476396035}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 4.086058820601476}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1364774634533391}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.1363314054471138}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.1361853474408884}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1363314054471138}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.1363314054471138}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 5924305.464267534}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 5924305.464267534}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 5924305.464267534}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 5924305.464267534}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 6480.187851432215}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 11721.2764715593}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 321.0837044593862}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 321.0837044593862}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.38106559585892}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 167.3503950070972}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 1331.729675100105}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 1331.729675100105}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 87654.21841746844}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 87654.21841746844}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 45969.77190324557}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 45969.77190324557}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 1890.997987814396}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 1890.997987814396}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2983.340578117419}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 140682.2143556849}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 67251.75644838254}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 458078.2228452191}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 458078.2228452191}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1878.967084318772}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 8248662.897277911}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 8248662.897277911}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1882.513912510247}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1882.513912510247}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 98.13575974852127}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1146.324132457719}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 16426.37842918017}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 16426.37842918017}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 93.17018395949655}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1953.432724062253}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1953.432724062253}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 28978.79147878355}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 576370.0956537924}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 138991256.4948792}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 138991256.4948792}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 445.0525531360675}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1364.081351704098}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1364.081351704098}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 68297.38935812125}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 269.5687685163206}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 306.8304790458599}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 1284.044970611836}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 1284.044970611836}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 41.2052502910758}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 88.02185681860134}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 423.9184783730436}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 423.9184783730436}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 200.6632712138781}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 200.6632712138781}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1091.878313398631}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 6605.10827156456}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 4192.56916576577}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 5025.580484578368}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4954.653737808047}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 3306.003841246809}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 3306.003841246809}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 3306.003841246811}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 3306.003841246809}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.02484894982983806}, {"name": "Dodecanol", "categories": ["water"], "amount": 3749.979052280719}, {"name": "Methylamine", "categories": ["air"], "amount": 0.4631872063147502}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 1787.614875322394}, {"name": "Diethanolamine", "categories": ["water"], "amount": 47.48316173699653}, {"name": "Lauric acid", "categories": ["water"], "amount": 396.8495249613188}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.218603851057523}, {"name": "Bisphenol A", "categories": ["water"], "amount": 5164.053001364086}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 338.7546787101137}, {"name": "Decanoic acid", "categories": ["water"], "amount": 544.7151488850361}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 348.5975053782652}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.04243380534804181}, {"name": "Bromopropane", "categories": ["water"], "amount": 62.08150529213951}, {"name": "Pentane", "categories": ["water"], "amount": 3316.000340744768}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 60.2602599219066}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 1012.158272232078}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 10.62994183706053}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.809895601426584}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 3608.514399873804}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 7524.59097898142}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 17692.71991226143}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 151.9217829487129}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 277.5811274348549}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 67.94968762886948}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 11.74031766790603}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 41.63950745005277}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 6.380549915543228}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 1.110467312347667}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.43105910115}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 17.61817888345146}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 519.9169499579817}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 462.6141544024052}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 667.4508171795883}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 256.6187264278454}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 688.8493308084136}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 191.4784749746858}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 896.0155197840094}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 220.0746406137207}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 978.6706716213416}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 47.87089443452015}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 368.5055720651172}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 27.63215887859339}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 14637.01870132028}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 2679.652290484734}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 4596.973563069243}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 135496.2877774281}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 60.05551581713758}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 340.8238059814992}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 139.743683840574}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 90.25244320281742}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 247.080898335337}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.164195646209774e-08}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 202.5363748858674}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 7814.400450649689}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 60338.55641058663}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 59.18085009536366}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 2021.568372283682}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 63.6029276133736}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 17.08718864832988}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 39055.4266518726}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 37.78775488874359}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 154.9531994675222}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 28564.74263134682}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 425.2411885424924}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 800.6442731112385}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 6.627239928286746}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 58.26685774532077}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 9.871765892958619}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 3109.551806374172}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 45.47596618363305}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 88.43619999028196}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 8.945286375635815}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 198.1727823892715}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1329.271457589259}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 1165.755883481279}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 1165.755883481279}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5.594456835591205}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 3869.414265752627}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 660.1015637530886}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 35254.33595357371}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 6.060645578653228}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 2652.294466729171}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 155.3169569503851}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 2065.527613201848}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 1311676.67283577}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 43.65950850166547}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 14652.48701207039}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1481.802305363551}, {"name": "Glyphosate", "categories": ["water"], "amount": 321.0837044593862}, {"name": "Furfural", "categories": ["air"], "amount": 2.994688529144927}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.0005754938316363201}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 102591.0227392867}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 16710.46877105274}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 299.7246775317666}, {"name": "Acrolein", "categories": ["water"], "amount": 33534.6606743059}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 73119.18508268046}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 214425.9455341111}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 2482265.202124142}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 18270.90377643331}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 565.3671018741634}, {"name": "Fludioxonil", "categories": ["air", "low population density, long-term"], "amount": 1678.718356240116}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 17925.69315299158}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2161.12690001112}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 465601.1895579348}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 256351.7586333342}, {"name": "Ethalfluralin", "categories": ["air", "low population density, long-term"], "amount": 156.5868145416603}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 5013.960858196362}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 1164.405589426061}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 156.609998406489}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 156.609998406489}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 109070.2137821239}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 106854.7382085568}, {"name": "Deltamethrin", "categories": ["air"], "amount": 18270.90377643331}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 137.9609286337795}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 45019.21828707153}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 156.5868145416603}, {"name": "Thiram", "categories": ["air"], "amount": 3487.09119242013}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 680.3382059666377}, {"name": "Dimethoate", "categories": ["air"], "amount": 565.3671018741634}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 10256.03111479418}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 3290.521101304506}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 580679.0755597618}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 12.45381366258556}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 578.5552891124179}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 12.45381366258556}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 0.9296482554629171}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 18509.83366775568}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 352.6219011986358}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 677723.6247863976}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 126.8153264651498}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 236.8213632164033}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 652.9659515364764}, {"name": "Triallate", "categories": ["air"], "amount": 70.5292128510318}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 24676.38544100864}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 70.5292128510318}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7861577.049642152}, {"name": "Fluthiacet-methyl", "categories": ["soil", "agricultural"], "amount": 8843.6064391503}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 197.6421400831339}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 197.6421400831339}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.006031730774872183}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 197.6421400831339}, {"name": "Acrylate", "categories": ["water"], "amount": 197.6421400831339}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1028.90082834915}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 461.5004209859798}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.614598038355485}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 9492.070804737907}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 22312.42771020496}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 140682.2143556849}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 16489.92772977458}, {"name": "Fluoranthene", "categories": ["air"], "amount": 652.6589407329947}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 6272.9715083078}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 1365.686057862491}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 2443.471188068153}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1272.861621485645}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 16909.6986708454}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 170.5124376107749}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17079.27810755454}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 16994.48838919997}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16994.48838919997}, {"name": "Arsenic ion", "categories": ["air"], "amount": 16994.48838919997}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 21361.43085375938}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 21361.43085375938}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 21361.43085375938}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 21361.43085375938}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 14.17870128823651}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 14979.14911439295}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 224.3936913413862}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 224.3936913413862}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 224.3936913413862}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 214.7564051054538}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 234.0309775773185}, {"name": "Arsenic ion", "categories": ["water"], "amount": 40390.21833995568}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 40390.21833995568}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.544049566471797e-16}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 40390.21833995568}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 40390.21833995568}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 269.5687685163206}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 306.8304790458599}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 273.3402549601409}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 1284.044970611836}, {"name": "Cyproconazole", "categories": ["air"], "amount": 269.1921234948197}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 461525.7995451029}, {"name": "Fipronil", "categories": ["air"], "amount": 24946.80841592302}, {"name": "Difenoconazole", "categories": ["air"], "amount": 5047.081443672492}, {"name": "Fluazinam", "categories": ["air"], "amount": 8694.834640824494}, {"name": "Alkylbenzene (c10-c15)", "categories": ["air"], "amount": 0.0128939299191559}, {"name": "Bifenthrin", "categories": ["air"], "amount": 104301.4031316026}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 214425.9455341111}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 229044.8670110711}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 6937.999417314811}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 433.3011115853852}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 5410.473444818626}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 1692.370322105299}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 10161.39599965984}, {"name": "Cyproconazole", "categories": ["water"], "amount": 9577.424063018774}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 490012232.4898244}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 490012232.4898244}, {"name": "Thiodicarb", "categories": ["water"], "amount": 90607.09381668059}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 242.1677132175915}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 9577.424063018774}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 677723.6247863973}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 4345.118683028117}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 90607.09381668059}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 208.0099377493797}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 214425.9455341111}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 4084.80999349844}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 2012896.836828182}, {"name": "Fipronil", "categories": ["water"], "amount": 2012896.836828182}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 32315.10687636695}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 11724.17496709372}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 138991256.4948792}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 133638.4039148149}, {"name": "Clethodim", "categories": ["water"], "amount": 3290.521101304506}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 8.47812563194317}, {"name": "Bifenthrin", "categories": ["water"], "amount": 6606218.617699357}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 5733.526330050868}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 62054.42635973194}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.2201431500013523}, {"name": "Alkylbenzene (c10-c15)", "categories": ["soil", "agricultural"], "amount": 0.001225154162618609}, {"name": "Flumioxazin", "categories": ["water"], "amount": 465601.1895579348}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 119052.5066021618}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 10054.75335824089}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 1921.726540567452}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 4199.332645013528}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 6606218.617699357}, {"name": "Difenoconazole", "categories": ["water"], "amount": 119052.5066021618}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 11630.69718048504}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 11630.69718048504}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 350.2601340869226}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 50408635.72852894}, {"name": "Cypermethrin", "categories": ["water"], "amount": 50408635.72852894}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 70127.43105910115}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 35089624.32889574}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 48797.72881487816}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 254034.3763665275}, {"name": "Alkylbenzene (c10-c15)", "categories": ["soil", "forestry"], "amount": 0.001225154162618609}, {"name": "Alkylbenzene (c10-c15)", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.003364855008159178}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 264.3378908849616}, {"name": "Fluazinam", "categories": ["water"], "amount": 229044.8670110711}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 229044.8670110711}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 21427.90288337684}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 6441.702873071918}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 21427.90288337684}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 5368.865226164379}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 5256.022376072729}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 2205.142040314403}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2205.142040314404}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 45019.21828707153}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 12727.75055993713}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 12727.75055993713}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1638.053325943434}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 11741.38139340764}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1748.637207224227}, {"name": "Abamectin", "categories": ["air"], "amount": 2598.46244104342}, {"name": "Carbendazim", "categories": ["air"], "amount": 10852.56996777327}, {"name": "Diuron", "categories": ["air"], "amount": 2888.804996395477}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 78960.85556831793}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 601.8082411386335}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 440.9403852378933}, {"name": "Mancozeb", "categories": ["air"], "amount": 643.9325476832689}, {"name": "Simazine", "categories": ["air"], "amount": 6445.767730097668}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 1652.390895357039}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 157.0990183009986}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 57427.32208907067}, {"name": "Triflumuron", "categories": ["air"], "amount": 357063.9983622727}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 94.81597922687283}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 652.484313842212}, {"name": "2,4-D", "categories": ["water"], "amount": 860.3532958193812}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 215.530846628909}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 652.484313842212}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 181.9075712591965}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 860.3532958193812}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 156.0787844892613}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 105.7795183243561}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 41283.75821110154}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 971085.7741076944}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 22959.18536992275}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 22959.18536992275}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 443.4328889862159}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 50981.86740021227}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 1748.637207224227}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 7290.249047189391}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 126.8153264651498}, {"name": "Mancozeb", "categories": ["water"], "amount": 52198.60382641312}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 47.48692300987379}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 296.2223883807765}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 8861705.758070096}, {"name": "Triflumuron", "categories": ["water"], "amount": 8861705.758070096}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 12634.63998176688}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 78114.00168833337}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 316702.2724546606}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 1311676.67283577}, {"name": "Simazine", "categories": ["water"], "amount": 78114.00168833337}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6103.638662480231}, {"name": "Carbendazim", "categories": ["water"], "amount": 741427.7150626526}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 54554.08444179271}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 6344.183794782181}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 741427.7150626526}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 52198.60382641312}, {"name": "Acephate", "categories": ["water"], "amount": 627.195875552428}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 252.3480059893731}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 627.195875552428}, {"name": "Abamectin", "categories": ["water"], "amount": 83744.41729932558}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 83744.41729932558}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 7290.249047189391}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 44.86884533105171}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1152874.806639649}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1152874.806639649}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1990.5565774533}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 57823.87667902808}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 76269.5273348387}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 85233.29894167076}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 50096.23828354297}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 85233.29894167076}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 50096.23828354297}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 35.50249751350102}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1388.798808044774}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1325.809809271895}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 186.1098958796736}, {"name": "Diuron", "categories": ["water"], "amount": 60117.49064131446}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4019.340356854711}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2537.106748929052}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 164.6428088934565}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 29260.23441730404}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 29260.23441730404}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 105.7795183243561}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1926.848485380624}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 2337.137375441219}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 90.65429257599124}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1164.405589426061}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 744.3119833717473}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 114698.9733126001}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 234.4645680742805}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 10161.39599965984}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1996.038632885548}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 592.5107503648137}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 15803.20422885043}, {"name": "Trifluralin", "categories": ["water"], "amount": 106854.7382085568}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1618.136671590677}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 114698.9733126001}, {"name": "Thiram", "categories": ["water"], "amount": 580679.0755597618}, {"name": "Carboxin", "categories": ["water"], "amount": 24676.38544100864}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 285.0691571123865}, {"name": "Propiconazole", "categories": ["water"], "amount": 22312.42771020496}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 130.7345834584192}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 155.3169569503851}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 212.7268734842694}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1050.027742038335}, {"name": "Thiabendazole", "categories": ["water"], "amount": 34009.52164954976}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 2660.182571676538}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 507.8834624303366}, {"name": "Fludioxonil", "categories": ["water"], "amount": 101091.3793961789}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2161.12690001112}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3231.447758209919}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 6272.9715083078}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 172128.6715681628}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 6206819.068762222}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 105993.6811591121}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 103.9440772563541}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 5957.959915036762}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 5304.732009017731}, {"name": "Metolachlor", "categories": ["water"], "amount": 67251.75644838254}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 819.7509007338074}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1365.686057862491}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 11406.42648689973}, {"name": "Tebuconazole", "categories": ["water"], "amount": 68297.38935812125}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 73119.18508268046}, {"name": "Methomyl", "categories": ["water"], "amount": 28978.79147878355}, {"name": "Atrazine", "categories": ["water"], "amount": 87654.21841746844}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 114698.9733126001}, {"name": "Indoxacarb", "categories": ["air"], "amount": 3180.233169520662}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 2611.582905498304}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 391.0220181975797}, {"name": "Carboxin", "categories": ["air"], "amount": 382.2650622793749}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1618.136671590677}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 34009.52164954976}, {"name": "Thiabendazole", "categories": ["air"], "amount": 435.3659085727342}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 435.3659085727342}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 4283.465110687773}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 4283.465110687773}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 172128.6715681628}, {"name": "Fludioxonil", "categories": ["air"], "amount": 1678.718356240116}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 3487.09119242013}, {"name": "Metalaxyl-M", "categories": ["air", "low population density, long-term"], "amount": 137.9609286337795}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 101091.3793961789}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 6206819.068762222}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 28978.79147878355}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3162.808823016142}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 67251.75644838254}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 206.6045490576516}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 5957.959915036762}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2337.13737544122}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 90.65429257599124}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 105993.6811591121}, {"name": "EPTC", "categories": ["air"], "amount": 6.607687147297698}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 1692.965263424659}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.341352636846492}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 299.7246775317666}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 169738.0330996829}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 11976364.83353115}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 11976364.83353115}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 203864.2011423413}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 96.65682185355104}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 122.0267139353446}, {"name": "Imidacloprid", "categories": ["air"], "amount": 122.0267139353446}, {"name": "Imidacloprid", "categories": ["water"], "amount": 3139.182427479564}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 96.65682185355104}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.4592395098901}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 3139.182427479564}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.754061574190309}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 586.9844535727717}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.738785679816528}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.746423627003418}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.746423627003418}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.746423627003418}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 586.9844535727717}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.486803588069124}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 586.9844535727717}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 586.9844535727717}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.09436249505718262}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 62.8497116571606}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 16219.05948883446}]}, {"unit": "kg N-Eq", "name": ["TRACI v2.1", "eutrophication", "eutrophication potential"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.1186}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.7793}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-"], "amount": 0.05}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.03602286665830313}, {"name": "Phosphate", "categories": ["water", "ground-"], "amount": 2.38}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 0.3548239598401077}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 1.12}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1186}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.1186}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1186}, {"name": "Ammonia", "categories": ["air"], "amount": 0.1186}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03602286665830313}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.03602286665830313}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03602286665830313}, {"name": "Nitrate", "categories": ["air"], "amount": 0.03602286665830313}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3548239598401077}, {"name": "Phosphoric acid", "categories": ["air", "low population density, long-term"], "amount": 0.3548239598401077}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3548239598401077}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 0.3548239598401077}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.12}, {"name": "Phosphorus", "categories": ["air", "low population density, long-term"], "amount": 1.12}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.12}, {"name": "Phosphorus", "categories": ["air"], "amount": 1.12}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.7793}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.7793}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.7793}, {"name": "Ammonium", "categories": ["water"], "amount": 0.7793}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ground-, long-term"], "amount": 0.05}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "ocean"], "amount": 0.05}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.05}, {"name": "BOD5, Biological Oxygen Demand", "categories": ["water"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ground-, long-term"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "ocean"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water", "surface water"], "amount": 0.05}, {"name": "COD, Chemical Oxygen Demand", "categories": ["water"], "amount": 0.05}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.2367}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.2367}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.2367}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.2367}, {"name": "Nitrate", "categories": ["water"], "amount": 0.2367}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 0.9864}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 0.9864}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 0.9864}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 0.9864}, {"name": "Nitrogen", "categories": ["water"], "amount": 0.9864}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 2.38}, {"name": "Phosphate", "categories": ["water", "ocean"], "amount": 2.38}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 2.38}, {"name": "Phosphate", "categories": ["water"], "amount": 2.38}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 7.29}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 7.29}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 7.29}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 7.29}, {"name": "Phosphorus", "categories": ["water"], "amount": 7.29}, {"name": "Nitrogen", "categories": ["air"], "amount": 0.150118105922054}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.06858}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 2.30952380952381}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 0.3656515775836821}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.03448275862068965}, {"name": "Nitrogen dioxide", "categories": ["water", "surface water"], "amount": 0.291021896827}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.04429}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04429}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.04429}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04429}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.04429}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.03448275862068965}]}, {"unit": "CTUh", "name": ["TRACI v2.1", "human toxicity: carcinogenic", "human toxicity: carcinogenic"], "exchanges": [{"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.258356435850049e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.810343693630874e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.108229711482085e-07}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.406776750306832e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2.78915073207082e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.531067896539896e-08}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.027258220363476e-06}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.391376256206991e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.741896373164023e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 8.425367609910162e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.129833856759318e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.530366768160435e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 4.495136026480151e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0001154905641553532}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.125912223315778e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0002517637983367946}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.590052583598152e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.120982712696918e-08}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.021433535791055e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.989787988125033e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.52942318370799e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.004698149455494108}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.593967130167531e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.58465069072757e-05}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 1.883745633244235e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 29.62159655713153}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 5.543725597722587e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.304325226657223e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.515513820065576e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.820926395991358e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.865899488335459e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.922728378391743e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.596495340709977e-06}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.636272033325984e-09}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.034153076279244e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.29033235365814e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.060433564876759e-08}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.219169907269833e-06}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.860699582481577e-06}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.542168575439161e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.27974191527352e-05}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.793118991683174e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.759132709331032e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.348363361545353e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.656983589874939e-05}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 6.565468056143749e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3.134880215609319e-08}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.006891195363459961}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.932656172736234e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.915733739067202e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.798065885996774e-05}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.415614863811376e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.617550177034878e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.597517150337729e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.991958352298951e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.301372125432608e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.448863732121582e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 6.77182969489933e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.135991803003744e-05}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 9.266833864499727e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.107308407737939e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.876127648548086e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.007215305408294e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.102667814352975e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.172670404170017e-12}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.825512353035547e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.010106372215797e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.179807173393732e-09}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.510708826824056e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.510708826824056e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.510708826824056e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.614819710071137e-10}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 1.803608046820304e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.803608046820304e-08}, {"name": "Aniline", "categories": ["air"], "amount": 1.803608046820304e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.211603307527637e-09}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.806268293479877e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.806268293479877e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.806268293479877e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.198616480471286e-07}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 2.970256426817655e-07}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.970256426817655e-07}, {"name": "Benzene", "categories": ["air"], "amount": 2.970256426817655e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.553188659505964e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.342576361354958e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.342576361354958e-07}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.342576361354958e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813342215092388e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 7.171854491626412e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.171854491626412e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.171854491626412e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.480841728508682e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 3.487988877494416e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.487988877494416e-05}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.487988877494416e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.152031023523993e-05}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 6.350543719529656e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.350543719529656e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.350543719529656e-05}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.663642941217963e-08}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 5.71274326363979e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.71274326363979e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 5.71274326363979e-07}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001818862514436914}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.000216825024890243}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000216825024890243}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.000216825024890243}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.622051888446287e-07}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 2.30591993828566e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.30591993828566e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.30591993828566e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.004206523646445761}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.004452336550969934}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.004452336550969934}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.004452336550969934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.698730877983314e-09}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 1.176809360521283e-08}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.176809360521283e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.176809360521283e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.49436227943477}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 29.05797941828315}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.05797941828315}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 29.05797941828315}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.986157966582645e-07}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 5.264941782152616e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.264941782152616e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.264941782152616e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.211276877132605e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.257801051894914e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.257801051894914e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.257801051894914e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.157030538606932e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.065608436963135e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.065608436963135e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.065608436963135e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.291959421499929e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 4.556442908745643e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.556442908745643e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.556442908745643e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.426564375976271e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.146231932155865e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.146231932155865e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.146231932155865e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.749094908834605e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 4.335911643613174e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.335911643613174e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.335911643613174e-08}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.383754462042533e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 2.137323739765118e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.137323739765118e-09}, {"name": "Ethanol", "categories": ["air"], "amount": 2.137323739765118e-09}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.630932527089968e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.74862316449412e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.74862316449412e-06}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.74862316449412e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.228180370229732e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 3.259256361943936e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.259256361943936e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.259256361943936e-07}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.358317111505462e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.998132638013652e-08}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.998132638013652e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.417626751024006e-07}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 8.30466291186117e-07}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.30466291186117e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 8.30466291186117e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.385689828449256e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.340368779142043e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.340368779142043e-05}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.340368779142043e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.385145978752628e-06}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 3.209128256574392e-05}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.209128256574392e-05}, {"name": "Furan", "categories": ["air"], "amount": 3.209128256574392e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.927864590212017e-10}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 9.929527253521877e-10}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.929527253521877e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.929527253521877e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.457944521561068e-09}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 6.81471403380482e-08}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81471403380482e-08}, {"name": "Isoprene", "categories": ["air"], "amount": 6.81471403380482e-08}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.727440495785806e-05}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 2.692212042830373e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.692212042830373e-05}, {"name": "Lead II", "categories": ["air"], "amount": 2.692212042830373e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007219396090920078}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.00705529572719002}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00705529572719002}, {"name": "Mercury II", "categories": ["air"], "amount": 0.00705529572719002}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.921138703663494e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 2.426897438199864e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.426897438199864e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.426897438199864e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.415557203584623e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 6.665645471325912e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.665645471325912e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.665645471325912e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.535914078209065e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 4.666989982102919e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666989982102919e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.666989982102919e-05}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.684302113659421e-08}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 3.049958488735399e-08}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.049958488735399e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.049958488735399e-08}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.73466103000816e-05}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 5.176105603521519e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.176105603521519e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 5.176105603521519e-05}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.089268905852151e-07}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 1.053222020461472e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.053222020461472e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.053222020461472e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.058142032342093e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "low population density, long-term"], "amount": 6.025050192320522e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.025050192320522e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 6.025050192320522e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.701161768393508e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 4.001266946913059e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.001266946913059e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 4.001266946913059e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.201906152438696e-07}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 2.654607280088317e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.654607280088317e-07}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.654607280088317e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.658751485139641e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 5.119014101298451e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.119014101298451e-07}, {"name": "Styrene", "categories": ["air"], "amount": 5.119014101298451e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.770063405932431e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 6.39837077473109e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.39837077473109e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 6.39837077473109e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.181190803144065e-12}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3.176930603657041e-12}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.176930603657041e-12}, {"name": "Toluene", "categories": ["air"], "amount": 3.176930603657041e-12}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.920338056744807e-10}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 4.751070088945139e-09}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.751070088945139e-09}, {"name": "Xylene", "categories": ["air"], "amount": 4.751070088945139e-09}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.130421025115689e-24}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.130421025115689e-24}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.130421025115689e-24}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.130421025115689e-24}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.0004817920255441872}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.081071442613549e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.081071442613549e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 8.081071442613549e-07}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.005412813058171186}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.005344319431615542}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.005344319431615542}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.005344319431615542}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 7.554690612036464e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.019393851208752e-07}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.019393851208752e-07}, {"name": "Lead II", "categories": ["soil"], "amount": 2.019393851208752e-07}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.02000443622421823}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 8.480180131105149e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 8.480180131105149e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 8.480180131105149e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.0001057249924546784}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.971608380599197e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.971608380599197e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.971608380599197e-05}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.826115595073202e-08}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 8.826115595073202e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.546279067803446e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.826115595073202e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 8.826115595073202e-08}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.406776750306832e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.118711178853875e-08}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.406776750306832e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.406776750306832e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 6.906904090605212e-08}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 6.906904090605212e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.650034416037056e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 6.906904090605212e-08}, {"name": "Aniline", "categories": ["water"], "amount": 6.906904090605212e-08}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.42356468162967e-07}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 2.42356468162967e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 2.485989030729586e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.42356468162967e-07}, {"name": "Benzene", "categories": ["water"], "amount": 2.42356468162967e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 8.425367609910162e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.885503448857824e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 8.425367609910162e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 8.425367609910162e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.731751629412889e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 4.731751629412889e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 5.138840164335435e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.731751629412889e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.731751629412889e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.93228723043305e-25}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.93228723043305e-25}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.059335183438447e-26}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.93228723043305e-25}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.93228723043305e-25}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.590052583598152e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 5.904155315475577e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.590052583598152e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.590052583598152e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.903478386107413e-07}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 3.903478386107413e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 3.450637848030204e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.903478386107413e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 3.903478386107413e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.01064124692009222}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 0.01064124692009222}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.0006276395027482738}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.01064124692009222}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.01064124692009222}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 1.653828513869859e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 1.653828513869859e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 2.697745543090239e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 1.653828513869859e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.653828513869859e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.633658746290207e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.633658746290207e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 5.295941693917522e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.633658746290207e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.633658746290207e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 3.596495340709977e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.379471582042169e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.596495340709977e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.596495340709977e-06}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.542682490085931e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.542682490085931e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 4.642550296405149e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.542682490085931e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 2.542682490085931e-09}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.574102322678905e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.574102322678905e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 5.226226981162908e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.574102322678905e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.574102322678905e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.485354373704319e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 5.485354373704319e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 7.712639527568175e-08}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.485354373704319e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 5.485354373704319e-07}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.171588118574856e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-, long-term"], "amount": 4.171588118574856e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.346365427938616e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.171588118574856e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 4.171588118574856e-08}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.715898825955418e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.715898825955418e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.847420342319156e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.715898825955418e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.715898825955418e-06}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.240884639256756e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.240884639256756e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.313683154064868e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.240884639256756e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.240884639256756e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.932661183632631e-09}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1.932661183632631e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.627426369587102e-11}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.932661183632631e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.932661183632631e-09}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.759132709331032e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.539549199989667e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.759132709331032e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.759132709331032e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.416247532922595e-07}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 3.416247532922595e-07}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.103686639122781e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.416247532922595e-07}, {"name": "Lead II", "categories": ["water"], "amount": 3.416247532922595e-07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0001200800766910644}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.0001200800766910644}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.562717654660303e-05}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0001200800766910644}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0001200800766910644}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.823172927233115e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 6.823172927233115e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 9.656004694601315e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.823172927233115e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.823172927233115e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.16253257954551e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 4.16253257954551e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.175874687009049e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.16253257954551e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.16253257954551e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.241027359047357e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 2.241027359047357e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.743499587732249e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.241027359047357e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 2.241027359047357e-08}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3.82737301857641e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.932692703765708e-06}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.82737301857641e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 3.82737301857641e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.141909863354914e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.141909863354914e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.593718642068913e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.141909863354914e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.141909863354914e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.448863732121582e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 1.68836291963403e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.448863732121582e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.448863732121582e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.158734719783597e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.158734719783597e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 7.696674523054334e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.158734719783597e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.158734719783597e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.298293064042074e-08}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 1.298293064042074e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.483666754706709e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.298293064042074e-08}, {"name": "Styrene", "categories": ["water"], "amount": 1.298293064042074e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.836736453785565e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.836736453785565e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.55467521351487e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.836736453785565e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.836736453785565e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.28796619460418e-09}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 3.28796619460418e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.113876458507679e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.28796619460418e-09}, {"name": "Toluene", "categories": ["water"], "amount": 3.28796619460418e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.87817103743376e-09}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.87817103743376e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 7.916174553493899e-11}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.87817103743376e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.87817103743376e-09}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.968325208963409e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72488671036636e-07}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 2.392344824587944e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.621112923743258e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.320457549765049e-07}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.332600353770246e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.650089002101258e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.029317585575104e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.82737301857641e-05}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.973370618914708e-11}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.53421227997533e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 1.428324535107701e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 3.938388614878956e-07}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 3.056713149956801e-05}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.036581063539157e-06}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 3.418467484412382e-05}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.885964682958992e-07}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.016317313235812e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.016317313235812e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.016317313235812e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.544038158175725e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 99.99414879423145}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 99.99414879423145}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 99.99414879423145}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-, long-term"], "amount": 99.99414879423145}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 58.95214315432209}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 3.418467484412382e-05}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 3.729187954993366e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 3.729187954993366e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.091983626884058e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.091983626884058e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 0.2099867486507813}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 0.2099867486507813}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 0.3853312280989407}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 0.2099867486507813}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.998132638013652e-08}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 6.70288219492184e-06}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 2.611054452589474e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.621871552334511e-09}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 2.84435814580476e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.772967486180558e-06}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.45035777450514e-05}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.829873065189469e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.991301788381765e-06}, {"name": "Furfural", "categories": ["air"], "amount": 4.345660720828529e-09}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000814006573092419}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.743864159015686e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 1.175041748019131e-08}, {"name": "Naphthalene", "categories": ["air"], "amount": 6.351082658161222e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 9.0374626837381e-09}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0004239869897004578}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0002423359861413617}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.0003331614879209097}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0003331614879209097}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0003331614879209097}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0003918347177884975}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0001951433794005633}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0001951433794005633}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0001951433794005633}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.003301182299098833}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 9.054524788040105e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.054524788040105e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 9.054524788040105e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.841001937321709e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 9.268047638758503e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0003689773290724312}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0003689773290724312}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.027003498025857e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.0003689773290724312}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0003689773290724312}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.79028281626522e-08}, {"name": "Acephate", "categories": ["water"], "amount": 2.487029067227868e-07}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.000639990423461e-07}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.487029067227868e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1.180107657027561e-07}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.180107657027561e-07}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1.156335309274065e-08}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.199108512379478e-08}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.603853150604743e-08}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.743864159015686e-06}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 4.86195939010831e-07}, {"name": "Atrazine", "categories": ["water"], "amount": 3.729187954993366e-06}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.063590628352086e-05}]}, {"unit": "CTUh", "name": ["TRACI v2.1", "human toxicity: non-carcinogenic", "human toxicity: non-carcinogenic"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.221076129596055e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.142401308517337e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.978195641238402e-09}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 4.242610285742846e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.392679541749306e-08}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.0003506147224737884}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.291621899121178e-07}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 9.671865584621795e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.724699410100045e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001407920377821338}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 9.708016844111831e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.278012890782212e-06}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.441349515389442e-05}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 8.82185338479455e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.744152507265701e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.0001865653238287938}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.514976898553216e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.19084656422507e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 5.689293488473177e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.515382826785763e-05}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 5.676396328314889e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.844869704874264e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 6.18998015965328e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.400280279713202e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.200731318738333e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 8.725444005900088e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.005344304385922e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.577843586162677e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.461714521851474e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.08556031719987929}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 3.549401920473224e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.097035277749298e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 6.026343492200264e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.194360540124425e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.684866776379766e-06}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.268631067940004e-08}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.04446630584551008}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.0004265994736482847}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.331091643438784e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 7.571136900989693e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.06629840746109e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.502069450836323e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 5.314798975805516e-05}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.785363458207277e-07}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.736951474249164e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.713956025626985e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.609540134884209e-07}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.735780904390812e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3.565453936392286e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.0007484149900566027}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 3.026742397087114e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.323373836409855e-05}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 8.626757056549432e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.022846032548176e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.136492607015195e-08}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.595972050549893e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.412043071588323e-07}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 2.974983061189815e-05}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.118891180273046e-06}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0001475471753224561}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.342994347623155e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.247396040510806e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.498026636437909e-07}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 2.79449501214572e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.591732719588198e-06}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.651364096032627e-06}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 1.637434146055799e-07}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.826205918331096e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.073190640596592e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.070497681191723e-06}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.371995092225478e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 7.803732452170765e-08}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.559092878798325e-05}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.863591764893856e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.761903462851979e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.903804534245596e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.732734234853651e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.417559462914081e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.743048310639527e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.622815872259569e-06}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.826956875329245e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.000123511601348606}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.62866364623693e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.356326701865415e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 8.174257362148937e-09}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 3.971696268633912e-07}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.481954957610653e-08}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 5.575094411019923e-08}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 1.411858312894749e-05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 5.323422874735585e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 6.161216540279184e-08}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.667275702097867e-07}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 7.003289558100547e-06}, {"name": "Glufosinate", "categories": ["soil", "agricultural"], "amount": 1.072282123260385e-07}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 7.626626274319757e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.43993461441268e-07}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 1.287458114490947e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.055388420802181e-09}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.009320644029522146}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 7.605788809947128e-05}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.041281305536015e-06}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 1.81691200463969e-08}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 3.242773848988688e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.09122357691481e-07}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 8.864197911606767e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 4.678376160539588e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.420612989098232e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.629121758973386e-12}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.8153105050720473}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.675136537433405e-07}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 1.276099938183971e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.0001138668835910055}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 9.572570783224532e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.043266588879628e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.316535823373809e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 6.555101209491677e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.0001591725529778709}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.807840507128964e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.633290926906425e-08}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 6.136174078421357e-07}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 4.064579782070168e-06}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.267694828859509e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 5.928814044257169e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.402647336673159e-07}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.378150453428547e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.001633262508687558}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.637567039119838e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 6.274346569125752e-05}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.403709626048452e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 6.44497918258497e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.161171165923385e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 7.853821142005302e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 4.761064687909049e-08}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.864963689477978e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 3.568861582664458e-06}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.532400963236454e-09}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.927100588651506e-06}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.066968540665983e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.034208590064141e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.538196875085421e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.409357809495091e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.720982836621032e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.377798891435364e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.295936341190667e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 7.482238451868906e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 6.451763747794766e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.139721212223564e-07}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 4.846972051332177e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 2.755277587417682e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 9.8941374874774e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.118251739234456e-05}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.586997283128361e-07}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.157115414301461e-05}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.697393976400055e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.869763954880581e-07}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.430064249385157e-06}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.733327422786888e-07}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.267165613887981e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 7.687017975228025e-06}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 7.173262376334914e-09}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 8.305315265868153e-06}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 4.365751690113955e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.02532945731247778}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.0003549487632190929}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 8.772833490592437e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 2.014471645695883e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.847650620033796e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.664867632416609e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 4.972297832105879e-05}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.0004120225015791997}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.0007185436202832339}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6.560228411780649e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.934694045738182e-07}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.886539373366524e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 9.618820249928871e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.895456861166723e-07}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.684472648263908e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 5.628295663165025e-07}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2.108889397842234e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.620316404487003e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 6.720802511205441e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.381327127979634e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.796899460458428e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.691500916649405e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.0001943856207712839}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.161573837165723e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.09611314831482e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.01523298640624192}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.001281390275351284}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.452706437984015e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 1.193835976157869e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.193835976157869e-08}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.193835976157869e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.164203985881873e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 2.097308019913294e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.097308019913294e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.097308019913294e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.089916056276619e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 2.800835573688484e-08}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.800835573688484e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.800835573688484e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.711552710245e-08}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 4.881388585072839e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.881388585072839e-07}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.881388585072839e-07}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.830038575962134e-09}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 6.250952080291964e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.250952080291964e-09}, {"name": "Acetone", "categories": ["air"], "amount": 6.250952080291964e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9643392814793e-08}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 6.344519345789673e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.344519345789673e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 6.344519345789673e-08}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.555937164383953e-05}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 0.0007317398747325888}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0007317398747325888}, {"name": "Acrolein", "categories": ["air"], "amount": 0.0007317398747325888}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.277250463673861e-06}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.117870945239609e-05}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.117870945239609e-05}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.117870945239609e-05}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.761300342797525e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 8.908827553468379e-07}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.908827553468379e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.908827553468379e-07}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001545128350605106}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.0001705390794446522}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001705390794446522}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.0001705390794446522}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.858263234853601e-05}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 4.186823030819682e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.186823030819682e-05}, {"name": "Barium II", "categories": ["air"], "amount": 4.186823030819682e-05}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.869535458606569e-09}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.343616912786929e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.343616912786929e-08}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.343616912786929e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.035107125922855e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 7.521210156653091e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.521210156653091e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.521210156653091e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44454892341174e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 5.498948968100198e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.498948968100198e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.498948968100198e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.332387129371907e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.455115357767291e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.455115357767291e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.455115357767291e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.164614537071418e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.313164529461446e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.313164529461446e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.313164529461446e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.008545819649387387}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.04705306842463334}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04705306842463334}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.04705306842463334}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.489551726476562e-08}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 8.548811468222657e-07}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.548811468222657e-07}, {"name": "Butadiene", "categories": ["air"], "amount": 8.548811468222657e-07}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.027705915933207e-09}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 2.885700829766663e-08}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.885700829766663e-08}, {"name": "Butanol", "categories": ["air"], "amount": 2.885700829766663e-08}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04649648722728665}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.04548139653639836}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04548139653639836}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.04548139653639836}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.673630444843396e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 4.994214710324456e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.994214710324456e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.994214710324456e-05}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.797438724649864e-07}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 5.29140109142857e-07}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.29140109142857e-07}, {"name": "Chloramine", "categories": ["air"], "amount": 5.29140109142857e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.265621290520827e-07}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.320259077339534e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.320259077339534e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 1.320259077339534e-06}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58957475884972e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 2.577514347621003e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.577514347621003e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 2.577514347621003e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.306889836534118e-05}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.0004157419442109719}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0004157419442109719}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.0004157419442109719}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.364906299642294e-05}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1.344140068026075e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.344140068026075e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.344140068026075e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.015397717353837e-09}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 1.11219290214178e-08}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.11219290214178e-08}, {"name": "Cumene", "categories": ["air"], "amount": 1.11219290214178e-08}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.861988584783585e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.161345732746777e-08}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.161345732746777e-08}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.161345732746777e-08}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.031975385909731e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 6.588578971849514e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.588578971849514e-09}, {"name": "Diethyl ether", "categories": ["air"], "amount": 6.588578971849514e-09}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.351879383031965e-06}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 9.971404085507607e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.971404085507607e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.971404085507607e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.422197346035162e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4.59205040444357e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.59205040444357e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.59205040444357e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64237670710105e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 1.773090620673323e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.773090620673323e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.773090620673323e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.922753117081016e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 3.327743675967333e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.327743675967333e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 3.327743675967333e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 4.102888901350442e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.608387850544461e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 9.519435478469864e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.519435478469864e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.519435478469864e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.400047590272472e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.231410315643408e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.231410315643408e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.231410315643408e-06}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.822728876801231e-09}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 5.225696261519081e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.225696261519081e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.225696261519081e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.56494780209889e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 8.064107410376518e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.064107410376518e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.064107410376518e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.540819918737348e-08}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.710678846985801e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.710678846985801e-07}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.710678846985801e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.544741567459898e-07}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 3.578881857423269e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.578881857423269e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.578881857423269e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.623285776000493e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.351131596006365e-07}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.351131596006365e-07}, {"name": "Hexane", "categories": ["air"], "amount": 1.351131596006365e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.009567805412798749}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.009444224721160448}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.009444224721160448}, {"name": "Lead II", "categories": ["air"], "amount": 0.009444224721160448}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.854546007662333}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.8349282563671901}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8349282563671901}, {"name": "Mercury II", "categories": ["air"], "amount": 0.8349282563671901}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.722141993797854e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 9.554415176449204e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.554415176449204e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.554415176449204e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.800721786157885e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 9.186646284691209e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.186646284691209e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 9.186646284691209e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.164130613995683e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 7.798398251395983e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.798398251395983e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 7.798398251395983e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.295973587569983e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 2.306254705471896e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.306254705471896e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.306254705471896e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.409692145162997e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.482396677327338e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.482396677327338e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.482396677327338e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000150482729407102}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.0001548276411924865}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0001548276411924865}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.0001548276411924865}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.772484980404277e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1.790162743766621e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.790162743766621e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.790162743766621e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.126492194353136e-09}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 1.02297007317087e-08}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.02297007317087e-08}, {"name": "Methanol", "categories": ["air"], "amount": 1.02297007317087e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.383971900335308e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 9.030460094465199e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.030460094465199e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 9.030460094465199e-10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.001690823306431838}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.001662042907559698}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.001662042907559698}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.001662042907559698}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.246372725695135e-10}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.131102155844676e-09}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.131102155844676e-09}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.131102155844676e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.664341831724058e-06}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 2.912756498823721e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.912756498823721e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.912756498823721e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.502020571214635e-06}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.177920856609969e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.177920856609969e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 5.177920856609969e-06}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.320563130799197e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 4.864960470147144e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.864960470147144e-08}, {"name": "Phenol", "categories": ["air"], "amount": 4.864960470147144e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.716903396071092e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 2.218943116346062e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.218943116346062e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.218943116346062e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.069227613077719e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8.723513252256542e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.723513252256542e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.723513252256542e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.102494393890102e-06}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.894756184559063e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.894756184559063e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.894756184559063e-06}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0263545115796338}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.02584198444605579}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02584198444605579}, {"name": "Silver I", "categories": ["air"], "amount": 0.02584198444605579}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.319210197060257e-09}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.023831873833243e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.023831873833243e-07}, {"name": "Styrene", "categories": ["air"], "amount": 1.023831873833243e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.987101806731701e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.073180400353483e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.073180400353483e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.073180400353483e-08}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0006931417743826864}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 0.0007058426973329602}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0007058426973329602}, {"name": "Thallium I", "categories": ["air"], "amount": 0.0007058426973329602}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.903683505289912e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 5.304594300228931e-08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.304594300228931e-08}, {"name": "Toluene", "categories": ["air"], "amount": 5.304594300228931e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.350967643951052e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 2.365276812780914e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.365276812780914e-07}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.365276812780914e-07}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.230682656706652e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 9.461091786678029e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.461091786678029e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.461091786678029e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.136724307213791e-08}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.1048927895181e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1048927895181e-07}, {"name": "Xylene", "categories": ["air"], "amount": 1.1048927895181e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01595821309049346}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.01559559974836769}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01559559974836769}, {"name": "Zinc II", "categories": ["air"], "amount": 0.01559559974836769}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.0002094603584268039}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.000183318467436291}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.000183318467436291}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.000183318467436291}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.911452194283206e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 4.907988749833895e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 4.907988749833895e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 4.907988749833895e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.13942743874014e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.442333520247059e-06}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.442333520247059e-06}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.442333520247059e-06}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.1292612751460015}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.0002168092338262172}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.0002168092338262172}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.0002168092338262172}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.782669101518235e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.520111160723548e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.520111160723548e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.520111160723548e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.218383674504603e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.202966272221139e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.202966272221139e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.202966272221139e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.741521065525488e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.553936772202815e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.553936772202815e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.553936772202815e-07}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 5.194719296383719e-08}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.02650169997898971}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.083992281415829e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.083992281415829e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 7.083992281415829e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.368004808330223}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.01003832704950333}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.01003832704950333}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.01003832704950333}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.004662036571511168}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.847979845997768e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.847979845997768e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.847979845997768e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 5.949475966080398e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.109485695156325e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.109485695156325e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.109485695156325e-06}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.07315695569427592}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.0001846855128300004}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.0001846855128300004}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0001846855128300004}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.0008941449055217264}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.0008928049591685979}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.0008928049591685979}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.0008928049591685979}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.0001395425791044612}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.0001003377756956081}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.0001003377756956081}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.0001003377756956081}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.04352557247671509}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.0007020246775150156}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.0007020246775150156}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.0007020246775150156}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.038098730414904e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 2.038098730414904e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 4.885150423259475e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.038098730414904e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.038098730414904e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.924925858235224e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.924925858235224e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 1.755411400048051e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.924925858235224e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.924925858235224e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.58346765720981e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.58346765720981e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 2.879516213953051e-08}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.58346765720981e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.58346765720981e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.530019865060971e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 4.530019865060971e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.35988962527705e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.530019865060971e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.530019865060971e-07}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.863154111699243e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 5.863154111699243e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.284208441107347e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.863154111699243e-09}, {"name": "Acetone", "categories": ["water"], "amount": 5.863154111699243e-09}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 5.721675558887881e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 5.721675558887881e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.470170839944064e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 5.721675558887881e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 5.721675558887881e-08}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 4.278012890782212e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.037161984140659e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.278012890782212e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.278012890782212e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 3.411629127516181e-06}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 3.411629127516181e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.308970630556439e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 3.411629127516181e-06}, {"name": "Aniline", "categories": ["water"], "amount": 3.411629127516181e-06}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.0003641328205736979}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 0.0003641328205736979}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.679966884016287e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.0003641328205736979}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.0003641328205736979}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.815371862412766e-05}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 9.815371862412766e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.027646396022553e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.815371862412766e-05}, {"name": "Barium II", "categories": ["water"], "amount": 9.815371862412766e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.136890786331367e-08}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.136890786331367e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.294960185401997e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.136890786331367e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.136890786331367e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 8.725444005900088e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.059504671760577e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 8.725444005900088e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 8.725444005900088e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.725295546990031e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.725295546990031e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.37687836602732e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.725295546990031e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.725295546990031e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.44322034490847e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 4.44322034490847e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.069153246761613e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.44322034490847e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.44322034490847e-06}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 3.75496697451903e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 3.75496697451903e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 5.898442237466312e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 3.75496697451903e-08}, {"name": "Butanol", "categories": ["water"], "amount": 3.75496697451903e-08}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 0.0004265994736482847}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.0001584041670005643}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.0004265994736482847}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.0004265994736482847}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.749326067209468e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 3.749326067209468e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.659882348209684e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.749326067209468e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 3.749326067209468e-05}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.234715992783451e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.234715992783451e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 8.826973826968142e-11}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.234715992783451e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 5.234715992783451e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.174926138213845e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.174926138213845e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.795826347063662e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.174926138213845e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 1.174926138213845e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.395264973032938e-05}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 2.395264973032938e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.412769507101826e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.395264973032938e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.395264973032938e-05}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 3.026742397087114e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.458143010834842e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 3.026742397087114e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 3.026742397087114e-09}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 8.626757056549432e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.219606440516642e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 8.626757056549432e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 8.626757056549432e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2.767189760363356e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 2.767189760363356e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 7.280610973935055e-10}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2.767189760363356e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.767189760363356e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.299953983938089e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 1.299953983938089e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 6.35445705661448e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.299953983938089e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1.299953983938089e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.621566470905957e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 1.621566470905957e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.360566418060404e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.621566470905957e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.621566470905957e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 4.417559462914081e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.694398897752627e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.417559462914081e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.417559462914081e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.432293305766979e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.432293305766979e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.24515316294891e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.432293305766979e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.432293305766979e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.277283465761985e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.277283465761985e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 2.404498845655725e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.277283465761985e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.277283465761985e-06}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.302442950512341e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.302442950512341e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.289412599718562e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.302442950512341e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.302442950512341e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.872786723738894e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.872786723738894e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 5.641078147934529e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.872786723738894e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 1.872786723738894e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.235884859811734e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 3.235884859811734e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.365567221814513e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.235884859811734e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 3.235884859811734e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.629812601254424e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.629812601254424e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.310024095211606e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.629812601254424e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.629812601254424e-07}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.0001198412639522681}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.0001198412639522681}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.0001088766917969901}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.0001198412639522681}, {"name": "Lead II", "categories": ["water"], "amount": 0.0001198412639522681}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.01421435704570649}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.01421435704570649}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.01131976984161415}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.01421435704570649}, {"name": "Mercury II", "categories": ["water"], "amount": 0.01421435704570649}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.000347251974289e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 7.000347251974289e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.100958176738442e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.000347251974289e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.000347251974289e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.0001416233637047218}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.0001416233637047218}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 3.905528422285198e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.0001416233637047218}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.0001416233637047218}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.053508057002389e-08}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 1.053508057002389e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.962829458065847e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.053508057002389e-08}, {"name": "Methanol", "categories": ["water"], "amount": 1.053508057002389e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 7.6618368734787e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 7.6618368734787e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.936085280865146e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 7.6618368734787e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 7.6618368734787e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 8.311034023864305e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 8.311034023864305e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.465911420374546e-11}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 8.311034023864305e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 8.311034023864305e-10}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2.153782493482439e-06}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.213049174069575e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.153782493482439e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 2.153782493482439e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.613933988242454e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 5.613933988242454e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 7.835146660455351e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.613933988242454e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.613933988242454e-06}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.445230029912323e-07}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 1.445230029912323e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 4.29623471206074e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.445230029912323e-07}, {"name": "Phenol", "categories": ["water"], "amount": 1.445230029912323e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 6.451763747794766e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.448472089483651e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 6.451763747794766e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 6.451763747794766e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.139721212223564e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 1.521286530292675e-09}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.139721212223564e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.139721212223564e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.122686194734411e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.122686194734411e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.327871485536874e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.122686194734411e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.122686194734411e-06}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 0.0003549487632190929}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.72046594869137e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.0003549487632190929}, {"name": "Silver I", "categories": ["water"], "amount": 0.0003549487632190929}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 6.905562739995133e-09}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 6.905562739995133e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.382198990353596e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 6.905562739995133e-09}, {"name": "Styrene", "categories": ["water"], "amount": 6.905562739995133e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 7.968250916430617e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 7.968250916430617e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 2.680460418188266e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 7.968250916430617e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 7.968250916430617e-09}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.001784950709509547}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 0.001784950709509547}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.0001049202120331686}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.001784950709509547}, {"name": "Thallium I", "categories": ["water"], "amount": 0.001784950709509547}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.78381889396906e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 1.78381889396906e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.85164323324186e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.78381889396906e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.78381889396906e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.746386821103701e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.746386821103701e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 2.679122057626619e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.746386821103701e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.746386821103701e-07}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 0.0001943856207712839}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.204785546242881e-05}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.0001943856207712839}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.0001943856207712839}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.565173748460817e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.565173748460817e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.088863470699424e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.565173748460817e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.565173748460817e-08}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.001281390275351284}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.0003022239733263844}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.001281390275351284}, {"name": "Zinc II", "categories": ["water"], "amount": 0.001281390275351284}, {"name": "Allyl chloride", "categories": ["water"], "amount": 8.429017961928794e-07}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.575815948545172e-06}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.745557815704155e-07}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.190721318298059e-07}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.525304066537304e-06}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.067154181198038e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.012074046590263e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.316057574160154e-06}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.435820878572442e-07}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08293365611197e-06}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.868035842995189e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.697851013747082e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.595972050549893e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.693131810971133e-06}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.201611994080305e-06}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2.816218458009491e-06}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.645635268000873e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63321509311328e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003679179000157798}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.046721419301423e-06}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.426094698261276e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.215475115327741e-08}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.417141884636277e-07}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.447187570462221e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.153782493482439e-06}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.374871613818311e-07}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 4.858573792004901e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.232653909130515e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.076913084469074e-07}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 1.098197427047431e-05}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.893858831703959e-05}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.830333293317086e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.515390246796504e-08}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.317274405383888e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.319900117822828e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.0002356486037648856}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.023248103304168e-07}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.733944065031746e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.170757064025455e-08}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 1.072282123260385e-07}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 2.136492607015195e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 7.540611166253686e-09}, {"name": "Fluorene", "categories": ["air"], "amount": 6.340370005987742e-08}, {"name": "Pyrene", "categories": ["air"], "amount": 1.489693829921784e-07}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 8.586426681913503e-07}, {"name": "Permethrin", "categories": ["water"], "amount": 1.631349575654322e-06}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.750910801247326e-07}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 8.186768257097815e-06}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.447187570462221e-06}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.683266154297907e-05}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.56814171253634e-09}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 3.910337206983045e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 2.72845770920059e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 3.017980058822788e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2.392964575665403e-06}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.482463566307345e-07}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.482463566307345e-07}, {"name": "Anthracene", "categories": ["water", "ground-, long-term"], "amount": 1.482463566307345e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 1.482463566307345e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 1.800005530365967e-08}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.270965132618554e-06}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 5.475489186926091e-06}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 5.475489186926091e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.475489186926091e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.68001324123363e-06}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1.604649759954404e-07}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1.604649759954404e-07}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.994433971000697e-07}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 6.904100488552844e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 9.247059606854275e-07}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 9.247059606854275e-07}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 4.323051960569407e-06}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 4.323051960569407e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 5.25676679463365e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 5.25676679463365e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.10045882856477e-06}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.10045882856477e-06}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.271877000596303e-06}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.128144482277807e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.128144482277807e-07}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 1.213463018854875e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 1.213463018854875e-05}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.99893220957287e-06}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.572897957726884e-06}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.532693380731927e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.532693380731927e-06}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.365689585903067e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 6.329528656865639e-07}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 6.329528656865639e-07}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.219103112365215e-05}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.59254506133548e-06}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 5.185841392896754e-06}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 5.185841392896754e-06}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 8.186768257097815e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.240830704261376e-06}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.240830704261376e-06}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 1.933001245358469e-07}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.138756788903267e-05}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 3.226840929334478e-06}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 5.617973852047992e-07}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.98609244395069e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1.021437295419715e-05}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 3.38781973718152e-08}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 3.959834347313802e-07}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 1.06955463935264e-09}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 3.316621333548514e-07}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 9.835774382303201e-08}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.595972050549893e-07}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 1.192936095744531e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 2.260416714415452e-07}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 3.215640671142427e-06}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.868990699782283e-07}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 1.498981009243825e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 3.648174791572838e-08}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 0.0008512395590675332}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 9.584426882536254e-08}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 1.705301486509108e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1.030977784498545e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 1.116961768802979e-07}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 2.836856103544123e-07}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 4.106090218171466e-06}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 4.154990716553336e-06}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 3.64090010082572e-07}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.399814139209636e-05}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 9.042640413963346e-08}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1.501788900034522e-05}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 3.331865725371847e-07}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.961110952175252e-06}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 2.429268504182158e-07}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 6.143703152798936e-08}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 5.642471818862786e-08}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1.891316381353075e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.896103550308627e-07}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.896103550308627e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 1.288581154974675e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 3.84109937728943e-05}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1.907208464708583e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 8.462352362389337e-06}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.320986861490519e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 4.341411800477886e-06}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.604649759954404e-07}, {"name": "Furfural", "categories": ["air"], "amount": 1.502187012899557e-06}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.000278655965657986}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 0.0001054070920551702}, {"name": "Acrolein", "categories": ["water"], "amount": 6.665051256104808e-05}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.979396590106392e-06}, {"name": "Deltamethrin", "categories": ["air", "low population density, long-term"], "amount": 2.432114271407734e-06}, {"name": "Dimethoate", "categories": ["air", "low population density, long-term"], "amount": 1.450336556007289e-06}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 4.170034845461837e-06}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.079383503825776e-07}, {"name": "Tribenuron-methyl", "categories": ["air", "low population density, long-term"], "amount": 5.933871636014717e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 5.933871636014717e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.10703904259797e-05}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.700857114830215e-05}, {"name": "Deltamethrin", "categories": ["air"], "amount": 2.432114271407734e-06}, {"name": "Thiram", "categories": ["air"], "amount": 3.318833067587056e-07}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 6.65621990575715e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 1.450336556007289e-06}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.301205936966423e-06}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 4.397306157507253e-06}, {"name": "Glufosinate ammonium", "categories": ["air", "low population density, long-term"], "amount": 1.203689565370465e-06}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 2.524584877853752e-06}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 1.203689565370465e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.608249320505897e-05}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 3.929501850601008e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 5.254464374508087e-08}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.439496017501393e-06}, {"name": "Triallate", "categories": ["air"], "amount": 1.994797541734314e-06}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.091220173205946e-06}, {"name": "Triallate", "categories": ["air", "low population density, long-term"], "amount": 1.994797541734314e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.502432842368696e-06}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.471577940283187e-07}, {"name": "Acrylate", "categories": ["water", "ground-, long-term"], "amount": 1.471577940283187e-07}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.42728831149469e-09}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.471577940283187e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 1.471577940283187e-07}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.466253946095121e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 8.76621004275217e-07}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.737390532413698e-07}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 1.548065464886148e-06}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.683266154297907e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 1.56759273851638e-07}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 2.162947071866905e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 4.102888901350442e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.102888901350442e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.089080284497417e-07}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.178952670852749e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 4.116697518203466e-07}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.087613472078912e-08}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.01707196669309744}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01652093401257881}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.01679645035283812}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01679645035283812}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.01679645035283812}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.02902479391025908}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.01445506514078247}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.01445506514078247}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.01445506514078247}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.875018079860632e-10}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.02733165400536528}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.02733165400536528}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.002242224813352487}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.02733165400536528}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.02733165400536528}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 2.394134592823284e-06}, {"name": "Fipronil", "categories": ["air"], "amount": 1.910879822549913e-05}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6.603079099676502e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 6.628803962248291e-07}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 1.18788292144222e-06}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.542085219156014e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1.542085219156014e-05}, {"name": "Thiodicarb", "categories": ["water"], "amount": 3.322385105029873e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 2.190174350805327e-08}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 1.721769764963922e-07}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.322385105029873e-06}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0003273415770833903}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0003273415770833903}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 5.255691825727848e-06}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.231831213671491e-05}, {"name": "Bifenthrin", "categories": ["water"], "amount": 0.0001387743810178501}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.275032384402566e-07}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.5357581337796e-06}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.0001387743810178501}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 4.407920302864048e-06}, {"name": "Cypermethrin", "categories": ["water"], "amount": 4.407920302864048e-06}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 9.916909830059196e-09}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 5.60170128255564e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 1.107716619993772e-08}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.137011181366541e-06}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 5.81904376994444e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.749333623130484e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 5.81904376994444e-07}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.139218513803301e-07}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 2.60541471313881e-07}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 5.076479545965154e-07}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 1.503426278564477e-06}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.503426278564477e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.980260479937435e-07}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.136691225952927e-07}, {"name": "Abamectin", "categories": ["air"], "amount": 0.0001725827242074209}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.922422872468747e-07}, {"name": "Diuron", "categories": ["air"], "amount": 3.259613204005238e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.745137730238623e-06}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 1.21290900099841e-07}, {"name": "Mancozeb", "categories": ["air"], "amount": 2.908673679003343e-07}, {"name": "Simazine", "categories": ["air"], "amount": 1.481452941847803e-05}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 6.706953745214803e-05}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.012542568378856e-07}, {"name": "2,4-D", "categories": ["water"], "amount": 3.800292070574911e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 8.523251019689758e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.800292070574911e-06}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 9.451186537882574e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.0002222818707172169}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.200431623087333e-05}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 7.314690101647855e-08}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 1.727606151626637e-06}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 3.006454018811787e-08}, {"name": "Mancozeb", "categories": ["water"], "amount": 2.183509523736084e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.631114310854442e-07}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.005393071807381e-07}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 4.547858321258661e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.807959891916134e-05}, {"name": "Simazine", "categories": ["water"], "amount": 2.807959891916134e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23717950402929e-05}, {"name": "Carbendazim", "categories": ["water"], "amount": 1.507634127146642e-06}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 1.10931733055766e-07}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.042170789321885e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 1.507634127146642e-06}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2.183509523736084e-06}, {"name": "Acephate", "categories": ["water"], "amount": 0.0006929586731928581}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 0.0002788074209685239}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.0006929586731928581}, {"name": "Abamectin", "categories": ["water"], "amount": 0.0002700521066349231}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 0.0002700521066349231}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.727606151626637e-06}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 1.446893607321647e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 3.556735419273804e-06}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 3.556735419273804e-06}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0001620187425254965}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 3.485087760053352e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.566963258352636e-06}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.052788519995491e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 1.052788519995491e-06}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 8.543925095773046e-10}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.863180093933961e-08}, {"name": "Diuron", "categories": ["water"], "amount": 6.641210189646113e-06}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 4.443117925008929e-07}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.492764463068921e-06}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.61889504397069e-08}, {"name": "Imazethapyr", "categories": ["water"], "amount": 2.079383503825776e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.738343513116037e-08}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.095367633065906e-08}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.531692830560872e-07}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.202054972942742e-07}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.700857114830215e-05}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 7.156099907291373e-08}, {"name": "Thiram", "categories": ["water"], "amount": 4.397306157507253e-06}, {"name": "Carboxin", "categories": ["water"], "amount": 1.091220173205946e-06}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 2.151319341991782e-07}, {"name": "Propiconazole", "categories": ["water"], "amount": 1.683266154297907e-05}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.434007646080272e-09}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.497246823486204e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 1.408833344831208e-06}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.177731145541553e-05}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.777631760132063e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 4.877774301563965e-05}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.000505990199856692}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 9.11101710044291e-06}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 5.194719296383719e-08}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 1.130467916894167e-07}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 2.231718232604536e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 1.271877000596303e-06}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 1.637115130288959e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 5.636214459363166e-07}, {"name": "Tebuconazole", "categories": ["water"], "amount": 8.186768257097815e-06}, {"name": "Methomyl", "categories": ["water"], "amount": 1.219103112365215e-05}, {"name": "Atrazine", "categories": ["water"], "amount": 4.323051960569407e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 1.694696047548674e-07}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.466373767111429e-07}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 1.408833344831208e-06}, {"name": "Thiabendazole", "categories": ["air"], "amount": 4.47052065944512e-07}, {"name": "Thiabendazole", "categories": ["air", "low population density, long-term"], "amount": 4.47052065944512e-07}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.766161270751631e-05}, {"name": "Diquat dibromide", "categories": ["air", "low population density, long-term"], "amount": 1.766161270751631e-05}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 4.877774301563965e-05}, {"name": "Thiram", "categories": ["air", "low population density, long-term"], "amount": 3.318833067587056e-07}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.000505990199856692}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.219103112365215e-05}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.023976515844457e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.271877000596303e-06}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.784835524267392e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.498539442643486e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.210676286439279e-05}, {"name": "EPTC", "categories": ["air"], "amount": 6.649389301397486e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.309719104482974e-06}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.156952398184586e-07}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 1.317911034561375e-07}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 9.276352767088789e-06}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 9.276352767088789e-06}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.441468942770363e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.136859738611991e-07}, {"name": "Imidacloprid", "categories": ["air", "low population density, long-term"], "amount": 1.206020145097143e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.206020145097143e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 2.504975663962942e-06}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 7.712931396797648e-08}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.641569414103807e-07}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 2.504975663962942e-06}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.748064230554958e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 7.176224143375262e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.156742828687684e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 3.95240352962132e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.95240352962132e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.95240352962132e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 7.176224143375262e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.416239543216468e-09}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 7.176224143375262e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 7.176224143375262e-08}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.488443545833287e-06}]}, {"unit": "kg CFC-11-Eq", "name": ["TRACI v2.1", "ozone depletion", "ozone depletion potential (ODP)"], "exchanges": [{"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.51}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 7.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 16}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 0.04}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.12}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.02}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.44}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.44}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.51}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.51}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.51}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.51}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 7.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.1}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 7.1}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 16}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 16}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 16}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 0.02}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 1}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 0.04}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 0.04}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.02}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.73}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "PM2.5-Eq", "name": ["TRACI v2.1", "particulate matter formation", "particulate matter formation potential (PMFP)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.06666666666666667}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0003555555555555556}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.06111111111111111}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06666666666666667}, {"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.06666666666666667}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06666666666666667}, {"name": "Ammonia", "categories": ["air"], "amount": 0.06666666666666667}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.0003555555555555556}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.06111111111111111}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.06111111111111111}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.06111111111111111}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.06111111111111111}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0003555555555555556}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0003555555555555556}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.007222222222222222}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.007222222222222222}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.007222222222222222}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.007222222222222222}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.007222222222222222}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 0.2277777777777778}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 1}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2277777777777778}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 0.2277777777777778}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2277777777777778}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 0.2277777777777778}]}, {"unit": "kg O3-Eq", "name": ["TRACI v2.1", "photochemical oxidant formation", "maximum incremental reactivity (MIR)"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 2.71774358974359}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 2.827076923076923}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 7.207435897435896}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 1.502284615384615}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.508666666666667}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 14.08402564102564}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.6142051282051282}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 3.161666666666667}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.88079487179487}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 6.53923076923077}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.6848717948717948}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.3559102564102564}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 7.450692307692309}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 11.37761538461539}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.7207282051282051}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 3.03776923076923}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 12.61210256410256}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.151030769230769}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.880410256410257}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 0.9558948717948718}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 0.2461333333333334}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.05562230769230769}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 19.11820512820513}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.02150871794871795}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.515538461538462}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 1.250128205128205}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.75671794871795}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.354641025641025}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.173097435897437}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.2806461538461539}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.2146461538461538}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.525694871794872}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 8.99502564102564}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.827435897435898}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.03084512820512822}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.6393897435897435}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.626125641025641}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 5.781384615384616}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 3.70951282051282}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.03916948717948718}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.9543666666666665}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.455846153846153}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0659951282051282}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 9.149615384615382}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.074415384615384}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.24385641025641}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 10.60682051282051}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 7.234589743589743}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.01871564102564103}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.04142923076923077}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.01437948717948718}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.03832076923076923}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.01437948717948718}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.6723358974358974}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.07200153846153845}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 11.47817948717949}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.697358974358974}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.481325641025641}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.05699948717948718}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.673564102564102}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.2872358974358974}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 6.809051282051282}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.750333333333334}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.05646230769230769}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 3.59535897435897}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 7.640128205128203}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 1.312930769230769}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.75648717948718}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 7.081051282051282}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.4894589743589743}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 2.497358974358974}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 11.66471794871795}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 1.223110256410257}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 0.2939897435897437}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.732928205128205}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.7344487179487179}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 4.004717948717949}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.915102564102564}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 6.315641025641025}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 7.764282051282052}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.71774358974359}, {"name": "1,4-Butanediol", "categories": ["air", "low population density, long-term"], "amount": 2.71774358974359}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.71774358974359}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 2.71774358974359}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.827076923076923}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 2.827076923076923}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.827076923076923}, {"name": "1-Pentanol", "categories": ["air"], "amount": 2.827076923076923}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.207435897435896}, {"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 7.207435897435896}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.207435897435896}, {"name": "1-Pentene", "categories": ["air"], "amount": 7.207435897435896}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.502284615384615}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 1.502284615384615}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.502284615384615}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 1.502284615384615}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.508666666666667}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 2.508666666666667}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.508666666666667}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 2.508666666666667}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.08402564102564}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 14.08402564102564}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.08402564102564}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 14.08402564102564}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.6142051282051282}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.6142051282051282}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.6142051282051282}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.6142051282051282}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.161666666666667}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 3.161666666666667}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.161666666666667}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.161666666666667}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.88079487179487}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 3.88079487179487}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.88079487179487}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 3.88079487179487}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.53923076923077}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 6.53923076923077}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.53923076923077}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 6.53923076923077}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.6848717948717948}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.6848717948717948}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.6848717948717948}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.6848717948717948}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3559102564102564}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.3559102564102564}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3559102564102564}, {"name": "Acetone", "categories": ["air"], "amount": 0.3559102564102564}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.450692307692309}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 7.450692307692309}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.450692307692309}, {"name": "Acrolein", "categories": ["air"], "amount": 7.450692307692309}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.37761538461539}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 11.37761538461539}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.37761538461539}, {"name": "Acrylic acid", "categories": ["air"], "amount": 11.37761538461539}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7207282051282051}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.7207282051282051}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7207282051282051}, {"name": "Benzene", "categories": ["air"], "amount": 0.7207282051282051}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.03776923076923}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 3.03776923076923}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.03776923076923}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.03776923076923}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.61210256410256}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 12.61210256410256}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12.61210256410256}, {"name": "Butadiene", "categories": ["air"], "amount": 12.61210256410256}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.151030769230769}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 1.151030769230769}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.151030769230769}, {"name": "Butane", "categories": ["air"], "amount": 1.151030769230769}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.880410256410257}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 2.880410256410257}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.880410256410257}, {"name": "Butanol", "categories": ["air"], "amount": 2.880410256410257}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9558948717948718}, {"name": "Butyrolactone", "categories": ["air", "low population density, long-term"], "amount": 0.9558948717948718}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9558948717948718}, {"name": "Butyrolactone", "categories": ["air"], "amount": 0.9558948717948718}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2461333333333334}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 0.2461333333333334}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2461333333333334}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 0.2461333333333334}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.05562230769230769}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.11820512820513}, {"name": "Chlorine", "categories": ["air", "low population density, long-term"], "amount": 19.11820512820513}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.11820512820513}, {"name": "Chlorine", "categories": ["air"], "amount": 19.11820512820513}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02150871794871795}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.02150871794871795}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02150871794871795}, {"name": "Chloroform", "categories": ["air"], "amount": 0.02150871794871795}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.515538461538462}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 2.515538461538462}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.515538461538462}, {"name": "Cumene", "categories": ["air"], "amount": 2.515538461538462}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.250128205128205}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.250128205128205}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.250128205128205}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.250128205128205}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.75671794871795}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 3.75671794871795}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.75671794871795}, {"name": "Diethyl ether", "categories": ["air"], "amount": 3.75671794871795}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.354641025641025}, {"name": "Diethylene glycol", "categories": ["air", "low population density, long-term"], "amount": 3.354641025641025}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.354641025641025}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.354641025641025}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.173097435897437}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 3.173097435897437}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.173097435897437}, {"name": "Dimethylamine", "categories": ["air"], "amount": 3.173097435897437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2806461538461539}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.2806461538461539}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2806461538461539}, {"name": "Ethane", "categories": ["air"], "amount": 0.2806461538461539}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.0007272820512820512}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.00487974358974359}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.08561692307692306}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.01749717948717949}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2146461538461538}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.2146461538461538}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2146461538461538}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.2146461538461538}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.525694871794872}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 1.525694871794872}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.525694871794872}, {"name": "Ethanol", "categories": ["air"], "amount": 1.525694871794872}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.99502564102564}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 8.99502564102564}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.99502564102564}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.827435897435898}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.827435897435898}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.827435897435898}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.827435897435898}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03084512820512822}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.03084512820512822}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03084512820512822}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.03084512820512822}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.6393897435897435}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.6393897435897435}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.6393897435897435}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.626125641025641}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.626125641025641}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.626125641025641}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.626125641025641}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.781384615384616}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 5.781384615384616}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.781384615384616}, {"name": "Ethylamine", "categories": ["air"], "amount": 5.781384615384616}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.70951282051282}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 3.70951282051282}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.70951282051282}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 3.70951282051282}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03916948717948718}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.03916948717948718}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03916948717948718}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 0.03916948717948718}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.9543666666666665}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.9543666666666665}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.9543666666666665}, {"name": "Ethyne", "categories": ["air"], "amount": 0.9543666666666665}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.455846153846153}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.455846153846153}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.455846153846153}, {"name": "Formaldehyde", "categories": ["air"], "amount": 9.455846153846153}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0659951282051282}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0659951282051282}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0659951282051282}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0659951282051282}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.149615384615382}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 9.149615384615382}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.149615384615382}, {"name": "Furan", "categories": ["air"], "amount": 9.149615384615382}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.074415384615384}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 1.074415384615384}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.074415384615384}, {"name": "Heptane", "categories": ["air"], "amount": 1.074415384615384}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.24385641025641}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.24385641025641}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.24385641025641}, {"name": "Hexane", "categories": ["air"], "amount": 1.24385641025641}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.60682051282051}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 10.60682051282051}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.60682051282051}, {"name": "Isoprene", "categories": ["air"], "amount": 10.60682051282051}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.234589743589743}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 7.234589743589743}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.234589743589743}, {"name": "Isopropylamine", "categories": ["air"], "amount": 7.234589743589743}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01437948717948718}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.01437948717948718}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01437948717948718}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.01437948717948718}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01871564102564103}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.01871564102564103}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01871564102564103}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.01871564102564103}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.04142923076923077}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.04142923076923077}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.04142923076923077}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.04142923076923077}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01437948717948718}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.01437948717948718}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01437948717948718}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.01437948717948718}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03832076923076923}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.03832076923076923}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03832076923076923}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.03832076923076923}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.6723358974358974}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.6723358974358974}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.6723358974358974}, {"name": "Methanol", "categories": ["air"], "amount": 0.6723358974358974}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.07200153846153845}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.07200153846153845}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.07200153846153845}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.07200153846153845}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.47817948717949}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 11.47817948717949}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.47817948717949}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 11.47817948717949}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.697358974358974}, {"name": "Methylamine", "categories": ["air", "low population density, long-term"], "amount": 7.697358974358974}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.697358974358974}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.481325641025641}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 1.481325641025641}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.481325641025641}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 1.481325641025641}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05699948717948718}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.05699948717948718}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05699948717948718}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.05699948717948718}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.673564102564102}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 2.673564102564102}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.673564102564102}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.673564102564102}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2872358974358974}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.2872358974358974}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2872358974358974}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.2872358974358974}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.809051282051282}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 6.809051282051282}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.809051282051282}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 6.809051282051282}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.750333333333334}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 9.750333333333334}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.750333333333334}, {"name": "m-Xylene", "categories": ["air"], "amount": 9.750333333333334}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05646230769230769}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.05646230769230769}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05646230769230769}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 0.05646230769230769}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.59535897435897}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 3.59535897435897}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.59535897435897}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 3.59535897435897}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.640128205128203}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 7.640128205128203}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.640128205128203}, {"name": "o-Xylene", "categories": ["air"], "amount": 7.640128205128203}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.312930769230769}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 1.312930769230769}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.312930769230769}, {"name": "Pentane", "categories": ["air"], "amount": 1.312930769230769}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.75648717948718}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 2.75648717948718}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.75648717948718}, {"name": "Phenol", "categories": ["air"], "amount": 2.75648717948718}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.081051282051282}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 7.081051282051282}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.081051282051282}, {"name": "Propanal", "categories": ["air"], "amount": 7.081051282051282}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.4894589743589743}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.4894589743589743}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.4894589743589743}, {"name": "Propane", "categories": ["air"], "amount": 0.4894589743589743}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.497358974358974}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 2.497358974358974}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.497358974358974}, {"name": "Propanol", "categories": ["air"], "amount": 2.497358974358974}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.66471794871795}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 11.66471794871795}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.66471794871795}, {"name": "Propene", "categories": ["air"], "amount": 11.66471794871795}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.223110256410257}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 1.223110256410257}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.223110256410257}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.223110256410257}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2939897435897437}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 0.2939897435897437}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2939897435897437}, {"name": "Propylene oxide", "categories": ["air"], "amount": 0.2939897435897437}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.732928205128205}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.732928205128205}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.732928205128205}, {"name": "Styrene", "categories": ["air"], "amount": 1.732928205128205}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.7344487179487179}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.7344487179487179}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.7344487179487179}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.7344487179487179}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.004717948717949}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 4.004717948717949}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.004717948717949}, {"name": "Toluene", "categories": ["air"], "amount": 4.004717948717949}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.915102564102564}, {"name": "Toluene, 2-chloro", "categories": ["air", "low population density, long-term"], "amount": 2.915102564102564}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.915102564102564}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.915102564102564}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.315641025641025}, {"name": "Trimethylamine", "categories": ["air", "low population density, long-term"], "amount": 6.315641025641025}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.315641025641025}, {"name": "Trimethylamine", "categories": ["air"], "amount": 6.315641025641025}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.764282051282052}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 7.764282051282052}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.764282051282052}, {"name": "Xylene", "categories": ["air"], "amount": 7.764282051282052}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 1.250128205128205}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.05562230769230769}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01437948717948718}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.01437948717948718}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01437948717948718}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.05562230769230769}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.01437948717948718}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.05562230769230769}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.05562230769230769}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.01437948717948718}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 1.260882051282051}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.236333333333333}, {"name": "Acrylonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.236333333333333}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 2.236333333333333}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.236333333333333}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 2.236333333333333}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8345769230769228}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.8345769230769228}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.8345769230769228}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8345769230769228}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.8345769230769228}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8067717948717951}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.8067717948717951}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8067717948717951}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.8067717948717951}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.8067717948717951}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.6393897435897435}, {"name": "Methylamine", "categories": ["air"], "amount": 7.697358974358974}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.05905051282051282}, {"name": "Nitric oxide", "categories": ["air"], "amount": 24.79358974358974}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.4244974358974359}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.230015384615385}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 2.392307692307691}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.411179487179487}, {"name": "Ethylene", "categories": ["air"], "amount": 8.99502564102564}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.344487179487179}, {"name": "Butene", "categories": ["air"], "amount": 9.726589743589745}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.726589743589745}, {"name": "Butene", "categories": ["air", "low population density, long-term"], "amount": 9.726589743589745}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.726589743589745}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 9.726589743589745}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 3.59535897435897}, {"name": "EPTC", "categories": ["air"], "amount": 1.665346153846154}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.665346153846154}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 0.1783651282051282}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.1783651282051282}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 0.1783651282051282}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.1783651282051282}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 0.1783651282051282}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 24.79358974358974}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 24.79358974358974}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 24.79358974358974}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 24.79358974358974}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 24.79358974358974}]}, {"unit": "CTU", "name": ["USEtox no LT", "ecotoxicity no LT", "total no LT"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 0.877584851265}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.213832412002}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 181.907571259}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.201500544561}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0805092493331}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.254007818656}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.31522045892}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0205719242927}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3.46313641731}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 252.348005989}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.288405388775}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.789914178246}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 10.5159542713}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 7610.91467447}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0792660811821}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.742928699357}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 26.5305279317}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 8495.54699384}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 104.645185471}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 14.5416351349}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 44.5937564368}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9281.12656076}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 11852.494877}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 589.394816651}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 5287.31629169}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.00776756842}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 30.6435409146}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 489.022277493}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 49.3383618825}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 11406.4264869}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 44920.2741276}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 819.750900734}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 607.217272443}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 21.1234848095}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 358.561985444}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 30.7583894484}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 49.5282745557}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.14249909351}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0641848556386}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 6.54175482903}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0296007905203}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 626.63362356}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 342.062610885}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 170.495991795}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 39.297979558}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1612.809976}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 740.722625064}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5733.52633005}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 73.9902502964}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 869.047924983}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 946.62717898}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 4.53042851425}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.110314050257}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.88748682607}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 30.3162206475}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3921.68984432}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 4936.04575274}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 10008.3409621}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 3071.9425648}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 54554.0844418}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 243.104159208}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 21581.8131664}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.30747861538}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 14691.3324384}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1108.35815916}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 45.5357521343}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 758.794303428}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.282103029633}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 86.4129463713}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 57823.876679}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1727.75274855}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 4.7264644488}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 517.146416179}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 41802.2176206}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 650.179138161}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 8.47812563194}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 585.837625922}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 479.723275207}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 269.880036164}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 8.87270330818}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1705.9443794}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 23090.1167695}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 29164.371915}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0907274546453}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 21165.2404087}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.00059565169664}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.1391426236}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 1274.34980467}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.4310591}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 115.463053311}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 280.319262067}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1409.81393453}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1092.53765425}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 476.076207125}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 295.591348607}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 285.091856931}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 9193.9391567}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1534.67733935}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00181061929395}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.114424315594}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1921.72654057}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 169738.0331}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 5.52247787207}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.50951518917}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 1747.27546202}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 20486.628349}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 953.831166407}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3621.59679147}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 14.0313466756}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 24.1739950255}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.244852480819}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 2567.0192411}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 142941.008639}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.407043416927}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 7450.35790744}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 365.7065026}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4019.34035685}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 2172.99361442}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 49.8209340257}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4538.02049618}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 23.9646018947}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 19.0775888949}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 97.0735092246}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 112006.429837}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1.19531644732}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.204997960687}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.57614589605}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.151713303833}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.364871214146}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 135.341583662}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.154420248453}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.725143832352}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0250784955846}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 560.065284455}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 202.580565585}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 17345.464233}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.113169917113}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.231449919653}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.83113132471}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.00783067455}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 30.6061907842}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 384.082670076}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 5875.23276591}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 813.481531495}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 32315.1068764}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 164.642808893}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 264.337890885}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 2660.18257168}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 6137.04937553}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 10219.6455873}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 10054.7533582}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8386.99402138}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1116.7046056}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 21.613539292}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 27.6249870781}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.69232633066}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.20440887968}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00278041910208}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 761.209962198}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 103.944077256}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 62492.7187904}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.68978977302e-05}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000212391668064}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 5495.69785952}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 1035.78217844}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 210.720423099}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1044.85948334}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.49246368075e-05}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.183766566205}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 9461.35207502}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 161.242132537}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 90.0956219738}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 133638.403915}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 173.663608682}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 20981.6418249}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 11123.3031216}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2289.7811287}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 194.241971734}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 266.853115161}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 255.253645922}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 124.972879067}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0347588374378}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 12065.867642}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 225.091346897}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 507.88346243}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 23.1638739103}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5393.37077103}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 220.374273005}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 458.778784193}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 11.6499437265}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0970154355392}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.0631913378953}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.06674912637}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.2256583397}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 14094.5350148}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.576607505372}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.62762952007}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.057728292117}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.529308945736}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.24108364603}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1915.77089829}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6441.70287307}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 745.421708679}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 117.347037233}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1267.94509891}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 4.14229731998}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 2202.55505481}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 17.3618871758}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0204857914181}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 5483.03314242}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 126.204653291}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 6082.16061629}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 215.530846629}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 10.9506349943}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 831.618239881}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 27.4490071731}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 129.472853108}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 21.8555056751}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5616.26291085}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1425.3454298}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 89.9804499302}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0321422533231}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 156.230936334}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 83124.2865481}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2932.02578593}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.0140546231978}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 781.103671913}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 248.743561249}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 23.64350251}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1194.23692098}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4549.47374021}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6039.63943014}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 477399.900897}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 9.10152776605}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 21.8797176827}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 20.9110658397}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.0413948763067}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1116.90069491}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 349.550094036}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 19162.5565369}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 24118.1778032}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 498.135556269}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 6.27104198098}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.375666926493}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 60375.4789921}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0932925356856}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 15.0525551269}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 310.259588849}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 285.069157112}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 10.7466745139}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0953060393702}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.30429241591}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 196.100163711}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3507.53000309}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 11.6430968574}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.08961639208}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 35.5024975135}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 153.002197788}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 145.514101305}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 19.5129109469}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 937.412433146}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3701.9722186}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 2964.10862814}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 47.1862687661}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 80059.4895541}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 100987.433379}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 12634.6399818}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.534489261}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.019891430555}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 5256.02237607}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 1581.689868}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 79.0291838857}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 449.863767219}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0272867515794}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1.18106678075}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 4553.22796733}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 449.513177271}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3383.33375278}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 41283.7582111}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 4664.85311259}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 53712.0311845}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 53644.7897429}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 14085.2938275}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 862.918167377}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 41325.5719851}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1025.56311421}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 15803.2042289}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1347.13020059}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1714.41984509}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0131267190366}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4220.83504003}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 319.761373813}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 6056.63650588}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 175.173865712}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 38.4438237643}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 52549.7251044}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1315.30446537}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.0918471656337}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 592.510750365}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 14604.3343293}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.021957876845}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 163.50212264}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 3.04863294124}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 46228.7322996}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 58269.3699574}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1059.06456811}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0112737888674}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 16684.3640155}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 21139.0169079}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.835334946199}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.835334946199}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 0.856459898732}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.210596171482}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.210596171482}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.212214291742}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.198783735445}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.198783735445}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.200142140003}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0794096203566}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0794096203566}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0799594348449}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.251546230591}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.251546230591}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.252777024624}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0209785856491}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0209785856491}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0207752549709}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.59610285522}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.59610285522}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3.02961963627}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.296430617956}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.296430617956}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.292418003365}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.2491571695}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.2491571695}, {"name": "Acetic acid", "categories": ["air"], "amount": 10.3825557204}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0790346968653}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0790346968653}, {"name": "Acetone", "categories": ["air"], "amount": 0.0791503890237}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.740570515773}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.740570515773}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.741749607565}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 108.575306681}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 108.575306681}, {"name": "Acrolein", "categories": ["air"], "amount": 106.610246076}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2566863107}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2566863107}, {"name": "Acrylic acid", "categories": ["air"], "amount": 13.8991607228}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58181265975}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58181265975}, {"name": "Aniline", "categories": ["air"], "amount": 2.29479011409}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 493.04979056}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 493.04979056}, {"name": "Antimony ion", "categories": ["air"], "amount": 491.036034026}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 612.06483331}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 612.06483331}, {"name": "Barium II", "categories": ["air"], "amount": 609.641052877}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15021596859}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.15021596859}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 3.14635753105}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0638123434892}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0638123434892}, {"name": "Benzene", "categories": ["air"], "amount": 0.0639985995639}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0271505150441}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0271505150441}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0283756527822}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 621.912773802}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 621.912773802}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 624.273198681}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 341.02911476}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 341.02911476}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 341.545862823}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.5330803026}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 43.5330803026}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 107.014536049}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1631.16519404}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1631.16519404}, {"name": "Beryllium II", "categories": ["air"], "amount": 1621.98758502}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107942211711}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107942211711}, {"name": "Butanol", "categories": ["air"], "amount": 0.109128130984}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.5175522617}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.5175522617}, {"name": "Butyrolactone", "categories": ["air"], "amount": 29.9168864546}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3955.35973783}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3955.35973783}, {"name": "Cadmium II", "categories": ["air"], "amount": 3938.52479107}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.30654406122}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.30654406122}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.3070113383}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14212.4900179}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14212.4900179}, {"name": "Chloramine", "categories": ["air"], "amount": 14451.9112281}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 749.484412124}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 749.484412124}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 754.139357776}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.281794448257}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.281794448257}, {"name": "Chloroform", "categories": ["air"], "amount": 0.281948738945}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.3875199741}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84.3875199741}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 85.4002331727}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 521.359242738}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 521.359242738}, {"name": "Chromium III", "categories": ["air"], "amount": 519.252829459}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 42142.7644597}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42142.7644597}, {"name": "Chromium VI", "categories": ["air"], "amount": 41972.4910401}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1722.64845736}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1722.64845736}, {"name": "Cobalt II", "categories": ["air"], "amount": 1714.29641838}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 23320.1199541}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23320.1199541}, {"name": "Copper ion", "categories": ["air"], "amount": 23205.1183618}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0740771512599}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0740771512599}, {"name": "Cumene", "categories": ["air"], "amount": 0.0824023029526}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000405353473058}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000405353473058}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.000500502584849}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00182893035243}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00182893035243}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00181977482319}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.116780482618}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.116780482618}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.115602399106}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.5884389935}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.5884389935}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 23.8812170095}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.25099048109}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.25099048109}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.247921480955}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 106410.828059}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 106410.828059}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 124675.918349}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.412215588906}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.412215588906}, {"name": "Dipropylamine", "categories": ["air"], "amount": 0.409629502916}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.0073923683}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.0073923683}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 19.0424906316}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19531644732}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19531644732}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.19531644732}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.204908392992}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.204908392992}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.20495317684}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.575224191555}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.575224191555}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.575685043803}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.151546557655}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.151546557655}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.151629930744}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.364404011361}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.364404011361}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.364637612753}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.151221906768}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.151221906768}, {"name": "Ethanol", "categories": ["air"], "amount": 0.152821077611}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.721533745751}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.721533745751}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.723338789052}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0246194040751}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0246194040751}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.113268388553}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.113268388553}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.113219152833}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.228364488859}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.228364488859}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.229907204256}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64711600974}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64711600974}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.73912366723}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.00621475928}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.00621475928}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.00702271691}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.9823636252}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.9823636252}, {"name": "Formaldehyde", "categories": ["air"], "amount": 26.8036753517}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67005629758}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67005629758}, {"name": "Formamide", "categories": ["air"], "amount": 1.68119131412}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.96030446924}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.96030446924}, {"name": "Formic acid", "categories": ["air"], "amount": 9.08235667446}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00233100240177}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00233100240177}, {"name": "Furan", "categories": ["air"], "amount": 0.00255571075192}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37442513185e-06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37442513185e-06}, {"name": "Heptane", "categories": ["air"], "amount": 1.0136161431e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.76400672692e-05}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.76400672692e-05}, {"name": "Hexane", "categories": ["air"], "amount": 0.000135015867667}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.88928850923e-05}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.88928850923e-05}, {"name": "Isoprene", "categories": ["air"], "amount": 5.69087609499e-05}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.191379678204}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.191379678204}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.187573122205}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 176.062889039}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 176.062889039}, {"name": "Lead II", "categories": ["air"], "amount": 174.86324886}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 12297.3346688}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12297.3346688}, {"name": "Mercury II", "categories": ["air"], "amount": 12181.6011554}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.6381118935}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.6381118935}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 11.64402781}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0969143119131}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0969143119131}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0969648737262}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0631311766242}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0631311766242}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.0631612572598}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0665506403}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0665506403}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.06664988334}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22225788207}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22225788207}, {"name": "Methanol", "categories": ["air"], "amount": 0.223958110885}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57583947294}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57583947294}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.576223489156}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.66685846076}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.66685846076}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.64724399041}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0576835058781}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0576835058781}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0577058989975}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.528720817166}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.528720817166}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.529014881451}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14951480127}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14951480127}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.19529922365}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 118.302979947}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 118.302979947}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 117.82500859}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.85521540325}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.85521540325}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.99875636162}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164468033888}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0164468033888}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.0184662974034}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6137.38470478}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6137.38470478}, {"name": "Nickel II", "categories": ["air"], "amount": 6109.77266053}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.8739854374}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.8739854374}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 10.9123102159}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.040385767}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.040385767}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 27.2446964701}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0285629132937}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0285629132937}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.0303525833084}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00598165461721}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00598165461721}, {"name": "Pentane", "categories": ["air"], "amount": 0.0100181389075}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5610007283}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.5610007283}, {"name": "Phenol", "categories": ["air"], "amount": 19.6022516191}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1135.06293036}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1135.06293036}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1164.64992567}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3414.13714823}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3414.13714823}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3981.80544422}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.388389161408}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.388389161408}, {"name": "Propanal", "categories": ["air"], "amount": 0.38202804395}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0917394115155}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0917394115155}, {"name": "Propanol", "categories": ["air"], "amount": 0.0925159736005}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.3227695392}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.3227695392}, {"name": "Propionic acid", "categories": ["air"], "amount": 10.5347220266}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0936882576845}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0936882576845}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0944971485273}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.30429241591}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.30429241591}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.30429241591}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 2989.82139002}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2989.82139002}, {"name": "Selenium IV", "categories": ["air"], "amount": 2976.96500908}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 80815.4597124}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80815.4597124}, {"name": "Silver I", "categories": ["air"], "amount": 80437.4746333}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.534489261}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.534489261}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.534489261}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0111386365058}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0111386365058}, {"name": "Styrene", "categories": ["air"], "amount": 0.0155150335304}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 77.9916598746}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 77.9916598746}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 78.5104218802}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0273369643254}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0273369643254}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.0273118579524}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18753802654}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18753802654}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1.18430240365}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 14197.9185038}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14197.9185038}, {"name": "Thallium I", "categories": ["air"], "amount": 14141.6061657}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1364.56823187}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1364.56823187}, {"name": "Tin ion", "categories": ["air"], "amount": 1355.84921623}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0124211271458}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0124211271458}, {"name": "Toluene", "categories": ["air"], "amount": 0.0127739230912}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0241287861807}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0241287861807}, {"name": "Trimethylamine", "categories": ["air"], "amount": 0.0230433315129}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 46651.9104447}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46651.9104447}, {"name": "Vanadium V", "categories": ["air"], "amount": 46440.3213721}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0100183472103}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0100183472103}, {"name": "Xylene", "categories": ["air"], "amount": 0.0106460680389}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16872.4717639}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16872.4717639}, {"name": "Zinc II", "categories": ["air"], "amount": 16778.4178897}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["soil"], "amount": 614.959345387}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["soil"], "amount": 763.100537904}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2044.44096164}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 4936.04575274}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4936.04575274}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4936.04575274}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4936.04575274}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 650.179138161}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 650.179138161}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 650.179138161}, {"name": "Chromium III", "categories": ["soil"], "amount": 650.179138161}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["soil"], "amount": 52555.1604784}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2153.79076908}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 29164.371915}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 29164.371915}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 29164.371915}, {"name": "Copper ion", "categories": ["soil"], "amount": 29164.371915}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 103.944077256}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["soil"], "amount": 221.497791887}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["soil"], "amount": 15597.0651453}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 147.533859595}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 7664.97812916}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 7664.97812916}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 7664.97812916}, {"name": "Nickel II", "categories": ["soil"], "amount": 7664.97812916}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["soil"], "amount": 3731.25861636}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 100987.433379}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 100987.433379}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 100987.433379}, {"name": "Silver I", "categories": ["soil"], "amount": 100987.433379}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 92.4913549105}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["soil"], "amount": 17701.2387824}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1714.41984509}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1714.41984509}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1714.41984509}, {"name": "Tin ion", "categories": ["soil"], "amount": 1714.41984509}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 58269.3699574}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 58269.3699574}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 58269.3699574}, {"name": "Vanadium V", "categories": ["soil"], "amount": 58269.3699574}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 21139.0169079}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 21139.0169079}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 21139.0169079}, {"name": "Zinc II", "categories": ["soil"], "amount": 21139.0169079}, {"name": "1,4-Butanediol", "categories": ["water", "ground-"], "amount": 1.88048378921}, {"name": "1,4-Butanediol", "categories": ["water", "ocean"], "amount": 1.24888237456e-06}, {"name": "1,4-Butanediol", "categories": ["water", "surface water"], "amount": 7.30933198218}, {"name": "1,4-Butanediol", "categories": ["water"], "amount": 7.30933198218}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 2.39767700727}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.00252054920435}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 15.5680380784}, {"name": "1-Pentanol", "categories": ["water"], "amount": 15.5680380784}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.83532693565}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00335253332003}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.53883712597}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.53883712597}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.563358392411}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.00122097072413}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.46341652464}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.46341652464}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 4.12620317214}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.00539448887153}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 21.4154999078}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 21.4154999078}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.00474277583209}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 14.5722688399}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 14.5722688399}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.702598655348}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.00143091470463}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 6.02567201913}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 6.02567201913}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 18.281896538}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.365080472264}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 4115.81224674}, {"name": "Acenaphthene", "categories": ["water"], "amount": 4115.81224674}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.4090746304}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0197047366836}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 47.1724719364}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 47.1724719364}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 12.6438444691}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00134658392511}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 49.8391256658}, {"name": "Acetic acid", "categories": ["water"], "amount": 49.8391256658}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.2571833334}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00354663492385}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.21330906629}, {"name": "Acetone", "categories": ["water"], "amount": 1.21330906629}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 1.95659022868}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0363870763409}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.85687366902}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.85687366902}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.428156522692}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 133.532588712}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 133.532588712}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.329136796886}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 354.907392769}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 354.907392769}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 66.7690720679}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.00592084616789}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 630.6490501}, {"name": "Aniline", "categories": ["water"], "amount": 630.6490501}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 9.07429387723e-18}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1221.51839968}, {"name": "Antimony ion", "categories": ["water"], "amount": 1221.51839968}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.44533885721e-17}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1526.10691053}, {"name": "Barium II", "categories": ["water"], "amount": 1526.10691053}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.04858705518}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0130046485146}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 65.983059347}, {"name": "Benzene", "categories": ["water"], "amount": 65.983059347}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.075129666383}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 393.262078174}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 393.262078174}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1.70380121609}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.00246484482978}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 174.894328739}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 174.894328739}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.00403492671258}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 200.43759694}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 200.43759694}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.69894016278e-17}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3719.35347873}, {"name": "Beryllium II", "categories": ["water"], "amount": 3719.35347873}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.94260861398}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.000990721472819}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.51556379499}, {"name": "Butanol", "categories": ["water"], "amount": 5.51556379499}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.00630729817118}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 28.3737992555}, {"name": "Butyl acetate", "categories": ["water"], "amount": 28.3737992555}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 40.4477825543}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.00307454028955}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 154.646449236}, {"name": "Butyrolactone", "categories": ["water"], "amount": 154.646449236}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.26970102448e-17}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9712.29169009}, {"name": "Cadmium II", "categories": ["water"], "amount": 9712.29169009}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 4.82294471251}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.230171311538}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 153.423085687}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 153.423085687}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 15577.3710813}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.63968414852e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 71953.1321372}, {"name": "Chloramine", "categories": ["water"], "amount": 71953.1321372}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 929.270625492}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 0.0133105855615}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 2928.07024673}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 2928.07024673}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.08589206049}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.0534688731889}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 41.1788799623}, {"name": "Chloroform", "categories": ["water"], "amount": 41.1788799623}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 151.296640867}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.163343449842}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 553.804523877}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 553.804523877}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.32106975587e-16}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 104644.276363}, {"name": "Chromium VI", "categories": ["water"], "amount": 104644.276363}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.69990359972e-18}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1294.59266797}, {"name": "Chromium III", "categories": ["water"], "amount": 1294.59266797}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 9.294818138e-18}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4099.42299394}, {"name": "Cobalt II", "categories": ["water"], "amount": 4099.42299394}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.03201448924e-16}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 55247.572332}, {"name": "Copper ion", "categories": ["water"], "amount": 55247.572332}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2.4742100852}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00654705716437}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 665.070188075}, {"name": "Cumene", "categories": ["water"], "amount": 665.070188075}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.125391464036}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.90157543781e-05}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 48.6887426224}, {"name": "Cyclohexane", "categories": ["water"], "amount": 48.6887426224}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 7.13335497877}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00405279791329}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 65.4673526162}, {"name": "Diethylamine", "categories": ["water"], "amount": 65.4673526162}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.00492028322356}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 44.0393806465}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 44.0393806465}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 14.2844619225}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00784287237722}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 86.1910342993}, {"name": "Dimethylamine", "categories": ["water"], "amount": 86.1910342993}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 19.1969003429}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.0193638036234}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 375.153401114}, {"name": "Dipropylamine", "categories": ["water"], "amount": 375.153401114}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.645470406153}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.0544918255704}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 21.6929221094}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 21.6929221094}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.18602552885}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0288539804571}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 15.118230043}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 15.118230043}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 19.4898450525}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 1911.47985113}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1911.47985113}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.603906199083}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.000982908829623}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.11364403216}, {"name": "Ethanol", "categories": ["water"], "amount": 3.11364403216}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.73241367889}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.182067694772}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 607.053269966}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 607.053269966}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.871238127174}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00792142074535}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 5.86649047108}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 5.86649047108}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 4.74695548969}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.00542378418328}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 31.3245702049}, {"name": "Ethylamine", "categories": ["water"], "amount": 31.3245702049}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 9.19599755927}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00149450283134}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 33.8825908879}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 33.8825908879}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 3.76959585656}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.0858467086862}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 23.5345841881}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 23.5345841881}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 83.9611714942}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.0244435939629}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 297.421123119}, {"name": "Formaldehyde", "categories": ["water"], "amount": 297.421123119}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.27635583284}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 5.70502569648e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 7.03496309107}, {"name": "Formamide", "categories": ["water"], "amount": 7.03496309107}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 11.1765675378}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00214519858316}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 44.3985978111}, {"name": "Formic acid", "categories": ["water"], "amount": 44.3985978111}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.0835600185334}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 2834.66165807}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 2834.66165807}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.0244198439156}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 3.3839735808e-06}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 64.7766136478}, {"name": "Hexane", "categories": ["water"], "amount": 64.7766136478}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 6.84697909866}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 26679.1520578}, {"name": "Hydrazine", "categories": ["water"], "amount": 26679.1520578}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 7.38073006547}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0098284709809}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 63.9075630591}, {"name": "Isopropylamine", "categories": ["water"], "amount": 63.9075630591}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.38723579768e-19}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 374.712087307}, {"name": "Lead II", "categories": ["water"], "amount": 374.712087307}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.78498613101e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 22085.5777807}, {"name": "Mercury II", "categories": ["water"], "amount": 22085.5777807}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.826658447362}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0196317992577}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 14.6086211315}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 14.6086211315}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 2.26922525202}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.276852728533}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 66.3699032274}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 66.3699032274}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.510872918433}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.00149137267179}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.64703869861}, {"name": "Methanol", "categories": ["water"], "amount": 2.64703869861}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 2.63934935448}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.0403171258023}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 15.3464598148}, {"name": "Methyl acetate", "categories": ["water"], "amount": 15.3464598148}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 86.4260496376}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.205421548177}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 672.693769619}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 672.693769619}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 2.69699443261}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.0454930999128}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 17.6594630018}, {"name": "Methyl formate", "categories": ["water"], "amount": 17.6594630018}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 7.40013389918e-19}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 293.759429823}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 293.759429823}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 2.86220566757}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.00149072814059}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 293.377639617}, {"name": "m-Xylene", "categories": ["water"], "amount": 293.377639617}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.52134113463e-17}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 14879.593112}, {"name": "Nickel II", "categories": ["water"], "amount": 14879.593112}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 12.4907504254}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.309274509026}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 179.424851039}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 179.424851039}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 2.44074824773}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.00258295543271}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 220.767480905}, {"name": "o-Xylene", "categories": ["water"], "amount": 220.767480905}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 68.881917707}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.00989234102318}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 933.053080439}, {"name": "Phenol", "categories": ["water"], "amount": 933.053080439}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.0921337373485}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5658.10239646}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 5658.10239646}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.104574403899}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6318.72190295}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 6318.72190295}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.00566881201258}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 167.14128465}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 167.14128465}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.000356393755357}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 322.448744091}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 322.448744091}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 15.3176471858}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.0249055458003}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 85.6478335876}, {"name": "Propanal", "categories": ["water"], "amount": 85.6478335876}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.648709408671}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.00130704287396}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 2.97231381479}, {"name": "Propanol", "categories": ["water"], "amount": 2.97231381479}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 16.5647075376}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.00558389484262}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 70.6626377096}, {"name": "Propionic acid", "categories": ["water"], "amount": 70.6626377096}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 2.10238456636}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0023607370464}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 17.4700358048}, {"name": "Propylamine", "categories": ["water"], "amount": 17.4700358048}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 5.01480349489}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0816325783193}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 29.005239421}, {"name": "Propylene oxide", "categories": ["water"], "amount": 29.005239421}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.99594386638e-17}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 7324.67649905}, {"name": "Selenium IV", "categories": ["water"], "amount": 7324.67649905}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.40217976328e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 194088.664722}, {"name": "Silver I", "categories": ["water"], "amount": 194088.664722}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.591875112103}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.02735443489e-11}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 2.29890588366}, {"name": "Sodium formate", "categories": ["water"], "amount": 2.29890588366}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.836241799581}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00100227427588}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 185.222322067}, {"name": "Styrene", "categories": ["water"], "amount": 185.222322067}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.552459972141}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00240860630869}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.63317349449}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.63317349449}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 13.5092073972}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.0506647781598}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 125.389297733}, {"name": "t-Butylamine", "categories": ["water"], "amount": 125.389297733}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.07639023681e-16}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 35389.4077305}, {"name": "Thallium I", "categories": ["water"], "amount": 35389.4077305}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 4.30760120816e-18}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2978.23297057}, {"name": "Tin ion", "categories": ["water"], "amount": 2978.23297057}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.69590270572}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.00116367810532}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 55.9244570735}, {"name": "Toluene", "categories": ["water"], "amount": 55.9244570735}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.83959886735}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.0341377179356}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 188.861574259}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 188.861574259}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 8.45923489413e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.387328217825}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.387328217825}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.65348453121}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.00173832682985}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 19.8654420496}, {"name": "Trimethylamine", "categories": ["water"], "amount": 19.8654420496}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 8.80967294413e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 10.2429235335}, {"name": "Urea", "categories": ["water"], "amount": 10.2429235335}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.14855870933e-15}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 112885.975124}, {"name": "Vanadium V", "categories": ["water"], "amount": 112885.975124}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.856084361818}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.000905963060822}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 77.433462536}, {"name": "Xylene", "categories": ["water"], "amount": 77.433462536}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.26978777143e-15}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 38584.5847928}, {"name": "Zinc II", "categories": ["water"], "amount": 38584.5847928}, {"name": "Allyl chloride", "categories": ["water"], "amount": 150.107994707}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1719.72022222}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.421805319}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 339.317777169}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46475948079}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 857.119620868}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9534.98244551}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6746.64791262}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4323.58210351}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1920.93503576}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6050.10080329}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2426.79990078}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.582607561724}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 103.169086671}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 658.986710852}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 295.110806888}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 3770.7450376}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 4954.65373781}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.3932813926}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 192.999442132}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1283.109173}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.4310591}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 4084.8099935}, {"name": "Thifensulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 35564.4260927}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 411.1785638}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1134.31504454}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 868.275246299}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1240.16841273}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 96.2293583211}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1333.79443753}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8673.14758745}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 105.744292155}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2258.57766265}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.3024755209}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3287.78136202}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 4345.11868303}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.4122233922}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1170.78461728}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 259125.744383}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 910.522764295}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 381628.069557}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 7664.97812916}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 1388.79880804}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 633.556552259}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 10478.7144824}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 893.126030729}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.20246492475}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 23322.8108861}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 28046.6429631}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 98.0040444448}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 116.155359038}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 4596.60659287}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1165.75588348}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 18.9067574535}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 2525.61496079}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 381053.75649}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 17300.8240815}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 48797.7288149}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1194.66483169}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 129.849192762}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 6449.38280516}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 15771.0343836}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 352.621901199}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 677723.624786}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 126.815326465}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 236.821363216}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 652.965951536}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7861577.04964}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1028.90082835}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 2443.47118807}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 6373.08863158}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 170.512437611}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6437.00134825}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6437.00134825}, {"name": "Arsenic ion", "categories": ["air"], "amount": 6405.04498992}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 8050.89994673}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 8050.89994673}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 8050.89994673}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 8050.89994673}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 224.393691341}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 214.756405105}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 214.756405105}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 234.030977577}, {"name": "Arsenic ion", "categories": ["water"], "amount": 15222.6509969}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 15222.6509969}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 9.58825682577e-17}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 8050.89994673}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1748.63720722}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 105.779518324}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1618.13667159}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 206.604549058}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 5957.95991504}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2337.13737544}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 90.654292576}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 105993.681159}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 203864.201142}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 96.6568218536}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.75406157419}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 12.5967888633}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.73878567982}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.73878567982}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.746423627}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.486803588069}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 586.984453573}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 586.984453573}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 16219.0594888}]}, {"unit": "CTU", "name": ["USEtox no LT", "human toxicity no LT", "carcinogenic no LT"], "exchanges": [{"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.25835643585e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.81034369363e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.10822971148e-07}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.40677675031e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2.78915096857e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.53106789654e-08}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.02725822034e-06}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.39137625621e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.74189637316e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 8.42536760991e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.12983385676e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.53036676816e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 4.49513602648e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.000115490564155}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.12591222332e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.000251763798337}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.5900525836e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.12098271166e-08}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.02143353577e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.98978798813e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.52942349063e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00469814945549}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.59396713048e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.58465083306e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 29.6215965571}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 5.54372559772e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.30432522666e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.51551382007e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.82092639599e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.86589948834e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.92272837839e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.59649534071e-06}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.63627203333e-09}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.03415307628e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.29033235366e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.06043356488e-08}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.21916990727e-06}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.86069960003e-06}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.54216857544e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.27974191527e-05}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.79311899168e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.75913270933e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.34836336155e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.65698358987e-05}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 6.56547012814e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3.13488021555e-08}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.00689119536346}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.93265617274e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.91573373907e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.798065886e-05}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.41561486381e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.61755017703e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.59751715034e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.9919583523e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.30137212543e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.44886373212e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.76389568595e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.13599183806e-05}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 9.2668338628e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.10730840774e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.8761556497e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.00721530541e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.10266781435e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.17267040417e-12}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.82551249043e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.01010637222e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.17980717339e-09}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.17980717339e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.51070882682e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.61481971007e-10}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.61481971007e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.80360804682e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21160330753e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.21160330753e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.80626829348e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19861648047e-07}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19861648047e-07}, {"name": "Benzene", "categories": ["air"], "amount": 2.97025642682e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55318865951e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55318865951e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.34257636135e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81334221509e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81334221509e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.17185449163e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.48798887749e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15203102352e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15203102352e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.35054371953e-05}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66364294122e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66364294122e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.71274326364e-07}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000181886251444}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000181886251444}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00021682502489}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62205188845e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62205188845e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.30591993829e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00420652364645}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00420652364645}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00445233655097}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 29.0579794183}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.98615796658e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.98615796658e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.26494178215e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21127687713e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21127687713e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.25780105189e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.15703053861e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.15703053861e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.06560843696e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.55644290875e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.14623193216e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.33591164361e-08}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.13732373977e-09}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63093252709e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.63093252709e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.74862316449e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22818037023e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22818037023e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.25925636194e-07}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.35831711151e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.35831711151e-09}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 8.30466291186e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38568982845e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38568982845e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.34036877914e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38514597875e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38514597875e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.20912825657e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.92786459021e-10}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.92786459021e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.92952725352e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8147140338e-08}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72744049579e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.72744049579e-05}, {"name": "Lead II", "categories": ["air"], "amount": 2.69221204283e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00721939609092}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00721939609092}, {"name": "Mercury II", "categories": ["air"], "amount": 0.00705529572719}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.4268974382e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41555720358e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41555720358e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.66564547133e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53591407821e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53591407821e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.6669899821e-05}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68430211366e-08}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68430211366e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.04995848874e-08}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.73466103001e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.73466103001e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 5.17610560352e-05}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08926890585e-07}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08926890585e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.05322202046e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 6.02505019232e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.70116176839e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.70116176839e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 4.00126694691e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.10730840774e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.10730840774e-07}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.10730840774e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65875148514e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65875148514e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1190141013e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.77006340593e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.77006340593e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 6.39837077473e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18119080314e-12}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18119080314e-12}, {"name": "Toluene", "categories": ["air"], "amount": 3.17693060366e-12}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.92033805674e-10}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.92033805674e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.75107008895e-09}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.13042102512e-24}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.13042102512e-24}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.13042102512e-24}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.13042102512e-24}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.000481792025544}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.08107144261e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.08107144261e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 8.08107144261e-07}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.00541281305817}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.00534431943162}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.00534431943162}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.00534431943162}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 7.55469061204e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.01939385121e-07}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.01939385121e-07}, {"name": "Lead II", "categories": ["soil"], "amount": 2.01939385121e-07}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0200044362242}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 8.48018013111e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 8.48018013111e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 8.48018013111e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.000105724992455}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.9716083806e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.9716083806e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.9716083806e-05}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.82611559507e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.5462790678e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.82611559507e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 8.82611559507e-08}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.11871117885e-08}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.40677675031e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.40677675031e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 6.90690409061e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.65003441604e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 6.90690409061e-08}, {"name": "Aniline", "categories": ["water"], "amount": 6.90690409061e-08}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.42356468163e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 2.48598903073e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.42356468163e-07}, {"name": "Benzene", "categories": ["water"], "amount": 2.42356468163e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.88550344886e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 8.42536760991e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 8.42536760991e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.73175162941e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 5.13884016434e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.73175162941e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.73175162941e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.93228723043e-25}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.05933518344e-26}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.93228723043e-25}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.93228723043e-25}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 5.90415531548e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.5900525836e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.5900525836e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.90347838611e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 3.45063784803e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.90347838611e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 3.90347838611e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.0106412469201}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.000627639502748}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0106412469201}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0106412469201}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 5.29594169392e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.63365874629e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.37947158204e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.59649534071e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.59649534071e-06}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 4.64255029641e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 2.54268249009e-09}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.57410232268e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 5.22622698116e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.57410232268e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.57410232268e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.4853543737e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 7.71263952757e-08}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.4853543737e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 5.4853543737e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.84742034232e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.71589882596e-06}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.24088463926e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.31368315406e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.24088463926e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.24088463926e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.93266118363e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.62742636959e-11}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.93266118363e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.93266118363e-09}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.53954919999e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.75913270933e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.75913270933e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.41624753292e-07}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.10368663912e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.41624753292e-07}, {"name": "Lead II", "categories": ["water"], "amount": 3.41624753292e-07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.000120080076691}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.56271765466e-05}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.000120080076691}, {"name": "Mercury II", "categories": ["water"], "amount": 0.000120080076691}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.82317292723e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 9.6560046946e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.82317292723e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.82317292723e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.16253257955e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.17587468701e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.16253257955e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.16253257955e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.24102735905e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.74349958773e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.24102735905e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 2.24102735905e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.93269270377e-06}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.82737301858e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 3.82737301858e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.14190986335e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.59371864207e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.14190986335e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.14190986335e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 1.68836291963e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.44886373212e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.44886373212e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 3.53743317677e-09}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.76389568595e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.76389568595e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.15873471978e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 7.69667452305e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.15873471978e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.15873471978e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.29829306404e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.48366675471e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.29829306404e-08}, {"name": "Styrene", "categories": ["water"], "amount": 1.29829306404e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.83673645379e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.55467521351e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.83673645379e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.83673645379e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.2879661946e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.11387645851e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.2879661946e-09}, {"name": "Toluene", "categories": ["water"], "amount": 3.2879661946e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.87817103743e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 7.91617455349e-11}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.87817103743e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.87817103743e-09}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96832520896e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72488671037e-07}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 2.39234482596e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62111292374e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32045754977e-07}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33260035377e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6500890021e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.02931758558e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.82737301858e-05}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.97337061874e-11}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.53421227985e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0004239869897}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000242335986141}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000242335986141}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.000333161487921}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.000391834717788}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.000195143379401}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.000195143379401}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.000195143379401}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 9.05452478804e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 9.26804763876e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.000368977329072}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.000368977329072}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.02700349803e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.000368977329072}]}, {"unit": "CTU", "name": ["USEtox no LT", "human toxicity no LT", "non-carcinogenic no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.22107612959e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.14240130852e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.97819564124e-09}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.39267954175e-08}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.000350614722474}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.29162189912e-07}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 9.67186558462e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.7246994101e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00140792037782}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 9.70801684411e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.27801289078e-06}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.44134951538e-05}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 8.82185413283e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.74415250727e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.000186565323829}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.51497689855e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.19084656419e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 5.68929348804e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.51538282679e-05}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 5.67639632829e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.84486970479e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 6.18998015956e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.40028027971e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.20073131874e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 8.7254440059e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.00534430439e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.57784358616e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.46171452185e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0855603171999}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 3.54940227989e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.0970352734e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 6.02634349165e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.19436053997e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.68486677638e-06}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.26863106794e-08}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0444663058455}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.000426599473648}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.33109164235e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 7.57113690084e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.06629840745e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.50206945082e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 5.31479897581e-05}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.78536345821e-07}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.73695147425e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.71395602563e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.60954105991e-07}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.73578090429e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3.56545393639e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.000748414990057}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 3.02674239709e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.32337383641e-05}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 8.62675705655e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02284603255e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.13649260702e-08}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.59597206457e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.41204306953e-07}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.11889118027e-06}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000147547188575}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.34299434762e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.24739604051e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.49802672226e-07}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 2.79449501214e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.59173271959e-06}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65136409165e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.82620591784e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.07319064027e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.07049768116e-06}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.37199576957e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 7.80373245217e-08}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.5590928788e-05}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.86359176402e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.76190346285e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.90380453425e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.73273423485e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.41755946291e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.74304831064e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.62281587226e-06}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.82695687532e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.000123511601348}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.62866364624e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.35632670187e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 8.17425733863e-09}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.48195495738e-08}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 5.57509434147e-08}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 1.41185834791e-05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 5.32342287452e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.6672757021e-07}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 7.0032895581e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 7.62662627432e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.43993461441e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.05538842042e-09}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00932064402952}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 7.60579121025e-05}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.04128130499e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.0912235769e-07}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 8.86419791161e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 4.67837616053e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.42061298909e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.62912175897e-12}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.815310505072}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.67513653743e-07}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000113866883591}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 9.57257078322e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.04326658888e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.31653582337e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 6.55510120949e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000159172552978}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.80784050713e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.63329092691e-08}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 6.13617407825e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.26769482886e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 5.92881404423e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.40264733665e-07}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.37815045333e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.00163326250869}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.63756703912e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 6.27434656912e-05}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.40370961401e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 6.44497918122e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.16117116592e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 7.85382114201e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 4.76106468608e-08}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.86496368948e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 3.56886206147e-06}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.53240096284e-09}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.92710058813e-06}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.06696854044e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.03420858705e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.53819687493e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.4093578095e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.72098283662e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.37779889144e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.29593634107e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 7.48223845186e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 6.45176374779e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.22201194273e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 4.84697205131e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 9.89413748742e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.1182518046e-05}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.69739397578e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.86976395417e-07}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.43006424918e-06}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.73332741409e-07}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.26716560536e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 7.68701797523e-06}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 7.17326236367e-09}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 8.30543922245e-06}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 4.36575168894e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0253294573125}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000354948763219}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 8.77283349049e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 2.0144716457e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.84765062003e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.66486762063e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 4.97229786148e-05}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.000412022501539}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.000718543620283}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6.56022841176e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.93469404124e-07}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.88653937332e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 9.61882024993e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.68447264846e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 5.62829566023e-07}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2.1088893979e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.62031640446e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 6.7208025112e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.38132712796e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.7968995957e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.69150091665e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.000194385620771}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.16157383621e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.09611314831e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.0152329864062}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.00128139027535}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19383597616e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.09730801991e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.80083557369e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.71155271024e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.71155271024e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.88138858507e-07}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air"], "amount": 6.25095208029e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 6.34451934579e-08}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.000731739874733}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.11787094524e-05}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7613003428e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7613003428e-08}, {"name": "Aniline", "categories": ["air"], "amount": 8.90882755347e-07}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.000170539079445}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air"], "amount": 4.18682303082e-05}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86953545861e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86953545861e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.34361691279e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.03510712592e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.03510712592e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.52121015665e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44454892341e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.44454892341e-10}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.4989489681e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.33238712937e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.33238712937e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.45511535777e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.31316452946e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00854581964939}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00854581964939}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0470530684246}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48955172648e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.48955172648e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 8.54881146822e-07}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.88570082977e-08}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0464964872273}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0464964872273}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0454813965364}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.99421471032e-05}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air"], "amount": 5.29140109143e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.26562129052e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.26562129052e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 1.32025907734e-06}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 2.57751434762e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.30688983653e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.30688983653e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.000415741944211}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.34414006803e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.11219290214e-08}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.16134573275e-08}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air"], "amount": 6.58857897185e-09}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35187938303e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.35187938303e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.97140408551e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.42219734604e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.42219734604e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.59205040444e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.77309062067e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.92275311708e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.92275311708e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 3.32774367597e-06}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.60838785054e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.60838785054e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.51943547847e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.40004759027e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.40004759027e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.23141031564e-06}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.22569626152e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.06410741038e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54081991874e-08}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54081991874e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.71067884699e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54474156746e-07}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54474156746e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.57888185742e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.623285776e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.623285776e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.35113159601e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0095678054128}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0095678054128}, {"name": "Lead II", "categories": ["air"], "amount": 0.00944422472116}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.854546007662}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.854546007662}, {"name": "Mercury II", "categories": ["air"], "amount": 0.834928256367}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.55441517645e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 9.18664628469e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.164130614e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.164130614e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 7.7983982514e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.30625470547e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.48239667733e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000150482729407}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000150482729407}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000154827641192}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.79016274377e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air"], "amount": 1.02297007317e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 9.03046009447e-10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.00166204290756}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2463727257e-10}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.2463727257e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.13110215584e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.66434183172e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.66434183172e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.91275649882e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.50202057121e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.50202057121e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 5.17792085661e-06}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air"], "amount": 4.86496047015e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.21894311635e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06922761308e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.06922761308e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.72351325226e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68701797523e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68701797523e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 7.68701797523e-06}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air"], "amount": 0.0258419844461}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.31921019706e-09}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.31921019706e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.02383187383e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98710180673e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98710180673e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.07318040035e-08}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air"], "amount": 0.000705842697333}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.90368350529e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.90368350529e-09}, {"name": "Toluene", "categories": ["air"], "amount": 5.30459430023e-08}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.46109178668e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13672430721e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13672430721e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.10489278952e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air"], "amount": 0.0155955997484}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.000209460358427}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 4.91145219428e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.13942743874e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.129261275146}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.000216809233826}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.000216809233826}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.000216809233826}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.78266910152e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.52011116072e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.52011116072e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.52011116072e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.2183836745e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.20296627222e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.20296627222e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.20296627222e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.74152106553e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.5539367722e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.5539367722e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.5539367722e-07}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 5.19471929638e-08}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.026501699979}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.08399228142e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.08399228142e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 7.08399228142e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.36800480833}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0100383270495}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0100383270495}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0100383270495}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.00466203657151}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.847979846e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.847979846e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.847979846e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 5.94947596608e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.10948569516e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.10948569516e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.10948569516e-06}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0731569556943}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.000894144905522}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.000139542579104}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0435255724767}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.000702024677515}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.000702024677515}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.000702024677515}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 4.88515042326e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.03809873041e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 1.75541140005e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.92492585824e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 2.87951621395e-08}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.58346765721e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.53001986506e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.35988962528e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.53001986506e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.53001986506e-07}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.28420844111e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water"], "amount": 5.8631541117e-09}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.47017083994e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 5.72167555889e-08}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.03716198414e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.27801289078e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.27801289078e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 3.41162912752e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.30897063056e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 3.41162912752e-06}, {"name": "Aniline", "categories": ["water"], "amount": 3.41162912752e-06}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.67996688402e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.000364132820574}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.02764639602e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water"], "amount": 9.81537186241e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.13689078633e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.2949601854e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.13689078633e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.13689078633e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.05950467176e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 8.7254440059e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 8.7254440059e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.72529554699e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.37687836603e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.72529554699e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.72529554699e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.06915324676e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.44322034491e-06}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 5.89844223747e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water"], "amount": 3.75496697452e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.000158404167001}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.000426599473648}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.000426599473648}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.65988234821e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 3.74932606721e-05}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 8.82697382697e-11}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 5.23471599278e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.17492613821e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.79582634706e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.17492613821e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 1.17492613821e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.39526497303e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4127695071e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.39526497303e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.39526497303e-05}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.45814301083e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 3.02674239709e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 3.02674239709e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.21960644052e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 8.62675705655e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 8.62675705655e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 7.28061097394e-10}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.76718976036e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 6.35445705661e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1.29995398394e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.36056641806e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.62156647091e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.69439889775e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.41755946291e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.41755946291e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.43229330577e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.24515316295e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.43229330577e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.43229330577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.27728346576e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 2.40449884566e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.27728346576e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.27728346576e-06}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.28941259972e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.30244295051e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 5.64107814793e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 1.87278672374e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.23588485981e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.36556722181e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.23588485981e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 3.23588485981e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.62981260125e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31002409521e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.62981260125e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.62981260125e-07}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.000119841263952}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.000108876691797}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.000119841263952}, {"name": "Lead II", "categories": ["water"], "amount": 0.000119841263952}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0142143570457}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0113197698416}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0142143570457}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0142143570457}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.00034725197e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.10095817674e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.00034725197e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.00034725197e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000141623363705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 3.90552842229e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000141623363705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000141623363705}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.96282945807e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water"], "amount": 1.053508057e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.93608528087e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 7.66183687348e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 8.31103402386e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.46591142037e-11}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 8.31103402386e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 8.31103402386e-10}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.21304917407e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.15378249348e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 2.15378249348e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.61393398824e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 7.83514666046e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.61393398824e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.61393398824e-06}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 4.29623471206e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water"], "amount": 1.44523002991e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.44847208948e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 6.45176374779e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 6.45176374779e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 1.52128653029e-09}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.93249320112e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.22201194273e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.22201194273e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.12268619473e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.32787148554e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.12268619473e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.12268619473e-06}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.72046594869e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000354948763219}, {"name": "Silver I", "categories": ["water"], "amount": 0.000354948763219}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 6.90556274e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.38219899035e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 6.90556274e-09}, {"name": "Styrene", "categories": ["water"], "amount": 6.90556274e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 7.96825091643e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 2.68046041819e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 7.96825091643e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 7.96825091643e-09}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.000104920212033}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water"], "amount": 0.00178495070951}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.78381889397e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.85164323324e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.78381889397e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.78381889397e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 2.67912205763e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.7463868211e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.20478554624e-05}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.000194385620771}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.000194385620771}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.56517374846e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.0888634707e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.56517374846e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.56517374846e-08}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.000302223973326}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00128139027535}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00128139027535}, {"name": "Allyl chloride", "categories": ["water"], "amount": 8.42901796193e-07}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57581594855e-06}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7455578157e-07}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52002161078e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.52530406654e-06}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0671541812e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01207404659e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31605757416e-06}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43582087857e-07}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08293365611e-06}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 5.61797401589e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.868035843e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69785101375e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.59597206457e-07}, {"name": "Thifensulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44193524069e-06}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69313181097e-06}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.20161199408e-06}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2.81621845711e-06}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.645635268e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63321509311e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000367917900016}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0467214193e-06}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.42609469801e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21547511533e-08}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41714188464e-07}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44718757046e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.15378249348e-06}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37487161263e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.23265390903e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.07691308446e-07}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 1.09819742695e-05}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.89386004154e-05}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.83033329321e-07}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 2.89610354978e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.51539024644e-08}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.31727440537e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.31990011737e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.000235648603669}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.0232481211e-07}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.73394406547e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.1707571262e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 3.92950189167e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 5.25446437435e-08}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.43949601473e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.50243284237e-06}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4662539461e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 4.10288890135e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 4.1166975182e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0170719666931}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0165209340126}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0165209340126}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0167964503528}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0290247939103}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0144550651408}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0144550651408}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0144550651408}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0273316540054}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0273316540054}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00224222481335}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0273316540054}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.13669122593e-07}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.46637376709e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.78483552391e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.49853944258e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.21067636659e-05}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44146894277e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.13685973855e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.74806423055e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.95240352962e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.41623954322e-09}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 7.17622414338e-08}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.48844354497e-06}]}, {"unit": "CTU", "name": ["USEtox no LT", "human toxicity no LT", "total no LT"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.22107612959e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.14240130852e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.97819564124e-09}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.39267954175e-08}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.000350740558118}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.11019655928e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.10822971148e-07}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 9.67186558462e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.7246994101e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00140792037782}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 9.70801684411e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 7.68478964109e-06}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.44134951538e-05}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.000116110051014}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.77946318624e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.000186565323829}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.51497689855e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.21810478453e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 5.68929348804e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.51538282679e-05}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 5.67639632829e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.84486970479e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 6.18998015956e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 7.79165653592e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 5.9426276919e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.71508116158e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.2303682872e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000101082103543}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.46171452185e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 4.49513602648e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0856758077641}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 3.54940227989e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.0970352734e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 6.02634349165e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.19436053997e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.8107789997e-06}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.26863106794e-08}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0447180696438}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.000428189526232}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.74318991352e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.77854722585e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.06629840745e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.50206945082e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 5.31479897581e-05}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.78536345821e-07}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.73695147425e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.01293482444e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.76248340897e-07}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.73578090429e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3.56545393639e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00544656444555}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 3.02674239709e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.32337383641e-05}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 8.62675705655e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02284603255e-08}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.59396713048e-05}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.13649260702e-08}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.59597206457e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.41204306953e-07}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.11889118027e-06}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000163393696906}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.34299434762e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.24739604051e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.49802672226e-07}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 2.79449501214e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.59173271959e-06}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65136409165e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 29.6215965571}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.82620591784e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.07319064027e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.07049768116e-06}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.37199576957e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 7.80373245217e-08}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.61453013478e-05}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.86359176402e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.78051557295e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.90380453425e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 6.24824805492e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.82092639599e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.86589948834e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.92272837839e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.77720899698e-05}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.63627203333e-09}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.77720138692e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.05184910763e-06}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.06043356488e-08}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.82695687532e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.000123511601348}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.62866364624e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.35632670187e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.21916990727e-06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 8.17425733863e-09}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.48195495738e-08}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 5.57509434147e-08}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 1.41185834791e-05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 5.32342287452e-07}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.86069960003e-06}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.56884133246e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.98007087108e-05}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 7.62662627432e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.45786580433e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.75913270933e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.34836336155e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.05538842042e-09}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00934721386542}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 8.26233822306e-05}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.04128130499e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.40471159845e-07}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 8.86419791161e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 4.67837616053e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.42061298909e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.62912175897e-12}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.822201700435}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.67513653743e-07}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000113866883591}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 9.57257078322e-09}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.93265617274e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.13242392627e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.31653582337e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 6.55510120949e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000207153211838}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.80784050713e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.63329092691e-08}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 6.13617407825e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.26769482886e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 5.92881404423e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.40264733665e-07}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.37815045333e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.00163326250869}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.57937156772e-08}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 6.27434656912e-05}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.40370961401e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 6.44497918122e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.93366729362e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 9.45133829235e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 4.76106468608e-08}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.9919583523e-06}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.86496368948e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 3.56886206147e-06}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.53240096284e-09}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.92710058813e-06}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.06696854044e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.03420858705e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.53819687493e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.4093578095e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.72098283662e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.36791710169e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.29593634107e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 7.48223845186e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.09006274799e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.30965089959e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 4.84697205131e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 9.89413748742e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 3.25424364266e-05}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.69739397578e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.3136597817e-06}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.43006424918e-06}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.73332741409e-07}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.26716560536e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 8.097748816e-06}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 7.17326236367e-09}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.01815948721e-05}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 4.36575168894e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0253294573125}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000354948763219}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 8.77283349049e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.20866246998e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.28743287635e-07}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.66486762063e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 4.97229786148e-05}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.000412022501539}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.000718543620283}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6.56022841176e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.93469404124e-07}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.88653937332e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 9.61913751697e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.68447264846e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 5.62829566023e-07}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2.1088893979e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.62031640446e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 6.7208025112e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.38132712796e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.97945084474e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.69150091665e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.000194385620771}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.16157383621e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.18621421203e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.0152329864062}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.00128139027535}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19383597616e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.09730801991e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.80083557369e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62953342758e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62953342758e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 5.83245946775e-07}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air"], "amount": 6.25095208029e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 6.34451934579e-08}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.000731739874733}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.11787094524e-05}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8374485399e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8374485399e-08}, {"name": "Aniline", "categories": ["air"], "amount": 9.08918835815e-07}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.000170539079445}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air"], "amount": 4.18682303082e-05}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08113876614e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08113876614e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 4.14988520627e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.50212719306e-07}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.50212719306e-07}, {"name": "Benzene", "categories": ["air"], "amount": 3.72237744249e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64763414874e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64763414874e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.39756585103e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.14572934446e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.14572934446e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.6269698494e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.31316452946e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.48798887749e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00855733995963}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00855733995963}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0471165738618}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1531946677e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1531946677e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.42615547319e-06}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.88570082977e-08}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0466783734787}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0466783734787}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0456982215613}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.99421471032e-05}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air"], "amount": 5.29140109143e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0887673179e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0887673179e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 1.55085107117e-06}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 2.57751434762e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00428959254482}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00428959254482}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00486807849518}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.34414006803e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.11219290214e-08}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.16134573275e-08}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air"], "amount": 6.58857897185e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 29.0579794183}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.85049517969e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.85049517969e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.04978982637e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65349661173e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65349661173e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.71700609233e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.77309062067e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53845617094e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53845617094e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.39335211293e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.55644290875e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.14623193216e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.33591164361e-08}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.13732373977e-09}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.23932037763e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.23932037763e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3.70056671234e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06282279605e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06282279605e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.55733595183e-06}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.35831711151e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.35831711151e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.22569626152e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.06410741038e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 8.30466291186e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.46109802764e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.46109802764e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.35747556761e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5396201355e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5396201355e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.56701644231e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6425644219e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6425644219e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.36106112326e-07}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8147140338e-08}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00959507981776}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00959507981776}, {"name": "Lead II", "categories": ["air"], "amount": 0.00947114684159}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.861765403753}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.861765403753}, {"name": "Mercury II", "categories": ["air"], "amount": 0.841983552094}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.55441517645e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 9.18664628469e-09}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.4268974382e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.60568633436e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.60568633436e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.46496279853e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.30625470547e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.48239667733e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000195841870189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000195841870189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000201497541013}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.79016274377e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air"], "amount": 1.02297007317e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 9.03046009447e-10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.00166204290756}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74676584092e-08}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74676584092e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.16306870432e-08}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.00109521318e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.00109521318e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 5.4673812534e-05}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0109474618e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0109474618e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 6.23114287707e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 6.02505019232e-06}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air"], "amount": 4.86496047015e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.21894311635e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17703893815e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.17703893815e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.27247801992e-05}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.097748816e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.097748816e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 8.097748816e-06}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air"], "amount": 0.0258419844461}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.99067250485e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.99067250485e-08}, {"name": "Styrene", "categories": ["air"], "amount": 6.14284597513e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0687735866e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.0687735866e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 7.47155117508e-08}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air"], "amount": 0.000705842697333}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.90686469609e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.90686469609e-09}, {"name": "Toluene", "categories": ["air"], "amount": 5.30491199329e-08}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.46109178668e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18592768778e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18592768778e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.15240349041e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air"], "amount": 0.0155955997484}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.000209460358427}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 4.91145219428e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.13942743874e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.129743067172}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00021761734097}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00021761734097}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.00021761734097}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.78266910152e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.52011116072e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.52011116072e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.52011116072e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.00542499689492}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.00535634909434}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.00535634909434}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.00535634909434}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.74152106553e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.5539367722e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.5539367722e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.5539367722e-07}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 5.19471929638e-08}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0265772468851}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.10418621993e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.10418621993e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 7.10418621993e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.38800924455}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0101231288508}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0101231288508}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0101231288508}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.00466203657151}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.847979846e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.847979846e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.847979846e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.000111674468421}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.08255695012e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.08255695012e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.08255695012e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0731569556943}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.000894144905522}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.000139542579104}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0435255724767}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.000702024677515}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.000702024677515}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.000702024677515}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 4.88515042326e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.03809873041e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 1.75541140005e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.92492585824e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 2.87951621395e-08}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.58346765721e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 5.41263142457e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 4.01451753206e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 5.41263142457e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 5.41263142457e-07}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.28420844111e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water"], "amount": 5.8631541117e-09}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.47017083994e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 5.72167555889e-08}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.44903310203e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 7.68478964109e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 7.68478964109e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 3.48069816843e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.33547097472e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 3.48069816843e-06}, {"name": "Aniline", "categories": ["water"], "amount": 3.48069816843e-06}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.67996688402e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.000364132820574}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.02764639602e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water"], "amount": 9.81537186241e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 3.03725376026e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3.11548504927e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 3.03725376026e-07}, {"name": "Benzene", "categories": ["water"], "amount": 3.03725376026e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 9.94500812062e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.71508116158e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.71508116158e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 8.4570471764e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 6.51571853037e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 8.4570471764e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 8.4570471764e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.06915324676e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.44322034491e-06}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 5.89844223747e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water"], "amount": 3.75496697452e-08}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.000158994582533}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.000428189526232}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.000428189526232}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.65988234821e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 3.74932606721e-05}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 8.82697382697e-11}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 5.23471599278e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.56527397682e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.14089013186e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.56527397682e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 1.56527397682e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.0106651995698}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.000629052272255}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0106651995698}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0106651995698}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.45814301083e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 3.02674239709e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 3.02674239709e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.21960644052e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 8.62675705655e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 8.62675705655e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 7.28061097394e-10}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.76718976036e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 6.35445705661e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1.29995398394e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.36056641806e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 5.29594169392e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.63365874629e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.83234605595e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.77720899698e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.77720899698e-05}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 4.64255029641e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 2.54268249009e-09}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 8.00639562845e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 9.47138014411e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 8.00639562845e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 8.00639562845e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.82581890313e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.17576279842e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.82581890313e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.82581890313e-06}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.28941259972e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.30244295051e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 5.64107814793e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 1.87278672374e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.84742034232e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.71589882596e-06}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4.47676949907e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.45023987624e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4.47676949907e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4.47676949907e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.64913921309e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31965152158e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.64913921309e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.64913921309e-07}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.53954919999e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.75913270933e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.75913270933e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.000120182888705}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.000109187060461}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.000120182888705}, {"name": "Lead II", "categories": ["water"], "amount": 0.000120182888705}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0143344371224}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0114153970181}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0143344371224}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0143344371224}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.68266454469e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.19751822369e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.68266454469e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.68266454469e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.0001832486895}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 5.0814031093e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.0001832486895}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.0001832486895}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.96282945807e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water"], "amount": 1.053508057e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.93608528087e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 7.66183687348e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.32413769929e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.80815870193e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.32413769929e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 2.32413769929e-08}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.15399762118e-06}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 4.04275126793e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 4.04275126793e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6.75584385159e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 9.42886530253e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6.75584385159e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6.75584385159e-06}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 4.29623471206e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water"], "amount": 1.44523002991e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 4.13683500911e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.09006274799e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.09006274799e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 1.52128653029e-09}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.2862365188e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.30965089959e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.30965089959e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.53855966671e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.40483823077e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.53855966671e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.53855966671e-06}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.72046594869e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000354948763219}, {"name": "Silver I", "categories": ["water"], "amount": 0.000354948763219}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.98884933804e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.82188665375e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.98884933804e-08}, {"name": "Styrene", "categories": ["water"], "amount": 1.98884933804e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 2.63356154543e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.82272125533e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 2.63356154543e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.63356154543e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.000104920212033}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water"], "amount": 0.00178495070951}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.11261551343e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.00630308791e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.11261551343e-08}, {"name": "Toluene", "categories": ["water"], "amount": 2.11261551343e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 2.67912205763e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.7463868211e-07}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.20478554624e-05}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.000194385620771}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.000194385620771}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9529908522e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.16802521623e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9529908522e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.9529908522e-08}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.000302223973326}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00128139027535}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00128139027535}, {"name": "Allyl chloride", "categories": ["water"], "amount": 8.42901796193e-07}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57581594855e-06}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7455578157e-07}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52002161078e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.52530406654e-06}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0671541812e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01207404659e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96832520896e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31605757416e-06}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43582087857e-07}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08293365611e-06}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 5.61797401589e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.868035843e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87033968479e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 2.39234482596e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.59597206457e-07}, {"name": "Thifensulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44193524069e-06}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69313181097e-06}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82272491782e-06}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2.81621845711e-06}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.645635268e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63321509311e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000368049945771}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33260035377e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6500890021e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.94965317786e-06}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.42609469801e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21547511533e-08}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41714188464e-07}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44718757046e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 4.04275126793e-05}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37487161263e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.42060245278e-10}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.07691308446e-07}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 1.09819742695e-05}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.89386004154e-05}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.83033329321e-07}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 2.89610354978e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.51539024644e-08}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.31727440537e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 6.85411239722e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.000235648603669}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.0232481211e-07}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.73394406547e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.1707571262e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 3.92950189167e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 5.25446437435e-08}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.43949601473e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.50243284237e-06}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4662539461e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 4.10288890135e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 4.1166975182e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0174959536828}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0167632699987}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0167632699987}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0171296118407}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0294166286281}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0146502085202}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0146502085202}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0146502085202}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 9.05452478804e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 9.26804763876e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0277006313345}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0277006313345}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00227249484833}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0277006313345}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.13669122593e-07}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.46637376709e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.78483552391e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.49853944258e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.21067636659e-05}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44146894277e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.13685973855e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.74806423055e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.95240352962e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.41623954322e-09}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 7.17622414338e-08}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.48844354497e-06}]}, {"unit": "CTU", "name": ["USEtox", "ecotoxicity", "total"], "exchanges": [{"name": "1,4-Butanediol", "categories": ["air", "urban air close to ground"], "amount": 0.877584851265}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.213832412002}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 181.907571259}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.201500544561}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0805092493331}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.254007818656}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 2.31522045892}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.0205719242927}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 3.46313641731}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 252.348005989}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.288405388775}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 0.789914178246}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 10.5159542713}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 7610.91467447}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.0792660811821}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.742928699357}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 26.5305279317}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 8495.54699384}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 104.645185471}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 14.5416351349}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 44.5937564368}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 9281.12656076}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 11852.494877}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 589.394816651}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 5287.31629169}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.00776756842}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 30.6435409146}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 489.022277493}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 49.3383618825}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 11406.4264869}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 44920.2741276}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 819.750900734}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 607.217272443}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 21.1234848095}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 358.561985444}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 30.7583894484}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 49.5282745557}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.14249909351}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.0641848556386}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 6.54175482903}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.0296007905203}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 626.63362356}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 342.062610885}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 170.495991795}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 39.297979558}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1612.809976}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 740.722625064}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5733.52633005}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 73.9902502964}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 869.047924983}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 946.62717898}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 4.53042851425}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 0.110314050257}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.88748682607}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 30.3162206475}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3921.68984432}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 4936.04575274}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 10008.3409621}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 3071.9425648}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 54554.0844418}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 243.104159208}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 21581.8131664}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 2.30747861538}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 14691.3324384}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1108.35815916}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 45.5357521343}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 758.794303428}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.282103029633}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 86.4129463713}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 57823.876679}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1727.75274855}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 4.7264644488}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 517.146416179}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 41802.2176206}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 650.179138161}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 8.47812563194}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 585.837625922}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 479.723275207}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 269.880036164}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 8.87270330818}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 1705.9443794}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 23090.1167695}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 29164.371915}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.0907274546453}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 21165.2404087}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.00059565169664}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.1391426236}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 1274.34980467}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.4310591}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 115.463053311}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 280.319262067}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1409.81393453}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 1092.53765425}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 476.076207125}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 295.591348607}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 285.091856931}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 9193.9391567}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 1534.67733935}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.00181061929395}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.114424315594}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1921.72654057}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 169738.0331}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 5.52247787207}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.50951518917}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 1747.27546202}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 20486.628349}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 953.831166407}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 3621.59679147}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 14.0313466756}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 24.1739950255}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.244852480819}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 2567.0192411}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 142941.008639}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.407043416927}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 7450.35790744}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 365.7065026}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 4019.34035685}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 2172.99361442}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 49.8209340257}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4538.02049618}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 23.9646018947}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 19.0775888949}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 97.0735092246}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 112006.429837}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 1.19531644732}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.204997960687}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.57614589605}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.151713303833}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.364871214146}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 135.341583662}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.154420248453}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.725143832352}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0250784955846}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 560.065284455}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 202.580565585}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 17345.464233}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.113169917113}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.231449919653}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.83113132471}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.00783067455}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 30.6061907842}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 384.082670076}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 5875.23276591}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 813.481531495}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 32315.1068764}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 164.642808893}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 264.337890885}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 2660.18257168}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 6137.04937553}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 10219.6455873}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 10054.7533582}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 8386.99402138}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1116.7046056}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 21.613539292}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 27.6249870781}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.69232633066}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 9.20440887968}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.00278041910208}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 761.209962198}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 103.944077256}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 62492.7187904}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 1.68978977302e-05}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.000212391668064}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 5495.69785952}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 1035.78217844}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 210.720423099}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 1044.85948334}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 8.49246368075e-05}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 0.183766566205}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 9461.35207502}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 161.242132537}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 90.0956219738}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 133638.403915}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 173.663608682}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 20981.6418249}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 11123.3031216}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2289.7811287}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 194.241971734}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 266.853115161}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 255.253645922}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 124.972879067}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0347588374378}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 12065.867642}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 225.091346897}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 507.88346243}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 23.1638739103}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 5393.37077103}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 220.374273005}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 458.778784193}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 11.6499437265}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.0970154355392}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.0631913378953}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 1.06674912637}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.2256583397}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 14094.5350148}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.576607505372}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 2.62762952007}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.057728292117}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.529308945736}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 2.24108364603}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1915.77089829}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6441.70287307}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 745.421708679}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 117.347037233}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 1267.94509891}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 4.14229731998}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 2202.55505481}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 17.3618871758}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0204857914181}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 5483.03314242}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 126.204653291}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 6082.16061629}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 215.530846629}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 10.9506349943}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 831.618239881}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 27.4490071731}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 129.472853108}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 21.8555056751}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 5616.26291085}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1425.3454298}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 89.9804499302}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0321422533231}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 156.230936334}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 83124.2865481}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 2932.02578593}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.0140546231978}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 781.103671913}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 248.743561249}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 23.64350251}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1194.23692098}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4549.47374021}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6039.63943014}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 477399.900897}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 9.10152776605}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 21.8797176827}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 20.9110658397}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 0.0413948763067}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1116.90069491}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 349.550094036}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 19162.5565369}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 24118.1778032}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 498.135556269}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 6.27104198098}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 0.375666926493}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 60375.4789921}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.0932925356856}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 15.0525551269}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 310.259588849}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 285.069157112}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 10.7466745139}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 0.0953060393702}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.30429241591}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 196.100163711}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3507.53000309}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 11.6430968574}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 2.08961639208}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 35.5024975135}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 153.002197788}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 145.514101305}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 19.5129109469}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 937.412433146}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 3701.9722186}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 2964.10862814}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 47.1862687661}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 80059.4895541}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 100987.433379}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 12634.6399818}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 0.534489261}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.019891430555}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 5256.02237607}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 1581.689868}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 79.0291838857}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 449.863767219}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0272867515794}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 1.18106678075}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 4553.22796733}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 449.513177271}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3383.33375278}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 41283.7582111}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 4664.85311259}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 53712.0311845}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 53644.7897429}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 14085.2938275}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 862.918167377}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 41325.5719851}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1025.56311421}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 15803.2042289}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 1347.13020059}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 1714.41984509}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.0131267190366}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 4220.83504003}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 319.761373813}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 6056.63650588}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 175.173865712}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 38.4438237643}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 52549.7251044}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 1315.30446537}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.0918471656337}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 592.510750365}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 14604.3343293}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 0.021957876845}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 163.50212264}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 3.04863294124}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 46228.7322996}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 58269.3699574}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 1059.06456811}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.0112737888674}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 16684.3640155}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 21139.0169079}, {"name": "1,4-Butanediol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.835334946199}, {"name": "1,4-Butanediol", "categories": ["air", "low population density, long-term"], "amount": 0.835334946199}, {"name": "1,4-Butanediol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.835334946199}, {"name": "1,4-Butanediol", "categories": ["air"], "amount": 0.856459898732}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.210596171482}, {"name": "1-Pentanol", "categories": ["air", "low population density, long-term"], "amount": 0.210596171482}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.210596171482}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.212214291742}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.198783735445}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.198783735445}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.198783735445}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.200142140003}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0794096203566}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0794096203566}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0794096203566}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.0799594348449}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.251546230591}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.251546230591}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.251546230591}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.252777024624}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0209785856491}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.0209785856491}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0209785856491}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.0207752549709}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.59610285522}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 2.59610285522}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.59610285522}, {"name": "Acenaphthene", "categories": ["air"], "amount": 3.02961963627}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.296430617956}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.296430617956}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.296430617956}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 0.292418003365}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.2491571695}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 10.2491571695}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.2491571695}, {"name": "Acetic acid", "categories": ["air"], "amount": 10.3825557204}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0790346968653}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.0790346968653}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0790346968653}, {"name": "Acetone", "categories": ["air"], "amount": 0.0791503890237}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.740570515773}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 0.740570515773}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.740570515773}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.741749607565}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 108.575306681}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 108.575306681}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 108.575306681}, {"name": "Acrolein", "categories": ["air"], "amount": 106.610246076}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.2566863107}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 13.2566863107}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.2566863107}, {"name": "Acrylic acid", "categories": ["air"], "amount": 13.8991607228}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58181265975}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 1.58181265975}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58181265975}, {"name": "Aniline", "categories": ["air"], "amount": 2.29479011409}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 493.04979056}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 493.04979056}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 493.04979056}, {"name": "Antimony ion", "categories": ["air"], "amount": 491.036034026}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 612.06483331}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 612.06483331}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 612.06483331}, {"name": "Barium II", "categories": ["air"], "amount": 609.641052877}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.15021596859}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 3.15021596859}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.15021596859}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 3.14635753105}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0638123434892}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.0638123434892}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0638123434892}, {"name": "Benzene", "categories": ["air"], "amount": 0.0639985995639}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0271505150441}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 0.0271505150441}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0271505150441}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.0283756527822}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 621.912773802}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 621.912773802}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 621.912773802}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 624.273198681}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 341.02911476}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 341.02911476}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 341.02911476}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 341.545862823}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.5330803026}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 43.5330803026}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 43.5330803026}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 107.014536049}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1631.16519404}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 1631.16519404}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1631.16519404}, {"name": "Beryllium II", "categories": ["air"], "amount": 1621.98758502}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.107942211711}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 0.107942211711}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.107942211711}, {"name": "Butanol", "categories": ["air"], "amount": 0.109128130984}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.5175522617}, {"name": "Butyrolactone", "categories": ["air", "low population density, long-term"], "amount": 29.5175522617}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.5175522617}, {"name": "Butyrolactone", "categories": ["air"], "amount": 29.9168864546}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3955.35973783}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 3955.35973783}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3955.35973783}, {"name": "Cadmium II", "categories": ["air"], "amount": 3938.52479107}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.30654406122}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 2.30654406122}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.30654406122}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 2.3070113383}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14212.4900179}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 14212.4900179}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14212.4900179}, {"name": "Chloramine", "categories": ["air"], "amount": 14451.9112281}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 749.484412124}, {"name": "Chloroacetic acid", "categories": ["air", "low population density, long-term"], "amount": 749.484412124}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 749.484412124}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 754.139357776}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.281794448257}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.281794448257}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.281794448257}, {"name": "Chloroform", "categories": ["air"], "amount": 0.281948738945}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 84.3875199741}, {"name": "Chlorosulfonic acid", "categories": ["air", "low population density, long-term"], "amount": 84.3875199741}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 84.3875199741}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 85.4002331727}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 521.359242738}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 521.359242738}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 521.359242738}, {"name": "Chromium III", "categories": ["air"], "amount": 519.252829459}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 42142.7644597}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 42142.7644597}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42142.7644597}, {"name": "Chromium VI", "categories": ["air"], "amount": 41972.4910401}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1722.64845736}, {"name": "Cobalt II", "categories": ["air", "low population density, long-term"], "amount": 1722.64845736}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1722.64845736}, {"name": "Cobalt II", "categories": ["air"], "amount": 1714.29641838}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 23320.1199541}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 23320.1199541}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23320.1199541}, {"name": "Copper ion", "categories": ["air"], "amount": 23205.1183618}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0740771512599}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.0740771512599}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0740771512599}, {"name": "Cumene", "categories": ["air"], "amount": 0.0824023029526}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000405353473058}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.000405353473058}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000405353473058}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.000500502584849}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00182893035243}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.00182893035243}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00182893035243}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.00181977482319}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.116780482618}, {"name": "Diethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.116780482618}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.116780482618}, {"name": "Diethylamine", "categories": ["air"], "amount": 0.115602399106}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 23.5884389935}, {"name": "Dimethyl malonate", "categories": ["air", "low population density, long-term"], "amount": 23.5884389935}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 23.5884389935}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 23.8812170095}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.25099048109}, {"name": "Dimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.25099048109}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.25099048109}, {"name": "Dimethylamine", "categories": ["air"], "amount": 0.247921480955}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 106410.828059}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 106410.828059}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 106410.828059}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 124675.918349}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.412215588906}, {"name": "Dipropylamine", "categories": ["air", "low population density, long-term"], "amount": 0.412215588906}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.412215588906}, {"name": "Dipropylamine", "categories": ["air"], "amount": 0.409629502916}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.0073923683}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 19.0073923683}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.0073923683}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 19.0424906316}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19531644732}, {"name": "Ethane thiol", "categories": ["air", "low population density, long-term"], "amount": 1.19531644732}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19531644732}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.19531644732}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.204908392992}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.204908392992}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.204908392992}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.20495317684}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.575224191555}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.575224191555}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.575224191555}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.575685043803}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.151546557655}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 0.151546557655}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.151546557655}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.151629930744}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.364404011361}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.364404011361}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.364404011361}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.364637612753}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.151221906768}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.151221906768}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.151221906768}, {"name": "Ethanol", "categories": ["air"], "amount": 0.152821077611}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.721533745751}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.721533745751}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.721533745751}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.723338789052}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0246194040751}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.0246194040751}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0246194040751}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.113268388553}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.113268388553}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.113268388553}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.113219152833}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.228364488859}, {"name": "Ethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.228364488859}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.228364488859}, {"name": "Ethylamine", "categories": ["air"], "amount": 0.229907204256}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.64711600974}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.64711600974}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.64711600974}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 1.73912366723}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.00621475928}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.00621475928}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.00621475928}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 1.00702271691}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.9823636252}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 25.9823636252}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.9823636252}, {"name": "Formaldehyde", "categories": ["air"], "amount": 26.8036753517}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.67005629758}, {"name": "Formamide", "categories": ["air", "low population density, long-term"], "amount": 1.67005629758}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.67005629758}, {"name": "Formamide", "categories": ["air"], "amount": 1.68119131412}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.96030446924}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 8.96030446924}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.96030446924}, {"name": "Formic acid", "categories": ["air"], "amount": 9.08235667446}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00233100240177}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 0.00233100240177}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00233100240177}, {"name": "Furan", "categories": ["air"], "amount": 0.00255571075192}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.37442513185e-06}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 3.37442513185e-06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.37442513185e-06}, {"name": "Heptane", "categories": ["air"], "amount": 1.0136161431e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.76400672692e-05}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 5.76400672692e-05}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.76400672692e-05}, {"name": "Hexane", "categories": ["air"], "amount": 0.000135015867667}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.88928850923e-05}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 2.88928850923e-05}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.88928850923e-05}, {"name": "Isoprene", "categories": ["air"], "amount": 5.69087609499e-05}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.191379678204}, {"name": "Isopropylamine", "categories": ["air", "low population density, long-term"], "amount": 0.191379678204}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.191379678204}, {"name": "Isopropylamine", "categories": ["air"], "amount": 0.187573122205}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 176.062889039}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 176.062889039}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 176.062889039}, {"name": "Lead II", "categories": ["air"], "amount": 174.86324886}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 12297.3346688}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 12297.3346688}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12297.3346688}, {"name": "Mercury II", "categories": ["air"], "amount": 12181.6011554}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.6381118935}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 11.6381118935}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.6381118935}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 11.64402781}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0969143119131}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.0969143119131}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0969143119131}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.0969648737262}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0631311766242}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.0631311766242}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0631311766242}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.0631612572598}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0665506403}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 1.0665506403}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0665506403}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 1.06664988334}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22225788207}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.22225788207}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22225788207}, {"name": "Methanol", "categories": ["air"], "amount": 0.223958110885}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57583947294}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.57583947294}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57583947294}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.576223489156}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.66685846076}, {"name": "Methyl acrylate", "categories": ["air", "low population density, long-term"], "amount": 2.66685846076}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.66685846076}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 2.64724399041}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0576835058781}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.0576835058781}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0576835058781}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.0577058989975}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.528720817166}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.528720817166}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.528720817166}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.529014881451}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14951480127}, {"name": "Methyl lactate", "categories": ["air", "low population density, long-term"], "amount": 2.14951480127}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14951480127}, {"name": "Methyl lactate", "categories": ["air"], "amount": 2.19529922365}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 118.302979947}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 118.302979947}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 118.302979947}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 117.82500859}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.85521540325}, {"name": "Monoethanolamine", "categories": ["air", "low population density, long-term"], "amount": 3.85521540325}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.85521540325}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 3.99875636162}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0164468033888}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0164468033888}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0164468033888}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.0184662974034}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 6137.38470478}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 6137.38470478}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6137.38470478}, {"name": "Nickel II", "categories": ["air"], "amount": 6109.77266053}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.8739854374}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 10.8739854374}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.8739854374}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 10.9123102159}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.040385767}, {"name": "o-Nitrotoluene", "categories": ["air", "low population density, long-term"], "amount": 27.040385767}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.040385767}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 27.2446964701}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0285629132937}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0285629132937}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0285629132937}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.0303525833084}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00598165461721}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.00598165461721}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00598165461721}, {"name": "Pentane", "categories": ["air"], "amount": 0.0100181389075}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.5610007283}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 15.5610007283}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.5610007283}, {"name": "Phenol", "categories": ["air"], "amount": 19.6022516191}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1135.06293036}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1135.06293036}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1135.06293036}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 1164.64992567}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3414.13714823}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3414.13714823}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3414.13714823}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 3981.80544422}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.388389161408}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 0.388389161408}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.388389161408}, {"name": "Propanal", "categories": ["air"], "amount": 0.38202804395}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0917394115155}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.0917394115155}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0917394115155}, {"name": "Propanol", "categories": ["air"], "amount": 0.0925159736005}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 10.3227695392}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 10.3227695392}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10.3227695392}, {"name": "Propionic acid", "categories": ["air"], "amount": 10.5347220266}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0936882576845}, {"name": "Propylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0936882576845}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0936882576845}, {"name": "Propylamine", "categories": ["air"], "amount": 0.0944971485273}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.30429241591}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 1.30429241591}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.30429241591}, {"name": "Propylene oxide", "categories": ["air"], "amount": 1.30429241591}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 2989.82139002}, {"name": "Selenium IV", "categories": ["air", "low population density, long-term"], "amount": 2989.82139002}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2989.82139002}, {"name": "Selenium IV", "categories": ["air"], "amount": 2976.96500908}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 80815.4597124}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 80815.4597124}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80815.4597124}, {"name": "Silver I", "categories": ["air"], "amount": 80437.4746333}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.534489261}, {"name": "Sodium formate", "categories": ["air", "low population density, long-term"], "amount": 0.534489261}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.534489261}, {"name": "Sodium formate", "categories": ["air"], "amount": 0.534489261}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0111386365058}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.0111386365058}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0111386365058}, {"name": "Styrene", "categories": ["air"], "amount": 0.0155150335304}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 77.9916598746}, {"name": "Sulfuric acid", "categories": ["air", "low population density, long-term"], "amount": 77.9916598746}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 77.9916598746}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 78.5104218802}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0273369643254}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.0273369643254}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0273369643254}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.0273118579524}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18753802654}, {"name": "t-Butylamine", "categories": ["air", "low population density, long-term"], "amount": 1.18753802654}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18753802654}, {"name": "t-Butylamine", "categories": ["air"], "amount": 1.18430240365}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 14197.9185038}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 14197.9185038}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14197.9185038}, {"name": "Thallium I", "categories": ["air"], "amount": 14141.6061657}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1364.56823187}, {"name": "Tin ion", "categories": ["air", "low population density, long-term"], "amount": 1364.56823187}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1364.56823187}, {"name": "Tin ion", "categories": ["air"], "amount": 1355.84921623}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0124211271458}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 0.0124211271458}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0124211271458}, {"name": "Toluene", "categories": ["air"], "amount": 0.0127739230912}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0241287861807}, {"name": "Trimethylamine", "categories": ["air", "low population density, long-term"], "amount": 0.0241287861807}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0241287861807}, {"name": "Trimethylamine", "categories": ["air"], "amount": 0.0230433315129}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 46651.9104447}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 46651.9104447}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 46651.9104447}, {"name": "Vanadium V", "categories": ["air"], "amount": 46440.3213721}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0100183472103}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 0.0100183472103}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0100183472103}, {"name": "Xylene", "categories": ["air"], "amount": 0.0106460680389}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16872.4717639}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 16872.4717639}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16872.4717639}, {"name": "Zinc II", "categories": ["air"], "amount": 16778.4178897}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["soil"], "amount": 614.959345387}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["soil"], "amount": 763.100537904}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2044.44096164}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 4936.04575274}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 4936.04575274}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 4936.04575274}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4936.04575274}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 650.179138161}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 650.179138161}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 650.179138161}, {"name": "Chromium III", "categories": ["soil"], "amount": 650.179138161}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["soil"], "amount": 52555.1604784}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2153.79076908}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 29164.371915}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 29164.371915}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 29164.371915}, {"name": "Copper ion", "categories": ["soil"], "amount": 29164.371915}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 103.944077256}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["soil"], "amount": 221.497791887}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["soil"], "amount": 15597.0651453}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 147.533859595}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 7664.97812916}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 7664.97812916}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 7664.97812916}, {"name": "Nickel II", "categories": ["soil"], "amount": 7664.97812916}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["soil"], "amount": 3731.25861636}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 100987.433379}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 100987.433379}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 100987.433379}, {"name": "Silver I", "categories": ["soil"], "amount": 100987.433379}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 92.4913549105}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["soil"], "amount": 17701.2387824}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 1714.41984509}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 1714.41984509}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 1714.41984509}, {"name": "Tin ion", "categories": ["soil"], "amount": 1714.41984509}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 58269.3699574}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 58269.3699574}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 58269.3699574}, {"name": "Vanadium V", "categories": ["soil"], "amount": 58269.3699574}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 21139.0169079}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 21139.0169079}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 21139.0169079}, {"name": "Zinc II", "categories": ["soil"], "amount": 21139.0169079}, {"name": "1,4-Butanediol", "categories": ["water", "ground-"], "amount": 1.88048378921}, {"name": "1,4-Butanediol", "categories": ["water", "ground-, long-term"], "amount": 1.88048378921}, {"name": "1,4-Butanediol", "categories": ["water", "ocean"], "amount": 1.24888237456e-06}, {"name": "1,4-Butanediol", "categories": ["water", "surface water"], "amount": 7.30933198218}, {"name": "1,4-Butanediol", "categories": ["water"], "amount": 7.30933198218}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 2.39767700727}, {"name": "1-Pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.39767700727}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.00252054920435}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 15.5680380784}, {"name": "1-Pentanol", "categories": ["water"], "amount": 15.5680380784}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.83532693565}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 1.83532693565}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.00335253332003}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 8.53883712597}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 8.53883712597}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 0.563358392411}, {"name": "2-Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.563358392411}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.00122097072413}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 2.46341652464}, {"name": "2-Propanol", "categories": ["water"], "amount": 2.46341652464}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 4.12620317214}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-, long-term"], "amount": 4.12620317214}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.00539448887153}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 21.4154999078}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 21.4154999078}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-, long-term"], "amount": 2.31522045892}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.00474277583209}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 14.5722688399}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 14.5722688399}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 0.702598655348}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 0.702598655348}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.00143091470463}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 6.02567201913}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 6.02567201913}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 18.281896538}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 18.281896538}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 0.365080472264}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 4115.81224674}, {"name": "Acenaphthene", "categories": ["water"], "amount": 4115.81224674}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.4090746304}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 8.4090746304}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.0197047366836}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 47.1724719364}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 47.1724719364}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 12.6438444691}, {"name": "Acetic acid", "categories": ["water", "ground-, long-term"], "amount": 12.6438444691}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00134658392511}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 49.8391256658}, {"name": "Acetic acid", "categories": ["water"], "amount": 49.8391256658}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 0.2571833334}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 0.2571833334}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.00354663492385}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 1.21330906629}, {"name": "Acetone", "categories": ["water"], "amount": 1.21330906629}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 1.95659022868}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 1.95659022868}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.0363870763409}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.85687366902}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.85687366902}, {"name": "Acetyl chloride", "categories": ["water", "ground-, long-term"], "amount": 26.5305279317}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 0.428156522692}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 133.532588712}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 133.532588712}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 44.5937564368}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 0.329136796886}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 354.907392769}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 354.907392769}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 66.7690720679}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 66.7690720679}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 0.00592084616789}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 630.6490501}, {"name": "Aniline", "categories": ["water"], "amount": 630.6490501}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 614.959345387}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 9.07429387723e-18}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 1221.51839968}, {"name": "Antimony ion", "categories": ["water"], "amount": 1221.51839968}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 763.100537904}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.44533885721e-17}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1526.10691053}, {"name": "Barium II", "categories": ["water"], "amount": 1526.10691053}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.04858705518}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 2.04858705518}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.0130046485146}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 65.983059347}, {"name": "Benzene", "categories": ["water"], "amount": 65.983059347}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 6.54175482903}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 0.075129666383}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 393.262078174}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 393.262078174}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1.70380121609}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 1.70380121609}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.00246484482978}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 174.894328739}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 174.894328739}, {"name": "Benzyl alcohol", "categories": ["water", "ground-, long-term"], "amount": 39.297979558}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.00403492671258}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 200.43759694}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 200.43759694}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 2044.44096164}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 1.69894016278e-17}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 3719.35347873}, {"name": "Beryllium II", "categories": ["water"], "amount": 3719.35347873}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 0.94260861398}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 0.94260861398}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.000990721472819}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.51556379499}, {"name": "Butanol", "categories": ["water"], "amount": 5.51556379499}, {"name": "Butyl acetate", "categories": ["water", "ground-, long-term"], "amount": 1.88748682607}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.00630729817118}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 28.3737992555}, {"name": "Butyl acetate", "categories": ["water"], "amount": 28.3737992555}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 40.4477825543}, {"name": "Butyrolactone", "categories": ["water", "ground-, long-term"], "amount": 40.4477825543}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.00307454028955}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 154.646449236}, {"name": "Butyrolactone", "categories": ["water"], "amount": 154.646449236}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 4936.04575274}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.26970102448e-17}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 9712.29169009}, {"name": "Cadmium II", "categories": ["water"], "amount": 9712.29169009}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 4.82294471251}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 4.82294471251}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 0.230171311538}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 153.423085687}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 153.423085687}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 15577.3710813}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 15577.3710813}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 2.63968414852e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 71953.1321372}, {"name": "Chloramine", "categories": ["water"], "amount": 71953.1321372}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 929.270625492}, {"name": "Chloroacetic acid", "categories": ["water", "ground-, long-term"], "amount": 929.270625492}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 0.0133105855615}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 2928.07024673}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 2928.07024673}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 2.08589206049}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 2.08589206049}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 0.0534688731889}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 41.1788799623}, {"name": "Chloroform", "categories": ["water"], "amount": 41.1788799623}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 151.296640867}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-, long-term"], "amount": 151.296640867}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 0.163343449842}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 553.804523877}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 553.804523877}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 52555.1604784}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.32106975587e-16}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 104644.276363}, {"name": "Chromium VI", "categories": ["water"], "amount": 104644.276363}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 650.179138161}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.69990359972e-18}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 1294.59266797}, {"name": "Chromium III", "categories": ["water"], "amount": 1294.59266797}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["water", "ground-, long-term"], "amount": 2153.79076908}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 9.294818138e-18}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 4099.42299394}, {"name": "Cobalt II", "categories": ["water"], "amount": 4099.42299394}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 29164.371915}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.03201448924e-16}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 55247.572332}, {"name": "Copper ion", "categories": ["water"], "amount": 55247.572332}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2.4742100852}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 2.4742100852}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.00654705716437}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 665.070188075}, {"name": "Cumene", "categories": ["water"], "amount": 665.070188075}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 0.125391464036}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 0.125391464036}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 3.90157543781e-05}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 48.6887426224}, {"name": "Cyclohexane", "categories": ["water"], "amount": 48.6887426224}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 7.13335497877}, {"name": "Diethylamine", "categories": ["water", "ground-, long-term"], "amount": 7.13335497877}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00405279791329}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 65.4673526162}, {"name": "Diethylamine", "categories": ["water"], "amount": 65.4673526162}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-, long-term"], "amount": 2.50951518917}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.00492028322356}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 44.0393806465}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 44.0393806465}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 14.2844619225}, {"name": "Dimethylamine", "categories": ["water", "ground-, long-term"], "amount": 14.2844619225}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00784287237722}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 86.1910342993}, {"name": "Dimethylamine", "categories": ["water"], "amount": 86.1910342993}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 19.1969003429}, {"name": "Dipropylamine", "categories": ["water", "ground-, long-term"], "amount": 19.1969003429}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.0193638036234}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 375.153401114}, {"name": "Dipropylamine", "categories": ["water"], "amount": 375.153401114}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 0.645470406153}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 0.645470406153}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 0.0544918255704}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 21.6929221094}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 21.6929221094}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.18602552885}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.18602552885}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.0288539804571}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 15.118230043}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 15.118230043}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 135.341583662}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 19.4898450525}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 1911.47985113}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1911.47985113}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 0.603906199083}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 0.603906199083}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.000982908829623}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.11364403216}, {"name": "Ethanol", "categories": ["water"], "amount": 3.11364403216}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 8.73241367889}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 8.73241367889}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.182067694772}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 607.053269966}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 607.053269966}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 0.871238127174}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 0.871238127174}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.00792142074535}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 5.86649047108}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 5.86649047108}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 4.74695548969}, {"name": "Ethylamine", "categories": ["water", "ground-, long-term"], "amount": 4.74695548969}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.00542378418328}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 31.3245702049}, {"name": "Ethylamine", "categories": ["water"], "amount": 31.3245702049}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 9.19599755927}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 9.19599755927}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00149450283134}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 33.8825908879}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 33.8825908879}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 3.76959585656}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 3.76959585656}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.0858467086862}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 23.5345841881}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 23.5345841881}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 83.9611714942}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 83.9611714942}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.0244435939629}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 297.421123119}, {"name": "Formaldehyde", "categories": ["water"], "amount": 297.421123119}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.27635583284}, {"name": "Formamide", "categories": ["water", "ground-, long-term"], "amount": 2.27635583284}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 5.70502569648e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 7.03496309107}, {"name": "Formamide", "categories": ["water"], "amount": 7.03496309107}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 11.1765675378}, {"name": "Formic acid", "categories": ["water", "ground-, long-term"], "amount": 11.1765675378}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00214519858316}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 44.3985978111}, {"name": "Formic acid", "categories": ["water"], "amount": 44.3985978111}, {"name": "Glutaraldehyde", "categories": ["water", "ground-, long-term"], "amount": 761.209962198}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.0835600185334}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 2834.66165807}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 2834.66165807}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 0.0244198439156}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 0.0244198439156}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 3.3839735808e-06}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 64.7766136478}, {"name": "Hexane", "categories": ["water"], "amount": 64.7766136478}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 5495.69785952}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 6.84697909866}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 26679.1520578}, {"name": "Hydrazine", "categories": ["water"], "amount": 26679.1520578}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 7.38073006547}, {"name": "Isopropylamine", "categories": ["water", "ground-, long-term"], "amount": 7.38073006547}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0098284709809}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 63.9075630591}, {"name": "Isopropylamine", "categories": ["water"], "amount": 63.9075630591}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 221.497791887}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.38723579768e-19}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 374.712087307}, {"name": "Lead II", "categories": ["water"], "amount": 374.712087307}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 15597.0651453}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.78498613101e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 22085.5777807}, {"name": "Mercury II", "categories": ["water"], "amount": 22085.5777807}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 0.826658447362}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 0.826658447362}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.0196317992577}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 14.6086211315}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 14.6086211315}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 2.26922525202}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 2.26922525202}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 0.276852728533}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 66.3699032274}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 66.3699032274}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 0.510872918433}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 0.510872918433}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.00149137267179}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 2.64703869861}, {"name": "Methanol", "categories": ["water"], "amount": 2.64703869861}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 2.63934935448}, {"name": "Methyl acetate", "categories": ["water", "ground-, long-term"], "amount": 2.63934935448}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.0403171258023}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 15.3464598148}, {"name": "Methyl acetate", "categories": ["water"], "amount": 15.3464598148}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 86.4260496376}, {"name": "Methyl acrylate", "categories": ["water", "ground-, long-term"], "amount": 86.4260496376}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 0.205421548177}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 672.693769619}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 672.693769619}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 2.69699443261}, {"name": "Methyl formate", "categories": ["water", "ground-, long-term"], "amount": 2.69699443261}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.0454930999128}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 17.6594630018}, {"name": "Methyl formate", "categories": ["water"], "amount": 17.6594630018}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 147.533859595}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 7.40013389918e-19}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 293.759429823}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 293.759429823}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 2.86220566757}, {"name": "m-Xylene", "categories": ["water", "ground-, long-term"], "amount": 2.86220566757}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.00149072814059}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 293.377639617}, {"name": "m-Xylene", "categories": ["water"], "amount": 293.377639617}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 7664.97812916}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.52134113463e-17}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 14879.593112}, {"name": "Nickel II", "categories": ["water"], "amount": 14879.593112}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 12.4907504254}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 12.4907504254}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 0.309274509026}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 179.424851039}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 179.424851039}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 2.44074824773}, {"name": "o-Xylene", "categories": ["water", "ground-, long-term"], "amount": 2.44074824773}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.00258295543271}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 220.767480905}, {"name": "o-Xylene", "categories": ["water"], "amount": 220.767480905}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 68.881917707}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 68.881917707}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.00989234102318}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 933.053080439}, {"name": "Phenol", "categories": ["water"], "amount": 933.053080439}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 9.10152776605}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.0921337373485}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5658.10239646}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 5658.10239646}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 21.8797176827}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.104574403899}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6318.72190295}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 6318.72190295}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-, long-term"], "amount": 20.9110658397}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.00566881201258}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 167.14128465}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 167.14128465}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 0.0413948763067}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.000356393755357}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 322.448744091}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 322.448744091}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 15.3176471858}, {"name": "Propanal", "categories": ["water", "ground-, long-term"], "amount": 15.3176471858}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.0249055458003}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 85.6478335876}, {"name": "Propanal", "categories": ["water"], "amount": 85.6478335876}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 0.648709408671}, {"name": "Propanol", "categories": ["water", "ground-, long-term"], "amount": 0.648709408671}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.00130704287396}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 2.97231381479}, {"name": "Propanol", "categories": ["water"], "amount": 2.97231381479}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 16.5647075376}, {"name": "Propionic acid", "categories": ["water", "ground-, long-term"], "amount": 16.5647075376}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.00558389484262}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 70.6626377096}, {"name": "Propionic acid", "categories": ["water"], "amount": 70.6626377096}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 2.10238456636}, {"name": "Propylamine", "categories": ["water", "ground-, long-term"], "amount": 2.10238456636}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0023607370464}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 17.4700358048}, {"name": "Propylamine", "categories": ["water"], "amount": 17.4700358048}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 5.01480349489}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 5.01480349489}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.0816325783193}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 29.005239421}, {"name": "Propylene oxide", "categories": ["water"], "amount": 29.005239421}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["water", "ground-, long-term"], "amount": 3731.25861636}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.99594386638e-17}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 7324.67649905}, {"name": "Selenium IV", "categories": ["water"], "amount": 7324.67649905}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 100987.433379}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.40217976328e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 194088.664722}, {"name": "Silver I", "categories": ["water"], "amount": 194088.664722}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 0.591875112103}, {"name": "Sodium formate", "categories": ["water", "ground-, long-term"], "amount": 0.591875112103}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 1.02735443489e-11}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 2.29890588366}, {"name": "Sodium formate", "categories": ["water"], "amount": 2.29890588366}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 0.836241799581}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 0.836241799581}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.00100227427588}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 185.222322067}, {"name": "Styrene", "categories": ["water"], "amount": 185.222322067}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 0.552459972141}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 0.552459972141}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.00240860630869}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 6.63317349449}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 6.63317349449}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 13.5092073972}, {"name": "t-Butylamine", "categories": ["water", "ground-, long-term"], "amount": 13.5092073972}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.0506647781598}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 125.389297733}, {"name": "t-Butylamine", "categories": ["water"], "amount": 125.389297733}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 17701.2387824}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.07639023681e-16}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 35389.4077305}, {"name": "Thallium I", "categories": ["water"], "amount": 35389.4077305}, {"name": "Tin ion", "categories": ["water", "ground-, long-term"], "amount": 1714.41984509}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 4.30760120816e-18}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 2978.23297057}, {"name": "Tin ion", "categories": ["water"], "amount": 2978.23297057}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 0.69590270572}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 0.69590270572}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.00116367810532}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 55.9244570735}, {"name": "Toluene", "categories": ["water"], "amount": 55.9244570735}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.83959886735}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.83959886735}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 0.0341377179356}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 188.861574259}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 188.861574259}, {"name": "Triethylene glycol", "categories": ["water", "ground-, long-term"], "amount": 0.0918471656337}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 8.45923489413e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.387328217825}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.387328217825}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.65348453121}, {"name": "Trimethylamine", "categories": ["water", "ground-, long-term"], "amount": 2.65348453121}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.00173832682985}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 19.8654420496}, {"name": "Trimethylamine", "categories": ["water"], "amount": 19.8654420496}, {"name": "Urea", "categories": ["water", "ground-, long-term"], "amount": 3.04863294124}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 8.80967294413e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 10.2429235335}, {"name": "Urea", "categories": ["water"], "amount": 10.2429235335}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 58269.3699574}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.14855870933e-15}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 112885.975124}, {"name": "Vanadium V", "categories": ["water"], "amount": 112885.975124}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 0.856084361818}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 0.856084361818}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.000905963060822}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 77.433462536}, {"name": "Xylene", "categories": ["water"], "amount": 77.433462536}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 21139.0169079}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 3.26978777143e-15}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 38584.5847928}, {"name": "Zinc II", "categories": ["water"], "amount": 38584.5847928}, {"name": "Allyl chloride", "categories": ["water"], "amount": 150.107994707}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1719.72022222}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.421805319}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 339.317777169}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.46475948079}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 857.119620868}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 9534.98244551}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6746.64791262}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4323.58210351}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1920.93503576}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6050.10080329}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2426.79990078}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.582607561724}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 103.169086671}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 658.986710852}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 295.110806888}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 3770.7450376}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 4954.65373781}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 37.3932813926}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 192.999442132}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1283.109173}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 70127.4310591}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 4084.8099935}, {"name": "Thifensulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 35564.4260927}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 411.1785638}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1134.31504454}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 868.275246299}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1240.16841273}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 96.2293583211}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1333.79443753}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8673.14758745}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 105.744292155}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2258.57766265}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.3024755209}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3287.78136202}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 4345.11868303}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.4122233922}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1170.78461728}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 259125.744383}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 910.522764295}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 381628.069557}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 7664.97812916}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 1388.79880804}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 633.556552259}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 10478.7144824}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 893.126030729}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 4.20246492475}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 23322.8108861}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 28046.6429631}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 98.0040444448}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 116.155359038}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 4596.60659287}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 1165.75588348}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 18.9067574535}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 2525.61496079}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 381053.75649}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 17300.8240815}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 48797.7288149}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1194.66483169}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 129.849192762}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 6449.38280516}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 15771.0343836}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 352.621901199}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 677723.624786}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 126.815326465}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 236.821363216}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 652.965951536}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7861577.04964}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1028.90082835}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 2443.47118807}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 6373.08863158}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 170.512437611}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 6437.00134825}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 6437.00134825}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6437.00134825}, {"name": "Arsenic ion", "categories": ["air"], "amount": 6405.04498992}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 8050.89994673}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 8050.89994673}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 8050.89994673}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 8050.89994673}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 224.393691341}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 214.756405105}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 214.756405105}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 214.756405105}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 234.030977577}, {"name": "Arsenic ion", "categories": ["water"], "amount": 15222.6509969}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 15222.6509969}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 9.58825682577e-17}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 8050.89994673}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 8050.89994673}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1748.63720722}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 105.779518324}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1618.13667159}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 206.604549058}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 5957.95991504}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 2337.13737544}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 90.654292576}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 105993.681159}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 203864.201142}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 96.6568218536}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 2.75406157419}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 12.5967888633}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.73878567982}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.73878567982}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.73878567982}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 2.746423627}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 12.5967888633}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 0.486803588069}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 586.984453573}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 586.984453573}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 16219.0594888}]}, {"unit": "CTU", "name": ["USEtox", "human toxicity", "carcinogenic"], "exchanges": [{"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 1.25835643585e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.81034369363e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.10822971148e-07}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3.40677675031e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2.78915096857e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.53106789654e-08}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.02725822034e-06}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.39137625621e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.74189637316e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 8.42536760991e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.12983385676e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.53036676816e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 4.49513602648e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.000115490564155}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.12591222332e-06}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.000251763798337}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.5900525836e-06}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.12098271166e-08}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.02143353577e-06}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.98978798813e-07}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.52942349063e-08}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00469814945549}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.59396713048e-05}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 1.58465083306e-05}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 29.6215965571}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 5.54372559772e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.30432522666e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.51551382007e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.82092639599e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.86589948834e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.92272837839e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 3.59649534071e-06}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.63627203333e-09}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.03415307628e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.29033235366e-07}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.06043356488e-08}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.21916990727e-06}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.86069960003e-06}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.54216857544e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.27974191527e-05}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.79311899168e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.75913270933e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.34836336155e-07}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 2.65698358987e-05}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 6.56547012814e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3.13488021555e-08}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.00689119536346}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.93265617274e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 8.91573373907e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.798065886e-05}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.41561486381e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.61755017703e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.59751715034e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.9919583523e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 4.30137212543e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 4.44886373212e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 8.76389568595e-08}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 1.13599183806e-05}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 9.2668338628e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 4.10730840774e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.8761556497e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.00721530541e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.10266781435e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.17267040417e-12}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.82551249043e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 9.01010637222e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.17980717339e-09}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 9.17980717339e-09}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.17980717339e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.51070882682e-08}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.61481971007e-10}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 7.61481971007e-10}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.61481971007e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.80360804682e-08}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21160330753e-09}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.21160330753e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.21160330753e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.80626829348e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.19861648047e-07}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.19861648047e-07}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.19861648047e-07}, {"name": "Benzene", "categories": ["air"], "amount": 2.97025642682e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55318865951e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 5.55318865951e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55318865951e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.34257636135e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.81334221509e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 6.81334221509e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.81334221509e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.17185449163e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.48798887749e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.15203102352e-05}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 1.15203102352e-05}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.15203102352e-05}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.35054371953e-05}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.66364294122e-08}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1.66364294122e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.66364294122e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.71274326364e-07}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000181886251444}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.000181886251444}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000181886251444}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.00021682502489}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62205188845e-07}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.62205188845e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.62205188845e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.30591993829e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00420652364645}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.00420652364645}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00420652364645}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00445233655097}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 29.0579794183}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.98615796658e-07}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 4.98615796658e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.98615796658e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.26494178215e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.21127687713e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.21127687713e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.21127687713e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.25780105189e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.15703053861e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 6.15703053861e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.15703053861e-07}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.06560843696e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.55644290875e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.14623193216e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.33591164361e-08}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.13732373977e-09}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.63093252709e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 4.63093252709e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.63093252709e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.74862316449e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.22818037023e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 2.22818037023e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.22818037023e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 3.25925636194e-07}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.35831711151e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 9.35831711151e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.35831711151e-09}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 8.30466291186e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38568982845e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.38568982845e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38568982845e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.34036877914e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.38514597875e-06}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 1.38514597875e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.38514597875e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.20912825657e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.92786459021e-10}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 1.92786459021e-10}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.92786459021e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.92952725352e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8147140338e-08}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.72744049579e-05}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 2.72744049579e-05}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.72744049579e-05}, {"name": "Lead II", "categories": ["air"], "amount": 2.69221204283e-05}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00721939609092}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.00721939609092}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00721939609092}, {"name": "Mercury II", "categories": ["air"], "amount": 0.00705529572719}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.4268974382e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41555720358e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 4.41555720358e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41555720358e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.66564547133e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.53591407821e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 4.53591407821e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.53591407821e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.6669899821e-05}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.68430211366e-08}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.68430211366e-08}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.68430211366e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.04995848874e-08}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.73466103001e-05}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 4.73466103001e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.73466103001e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 5.17610560352e-05}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08926890585e-07}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 5.08926890585e-07}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08926890585e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1.05322202046e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "low population density, long-term"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 6.02505019232e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.70116176839e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 3.70116176839e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.70116176839e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 4.00126694691e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.10730840774e-07}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.10730840774e-07}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.10730840774e-07}, {"name": "Propylene oxide", "categories": ["air"], "amount": 4.10730840774e-07}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65875148514e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.65875148514e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65875148514e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1190141013e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.77006340593e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 1.77006340593e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.77006340593e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 6.39837077473e-08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.18119080314e-12}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 3.18119080314e-12}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.18119080314e-12}, {"name": "Toluene", "categories": ["air"], "amount": 3.17693060366e-12}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.92033805674e-10}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 4.92033805674e-10}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.92033805674e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.75107008895e-09}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 2.13042102512e-24}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 2.13042102512e-24}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 2.13042102512e-24}, {"name": "Beryllium II", "categories": ["soil"], "amount": 2.13042102512e-24}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.000481792025544}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.08107144261e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.08107144261e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 8.08107144261e-07}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.00541281305817}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.00534431943162}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.00534431943162}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.00534431943162}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 7.55469061204e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.01939385121e-07}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.01939385121e-07}, {"name": "Lead II", "categories": ["soil"], "amount": 2.01939385121e-07}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0200044362242}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 8.48018013111e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 8.48018013111e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 8.48018013111e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.000105724992455}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.9716083806e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.9716083806e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.9716083806e-05}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.82611559507e-08}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 8.82611559507e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.5462790678e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.82611559507e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 8.82611559507e-08}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 3.40677675031e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 4.11871117885e-08}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3.40677675031e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3.40677675031e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 6.90690409061e-08}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 6.90690409061e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.65003441604e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 6.90690409061e-08}, {"name": "Aniline", "categories": ["water"], "amount": 6.90690409061e-08}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.42356468163e-07}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 2.42356468163e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 2.48598903073e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.42356468163e-07}, {"name": "Benzene", "categories": ["water"], "amount": 2.42356468163e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 8.42536760991e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 4.88550344886e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 8.42536760991e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 8.42536760991e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.73175162941e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 4.73175162941e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 5.13884016434e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.73175162941e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 4.73175162941e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1.93228723043e-25}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 1.93228723043e-25}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.05933518344e-26}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1.93228723043e-25}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.93228723043e-25}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 1.5900525836e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 5.90415531548e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.5900525836e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 1.5900525836e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.90347838611e-07}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 3.90347838611e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 3.45063784803e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.90347838611e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 3.90347838611e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.0106412469201}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 0.0106412469201}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.000627639502748}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0106412469201}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0106412469201}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 5.29594169392e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.63365874629e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 3.59649534071e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.37947158204e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 3.59649534071e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3.59649534071e-06}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 4.64255029641e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 2.54268249009e-09}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.57410232268e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.57410232268e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 5.22622698116e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.57410232268e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.57410232268e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.4853543737e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 5.4853543737e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 7.71263952757e-08}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.4853543737e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 5.4853543737e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.84742034232e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.71589882596e-06}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.24088463926e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 1.24088463926e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.31368315406e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.24088463926e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.24088463926e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.93266118363e-09}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 1.93266118363e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 9.62742636959e-11}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.93266118363e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.93266118363e-09}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.75913270933e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.53954919999e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.75913270933e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.75913270933e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 3.41624753292e-07}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 3.41624753292e-07}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 3.10368663912e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 3.41624753292e-07}, {"name": "Lead II", "categories": ["water"], "amount": 3.41624753292e-07}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.000120080076691}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.000120080076691}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.56271765466e-05}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.000120080076691}, {"name": "Mercury II", "categories": ["water"], "amount": 0.000120080076691}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 6.82317292723e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 6.82317292723e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 9.6560046946e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 6.82317292723e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 6.82317292723e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 4.16253257955e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 4.16253257955e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.17587468701e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 4.16253257955e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.16253257955e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.24102735905e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 2.24102735905e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.74349958773e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.24102735905e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 2.24102735905e-08}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 3.82737301858e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.93269270377e-06}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 3.82737301858e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 3.82737301858e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.14190986335e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 1.14190986335e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.59371864207e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.14190986335e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 1.14190986335e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 4.44886373212e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 1.68836291963e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 4.44886373212e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.44886373212e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 8.76389568595e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 3.53743317677e-09}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 8.76389568595e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 8.76389568595e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.15873471978e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.15873471978e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 7.69667452305e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.15873471978e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.15873471978e-07}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.29829306404e-08}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 1.29829306404e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.48366675471e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.29829306404e-08}, {"name": "Styrene", "categories": ["water"], "amount": 1.29829306404e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.83673645379e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.83673645379e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.55467521351e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.83673645379e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 1.83673645379e-08}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 3.2879661946e-09}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 3.2879661946e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.11387645851e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 3.2879661946e-09}, {"name": "Toluene", "categories": ["water"], "amount": 3.2879661946e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 3.87817103743e-09}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 3.87817103743e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 7.91617455349e-11}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 3.87817103743e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.87817103743e-09}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96832520896e-07}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.72488671037e-07}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 2.39234482596e-07}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.62111292374e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.32045754977e-07}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33260035377e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6500890021e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.02931758558e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 3.82737301858e-05}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 8.97337061874e-11}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.53421227985e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0004239869897}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000242335986141}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.000242335986141}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000242335986141}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.000333161487921}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.000391834717788}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.000195143379401}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.000195143379401}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.000195143379401}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 9.05452478804e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 9.26804763876e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.000368977329072}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.000368977329072}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.02700349803e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.000368977329072}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.000368977329072}]}, {"unit": "CTU", "name": ["USEtox", "human toxicity", "non-carcinogenic"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.22107612959e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.14240130852e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.97819564124e-09}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.39267954175e-08}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.000350614722474}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.29162189912e-07}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 9.67186558462e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.7246994101e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00140792037782}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 9.70801684411e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.27801289078e-06}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.44134951538e-05}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 8.82185413283e-05}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.74415250727e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.000186565323829}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.51497689855e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 1.19084656419e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 5.68929348804e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.51538282679e-05}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 5.67639632829e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.84486970479e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 6.18998015956e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 4.40028027971e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 1.20073131874e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 8.7254440059e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.00534430439e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.57784358616e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.46171452185e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0855603171999}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 3.54940227989e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.0970352734e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 6.02634349165e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.19436053997e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.68486677638e-06}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.26863106794e-08}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0444663058455}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.000426599473648}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.33109164235e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 7.57113690084e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.06629840745e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.50206945082e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 5.31479897581e-05}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.78536345821e-07}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.73695147425e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.71395602563e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.60954105991e-07}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.73578090429e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3.56545393639e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.000748414990057}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 3.02674239709e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.32337383641e-05}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 8.62675705655e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02284603255e-08}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.13649260702e-08}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.59597206457e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.41204306953e-07}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.11889118027e-06}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000147547188575}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.34299434762e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.24739604051e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.49802672226e-07}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 2.79449501214e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.59173271959e-06}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65136409165e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.82620591784e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.07319064027e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.07049768116e-06}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.37199576957e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 7.80373245217e-08}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.5590928788e-05}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.86359176402e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4.76190346285e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.90380453425e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.73273423485e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.41755946291e-05}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.74304831064e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.62281587226e-06}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.82695687532e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.000123511601348}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.62866364624e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.35632670187e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 8.17425733863e-09}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.48195495738e-08}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 5.57509434147e-08}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 1.41185834791e-05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 5.32342287452e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.6672757021e-07}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 7.0032895581e-06}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 7.62662627432e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.43993461441e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.05538842042e-09}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00932064402952}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 7.60579121025e-05}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.04128130499e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.0912235769e-07}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 8.86419791161e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 4.67837616053e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.42061298909e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.62912175897e-12}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.815310505072}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.67513653743e-07}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000113866883591}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 9.57257078322e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.04326658888e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.31653582337e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 6.55510120949e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000159172552978}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.80784050713e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.63329092691e-08}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 6.13617407825e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.26769482886e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 5.92881404423e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.40264733665e-07}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.37815045333e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.00163326250869}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.63756703912e-09}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 6.27434656912e-05}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.40370961401e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 6.44497918122e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 3.16117116592e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 7.85382114201e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 4.76106468608e-08}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.86496368948e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 3.56886206147e-06}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.53240096284e-09}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.92710058813e-06}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.06696854044e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.03420858705e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.53819687493e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.4093578095e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.72098283662e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 9.37779889144e-06}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.29593634107e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 7.48223845186e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 6.45176374779e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.22201194273e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 4.84697205131e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 9.89413748742e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 2.1182518046e-05}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.69739397578e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 3.86976395417e-07}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.43006424918e-06}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.73332741409e-07}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.26716560536e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 7.68701797523e-06}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 7.17326236367e-09}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 8.30543922245e-06}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 4.36575168894e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0253294573125}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000354948763219}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 8.77283349049e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 2.0144716457e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.84765062003e-08}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.66486762063e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 4.97229786148e-05}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.000412022501539}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.000718543620283}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6.56022841176e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.93469404124e-07}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.88653937332e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 9.61882024993e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.68447264846e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 5.62829566023e-07}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2.1088893979e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.62031640446e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 6.7208025112e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.38132712796e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.7968995957e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.69150091665e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.000194385620771}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.16157383621e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.09611314831e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.0152329864062}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.00128139027535}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19383597616e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.09730801991e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.80083557369e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.71155271024e-08}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 4.71155271024e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.71155271024e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.88138858507e-07}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air"], "amount": 6.25095208029e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 6.34451934579e-08}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.000731739874733}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.11787094524e-05}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7613003428e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.7613003428e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7613003428e-08}, {"name": "Aniline", "categories": ["air"], "amount": 8.90882755347e-07}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.000170539079445}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air"], "amount": 4.18682303082e-05}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.86953545861e-09}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 2.86953545861e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.86953545861e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.34361691279e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.03510712592e-08}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 3.03510712592e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.03510712592e-08}, {"name": "Benzene", "categories": ["air"], "amount": 7.52121015665e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44454892341e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 9.44454892341e-10}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.44454892341e-10}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 5.4989489681e-09}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.33238712937e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.33238712937e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.33238712937e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.45511535777e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.31316452946e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00854581964939}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.00854581964939}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00854581964939}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0470530684246}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48955172648e-08}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 2.48955172648e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.48955172648e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 8.54881146822e-07}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.88570082977e-08}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0464964872273}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.0464964872273}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0464964872273}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0454813965364}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.99421471032e-05}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air"], "amount": 5.29140109143e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.26562129052e-07}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 9.26562129052e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.26562129052e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 1.32025907734e-06}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 2.57751434762e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.30688983653e-05}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 8.30688983653e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.30688983653e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.000415741944211}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.34414006803e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.11219290214e-08}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.16134573275e-08}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air"], "amount": 6.58857897185e-09}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.35187938303e-06}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 4.35187938303e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.35187938303e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 9.97140408551e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.42219734604e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4.42219734604e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.42219734604e-09}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.59205040444e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.77309062067e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.92275311708e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.92275311708e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.92275311708e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 3.32774367597e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 4.0890802845e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.60838785054e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.60838785054e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.60838785054e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.51943547847e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.40004759027e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 8.40004759027e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.40004759027e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.23141031564e-06}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.22569626152e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.06410741038e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.54081991874e-08}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 7.54081991874e-08}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.54081991874e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.71067884699e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.54474156746e-07}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 1.54474156746e-07}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.54474156746e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.57888185742e-06}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.623285776e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.623285776e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.623285776e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.35113159601e-07}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0095678054128}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.0095678054128}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0095678054128}, {"name": "Lead II", "categories": ["air"], "amount": 0.00944422472116}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.854546007662}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.854546007662}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.854546007662}, {"name": "Mercury II", "categories": ["air"], "amount": 0.834928256367}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.55441517645e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 9.18664628469e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.164130614e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 5.164130614e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.164130614e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 7.7983982514e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.30625470547e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.48239667733e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000150482729407}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000150482729407}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000150482729407}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000154827641192}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.79016274377e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air"], "amount": 1.02297007317e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 9.03046009447e-10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.00166204290756}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2463727257e-10}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 6.2463727257e-10}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.2463727257e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.13110215584e-09}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.66434183172e-06}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 2.66434183172e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.66434183172e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 2.91275649882e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.50202057121e-06}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.50202057121e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.50202057121e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 5.17792085661e-06}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air"], "amount": 4.86496047015e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.21894311635e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.06922761308e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 8.06922761308e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.06922761308e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.72351325226e-06}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.68701797523e-06}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 7.68701797523e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.68701797523e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 7.68701797523e-06}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air"], "amount": 0.0258419844461}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.31921019706e-09}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 3.31921019706e-09}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.31921019706e-09}, {"name": "Styrene", "categories": ["air"], "amount": 1.02383187383e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.98710180673e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 2.98710180673e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.98710180673e-09}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 1.07318040035e-08}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air"], "amount": 0.000705842697333}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.90368350529e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 9.90368350529e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.90368350529e-09}, {"name": "Toluene", "categories": ["air"], "amount": 5.30459430023e-08}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.46109178668e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.13672430721e-08}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.13672430721e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.13672430721e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.10489278952e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air"], "amount": 0.0155955997484}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.000209460358427}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 4.91145219428e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.13942743874e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.129261275146}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.000216809233826}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.000216809233826}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.000216809233826}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.78266910152e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.52011116072e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.52011116072e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.52011116072e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.2183836745e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.20296627222e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.20296627222e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.20296627222e-05}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.74152106553e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.5539367722e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.5539367722e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.5539367722e-07}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 5.19471929638e-08}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.026501699979}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.08399228142e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.08399228142e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 7.08399228142e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.36800480833}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0100383270495}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0100383270495}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0100383270495}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.00466203657151}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.847979846e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.847979846e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.847979846e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 5.94947596608e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 1.10948569516e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 1.10948569516e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.10948569516e-06}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0731569556943}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.000894144905522}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.000139542579104}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0435255724767}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.000702024677515}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.000702024677515}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.000702024677515}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 4.88515042326e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.03809873041e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 1.75541140005e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.92492585824e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 2.87951621395e-08}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.58346765721e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.53001986506e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 4.53001986506e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.35988962528e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.53001986506e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.53001986506e-07}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.28420844111e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water"], "amount": 5.8631541117e-09}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.47017083994e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 5.72167555889e-08}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 4.27801289078e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.03716198414e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.27801289078e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.27801289078e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 3.41162912752e-06}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 3.41162912752e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.30897063056e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 3.41162912752e-06}, {"name": "Aniline", "categories": ["water"], "amount": 3.41162912752e-06}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.67996688402e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.000364132820574}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.02764639602e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water"], "amount": 9.81537186241e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 6.13689078633e-08}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 6.13689078633e-08}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.2949601854e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 6.13689078633e-08}, {"name": "Benzene", "categories": ["water"], "amount": 6.13689078633e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 8.7254440059e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 5.05950467176e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 8.7254440059e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 8.7254440059e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 3.72529554699e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 3.72529554699e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.37687836603e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 3.72529554699e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 3.72529554699e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.06915324676e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.44322034491e-06}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 5.89844223747e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water"], "amount": 3.75496697452e-08}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 0.000426599473648}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.000158404167001}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.000426599473648}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.000426599473648}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.65988234821e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 3.74932606721e-05}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 8.82697382697e-11}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 5.23471599278e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.17492613821e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.17492613821e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 1.79582634706e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.17492613821e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 1.17492613821e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.39526497303e-05}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 2.39526497303e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4127695071e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.39526497303e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 2.39526497303e-05}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 3.02674239709e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.45814301083e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 3.02674239709e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 3.02674239709e-09}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 8.62675705655e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.21960644052e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 8.62675705655e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 8.62675705655e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 7.28061097394e-10}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.76718976036e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 6.35445705661e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1.29995398394e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.36056641806e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.62156647091e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 4.41755946291e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.69439889775e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.41755946291e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.41755946291e-05}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 6.43229330577e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 6.43229330577e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.24515316295e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 6.43229330577e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 6.43229330577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.27728346576e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.27728346576e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 2.40449884566e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.27728346576e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.27728346576e-06}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.28941259972e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.30244295051e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 5.64107814793e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 1.87278672374e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.23588485981e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 3.23588485981e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.36556722181e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.23588485981e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 3.23588485981e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.62981260125e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.62981260125e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31002409521e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.62981260125e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.62981260125e-07}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.000119841263952}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.000119841263952}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.000108876691797}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.000119841263952}, {"name": "Lead II", "categories": ["water"], "amount": 0.000119841263952}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0142143570457}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.0142143570457}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0113197698416}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0142143570457}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0142143570457}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.00034725197e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 7.00034725197e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.10095817674e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.00034725197e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.00034725197e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.000141623363705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.000141623363705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 3.90552842229e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.000141623363705}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.000141623363705}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.96282945807e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water"], "amount": 1.053508057e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.93608528087e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 7.66183687348e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 8.31103402386e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 8.31103402386e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.46591142037e-11}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 8.31103402386e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 8.31103402386e-10}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 2.15378249348e-06}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 2.21304917407e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 2.15378249348e-06}, {"name": "Nickel II", "categories": ["water"], "amount": 2.15378249348e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 5.61393398824e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 5.61393398824e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 7.83514666046e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 5.61393398824e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.61393398824e-06}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 4.29623471206e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water"], "amount": 1.44523002991e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 6.45176374779e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 2.44847208948e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 6.45176374779e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 6.45176374779e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 1.52128653029e-09}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.22201194273e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 4.93249320112e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.22201194273e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.22201194273e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.12268619473e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.12268619473e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.32787148554e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.12268619473e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.12268619473e-06}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 0.000354948763219}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.72046594869e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000354948763219}, {"name": "Silver I", "categories": ["water"], "amount": 0.000354948763219}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 6.90556274e-09}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 6.90556274e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 3.38219899035e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 6.90556274e-09}, {"name": "Styrene", "categories": ["water"], "amount": 6.90556274e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 7.96825091643e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 7.96825091643e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 2.68046041819e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 7.96825091643e-09}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 7.96825091643e-09}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.000104920212033}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water"], "amount": 0.00178495070951}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 1.78381889397e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 1.78381889397e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.85164323324e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 1.78381889397e-08}, {"name": "Toluene", "categories": ["water"], "amount": 1.78381889397e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 2.67912205763e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.7463868211e-07}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 0.000194385620771}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.20478554624e-05}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.000194385620771}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.000194385620771}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.56517374846e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.56517374846e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.0888634707e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.56517374846e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.56517374846e-08}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.00128139027535}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.000302223973326}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00128139027535}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00128139027535}, {"name": "Allyl chloride", "categories": ["water"], "amount": 8.42901796193e-07}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57581594855e-06}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7455578157e-07}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52002161078e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.52530406654e-06}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0671541812e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01207404659e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31605757416e-06}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43582087857e-07}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08293365611e-06}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 5.61797401589e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.868035843e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69785101375e-06}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.59597206457e-07}, {"name": "Thifensulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44193524069e-06}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69313181097e-06}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.20161199408e-06}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2.81621845711e-06}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.645635268e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63321509311e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000367917900016}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0467214193e-06}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.42609469801e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21547511533e-08}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41714188464e-07}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44718757046e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 2.15378249348e-06}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37487161263e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 5.23265390903e-11}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.07691308446e-07}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 1.09819742695e-05}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.89386004154e-05}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.83033329321e-07}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 2.89610354978e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.51539024644e-08}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.31727440537e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.31990011737e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.000235648603669}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.0232481211e-07}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.73394406547e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.1707571262e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 3.92950189167e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 5.25446437435e-08}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.43949601473e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.50243284237e-06}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4662539461e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 4.10288890135e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 4.1166975182e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0170719666931}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0165209340126}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.0165209340126}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0165209340126}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0167964503528}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0290247939103}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0144550651408}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0144550651408}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0144550651408}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0273316540054}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0273316540054}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00224222481335}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.0273316540054}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0273316540054}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.13669122593e-07}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.46637376709e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.78483552391e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.49853944258e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.21067636659e-05}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44146894277e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.13685973855e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.74806423055e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.95240352962e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.41623954322e-09}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 7.17622414338e-08}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.48844354497e-06}]}, {"unit": "CTU", "name": ["USEtox", "human toxicity", "total"], "exchanges": [{"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 2.22107612959e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.14240130852e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 3.97819564124e-09}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.39267954175e-08}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.000350740558118}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.11019655928e-06}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 1.10822971148e-07}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 9.67186558462e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 9.7246994101e-08}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.00140792037782}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 9.70801684411e-05}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 7.68478964109e-06}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.44134951538e-05}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.000116110051014}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.77946318624e-06}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 0.000186565323829}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 2.51497689855e-07}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 2.21810478453e-06}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 5.68929348804e-06}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 4.51538282679e-05}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 5.67639632829e-09}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 2.84486970479e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 6.18998015956e-07}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 7.79165653592e-08}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 5.9426276919e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1.71508116158e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.2303682872e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 0.000101082103543}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.46171452185e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 4.49513602648e-05}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0856758077641}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 3.54940227989e-07}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 4.0970352734e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 6.02634349165e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.19436053997e-06}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.8107789997e-06}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.26863106794e-08}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0447180696438}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.000428189526232}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 4.74318991352e-07}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.77854722585e-06}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 2.06629840745e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.50206945082e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 5.31479897581e-05}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.78536345821e-07}, {"name": "Chlormequat", "categories": ["soil", "agricultural"], "amount": 9.73695147425e-08}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.01293482444e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 4.76248340897e-07}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 7.73578090429e-07}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 3.56545393639e-09}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 0.00544656444555}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 3.02674239709e-09}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 1.32337383641e-05}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 8.62675705655e-07}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 2.02284603255e-08}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.59396713048e-05}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 2.13649260702e-08}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.59597206457e-07}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.41204306953e-07}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.11889118027e-06}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.000163393696906}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 9.34299434762e-06}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.24739604051e-08}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 3.49802672226e-07}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 2.79449501214e-06}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1.59173271959e-06}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 4.65136409165e-06}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 29.6215965571}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 1.82620591784e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 1.07319064027e-07}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.07049768116e-06}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.37199576957e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 7.80373245217e-08}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 1.61453013478e-05}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.86359176402e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.78051557295e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.90380453425e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "urban air close to ground"], "amount": 6.24824805492e-06}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.82092639599e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.86589948834e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.92272837839e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 4.77720899698e-05}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.63627203333e-09}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.77720138692e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 2.05184910763e-06}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 5.06043356488e-08}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 2.82695687532e-06}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 0.000123511601348}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 8.62866364624e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.35632670187e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.21916990727e-06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 8.17425733863e-09}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 3.48195495738e-08}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 5.57509434147e-08}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 1.41185834791e-05}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 5.32342287452e-07}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.86069960003e-06}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.56884133246e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.98007087108e-05}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 7.62662627432e-08}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.45786580433e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 2.75913270933e-05}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.34836336155e-07}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 1.05538842042e-09}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.00934721386542}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 8.26233822306e-05}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 6.04128130499e-06}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 1.40471159845e-07}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 8.86419791161e-06}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 4.67837616053e-07}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 7.42061298909e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.62912175897e-12}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.822201700435}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 2.67513653743e-07}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.000113866883591}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 9.57257078322e-09}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.93265617274e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 1.13242392627e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.31653582337e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 6.55510120949e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.000207153211838}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1.80784050713e-06}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 1.63329092691e-08}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 6.13617407825e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.26769482886e-09}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 5.92881404423e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.40264733665e-07}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2.37815045333e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.00163326250869}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 4.57937156772e-08}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 6.27434656912e-05}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 3.40370961401e-06}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 6.44497918122e-08}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 5.93366729362e-05}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 9.45133829235e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 4.76106468608e-08}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.9919583523e-06}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 1.86496368948e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 3.56886206147e-06}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 8.53240096284e-09}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 2.92710058813e-06}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 1.06696854044e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.03420858705e-08}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.53819687493e-08}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 8.4093578095e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.72098283662e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.36791710169e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 6.29593634107e-06}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 7.48223845186e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 1.09006274799e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 1.30965089959e-06}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 4.84697205131e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 9.89413748742e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 3.25424364266e-05}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 2.69739397578e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.3136597817e-06}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 1.43006424918e-06}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 4.73332741409e-07}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 4.26716560536e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 8.097748816e-06}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 7.17326236367e-09}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.01815948721e-05}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 4.36575168894e-08}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0253294573125}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 0.000354948763219}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 8.77283349049e-06}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.20866246998e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.28743287635e-07}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 5.66486762063e-07}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 4.97229786148e-05}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.000412022501539}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 0.000718543620283}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 6.56022841176e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.93469404124e-07}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 1.88653937332e-07}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 9.61913751697e-08}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 1.68447264846e-06}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 5.62829566023e-07}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 2.1088893979e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 3.62031640446e-06}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 6.7208025112e-06}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 5.38132712796e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 1.97945084474e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 9.69150091665e-05}, {"name": "Vanadium V", "categories": ["water", "ground-"], "amount": 0.000194385620771}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 2.16157383621e-06}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.18621421203e-07}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 0.0152329864062}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 0.00128139027535}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.45270643798e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.19383597616e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.16420398588e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 2.09730801991e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air", "low population density, long-term"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.08991605628e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.80083557369e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.62953342758e-08}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.62953342758e-08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.62953342758e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 5.83245946775e-07}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.83003857596e-09}, {"name": "Acetone", "categories": ["air"], "amount": 6.25095208029e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air", "low population density, long-term"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.96433928148e-08}, {"name": "Acetonitrile", "categories": ["air"], "amount": 6.34451934579e-08}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air", "low population density, long-term"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.55593716438e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.000731739874733}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air", "low population density, long-term"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.27725046367e-06}, {"name": "Acrylic acid", "categories": ["air"], "amount": 5.11787094524e-05}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8374485399e-08}, {"name": "Aniline", "categories": ["air", "low population density, long-term"], "amount": 3.8374485399e-08}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8374485399e-08}, {"name": "Aniline", "categories": ["air"], "amount": 9.08918835815e-07}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air", "low population density, long-term"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000154512835061}, {"name": "Antimony ion", "categories": ["air"], "amount": 0.000170539079445}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air", "low population density, long-term"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.85826323485e-05}, {"name": "Barium II", "categories": ["air"], "amount": 4.18682303082e-05}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.08113876614e-09}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": 5.08113876614e-09}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.08113876614e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 4.14988520627e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.50212719306e-07}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 1.50212719306e-07}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.50212719306e-07}, {"name": "Benzene", "categories": ["air"], "amount": 3.72237744249e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.64763414874e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 5.64763414874e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.64763414874e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.39756585103e-07}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.14572934446e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "low population density, long-term"], "amount": 9.14572934446e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.14572934446e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 9.6269698494e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.16461453707e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.31316452946e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "low population density, long-term"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.48084172851e-05}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 3.48798887749e-05}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00855733995963}, {"name": "Beryllium II", "categories": ["air", "low population density, long-term"], "amount": 0.00855733995963}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00855733995963}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0471165738618}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.1531946677e-08}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 4.1531946677e-08}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.1531946677e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 1.42615547319e-06}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.02770591593e-09}, {"name": "Butanol", "categories": ["air"], "amount": 2.88570082977e-08}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0466783734787}, {"name": "Cadmium II", "categories": ["air", "low population density, long-term"], "amount": 0.0466783734787}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0466783734787}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0456982215613}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air", "low population density, long-term"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.67363044484e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.99421471032e-05}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air", "low population density, long-term"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.79743872465e-07}, {"name": "Chloramine", "categories": ["air"], "amount": 5.29140109143e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0887673179e-06}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 1.0887673179e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0887673179e-06}, {"name": "Chloroform", "categories": ["air"], "amount": 1.55085107117e-06}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air", "low population density, long-term"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.58957475885e-09}, {"name": "Chromium III", "categories": ["air"], "amount": 2.57751434762e-09}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00428959254482}, {"name": "Chromium VI", "categories": ["air", "low population density, long-term"], "amount": 0.00428959254482}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00428959254482}, {"name": "Chromium VI", "categories": ["air"], "amount": 0.00486807849518}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air", "low population density, long-term"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.36490629964e-05}, {"name": "Copper ion", "categories": ["air"], "amount": 1.34414006803e-05}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.01539771735e-09}, {"name": "Cumene", "categories": ["air"], "amount": 1.11219290214e-08}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.86198858478e-09}, {"name": "Cyclohexane", "categories": ["air"], "amount": 1.16134573275e-08}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.03197538591e-10}, {"name": "Diethyl ether", "categories": ["air"], "amount": 6.58857897185e-09}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "low population density, long-term"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.4943622794}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 29.0579794183}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.85049517969e-06}, {"name": "Epichlorohydrin", "categories": ["air", "low population density, long-term"], "amount": 4.85049517969e-06}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.85049517969e-06}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 1.04978982637e-05}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65349661173e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1.65349661173e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65349661173e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.71700609233e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6423767071e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.77309062067e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.53845617094e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.53845617094e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.53845617094e-06}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 4.39335211293e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2919594215e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.55644290875e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.42656437598e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.14623193216e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.74909490883e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.33591164361e-08}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.38375446204e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.13732373977e-09}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.23932037763e-07}, {"name": "Chloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.23932037763e-07}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.23932037763e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 3.70056671234e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.06282279605e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 1.06282279605e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.06282279605e-06}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.55733595183e-06}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.35831711151e-09}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 9.35831711151e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.35831711151e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.8227288768e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 5.22569626152e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5649478021e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.06410741038e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air", "low population density, long-term"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.41762675102e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 8.30466291186e-07}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.46109802764e-06}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.46109802764e-06}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.46109802764e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.35747556761e-05}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5396201355e-06}, {"name": "Furan", "categories": ["air", "low population density, long-term"], "amount": 1.5396201355e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5396201355e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.56701644231e-05}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6425644219e-08}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 2.6425644219e-08}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6425644219e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.36106112326e-07}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.45794452156e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8147140338e-08}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00959507981776}, {"name": "Lead II", "categories": ["air", "low population density, long-term"], "amount": 0.00959507981776}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00959507981776}, {"name": "Lead II", "categories": ["air"], "amount": 0.00947114684159}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.861765403753}, {"name": "Mercury II", "categories": ["air", "low population density, long-term"], "amount": 0.861765403753}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.861765403753}, {"name": "Mercury II", "categories": ["air"], "amount": 0.841983552094}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7221419938e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 9.55441517645e-05}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.80072178616e-09}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 9.18664628469e-09}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.92113870366e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.4268974382e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.60568633436e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 5.60568633436e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.60568633436e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 8.46496279853e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.29597358757e-05}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.30625470547e-05}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.40969214516e-07}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.48239667733e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000195841870189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.000195841870189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000195841870189}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.000201497541013}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7724849804e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1.79016274377e-06}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.12649219435e-09}, {"name": "Methanol", "categories": ["air"], "amount": 1.02297007317e-08}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.38397190034e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 9.03046009447e-10}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air", "low population density, long-term"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00169082330643}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.00166204290756}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.74676584092e-08}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.74676584092e-08}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.74676584092e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 3.16306870432e-08}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.00109521318e-05}, {"name": "Nickel II", "categories": ["air", "low population density, long-term"], "amount": 5.00109521318e-05}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.00109521318e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 5.4673812534e-05}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0109474618e-06}, {"name": "Nitrobenzene", "categories": ["air", "low population density, long-term"], "amount": 3.0109474618e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0109474618e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 6.23114287707e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "low population density, long-term"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.05814203234e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 6.02505019232e-06}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air", "low population density, long-term"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3205631308e-08}, {"name": "Phenol", "categories": ["air"], "amount": 4.86496047015e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "low population density, long-term"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.71690339607e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.21894311635e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.17703893815e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "low population density, long-term"], "amount": 1.17703893815e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.17703893815e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.27247801992e-05}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.097748816e-06}, {"name": "Propylene oxide", "categories": ["air", "low population density, long-term"], "amount": 8.097748816e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.097748816e-06}, {"name": "Propylene oxide", "categories": ["air"], "amount": 8.097748816e-06}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air", "low population density, long-term"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0263545115796}, {"name": "Silver I", "categories": ["air"], "amount": 0.0258419844461}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.99067250485e-08}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 1.99067250485e-08}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.99067250485e-08}, {"name": "Styrene", "categories": ["air"], "amount": 6.14284597513e-07}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0687735866e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 2.0687735866e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.0687735866e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 7.47155117508e-08}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air", "low population density, long-term"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000693141774383}, {"name": "Thallium I", "categories": ["air"], "amount": 0.000705842697333}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.90686469609e-09}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 9.90686469609e-09}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.90686469609e-09}, {"name": "Toluene", "categories": ["air"], "amount": 5.30491199329e-08}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air", "low population density, long-term"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.23068265671e-05}, {"name": "Vanadium V", "categories": ["air"], "amount": 9.46109178668e-05}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.18592768778e-08}, {"name": "Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.18592768778e-08}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.18592768778e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.15240349041e-07}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air", "low population density, long-term"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0159582130905}, {"name": "Zinc II", "categories": ["air"], "amount": 0.0155955997484}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 0.000209460358427}, {"name": "Antimony ion", "categories": ["soil"], "amount": 0.000209460358427}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 4.91145219428e-05}, {"name": "Barium II", "categories": ["soil"], "amount": 4.91145219428e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 3.13942743874e-05}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.13942743874e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.129743067172}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00021761734097}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00021761734097}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.00021761734097}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.78266910152e-09}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.52011116072e-09}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.52011116072e-09}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.52011116072e-09}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 0.00542499689492}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 0.00535634909434}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 0.00535634909434}, {"name": "Chromium VI", "categories": ["soil"], "amount": 0.00535634909434}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 3.74152106553e-05}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 4.5539367722e-07}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 4.5539367722e-07}, {"name": "Copper ion", "categories": ["soil"], "amount": 4.5539367722e-07}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 5.19471929638e-08}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0265772468851}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 7.10418621993e-05}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 7.10418621993e-05}, {"name": "Lead II", "categories": ["soil"], "amount": 7.10418621993e-05}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 2.38800924455}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.0101231288508}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.0101231288508}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0101231288508}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.00466203657151}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 3.847979846e-05}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 3.847979846e-05}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 3.847979846e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 0.000111674468421}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 2.08255695012e-05}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 2.08255695012e-05}, {"name": "Nickel II", "categories": ["soil"], "amount": 2.08255695012e-05}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 0.0731569556943}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0731569556943}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 0.000894144905522}, {"name": "Thallium I", "categories": ["soil"], "amount": 0.000894144905522}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 0.000139542579104}, {"name": "Vanadium V", "categories": ["soil"], "amount": 0.000139542579104}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.0435255724767}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 0.000702024677515}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 0.000702024677515}, {"name": "Zinc II", "categories": ["soil"], "amount": 0.000702024677515}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-, long-term"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 4.88515042326e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 2.03809873041e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 2.03809873041e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-, long-term"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 1.75541140005e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.92492585824e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 1.92492585824e-09}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water", "ground-, long-term"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 2.87951621395e-08}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 2.58346765721e-07}, {"name": "Acenaphthene", "categories": ["water"], "amount": 2.58346765721e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 5.41263142457e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-, long-term"], "amount": 5.41263142457e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 4.01451753206e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 5.41263142457e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 5.41263142457e-07}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water", "ground-, long-term"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 1.28420844111e-10}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.8631541117e-09}, {"name": "Acetone", "categories": ["water"], "amount": 5.8631541117e-09}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-, long-term"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.47017083994e-09}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 5.72167555889e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 5.72167555889e-08}, {"name": "Acrylonitrile", "categories": ["water", "ground-, long-term"], "amount": 7.68478964109e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.44903310203e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 7.68478964109e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 7.68478964109e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 3.48069816843e-06}, {"name": "Aniline", "categories": ["water", "ground-, long-term"], "amount": 3.48069816843e-06}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 1.33547097472e-09}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 3.48069816843e-06}, {"name": "Aniline", "categories": ["water"], "amount": 3.48069816843e-06}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water", "ground-, long-term"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.67996688402e-05}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 0.000364132820574}, {"name": "Antimony ion", "categories": ["water"], "amount": 0.000364132820574}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water", "ground-, long-term"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 3.02764639602e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 9.81537186241e-05}, {"name": "Barium II", "categories": ["water"], "amount": 9.81537186241e-05}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 3.03725376026e-07}, {"name": "Benzene", "categories": ["water", "ground-, long-term"], "amount": 3.03725376026e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 3.11548504927e-08}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 3.03725376026e-07}, {"name": "Benzene", "categories": ["water"], "amount": 3.03725376026e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-, long-term"], "amount": 1.71508116158e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 9.94500812062e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1.71508116158e-07}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1.71508116158e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 8.4570471764e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-, long-term"], "amount": 8.4570471764e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 6.51571853037e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 8.4570471764e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 8.4570471764e-08}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water", "ground-, long-term"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 2.06915324676e-07}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 4.44322034491e-06}, {"name": "Beryllium II", "categories": ["water"], "amount": 4.44322034491e-06}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water", "ground-, long-term"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 5.89844223747e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 3.75496697452e-08}, {"name": "Butanol", "categories": ["water"], "amount": 3.75496697452e-08}, {"name": "Cadmium II", "categories": ["water", "ground-, long-term"], "amount": 0.000428189526232}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 0.000158994582533}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.000428189526232}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.000428189526232}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-, long-term"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 4.65988234821e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.74932606721e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 3.74932606721e-05}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water", "ground-, long-term"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 8.82697382697e-11}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 5.23471599278e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 5.23471599278e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 1.56527397682e-06}, {"name": "Chloroform", "categories": ["water", "ground-, long-term"], "amount": 1.56527397682e-06}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.14089013186e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 1.56527397682e-06}, {"name": "Chloroform", "categories": ["water"], "amount": 1.56527397682e-06}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 0.0106651995698}, {"name": "Chromium VI", "categories": ["water", "ground-, long-term"], "amount": 0.0106651995698}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 0.000629052272255}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 0.0106651995698}, {"name": "Chromium VI", "categories": ["water"], "amount": 0.0106651995698}, {"name": "Chromium III", "categories": ["water", "ground-, long-term"], "amount": 3.02674239709e-09}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 1.45814301083e-09}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 3.02674239709e-09}, {"name": "Chromium III", "categories": ["water"], "amount": 3.02674239709e-09}, {"name": "Copper ion", "categories": ["water", "ground-, long-term"], "amount": 8.62675705655e-07}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 2.21960644052e-07}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 8.62675705655e-07}, {"name": "Copper ion", "categories": ["water"], "amount": 8.62675705655e-07}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water", "ground-, long-term"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 7.28061097394e-10}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2.76718976036e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.76718976036e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water", "ground-, long-term"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 6.35445705661e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.29995398394e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1.29995398394e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-, long-term"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.36056641806e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.62156647091e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-, long-term"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 5.29594169392e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.63365874629e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.63365874629e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-, long-term"], "amount": 4.77720899698e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 1.83234605595e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 4.77720899698e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 4.77720899698e-05}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water", "ground-, long-term"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 4.64255029641e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.54268249009e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 2.54268249009e-09}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 8.00639562845e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-, long-term"], "amount": 8.00639562845e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 9.47138014411e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 8.00639562845e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 8.00639562845e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.82581890313e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-, long-term"], "amount": 1.82581890313e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.17576279842e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.82581890313e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1.82581890313e-06}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-, long-term"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 1.28941259972e-10}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 4.30244295051e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 4.30244295051e-09}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-, long-term"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 5.64107814793e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.87278672374e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 1.87278672374e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-, long-term"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 3.84742034232e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.71589882596e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 1.71589882596e-06}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4.47676949907e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-, long-term"], "amount": 4.47676949907e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.45023987624e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4.47676949907e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4.47676949907e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.64913921309e-07}, {"name": "Hexane", "categories": ["water", "ground-, long-term"], "amount": 2.64913921309e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.31965152158e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.64913921309e-07}, {"name": "Hexane", "categories": ["water"], "amount": 2.64913921309e-07}, {"name": "Hydrazine", "categories": ["water", "ground-, long-term"], "amount": 2.75913270933e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 5.53954919999e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 2.75913270933e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 2.75913270933e-05}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 0.000120182888705}, {"name": "Lead II", "categories": ["water", "ground-, long-term"], "amount": 0.000120182888705}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 0.000109187060461}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 0.000120182888705}, {"name": "Lead II", "categories": ["water"], "amount": 0.000120182888705}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0143344371224}, {"name": "Mercury II", "categories": ["water", "ground-, long-term"], "amount": 0.0143344371224}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0114153970181}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0143344371224}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0143344371224}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 7.68266454469e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-, long-term"], "amount": 7.68266454469e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 1.19751822369e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 7.68266454469e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 7.68266454469e-07}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 0.0001832486895}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-, long-term"], "amount": 0.0001832486895}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 5.0814031093e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 0.0001832486895}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 0.0001832486895}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water", "ground-, long-term"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.96282945807e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.053508057e-08}, {"name": "Methanol", "categories": ["water"], "amount": 1.053508057e-08}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-, long-term"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.93608528087e-06}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 7.66183687348e-05}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 7.66183687348e-05}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.32413769929e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-, long-term"], "amount": 2.32413769929e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.80815870193e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.32413769929e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 2.32413769929e-08}, {"name": "Nickel II", "categories": ["water", "ground-, long-term"], "amount": 4.04275126793e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.15399762118e-06}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 4.04275126793e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 4.04275126793e-05}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 6.75584385159e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-, long-term"], "amount": 6.75584385159e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 9.42886530253e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 6.75584385159e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 6.75584385159e-06}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water", "ground-, long-term"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 4.29623471206e-10}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.44523002991e-07}, {"name": "Phenol", "categories": ["water"], "amount": 1.44523002991e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-, long-term"], "amount": 1.09006274799e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 4.13683500911e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 1.09006274799e-07}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 1.09006274799e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-, long-term"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 1.52128653029e-09}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 1.13972121222e-07}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-, long-term"], "amount": 1.30965089959e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 5.2862365188e-08}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 1.30965089959e-06}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 1.30965089959e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 4.53855966671e-06}, {"name": "Propylene oxide", "categories": ["water", "ground-, long-term"], "amount": 4.53855966671e-06}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 1.40483823077e-07}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 4.53855966671e-06}, {"name": "Propylene oxide", "categories": ["water"], "amount": 4.53855966671e-06}, {"name": "Silver I", "categories": ["water", "ground-, long-term"], "amount": 0.000354948763219}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.72046594869e-05}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 0.000354948763219}, {"name": "Silver I", "categories": ["water"], "amount": 0.000354948763219}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.98884933804e-08}, {"name": "Styrene", "categories": ["water", "ground-, long-term"], "amount": 1.98884933804e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.82188665375e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.98884933804e-08}, {"name": "Styrene", "categories": ["water"], "amount": 1.98884933804e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 2.63356154543e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-, long-term"], "amount": 2.63356154543e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.82272125533e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 2.63356154543e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.63356154543e-08}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water", "ground-, long-term"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 0.000104920212033}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00178495070951}, {"name": "Thallium I", "categories": ["water"], "amount": 0.00178495070951}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 2.11261551343e-08}, {"name": "Toluene", "categories": ["water", "ground-, long-term"], "amount": 2.11261551343e-08}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 1.00630308791e-09}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 2.11261551343e-08}, {"name": "Toluene", "categories": ["water"], "amount": 2.11261551343e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-, long-term"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 2.67912205763e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.7463868211e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 2.7463868211e-07}, {"name": "Vanadium V", "categories": ["water", "ground-, long-term"], "amount": 0.000194385620771}, {"name": "Vanadium V", "categories": ["water", "ocean"], "amount": 1.20478554624e-05}, {"name": "Vanadium V", "categories": ["water", "surface water"], "amount": 0.000194385620771}, {"name": "Vanadium V", "categories": ["water"], "amount": 0.000194385620771}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9529908522e-08}, {"name": "Xylene", "categories": ["water", "ground-, long-term"], "amount": 1.9529908522e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.16802521623e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9529908522e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.9529908522e-08}, {"name": "Zinc II", "categories": ["water", "ground-, long-term"], "amount": 0.00128139027535}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 0.000302223973326}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 0.00128139027535}, {"name": "Zinc II", "categories": ["water"], "amount": 0.00128139027535}, {"name": "Allyl chloride", "categories": ["water"], "amount": 8.42901796193e-07}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57581594855e-06}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7455578157e-07}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.52002161078e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.52530406654e-06}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0671541812e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.01207404659e-07}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96832520896e-07}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.31605757416e-06}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.43582087857e-07}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08293365611e-06}, {"name": "Cyhalothrin, gamma-", "categories": ["soil", "agricultural"], "amount": 5.61797401589e-07}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.868035843e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87033968479e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 2.39234482596e-07}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.59597206457e-07}, {"name": "Thifensulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.44193524069e-06}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.69313181097e-06}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.82272491782e-06}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 2.81621845711e-06}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.645635268e-07}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.63321509311e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000368049945771}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.33260035377e-06}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6500890021e-06}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.94965317786e-06}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 2.42609469801e-07}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.21547511533e-08}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.41714188464e-07}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.44718757046e-06}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 4.04275126793e-05}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 3.37487161263e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.42060245278e-10}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 4.07691308446e-07}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 1.09819742695e-05}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 4.89386004154e-05}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 1.83033329321e-07}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 2.89610354978e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.51539024644e-08}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 1.31727440537e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 6.85411239722e-07}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.000235648603669}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.0232481211e-07}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 1.73394406547e-06}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.1707571262e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 3.92950189167e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 5.25446437435e-08}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 2.43949601473e-06}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.50243284237e-06}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4662539461e-06}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 4.10288890135e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0890802845e-07}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 4.1166975182e-07}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0174959536828}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0167632699987}, {"name": "Arsenic ion", "categories": ["air", "low population density, long-term"], "amount": 0.0167632699987}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0167632699987}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0171296118407}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0294166286281}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0146502085202}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0146502085202}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0146502085202}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 9.05452478804e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "low population density, long-term"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.84100193732e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 9.26804763876e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0277006313345}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.0277006313345}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00227249484833}, {"name": "Arsenic ion", "categories": ["water", "ground-, long-term"], "amount": 0.0277006313345}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.0277006313345}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.13669122593e-07}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 1.46637376709e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 2.78483552391e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 3.49853944258e-08}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 3.21067636659e-05}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44146894277e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.13685973855e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.74806423055e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "low population density, long-term"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.15674282869e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 3.95240352962e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-, long-term"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.41623954322e-09}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 7.17622414338e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 7.17622414338e-08}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 3.48844354497e-06}]}, {"unit": "mol H+-Eq", "name": ["EF v3.0 EN15804", "acidification", "accumulated exceedance (AE)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 3.02}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.13467}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1.31}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.04821}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0 EN15804", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, in air", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil, resource correction", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Chloroform", "categories": ["air"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 938}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9620}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2350}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 96}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 635}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8520}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3690}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7150}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2110}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 179}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 817}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 15}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 34}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2020}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 712}, {"name": "Methyl formate", "categories": ["air"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 712}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17900}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26100}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.23}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0 EN15804", "climate change: biogenic", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, in air", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil, resource correction", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 34}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 34}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0 EN15804", "climate change: fossil", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20}, {"name": "Chloroform", "categories": ["air"], "amount": 20}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 298}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 298}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1550}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1550}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6590}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6590}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 938}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 938}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 167}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 167}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9620}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9620}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2350}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2350}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 96}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 96}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 635}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 635}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 8520}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 8520}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12300}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12300}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3690}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3690}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 3}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 2070}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7150}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7150}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 2110}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 2110}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 15500}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 15500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 11500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 11500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 179}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 179}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 817}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 817}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 36.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 36.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 15}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 15}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2020}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2020}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7350}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 5350}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 5350}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 13900}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 13900}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air"], "amount": 3}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 712}, {"name": "Methyl formate", "categories": ["air"], "amount": 712}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 712}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17900}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17900}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 26100}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 26100}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.23}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.0 EN15804", "climate change: land use and land use change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.57}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 36.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 36.8}]}, {"unit": "CTUe", "name": ["EF v3.0 EN15804", "ecotoxicity: freshwater", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 4646.7}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 2.6713}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 30.733}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 112.29}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 68612}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 11624}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 31.157}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 912.29}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 4.1368}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 500.56}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 31.457}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 21.639}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 14.072}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 1845.1}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4860.6}, {"name": "Abamectin", "categories": ["air"], "amount": 8802.3}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Abamectin", "categories": ["water"], "amount": 332160}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 6887.1}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 2139.3}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 96.503}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 325900}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 599.66}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 2.8788}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 4.6517}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 7669.3}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 194540}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water"], "amount": 9541}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 1999.7}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Allyl chloride", "categories": ["water"], "amount": 52.64}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 58369000}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 189000}, {"name": "Aluminium III", "categories": ["air"], "amount": 188000}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 187000}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 276000}, {"name": "Aluminium III", "categories": ["soil"], "amount": 276000}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.43e-15}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 409000}, {"name": "Aluminium III", "categories": ["water"], "amount": 204500}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 883.04}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 1246.7}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 52.283}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 9.2245}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 487460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 43.1}, {"name": "Antimony ion", "categories": ["air"], "amount": 43.05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 43}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["soil"], "amount": 61.9}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 122}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 8.22e-19}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 122}, {"name": "Antimony ion", "categories": ["water"], "amount": 61}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsenic ion", "categories": ["air"], "amount": 557}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 803}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 803}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.27e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4030}, {"name": "Arsenic ion", "categories": ["water"], "amount": 2015}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 558}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 558}, {"name": "Arsine", "categories": ["air"], "amount": 557}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 556}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 424730}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 228780}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 161.08}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1090}, {"name": "Barium II", "categories": ["air"], "amount": 1090}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1090}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1570}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1570}, {"name": "Barium II", "categories": ["soil"], "amount": 1570}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3140}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 9.34e-16}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3140}, {"name": "Barium II", "categories": ["water"], "amount": 1570}, {"name": "Barium sulfide", "categories": ["water"], "amount": 76094}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 4382.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 395.82}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 894.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 839.26}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 171240}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 27977}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 28141}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 8173300}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 35.132}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 527}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 527}, {"name": "Beryllium II", "categories": ["air"], "amount": 526}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 525}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 760}, {"name": "Beryllium II", "categories": ["soil"], "amount": 760}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 5.55e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1380}, {"name": "Beryllium II", "categories": ["water"], "amount": 690}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 814760000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 229740000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 2192.2}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 11.793}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 10.242}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 78.497}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 78.497}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 1305.4}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 204.3}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 73.451}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 369.26}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 161.63}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 199.08}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 80900}, {"name": "Cadmium II", "categories": ["air"], "amount": 80800}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 80700}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 116000}, {"name": "Cadmium II", "categories": ["soil"], "amount": 116000}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.39e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 229000}, {"name": "Cadmium II", "categories": ["water"], "amount": 114500}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 3800}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 6.38e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 3800}, {"name": "Caesium", "categories": ["water"], "amount": 1900}, {"name": "Calcium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 35.495}, {"name": "Calcium", "categories": ["air", "non-urban air or from high stacks"], "amount": 35.495}, {"name": "Calcium", "categories": ["air"], "amount": 36.247}, {"name": "Calcium", "categories": ["air", "urban air close to ground"], "amount": 36.998}, {"name": "Calcium", "categories": ["soil", "agricultural"], "amount": 47.27}, {"name": "Calcium", "categories": ["soil", "forestry"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil", "industrial"], "amount": 47.271}, {"name": "Calcium", "categories": ["soil"], "amount": 47.27}, {"name": "Calcium II", "categories": ["water", "ground-"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water", "ocean"], "amount": 7.00649e-45}, {"name": "Calcium II", "categories": ["water", "surface water"], "amount": 218.37}, {"name": "Calcium II", "categories": ["water"], "amount": 109.18}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 3143400}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1158.7}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 23347}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 51145}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 56094}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2518800}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chlorate", "categories": ["water"], "amount": 150.72}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 150.72}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 150.72}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1705.9}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 970.45}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 37438}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 5964.1}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 16856}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 59379}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 66.766}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 349.64}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 32.609}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 33.571}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 794680}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 196830000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium III", "categories": ["air"], "amount": 364.5}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium III", "categories": ["soil"], "amount": 524}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 809}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 2.73e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 809}, {"name": "Chromium III", "categories": ["water"], "amount": 404.5}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 365}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 365}, {"name": "Chromium VI", "categories": ["air"], "amount": 364.5}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 364}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 524}, {"name": "Chromium VI", "categories": ["soil"], "amount": 524}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 3.82e-18}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 1040}, {"name": "Chromium VI", "categories": ["water"], "amount": 520}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 752.52}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 4500}, {"name": "Cobalt II", "categories": ["air"], "amount": 4490}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 4480}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 6470}, {"name": "Cobalt II", "categories": ["soil"], "amount": 6470}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 1.43e-16}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 12300}, {"name": "Cobalt II", "categories": ["water"], "amount": 6150}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36500}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 36500}, {"name": "Copper ion", "categories": ["air"], "amount": 36400}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 36300}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 52400}, {"name": "Copper ion", "categories": ["soil"], "amount": 52400}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 99200}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 9.25e-18}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 99200}, {"name": "Copper ion", "categories": ["water"], "amount": 49600}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 1864.5}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 50458}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 1219.5}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 13400}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 1831.5}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 50934000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 88371}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 1531.8}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 691.93}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 458.02}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4759}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 1234700}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 77330000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2138.6}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 146.75}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 14.079}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 41.875}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 400.44}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 660.23}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 15.723}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 15766000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2241.9}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 513.86}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 27842}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 98085}, {"name": "Dodecanol", "categories": ["water"], "amount": 11313}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 121.22}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3109.5}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 332160}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 617.76}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 1129700}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 1864.5}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 248.51}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 25.382}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 3140.2}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 18.445}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 61.443}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 890.24}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 68.044}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 1361.3}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 6.4334}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 40.121}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 62713000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 73646}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 378860}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 632570}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 3010900}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.5426}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 10.203}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 168290}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 2125.4}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 3.4488}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 42.924}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 0.010218}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 50458}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 1020.7}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 7308.6}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 542.27}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 20956}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 0.0014233}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 37438}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 149.48}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 29553}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 11097}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 150.72}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 29.36}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 44670}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 127290}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 480290}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 119590}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.0267}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 664310}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 332160}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 187.68}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 50.7}, {"name": "Iron ion", "categories": ["air"], "amount": 50.6}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 50.5}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 73.2}, {"name": "Iron ion", "categories": ["soil"], "amount": 73.2}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 134}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 6.44e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 134}, {"name": "Iron ion", "categories": ["water"], "amount": 67}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 401.31}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water"], "amount": 516.89}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 2012700000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 1117.3}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 28.2}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 28.2}, {"name": "Lead II", "categories": ["air"], "amount": 28.05}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.9}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.7}, {"name": "Lead II", "categories": ["soil"], "amount": 40.7}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.9}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.9e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.9}, {"name": "Lead II", "categories": ["water"], "amount": 34.45}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 0.58961}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 246.66}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 1084900}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 63.5}, {"name": "Manganese II", "categories": ["air"], "amount": 63.35}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 63.2}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 91.7}, {"name": "Manganese II", "categories": ["soil"], "amount": 91.7}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese II", "categories": ["water"], "amount": 82}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 164}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 1.36e-18}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 164}, {"name": "Manganese-55", "categories": ["water"], "amount": 82}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1070}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1070}, {"name": "Mercury II", "categories": ["air"], "amount": 1065}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 1060}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1560}, {"name": "Mercury II", "categories": ["soil"], "amount": 1560}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 2210}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 1.54e-18}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 2210}, {"name": "Mercury II", "categories": ["water"], "amount": 1105}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 196520}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 1281.6}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 70.831}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 3241.7}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 2.9582}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 413980}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 110530}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 13.777}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 1981.4}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 107.85}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 15.753}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 88.346}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 111700}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 61309}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 1.03}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 1.48}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 6.59e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 2.95}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 1.475}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 70.066}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 659.25}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10700}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 10700}, {"name": "Nickel II", "categories": ["air"], "amount": 10650}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 10600}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 15400}, {"name": "Nickel II", "categories": ["soil"], "amount": 15400}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 29800}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.91e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 29800}, {"name": "Nickel II", "categories": ["water"], "amount": 14900}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 1789.6}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 13362}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 400.44}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 119590}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 64.453}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 1959600}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 8672}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 5.3621}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.0177}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 31.882}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 6827.4}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 10.486}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 18660}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 7569.5}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 371.24}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 50.201}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 22357}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 230.06}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 8.2417}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 96.402}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 148630}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 452.5}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 2674.4}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 62.688}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 18324}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 518980}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2138.6}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 74865}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 15062000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2138.6}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 433890}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 190510}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2138.6}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1010.1}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 74865}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.7}, {"name": "Selenium IV", "categories": ["air"], "amount": 25.65}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 25.6}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["soil"], "amount": 36.8}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 1.74e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 73.2}, {"name": "Selenium IV", "categories": ["water"], "amount": 36.6}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water"], "amount": 2.3463}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7030}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7030}, {"name": "Silver I", "categories": ["air"], "amount": 7020}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 7010}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 10100}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 10100}, {"name": "Silver I", "categories": ["soil"], "amount": 10100}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 19400}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 2.09e-17}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 19400}, {"name": "Silver I", "categories": ["water"], "amount": 9700}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 333470}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 7.6306}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 21.339}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5380}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 5380}, {"name": "Strontium", "categories": ["air"], "amount": 5375}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 5370}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 7730}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 7730}, {"name": "Strontium", "categories": ["soil"], "amount": 7730}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 15400}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.39e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 15400}, {"name": "Strontium", "categories": ["water"], "amount": 7700}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 1322.6}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 210090}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 79836}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 20911}, {"name": "Sulfur", "categories": ["soil"], "amount": 20911}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 133650}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 153.76}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 133650}, {"name": "Sulfur", "categories": ["water"], "amount": 66901}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 6585.4}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 150700}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 21179}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 26919000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 630.38}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230}, {"name": "Thallium I", "categories": ["air"], "amount": 1230}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1230}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 1760}, {"name": "Thallium I", "categories": ["soil"], "amount": 1760}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 3530}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 9.5e-18}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 3530}, {"name": "Thallium I", "categories": ["water"], "amount": 1765}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 46196}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 213220}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 385460}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 12129}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 385290}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 119}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 119}, {"name": "Tin ion", "categories": ["air"], "amount": 118.5}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 118}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 171}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 171}, {"name": "Tin ion", "categories": ["soil"], "amount": 171}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 298}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 3.75e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 298}, {"name": "Tin ion", "categories": ["water"], "amount": 149}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 486.61}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1641.4}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 3315.6}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 134.85}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 7.6657}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.25304}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 867.85}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 510.94}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 100920}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 50458}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 688260000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 831270}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 63.058}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 40.263}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 1.4769}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 181}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 404}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 404}, {"name": "Vanadium V", "categories": ["air"], "amount": 403.5}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 403}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 581}, {"name": "Vanadium V", "categories": ["soil"], "amount": 581}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 337.41}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 506}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 506}, {"name": "Zinc II", "categories": ["air"], "amount": 504.5}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 503}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 730}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 730}, {"name": "Zinc II", "categories": ["soil"], "amount": 730}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1330}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.05e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1330}, {"name": "Zinc II", "categories": ["water"], "amount": 665}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 510.15}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 531.29}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 801.31}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 21.977}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 3022.8}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "MJ, net calorific value", "name": ["EF v3.0 EN15804", "energy resources: non-renewable", "abiotic depletion potential (ADP): fossil fuels"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.76}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}]}, {"unit": "kg P-Eq", "name": ["EF v3.0 EN15804", "eutrophication: freshwater", "fraction of nutrients reaching freshwater end compartment (P)"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["EF v3.0 EN15804", "eutrophication: marine", "fraction of nutrients reaching marine end compartment (N)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.092}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water"], "amount": 0.778}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.028}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water"], "amount": 0.226}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.596}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water"], "amount": 0.304}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 1}, {"name": "Nitrogen", "categories": ["water"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.389}]}, {"unit": "mol N-Eq", "name": ["EF v3.0 EN15804", "eutrophication: terrestrial", "accumulated exceedance (AE)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 13.47}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 3.16065}, {"name": "Nitric oxide", "categories": ["air"], "amount": 6.532}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 4.26}]}, {"unit": "CTUh", "name": ["EF v3.0 EN15804", "human toxicity: carcinogenic", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.0 EN15804", "human toxicity: non-carcinogenic", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3303e-06}, {"name": "Abamectin", "categories": ["air"], "amount": 1.1734e-05}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Abamectin", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 1.0795e-06}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.076e-06}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1.0831e-06}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chlorate", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 2.2099e-08}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 5.2153e-09}, {"name": "Chloride", "categories": ["soil"], "amount": 1.5387e-08}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.9008e-11}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 4.6772e-08}, {"name": "Chloride", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6728e-06}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 6.9773e-08}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012852}, {"name": "Chlorine", "categories": ["air"], "amount": 0.00012953}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 0.00013055}, {"name": "Chlorine", "categories": ["soil"], "amount": 0.0001235}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 1.1282e-05}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 9.9884e-05}, {"name": "Chlorine", "categories": ["water"], "amount": 5.5583e-05}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.261e-06}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 1.8389e-07}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.261e-06}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 3.1857e-08}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 1.2368e-08}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.5411e-06}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2263e-07}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 3.3487e-07}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 4.3917e-07}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 2.3684e-08}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 4.3512e-07}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 3.2076e-05}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 1.6882e-05}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 3.0816e-06}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 2.7979e-06}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 3.0816e-06}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Sulfur", "categories": ["soil", "agricultural"], "amount": 8.1969e-10}, {"name": "Sulfur", "categories": ["soil", "forestry"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil", "industrial"], "amount": 5.1412e-10}, {"name": "Sulfur", "categories": ["soil"], "amount": 6.6691e-10}, {"name": "Sulfur", "categories": ["water", "ground-"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water", "ocean"], "amount": 2.188e-11}, {"name": "Sulfur", "categories": ["water", "surface water"], "amount": 1.0822e-09}, {"name": "Sulfur", "categories": ["water"], "amount": 5.5205e-10}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 1.7828e-06}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1591e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 2.4424e-08}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.2255e-06}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.6306e-06}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.0634e-07}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "kBq U235-Eq", "name": ["EF v3.0 EN15804", "ionising radiation: human health", "human exposure efficiency relative to u235"], "exchanges": [{"name": "Americium-241", "categories": ["water", "ground-"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water"], "amount": 1.5}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0386}, {"name": "Antimony-125", "categories": ["water", "ground-"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ground-, long-term"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water"], "amount": 0.0007}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water"], "amount": 6.79}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water"], "amount": 7.86}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Carbon-14", "categories": ["air"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.0557}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00193}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0186}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.29e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.14e-05}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 4.8}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water"], "amount": 4.71}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0236}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000443}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 6.64e-06}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.015}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 3.14}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ground-, long-term"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water"], "amount": 0.00607}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.00679}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0236}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.000193}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 2.14}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ground-, long-term"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.114}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-235", "categories": ["air"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.107}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 6.71e-06}]}, {"unit": "dimensionless", "name": ["EF v3.0 EN15804", "land use", "soil quality index"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 39.581}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 36.405}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 51.699}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 105.24}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 18.128}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 33.964}, {"name": "Occupation, forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 11.459}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 11.488}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 21.463}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 48.218}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 139.1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 38.973}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 58.117}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 17.602}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 138.81}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 121.55}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 161.52}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 69.262}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 28.288}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 165.22}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 116.16}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 48.764}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 138.72}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Transformation, from annual crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": -395.81}, {"name": "Transformation, from annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": -364.05}, {"name": "Transformation, from annual crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from arable land, unspecified use", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from bare area (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -516.99}, {"name": "Transformation, from dump site", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, slag compartment", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from forest, extensive", "categories": ["natural resource", "land"], "amount": -181.28}, {"name": "Transformation, from forest, intensive", "categories": ["natural resource", "land"], "amount": -339.64}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": -114.59}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -114.88}, {"name": "Transformation, from forest, unspecified", "categories": ["natural resource", "land"], "amount": -214.63}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": -482.18}, {"name": "Transformation, from industrial area", "categories": ["natural resource", "land"], "amount": -5911.8}, {"name": "Transformation, from mineral extraction site", "categories": ["natural resource", "land"], "amount": -4708.4}, {"name": "Transformation, from pasture, man made", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": -389.73}, {"name": "Transformation, from pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": -581.17}, {"name": "Transformation, from permanent crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -176.02}, {"name": "Transformation, from snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from traffic area, rail network", "categories": ["natural resource", "land"], "amount": -5899.2}, {"name": "Transformation, from traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": -5165.9}, {"name": "Transformation, from traffic area, road network", "categories": ["natural resource", "land"], "amount": -6864.8}, {"name": "Transformation, from unknown", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -282.88}, {"name": "Transformation, from urban, continuously built", "categories": ["natural resource", "land"], "amount": -7021.9}, {"name": "Transformation, from urban, discontinuously built", "categories": ["natural resource", "land"], "amount": -4937}, {"name": "Transformation, from urban, green area", "categories": ["natural resource", "land"], "amount": -2072.5}, {"name": "Transformation, from urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": -5895.4}, {"name": "Transformation, from wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, to annual crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 395.81}, {"name": "Transformation, to annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 364.05}, {"name": "Transformation, to annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to bare area (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 516.99}, {"name": "Transformation, to dump site", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to forest, extensive", "categories": ["natural resource", "land"], "amount": 181.28}, {"name": "Transformation, to forest, intensive", "categories": ["natural resource", "land"], "amount": 339.64}, {"name": "Transformation, to forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 114.59}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 114.88}, {"name": "Transformation, to forest, unspecified", "categories": ["natural resource", "land"], "amount": 214.63}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 482.18}, {"name": "Transformation, to industrial area", "categories": ["natural resource", "land"], "amount": 5911.8}, {"name": "Transformation, to mineral extraction site", "categories": ["natural resource", "land"], "amount": 4708.4}, {"name": "Transformation, to pasture, man made", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 389.73}, {"name": "Transformation, to pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 581.17}, {"name": "Transformation, to permanent crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 176.02}, {"name": "Transformation, to snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to traffic area, rail network", "categories": ["natural resource", "land"], "amount": 5899.2}, {"name": "Transformation, to traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 5165.9}, {"name": "Transformation, to traffic area, road network", "categories": ["natural resource", "land"], "amount": 6864.8}, {"name": "Transformation, to unknown", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 282.88}, {"name": "Transformation, to urban, continuously built", "categories": ["natural resource", "land"], "amount": 7021.9}, {"name": "Transformation, to urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 4937}, {"name": "Transformation, to urban, green area", "categories": ["natural resource", "land"], "amount": 2072.5}, {"name": "Transformation, to urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 5895.4}, {"name": "Transformation, to wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}]}, {"unit": "kg Sb-Eq", "name": ["EF v3.0 EN15804", "material resources: metals/minerals", "abiotic depletion potential (ADP): elements (ultimate reserves)"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 4.545212805030338e-05}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.00297}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 6.04e-06}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 1.26e-05}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.0411}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 0.0004841517197042984}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.00427}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 5.343572902983674e-10}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 0.000673718497616036}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 6.544113975666994e-12}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 2.66249274670687e-10}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 6.52e-07}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 3.594003392114496e-05}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.308918482603777e-10}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 4.471605694701393e-05}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 5.823075919490471e-10}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 2.02e-09}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.0922}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.93e-05}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 1.6e-08}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 0.000103180813387238}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 0.194}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1.4e-11}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 5.5e-08}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 1.646069875295716e-05}, {"name": "Sodium nitrate", "categories": ["natural resource", "in ground"], "amount": 1.487682357320205e-08}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 4.358140883174752e-05}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.290510533131037e-07}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 7.07e-07}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.000193}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 1.289527155951242e-05}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 3.92505016360851e-10}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.43e-05}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 2.79e-08}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 0.00452}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 0.0005695419030770708}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 7.7e-07}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 5.69e-07}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}]}, {"unit": "kg CFC-11-Eq", "name": ["EF v3.0 EN15804", "ozone depletion", "ozone depletion potential (ODP)"], "exchanges": [{"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.81}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.057}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.26}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.57}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 15.2}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.034}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.72}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "disease incidence", "name": ["EF v3.0 EN15804", "particulate matter formation", "impact on human health"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.6e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01757e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000238497}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.94042e-07}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 5.48544e-05}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}]}, {"unit": "kg NMVOC-Eq", "name": ["EF v3.0 EN15804", "photochemical oxidant formation: human health", "tropospheric ozone concentration increase"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 1.65}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.608}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1.42}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.709}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.318}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.731}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.828}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Acetone", "categories": ["air"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.155}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Benzene", "categories": ["air"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.23}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.595}, {"name": "Butane", "categories": ["air"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.595}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05}, {"name": "Butanol", "categories": ["air"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.454}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0389}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.845}, {"name": "Cumene", "categories": ["air"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.845}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.752}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.0422}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.319}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.208}, {"name": "Ethane", "categories": ["air"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.208}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0152}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.674}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.353}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.69}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.652}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.144}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.877}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.834}, {"name": "Heptane", "categories": ["air"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.834}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Hexane", "categories": ["air"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.814}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.519}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.115}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00845}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.236}, {"name": "Methanol", "categories": ["air"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.236}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0997}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.63}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.667}, {"name": "Pentane", "categories": ["air"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.667}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Propanal", "categories": ["air"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.35}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "Propane", "categories": ["air"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.948}, {"name": "Propanol", "categories": ["air"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.948}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9}, {"name": "Propene", "categories": ["air"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.9}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.253}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Styrene", "categories": ["air"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.049}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Toluene", "categories": ["air"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.549}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.235}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.78}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.296}]}, {"unit": "m3 world eq. deprived", "name": ["EF v3.0 EN15804", "water use", "user deprivation potential (deprivation-weighted water consumption)"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 42.95}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.95}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.95}, {"name": "Water", "categories": ["air"], "amount": 42.95}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 42.95}]}, {"unit": "mol H+-Eq", "name": ["EF v3.1 EN15804", "acidification", "accumulated exceedance (AE)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air"], "amount": 3.02}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 3.02}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.13467}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.74}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.74}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 1.31}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 1.31}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 1.04821}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 1.04821}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1 EN15804", "climate change", "global warming potential (GWP100)"], "exchanges": [{"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, in air", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil, resource correction", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1 EN15804", "climate change: biogenic", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, in air", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil, resource correction", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1 EN15804", "climate change: fossil", "global warming potential (GWP100)"], "exchanges": [{"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}]}, {"unit": "kg CO2-Eq", "name": ["EF v3.1 EN15804", "climate change: land use and land use change", "global warming potential (GWP100)"], "exchanges": [{"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}]}, {"unit": "CTUe", "name": ["EF v3.1 EN15804", "ecotoxicity: freshwater", "comparative toxic unit for ecosystems (CTUe)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 36.93}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 36.985}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 37.039}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 17.332}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 9276}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 9276}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 5.3426}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.77446}, {"name": "1-Pentanol", "categories": ["air"], "amount": 0.77627}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 0.77808}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 0.01538}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 61.45}, {"name": "1-Pentanol", "categories": ["water"], "amount": 61.45}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00018756}, {"name": "1-Pentene", "categories": ["air"], "amount": 0.00025056}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 0.00031356}, {"name": "1-Pentene", "categories": ["water", "ground-"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water", "ocean"], "amount": 9.0409e-05}, {"name": "1-Pentene", "categories": ["water", "surface water"], "amount": 224.58}, {"name": "1-Pentene", "categories": ["water"], "amount": 224.58}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 0.0012122}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 7538.2}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 10976}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 10976}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 137220}, {"name": "2,4-D", "categories": ["water"], "amount": 137220}, {"name": "2,4-D amines", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D amines", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D amines", "categories": ["water", "ground-"], "amount": 8181}, {"name": "2,4-D amines", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D dimethylamine salt", "categories": ["air", "non-urban air or from high stacks"], "amount": 1829.3}, {"name": "2,4-D dimethylamine salt", "categories": ["air"], "amount": 1835.7}, {"name": "2,4-D dimethylamine salt", "categories": ["soil", "agricultural"], "amount": 3308.3}, {"name": "2,4-D dimethylamine salt", "categories": ["water", "surface water"], "amount": 8181}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 736.95}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 380.93}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 46914}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 46914}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 23240}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 48100}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2656}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.2717}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 1.2777}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 0.021021}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 62.294}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 62.294}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010332}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 0.0028631}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 0.004693}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 0.00010347}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 1824.6}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1824.6}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 128.11}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.22431}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.22562}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.22694}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 0.0033968}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 8.2702}, {"name": "2-Propanol", "categories": ["water"], "amount": 8.2702}, {"name": "2-chlorobenzaldehyde", "categories": ["water"], "amount": 1001.1}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.67931}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.67996}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.6806}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 0.014366}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 62.9}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 62.9}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 0.012782}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 43.266}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.089771}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.089599}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.089428}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 0.0060959}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 28.139}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 28.139}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 4.7466}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 0.080732}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 3689.2}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 3689.2}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 315487.19221037}, {"name": "Abamectin", "categories": ["air"], "amount": 554148.578559852}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Abamectin", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.6274}, {"name": "Acenaphthene", "categories": ["air"], "amount": 10.042}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 11.456}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.2067}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 13773}, {"name": "Acenaphthene", "categories": ["water"], "amount": 13773}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 171.62}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 294.78}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 294.77}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 4278.6}, {"name": "Acephate", "categories": ["water"], "amount": 4278.6}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1357}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.1185}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.1012}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 0.074925}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 192.93}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 192.93}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7693}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.6306}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5677.2}, {"name": "Acetamiprid", "categories": ["air"], "amount": 9710.3}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 23604}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 23610}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 651800}, {"name": "Acetamiprid", "categories": ["water"], "amount": 651800}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.268}, {"name": "Acetic acid", "categories": ["air"], "amount": 51.182}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 60.097}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 0.00047038}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1199.3}, {"name": "Acetic acid", "categories": ["water"], "amount": 1199.3}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 843.26}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 842.67}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 842.09}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 139020}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23884}, {"name": "Acetone", "categories": ["air"], "amount": 0.23934}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.23985}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 0.010637}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 5.7469}, {"name": "Acetone", "categories": ["water"], "amount": 5.7469}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43235}, {"name": "Acetonitrile", "categories": ["air"], "amount": 0.43335}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 0.43435}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 0.021088}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 9.2823}, {"name": "Acetonitrile", "categories": ["water"], "amount": 9.2823}, {"name": "Acetyl chloride", "categories": ["water", "ground-"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water", "ocean"], "amount": 2.1245}, {"name": "Acetyl chloride", "categories": ["water", "surface water"], "amount": 15337}, {"name": "Acetyl chloride", "categories": ["water"], "amount": 15337}, {"name": "Acibenzolar-S-methyl", "categories": ["soil", "agricultural"], "amount": 4462.8}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 17005}, {"name": "Acrinathrin", "categories": ["soil", "agricultural"], "amount": 106770}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1189}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 1189}, {"name": "Acrolein", "categories": ["air"], "amount": 1168.3}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 1147.6}, {"name": "Acrolein", "categories": ["water"], "amount": 389000}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 19082}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 0.058143}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 19082}, {"name": "Acrylate", "categories": ["water"], "amount": 19082}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1230.6}, {"name": "Acrylic acid", "categories": ["air"], "amount": 1325.2}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 1419.7}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 49.604}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 49.522}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 49.44}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 18.015}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 3981.3}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 3981.3}, {"name": "Alachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2281.9}, {"name": "Alachlor", "categories": ["soil", "agricultural"], "amount": 4596.8}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.8222}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 0.85916}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 0.83787}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 2063.6}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 2001.8}, {"name": "Allethrin", "categories": ["soil", "agricultural"], "amount": 6230.5}, {"name": "Allyl chloride", "categories": ["water"], "amount": 105.28}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 787630}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1430400}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 15828}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 116730000}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 2014.102352871623}, {"name": "Aluminium III", "categories": ["air"], "amount": 2002.745979017675}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 1991.389605163728}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["soil"], "amount": 2935.196064320285}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 1.524933039988502e-17}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 4351.936148782046}, {"name": "Aluminium III", "categories": ["water"], "amount": 4351.936148782046}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1766.1}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 23662}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 859.26}, {"name": "Amine oxides", "categories": ["air"], "amount": 1911.7}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 0.058747}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 116.25}, {"name": "Ammonia", "categories": ["air"], "amount": 134.42}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 152.59}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 30.109}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.066737}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 2493.2}, {"name": "Ammonium", "categories": ["water"], "amount": 2493.2}, {"name": "Ammonium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7416}, {"name": "Ammonium carbonate", "categories": ["air"], "amount": 4.4789}, {"name": "Ammonium carbonate", "categories": ["air", "urban air close to ground"], "amount": 5.2161}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 104.57}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 178.48}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.031919}, {"name": "Aniline", "categories": ["air"], "amount": 0.080692}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 0.12947}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 18.449}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 3.4569e-07}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 18.449}, {"name": "Aniline", "categories": ["water"], "amount": 18.449}, {"name": "Anthracene", "categories": ["air"], "amount": 2258.6}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 974460}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 460.31}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 974460}, {"name": "Anthracene", "categories": ["water"], "amount": 974460}, {"name": "Anthranilic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.046}, {"name": "Anthranilic acid", "categories": ["air"], "amount": 51.924}, {"name": "Anthranilic acid", "categories": ["air", "urban air close to ground"], "amount": 59.802}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 158.18}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3940.083012503185}, {"name": "Antimony ion", "categories": ["air"], "amount": 3936.160566162338}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 3932.23811982149}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["soil"], "amount": 5657.187703140008}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 7.513617476334719e-17}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 11236.40165143179}, {"name": "Antimony ion", "categories": ["water"], "amount": 11236.40165143179}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsenic ion", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 1725.896653140423}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 2.674241505374748e-17}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 4740.144065793249}, {"name": "Arsenic ion", "categories": ["water"], "amount": 4740.144065793249}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1198.713032220774}, {"name": "Arsine", "categories": ["air"], "amount": 1196.477112278738}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 1194.241192336702}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 38.369}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 10782}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 14841}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 14855}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 849450}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 849450}, {"name": "Atrazine", "categories": ["water"], "amount": 849450}, {"name": "Azaconazol", "categories": ["soil", "agricultural"], "amount": 407.79}, {"name": "Azadirachtin", "categories": ["soil", "agricultural"], "amount": 230020}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 1695600}, {"name": "Aziprotryne", "categories": ["soil", "agricultural"], "amount": 14.432}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12815}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5130.1}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 5171.1}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 457560}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 457560}, {"name": "Barite", "categories": ["water", "ground-"], "amount": 322.16}, {"name": "Barite", "categories": ["water", "ocean"], "amount": 1.3567e-19}, {"name": "Barite", "categories": ["water", "surface water"], "amount": 322.16}, {"name": "Barite", "categories": ["water"], "amount": 322.16}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1286.114401664207}, {"name": "Barium II", "categories": ["air"], "amount": 1285.034232822078}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1283.954063979948}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["soil"], "amount": 1848.895316685864}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 1.099193197912493e-15}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 3697.562482913057}, {"name": "Barium II", "categories": ["water"], "amount": 3697.562482913057}, {"name": "Barium sulfide", "categories": ["water"], "amount": 152190}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 519.24}, {"name": "Benazolin", "categories": ["soil", "agricultural"], "amount": 41.455}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 76.946}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 2613.4}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 13222}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 110010}, {"name": "Bensultap", "categories": ["soil", "agricultural"], "amount": 139.64}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.621}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 62.688}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1470.3}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1470.3}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 6.3066}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 23527}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 4512700}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 72.814}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 72.532}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 72.251}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 8762.3}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.82114}, {"name": "Benzene", "categories": ["air"], "amount": 0.82904}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.83695}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 791.57}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 0.080062}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 791.57}, {"name": "Benzene", "categories": ["water"], "amount": 791.57}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.532}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 1787.5}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 1787.5}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2163}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 0.2518}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.2873}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 0.019642}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 1678.5}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 1678.5}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1759.8}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 1763}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 1766.3}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 341750}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 922.54}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 924.46}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 926.39}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 55563}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 182.28}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 428.02}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 673.77}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 56281}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 56281}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 0.99338}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 289870}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 281180}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 16347000}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 16347000}, {"name": "Benzoximate", "categories": ["soil", "agricultural"], "amount": 344.45}, {"name": "Benzthiazuron", "categories": ["soil", "agricultural"], "amount": 19.015}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 0.0019318}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 70.262}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 70.262}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 620.5353389558935}, {"name": "Beryllium II", "categories": ["air"], "amount": 618.9529355888297}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 617.3705322217661}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 893.8117049484323}, {"name": "Beryllium II", "categories": ["soil"], "amount": 893.8117049484325}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 6.526234802747784e-19}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 1626.068806336683}, {"name": "Beryllium II", "categories": ["water"], "amount": 1626.068806336683}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 23679000}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 81566}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1629500000}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 1629500000}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 11571}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4040200}, {"name": "Bifenthrin", "categories": ["air"], "amount": 6560400}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 398190}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 398140}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 459480000}, {"name": "Bifenthrin", "categories": ["water"], "amount": 459480000}, {"name": "Bisphenol A", "categories": ["water"], "amount": 4384.3}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 20.515}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4394}, {"name": "Boric acid", "categories": ["air"], "amount": 1.5722}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 1.705}, {"name": "Boron", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1967}, {"name": "Boron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1967}, {"name": "Boron", "categories": ["air"], "amount": 2.3385}, {"name": "Boron", "categories": ["air", "urban air close to ground"], "amount": 2.4803}, {"name": "Boron", "categories": ["soil", "agricultural"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "forestry"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil", "industrial"], "amount": 1.9884}, {"name": "Boron", "categories": ["soil"], "amount": 1.9884}, {"name": "Boron", "categories": ["water", "ground-"], "amount": 23.585}, {"name": "Boron", "categories": ["water", "ocean"], "amount": 0.00019135}, {"name": "Boron", "categories": ["water", "surface water"], "amount": 23.585}, {"name": "Boron", "categories": ["water"], "amount": 23.585}, {"name": "Boron carbide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.23957}, {"name": "Boron carbide", "categories": ["air"], "amount": 0.23961}, {"name": "Boron carbide", "categories": ["air", "urban air close to ground"], "amount": 0.23965}, {"name": "Boron carbide", "categories": ["water", "ground-"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water", "ocean"], "amount": 0.025738}, {"name": "Boron carbide", "categories": ["water", "surface water"], "amount": 20.458}, {"name": "Boron carbide", "categories": ["water"], "amount": 20.458}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Bromacil", "categories": ["soil", "agricultural"], "amount": 2613.8}, {"name": "Bromate", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromate", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromate", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromate", "categories": ["water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ground-"], "amount": 156.99}, {"name": "Bromide", "categories": ["water", "ocean"], "amount": 2.9549e-11}, {"name": "Bromide", "categories": ["water", "surface water"], "amount": 156.99}, {"name": "Bromide", "categories": ["water"], "amount": 156.99}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 39.891}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 39.891}, {"name": "Bromine", "categories": ["air"], "amount": 39.912}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 39.934}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 199.75}, {"name": "Bromine", "categories": ["soil"], "amount": 199.75}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 3.2386}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 2607.6}, {"name": "Bromine", "categories": ["water"], "amount": 2607.6}, {"name": "Bromofenoxim", "categories": ["soil", "agricultural"], "amount": 12827}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.2263}, {"name": "Bromopropane", "categories": ["water"], "amount": 408.5}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 178.25}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1951}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 647.61}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 54863}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 54863}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 199.84}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 4071.2}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 3420.6}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 421.32}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071149}, {"name": "Butadiene", "categories": ["air"], "amount": 0.0011246}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 0.0015377}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 44220}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011832}, {"name": "Butane", "categories": ["air"], "amount": 0.0015644}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.0019456}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6325}, {"name": "Butanol", "categories": ["air"], "amount": 2.6492}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 2.6658}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 146.86}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 0.04008}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 146.86}, {"name": "Butanol", "categories": ["water"], "amount": 146.86}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0011207}, {"name": "Butene", "categories": ["air"], "amount": 0.0026384}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 0.0041561}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 738.53}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 7.2721e-05}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 738.53}, {"name": "Butene", "categories": ["water"], "amount": 738.53}, {"name": "Butoxycarboxim", "categories": ["soil", "agricultural"], "amount": 792.8}, {"name": "Butralin", "categories": ["soil", "agricultural"], "amount": 2025.5}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297}, {"name": "Butyl acetate", "categories": ["air"], "amount": 1.3293}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.3289}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 0.10084}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 323.15}, {"name": "Butyl acetate", "categories": ["water"], "amount": 323.15}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1921.6}, {"name": "Butylcarbamate, iodopropynyl", "categories": ["water", "surface water"], "amount": 306440}, {"name": "Butyrolactone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.872}, {"name": "Butyrolactone", "categories": ["air"], "amount": 73.004}, {"name": "Butyrolactone", "categories": ["air", "urban air close to ground"], "amount": 74.137}, {"name": "Butyrolactone", "categories": ["water", "ground-"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water", "ocean"], "amount": 0.0073473}, {"name": "Butyrolactone", "categories": ["water", "surface water"], "amount": 398.15}, {"name": "Butyrolactone", "categories": ["water"], "amount": 398.15}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 238451.7354820019}, {"name": "Cadmium II", "categories": ["air"], "amount": 238177.2238474309}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 237902.7122128598}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 342796.2330722301}, {"name": "Cadmium II", "categories": ["soil"], "amount": 342796.23307223}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 7.053900825124722e-15}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 674494.7621301207}, {"name": "Cadmium II", "categories": ["water"], "amount": 674494.7621301207}, {"name": "Caesium", "categories": ["water", "ground-"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water", "ocean"], "amount": 7.47862628024277e-15}, {"name": "Caesium", "categories": ["water", "surface water"], "amount": 4470.250219771267}, {"name": "Caesium", "categories": ["water"], "amount": 4470.250219771267}, {"name": "Calcium cyanamide", "categories": ["soil", "agricultural"], "amount": 695.92}, {"name": "Calcium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.2647}, {"name": "Calcium hydroxide", "categories": ["air"], "amount": 0.33004}, {"name": "Calcium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 0.39538}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 487.78}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 18666}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 22917}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 1459300}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 1459300}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 53033}, {"name": "Carbendazim", "categories": ["air"], "amount": 91215}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 462450}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 451770}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 6286700}, {"name": "Carbendazim", "categories": ["water"], "amount": 6286700}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 121.23}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 345720}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.096}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 29.154}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 29.213}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 2.8996}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 2314.6}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 2314.6}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022828}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 0.022833}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.022837}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 490.37}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 167.8}, {"name": "Carboxin", "categories": ["air"], "amount": 493.17}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 58.372}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 58.372}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 46693}, {"name": "Carboxin", "categories": ["water"], "amount": 46693}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2972.9}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1948.4}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 102290}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 102290}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 7678.7}, {"name": "Chloramine", "categories": ["air"], "amount": 7714.8}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 7750.8}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 111310}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 883.16}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 111310}, {"name": "Chloramine", "categories": ["water"], "amount": 111310}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 561320}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 583850}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 701440}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 701450}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 5037700}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 5037700}, {"name": "Chlorate", "categories": ["water", "ground-"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water", "ocean"], "amount": 1.3453e-19}, {"name": "Chlorate", "categories": ["water", "surface water"], "amount": 4.7248}, {"name": "Chlorate", "categories": ["water"], "amount": 4.7248}, {"name": "Chlorbromuron", "categories": ["soil", "agricultural"], "amount": 981.95}, {"name": "Chlorbufam", "categories": ["soil", "agricultural"], "amount": 574.51}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 16626}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1036}, {"name": "Chloride", "categories": ["soil", "agricultural"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "forestry"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil", "industrial"], "amount": 6.1714}, {"name": "Chloride", "categories": ["soil"], "amount": 6.1714}, {"name": "Chloride", "categories": ["water", "ground-"], "amount": 301.44}, {"name": "Chloride", "categories": ["water", "ocean"], "amount": 2.156e-09}, {"name": "Chloride", "categories": ["water", "surface water"], "amount": 301.44}, {"name": "Chloride", "categories": ["water"], "amount": 301.44}, {"name": "Chlorides, unspecified", "categories": ["water"], "amount": 301.44}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 55559.1411080776}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 70300.9604413129}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Chlorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 121.33}, {"name": "Chlorine", "categories": ["air"], "amount": 121.34}, {"name": "Chlorine", "categories": ["air", "urban air close to ground"], "amount": 121.35}, {"name": "Chlorine", "categories": ["soil"], "amount": 181.44}, {"name": "Chlorine", "categories": ["water", "ground-"], "amount": 11918}, {"name": "Chlorine", "categories": ["water", "ocean"], "amount": 10.652}, {"name": "Chlorine", "categories": ["water", "surface water"], "amount": 11918}, {"name": "Chlorine", "categories": ["water"], "amount": 11918}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 344.92}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3946.5}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 4131.8}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 4317}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 9.9261e-05}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 33711}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 33711}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 142.3}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 118620}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 118620}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0061329}, {"name": "Chloroethylene", "categories": ["air"], "amount": 0.0063829}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0066328}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 0.00063168}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 133.53}, {"name": "Chloroethylene", "categories": ["water"], "amount": 133.53}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.6203}, {"name": "Chloroform", "categories": ["air"], "amount": 4.6212}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 4.6222}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.3016}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 696.98}, {"name": "Chloroform", "categories": ["water"], "amount": 696.98}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 221030}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.017851}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 0.017887}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 0.017923}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 0.0088958}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 65.209}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 65.209}, {"name": "Chlorosulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.992}, {"name": "Chlorosulfonic acid", "categories": ["air"], "amount": 16.151}, {"name": "Chlorosulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 16.309}, {"name": "Chlorosulfonic acid", "categories": ["water", "ground-"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water", "ocean"], "amount": 8.0375e-09}, {"name": "Chlorosulfonic acid", "categories": ["water", "surface water"], "amount": 67.142}, {"name": "Chlorosulfonic acid", "categories": ["water"], "amount": 67.142}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 49314}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 54902}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 1211}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1588300}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 1588300}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 525030}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 236310}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 393650000}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 393650000}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 605.16}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 10109}, {"name": "Chlortoluron", "categories": ["soil", "agricultural"], "amount": 620.5}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 19.305}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium III", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium III", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 3.208875862910647e-21}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 952.2972968312423}, {"name": "Chromium III", "categories": ["water"], "amount": 952.2972968312423}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 4292.056597623994}, {"name": "Chromium VI", "categories": ["air"], "amount": 4288.011146842272}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 4283.965696060551}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 6164.338557818712}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 6164.338557818714}, {"name": "Chromium VI", "categories": ["soil"], "amount": 6164.338557818713}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 4.489493252663161e-17}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 12274.01347021746}, {"name": "Chromium VI", "categories": ["water"], "amount": 12274.01347021746}, {"name": "Chrysene", "categories": ["air"], "amount": 1137.1}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1141}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 6.9498}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 6.9499}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 1505}, {"name": "Clethodim", "categories": ["water"], "amount": 1505}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 10843}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 50.524}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 215.9}, {"name": "Clopyralid", "categories": ["soil", "agricultural"], "amount": 61.106}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 5.5991}, {"name": "Clothianidin", "categories": ["soil", "agricultural"], "amount": 14362}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2018.027916085916}, {"name": "Cobalt II", "categories": ["air"], "amount": 2014.507718479836}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 2010.987520873756}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["soil"], "amount": 2905.457742306401}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 6.400122046360835e-17}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 5530.110188853351}, {"name": "Cobalt II", "categories": ["water"], "amount": 5530.110188853351}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 17.07059388633769}, {"name": "Copper ion", "categories": ["air"], "amount": 17.0387771287493}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 17.00696037116091}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["soil"], "amount": 24.53395145313178}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 4.332001250025555e-21}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 46.47592828149169}, {"name": "Copper ion", "categories": ["water"], "amount": 46.47592828149169}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 0.92045}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 157664.999993603}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.27728}, {"name": "Cumene", "categories": ["air"], "amount": 0.31472}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.35217}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 2439}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 0.024506}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 2439}, {"name": "Cumene", "categories": ["water"], "amount": 2439}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 420.26}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 5878.5}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 898.87}, {"name": "Cyanide", "categories": ["air"], "amount": 899.52}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 900.18}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 26453}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 353.9}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 26453}, {"name": "Cyanide", "categories": ["water"], "amount": 26453}, {"name": "Cyanoacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 177.02}, {"name": "Cyanoacetic acid", "categories": ["air"], "amount": 183.92}, {"name": "Cyanoacetic acid", "categories": ["air", "urban air close to ground"], "amount": 190.82}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 12754}, {"name": "Cyclanilide", "categories": ["soil", "agricultural"], "amount": 8467.4}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.027897}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.043746}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 0.0026863}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 3663.1}, {"name": "Cyclohexane", "categories": ["water"], "amount": 3663.1}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.059595}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 0.017864}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 0.010778}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 4368.7}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 13485}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 512.96}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 19340}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 101870000}, {"name": "Cypermethrin", "categories": ["water"], "amount": 101870000}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3653}, {"name": "Cyproconazole", "categories": ["air"], "amount": 4787.9}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 4469.3}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 4555.1}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 176740}, {"name": "Cyproconazole", "categories": ["water"], "amount": 176740}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 2350.6}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 4109.1}, {"name": "DNOC", "categories": ["soil", "agricultural"], "amount": 3704.8}, {"name": "DSMA", "categories": ["soil", "agricultural"], "amount": 667}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.9334}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 44.618}, {"name": "Decanoic acid", "categories": ["water"], "amount": 3063.7}, {"name": "Deltamethrin", "categories": ["air"], "amount": 28208000}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 246660}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 3986800000}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Desmedipham", "categories": ["soil", "agricultural"], "amount": 396.65}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 112.74}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 246470}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 226.48}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 20349}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4466}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.1503}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 76.769}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 76.769}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 984.13}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 164.4}, {"name": "Dichlorprop", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.075}, {"name": "Dichlorprop", "categories": ["soil", "agricultural"], "amount": 36.505}, {"name": "Dichlorprop", "categories": ["water", "ground-"], "amount": 1409.4}, {"name": "Dichlorprop", "categories": ["water", "surface water"], "amount": 1409.4}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 14.535}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 3237.8}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.5863}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 6085.9}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 4843.7}, {"name": "Dienochlor", "categories": ["soil", "agricultural"], "amount": 149.75}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1383.9}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 630.4}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0037015}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.0036901}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.0036787}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7456}, {"name": "Diethylamine", "categories": ["air"], "amount": 10.844}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 16.942}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 0.00043103}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 916.03}, {"name": "Diethylamine", "categories": ["water"], "amount": 916.03}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35934}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 0.37056}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 0.38178}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 1.3233e-06}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9517}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 4.9517}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 79258}, {"name": "Difenoconazole", "categories": ["air"], "amount": 95236}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 39861}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 40242}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 2469400}, {"name": "Difenoconazole", "categories": ["water"], "amount": 2469400}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 1867800}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 19890}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 154660000}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 154660000}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 44818}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 216450}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 0.031275}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 293.47}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 293.47}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 544.69}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5344.6}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 37401}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 256680}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 256680}, {"name": "Dimethenamid-P", "categories": ["air", "non-urban air or from high stacks"], "amount": 62792}, {"name": "Dimethenamid-P", "categories": ["air"], "amount": 75677}, {"name": "Dimethenamid-P", "categories": ["soil", "agricultural"], "amount": 439390}, {"name": "Dimethenamid-P", "categories": ["water", "surface water"], "amount": 3015500}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 7871.9}, {"name": "Dimethoate", "categories": ["air"], "amount": 1021.2}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 1983}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 73221}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 33.176}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.67381}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.068639}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.068568}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.068497}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 0.0072549}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 28.15}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 28.15}, {"name": "Dimethyl hexanediol", "categories": ["water"], "amount": 83.707}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 800.87}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.241}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 26.685}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 27.129}, {"name": "Dimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4907}, {"name": "Dimethylamine", "categories": ["air"], "amount": 17.093}, {"name": "Dimethylamine", "categories": ["air", "urban air close to ground"], "amount": 25.695}, {"name": "Dimethylamine", "categories": ["water", "ground-"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water", "ocean"], "amount": 0.00085992}, {"name": "Dimethylamine", "categories": ["water", "surface water"], "amount": 1320.5}, {"name": "Dimethylamine", "categories": ["water"], "amount": 1320.5}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 1.3294}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 31.193}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 3.8366}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 1614.9}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 13032}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 721510}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 799680}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 877860}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 1202800}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 53255}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 31479000}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 31479000}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 4483.1}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8649}, {"name": "Dipropylamine", "categories": ["air"], "amount": 11.773}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 18.68}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 0.00044169}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 1027.7}, {"name": "Dipropylamine", "categories": ["water"], "amount": 1027.7}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 16215}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3682.9}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 3872.1}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 13361}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 55683}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 55683}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 91829}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 9059.7}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 7836.1}, {"name": "Diuron", "categories": ["air"], "amount": 8999.4}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 13191}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 13191}, {"name": "Diuron", "categories": ["water"], "amount": 196170}, {"name": "Dodecanol", "categories": ["water"], "amount": 22624}, {"name": "Dodemorph", "categories": ["soil", "agricultural"], "amount": 120.58}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 3.4736}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 242.45}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0612}, {"name": "EPTC", "categories": ["air"], "amount": 2.2214}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 7.6247}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 598.12}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 135091.200409584}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 4420.3}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 48.381}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 45.618}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 45.737}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 45.857}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 1233.9}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 40824}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 56481}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 10408}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 10465}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 2259400}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 2259400}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 10171000}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 8453500}, {"name": "Ethaboxam", "categories": ["air"], "amount": 157664.999993603}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Ethalfluralin", "categories": ["air"], "amount": 607.63}, {"name": "Ethalfluralin", "categories": ["soil", "agricultural"], "amount": 2793.6}, {"name": "Ethalfluralin", "categories": ["water", "ground-"], "amount": 859450}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.013668}, {"name": "Ethane", "categories": ["air"], "amount": 0.014055}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.014443}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18266}, {"name": "Ethane thiol", "categories": ["air"], "amount": 0.17566}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 0.16866}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49227}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 0.49235}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 0.49244}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3159}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 4.3169}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 4.3179}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 1.1491}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 495.88}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 495.88}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 1.1505}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.53754}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 0.53762}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 0.53771}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.40613}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 0.40641}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 0.4067}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 0.077861}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 50.686}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 50.686}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.55284}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.55287}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.5529}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6381}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 1.6387}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 1.6393}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 21.976}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 6258.5}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 6258.5}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.078766}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 0.078853}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 0.078941}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31781}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 0.31783}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 0.31785}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0709}, {"name": "Ethanol", "categories": ["air"], "amount": 1.1261}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 1.1812}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 0.011559}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 36.878}, {"name": "Ethanol", "categories": ["water"], "amount": 36.878}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 31.416}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 41.094}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 175.93}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 175.93}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 829.63}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 581.67}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 1983.3}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7838}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 1.7835}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 1.7833}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 0.12449}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 122.76}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 122.76}, {"name": "Ethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.936}, {"name": "Ethylamine", "categories": ["air"], "amount": 32.319}, {"name": "Ethylamine", "categories": ["air", "urban air close to ground"], "amount": 43.701}, {"name": "Ethylamine", "categories": ["water", "ground-"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water", "ocean"], "amount": 0.0077002}, {"name": "Ethylamine", "categories": ["water", "surface water"], "amount": 1780.5}, {"name": "Ethylamine", "categories": ["water"], "amount": 1780.5}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00078838}, {"name": "Ethylene", "categories": ["air"], "amount": 0.00094698}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 0.0011056}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 9.7039e-05}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 136.09}, {"name": "Ethylene", "categories": ["water"], "amount": 136.09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.942}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 44.562}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 61.182}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 6.0493e-07}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 2722.6}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2722.6}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.59013}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.62092}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.65171}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 0.00052512}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 12.866}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 12.866}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2068}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.2094}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 2.2119}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 0.18823}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 80.053}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 80.053}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.024624}, {"name": "Ethyne", "categories": ["air"], "amount": 0.024785}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.024945}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 233.5}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 7720.6}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 594.46}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 2905.7}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 425.06}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 25.316}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 0.23819}, {"name": "Fenfuram", "categories": ["soil", "agricultural"], "amount": 397.11}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.4107}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 16602}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 95.742}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 663.61}, {"name": "Fenoxycarb", "categories": ["soil", "agricultural"], "amount": 172.93}, {"name": "Fenpiclonil", "categories": ["soil", "agricultural"], "amount": 12131}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 170970}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 507.34}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 810.73}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 588610}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3039.2}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 590110}, {"name": "Fipronil", "categories": ["air"], "amount": 1418100}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 809740}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 809750}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 125430000}, {"name": "Fipronil", "categories": ["water"], "amount": 125430000}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 91590}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 116510}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 698.58}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 147.45}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 147.49}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 147290}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 147290}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 20775}, {"name": "Fluazinam", "categories": ["air"], "amount": 26631}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 874.39}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 874.41}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 757720}, {"name": "Fluazinam", "categories": ["water"], "amount": 757720}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 12843}, {"name": "Fludioxonil", "categories": ["air"], "amount": 20475}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 33289}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 1265100}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1265100}, {"name": "Flufenacet", "categories": ["air", "non-urban air or from high stacks"], "amount": 220280}, {"name": "Flufenacet", "categories": ["soil", "agricultural"], "amount": 266380}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 985260}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 1468900}, {"name": "Flumiclorac-pentyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2181.7}, {"name": "Flumiclorac-pentyl", "categories": ["soil", "agricultural"], "amount": 30.625}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 21877}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 130060}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 6021800}, {"name": "Flumioxazin", "categories": ["water"], "amount": 6021800}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 3.6115e-11}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 3.0851}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 3.0851}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 6736.5}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 615.98}, {"name": "Fluopyram", "categories": ["air"], "amount": 842.51}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 31875}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2216.3}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 380060}, {"name": "Fluorene", "categories": ["air"], "amount": 38.348}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 9455.9}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["soil"], "amount": 1.2573}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 0.044974}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoride", "categories": ["water"], "amount": 20.361}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Fluorine", "categories": ["air"], "amount": 0.34838}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 20.361}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 9967100}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3421100}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 38684}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Flurochloridone", "categories": ["soil", "agricultural"], "amount": 40386}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 755.22}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 955.28}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 1852}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 507.14}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 11319}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 6762.8}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 1077.3}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 336590}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 336590}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 121030}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 178.51}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 232.3}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 1337.9}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 113940}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 105.37}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 161.17}, {"name": "Formaldehyde", "categories": ["air"], "amount": 179.86}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 198.55}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 0.14815}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 4250.7}, {"name": "Formaldehyde", "categories": ["water"], "amount": 4250.7}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1923}, {"name": "Formamide", "categories": ["air"], "amount": 1.2156}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 1.239}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.0006e-06}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 6.8977}, {"name": "Formamide", "categories": ["water"], "amount": 6.8977}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4786}, {"name": "Formic acid", "categories": ["air"], "amount": 4.0955}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 4.7125}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 0.00044416}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 85.847}, {"name": "Formic acid", "categories": ["water"], "amount": 85.847}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 0.010384}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 14.743}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 64.3102104356947}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Furalaxyl", "categories": ["soil", "agricultural"], "amount": 198.9}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.014832}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.014832}, {"name": "Furan", "categories": ["air"], "amount": 0.01626}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 0.017689}, {"name": "Furfural", "categories": ["air"], "amount": 32.886}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 64.272}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 76.939}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 42.281}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2041.4}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 19.173}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 8.6446}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 1144.2}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 0.030051}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 14617}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 14617}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 25.692}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 257.31}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 108.54}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 1084.5}, {"name": "Glyphosate", "categories": ["water"], "amount": 1084.5}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Halosulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 3276400}, {"name": "Haloxyfop-P-methyl", "categories": ["soil", "agricultural"], "amount": 40.416}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 835.83}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["air"], "amount": 1114.6}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water", "ground-"], "amount": 41912}, {"name": "Haloxyfop-ethoxyethyl", "categories": ["water"], "amount": 41912}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00045749}, {"name": "Heptane", "categories": ["air"], "amount": 0.0012401}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.0020227}, {"name": "Heptenophos", "categories": ["soil", "agricultural"], "amount": 861.53}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 25.8706937761006}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1258024.37413318}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1834.4}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 2325}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 2815.6}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00023372}, {"name": "Hexane", "categories": ["air"], "amount": 0.00089543}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.0015571}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 298.96}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.2373e-05}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 298.96}, {"name": "Hexane", "categories": ["water"], "amount": 298.96}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 87431}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 2161.5}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 6.3426}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 101.84}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 59003}, {"name": "Hydrazine", "categories": ["water"], "amount": 59003}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 80.706}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 151.54}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 208.89}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 0.098056}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 22194}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 22194}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017905}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Hydrochloric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.687}, {"name": "Hydrochloric acid", "categories": ["air"], "amount": 21.086}, {"name": "Hydrochloric acid", "categories": ["air", "urban air close to ground"], "amount": 26.036}, {"name": "Hydrochloric acid", "categories": ["water"], "amount": 301.44}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3481}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 0.34838}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 0.34865}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6982}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 2.087}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 2.4758}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 1.4495e-06}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 58.72}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 58.72}, {"name": "Hydrogen sulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 14667}, {"name": "Hydrogen sulfide", "categories": ["air"], "amount": 15051}, {"name": "Hydrogen sulfide", "categories": ["air", "urban air close to ground"], "amount": 15435}, {"name": "Hydrogen sulfide", "categories": ["water", "ground-"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water", "ocean"], "amount": 1.0441e-06}, {"name": "Hydrogen sulfide", "categories": ["water", "surface water"], "amount": 89339}, {"name": "Hydrogen sulfide", "categories": ["water"], "amount": 89339}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 121.51}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 20.776}, {"name": "Imazamox", "categories": ["air", "non-urban air or from high stacks"], "amount": 24485}, {"name": "Imazamox", "categories": ["soil", "agricultural"], "amount": 30874}, {"name": "Imazamox", "categories": ["water", "ground-"], "amount": 149450}, {"name": "Imazapyr", "categories": ["soil", "agricultural"], "amount": 321.13}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 12.376}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 3.9272}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 25554}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 33760}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 24212}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 254580}, {"name": "Imazethapyr", "categories": ["water"], "amount": 254580}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 28922}, {"name": "Imidacloprid", "categories": ["air"], "amount": 34527}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 29575}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 29586}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 960570}, {"name": "Imidacloprid", "categories": ["water"], "amount": 960570}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1137.1}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 239130}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 239130}, {"name": "Indoxacarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 4843.1}, {"name": "Indoxacarb", "categories": ["air"], "amount": 9053}, {"name": "Indoxacarb", "categories": ["soil", "agricultural"], "amount": 184.99}, {"name": "Indoxacarb", "categories": ["soil", "forestry"], "amount": 184.99}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 2276.4422267126}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 57290282.9638445}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 57290282.9638445}, {"name": "Iodide", "categories": ["soil", "agricultural"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "forestry"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil", "industrial"], "amount": 77.524}, {"name": "Iodide", "categories": ["soil"], "amount": 77.524}, {"name": "Iodide", "categories": ["water", "ground-"], "amount": 375.32}, {"name": "Iodide", "categories": ["water", "ocean"], "amount": 0.047639}, {"name": "Iodide", "categories": ["water", "surface water"], "amount": 375.32}, {"name": "Iodide", "categories": ["water"], "amount": 375.32}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2320.5}, {"name": "Iodine", "categories": ["air"], "amount": 2427.5}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 2534.5}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 1512500}, {"name": "Ioxynil", "categories": ["soil", "agricultural"], "amount": 478.52}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 86440}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 32.643}, {"name": "Iron ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 797.6442286215132}, {"name": "Iron ion", "categories": ["air"], "amount": 795.7333426635905}, {"name": "Iron ion", "categories": ["air", "urban air close to ground"], "amount": 793.8224567056676}, {"name": "Iron ion", "categories": ["soil", "agricultural"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "forestry"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil", "industrial"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["soil"], "amount": 1148.396476615286}, {"name": "Iron ion", "categories": ["water", "ground-"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water", "ocean"], "amount": 7.574304470573605e-18}, {"name": "Iron ion", "categories": ["water", "surface water"], "amount": 158.0383373682407}, {"name": "Iron ion", "categories": ["water"], "amount": 158.0383373682407}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.0017331}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0015282}, {"name": "Isoprene", "categories": ["air"], "amount": 0.0030029}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 0.0044775}, {"name": "Isopropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9014}, {"name": "Isopropylamine", "categories": ["air"], "amount": 12.065}, {"name": "Isopropylamine", "categories": ["air", "urban air close to ground"], "amount": 17.228}, {"name": "Isopropylamine", "categories": ["water", "ground-"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water", "ocean"], "amount": 0.0028671}, {"name": "Isopropylamine", "categories": ["water", "surface water"], "amount": 802.63}, {"name": "Isopropylamine", "categories": ["water"], "amount": 802.63}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 5985.1}, {"name": "Isoxadifen-ethyl", "categories": ["soil", "agricultural"], "amount": 25.869}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1083.5}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 53540}, {"name": "Lactic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 164.34}, {"name": "Lactic acid", "categories": ["air"], "amount": 166.99}, {"name": "Lactic acid", "categories": ["air", "urban air close to ground"], "amount": 169.63}, {"name": "Lactic acid", "categories": ["water", "ground-"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water", "ocean"], "amount": 0.0021549}, {"name": "Lactic acid", "categories": ["water", "surface water"], "amount": 1033.8}, {"name": "Lactic acid", "categories": ["water"], "amount": 1033.8}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 124350}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 56927}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 15837000}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 250950}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 250940}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 4025200000}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 4025200000}, {"name": "Lauric acid", "categories": ["air"], "amount": 48.78}, {"name": "Lauric acid", "categories": ["water"], "amount": 2234.5}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 27.91008292544825}, {"name": "Lead II", "categories": ["air"], "amount": 27.80611908286212}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 27.70215524027599}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["soil"], "amount": 40.34680171844823}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 1.886357418817773e-21}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 68.25546277139645}, {"name": "Lead II", "categories": ["water"], "amount": 68.25546277139645}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 437900}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 237430}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 28703}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 26.065}, {"name": "Lithium I", "categories": ["soil"], "amount": 33.303}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 153.81}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.202}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 40.538}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 40.875}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 4288.6}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 4288.6}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 230.57}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 418.35}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 6268.4}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 6268.4}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 26.199}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 32.134}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1658}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1658}, {"name": "MSMA", "categories": ["soil", "agricultural"], "amount": 228.41}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.28008}, {"name": "Magnesium", "categories": ["air"], "amount": 0.28295}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 0.28582}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["soil"], "amount": 0.36597}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 8.2957e-07}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 1.1792}, {"name": "Magnesium", "categories": ["water"], "amount": 1.1792}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 4137.1}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 493.32}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 44.008}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 41585}, {"name": "Mancozeb", "categories": ["air"], "amount": 55580}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 3.3946}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 3.3829}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 2169700}, {"name": "Mancozeb", "categories": ["water"], "amount": 2169700}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 15.596}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 3485.7}, {"name": "Manganese II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.99909026263621}, {"name": "Manganese II", "categories": ["air"], "amount": 19.94318085460731}, {"name": "Manganese II", "categories": ["air", "urban air close to ground"], "amount": 19.88727144657841}, {"name": "Manganese II", "categories": ["soil", "agricultural"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "forestry"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil", "industrial"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["soil"], "amount": 28.88491274661666}, {"name": "Manganese II", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese II", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese II", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ground-"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water", "ocean"], "amount": 4.286159524120895e-19}, {"name": "Manganese-55", "categories": ["water", "surface water"], "amount": 51.67528014780824}, {"name": "Manganese-55", "categories": ["water"], "amount": 51.67528014780824}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mecoprop-P", "categories": ["soil", "agricultural"], "amount": 52.782}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 502.95}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 0.0021688}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 16073.77403206885}, {"name": "Mercury II", "categories": ["air"], "amount": 15972.69526442819}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 15871.61649678753}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["soil"], "amount": 23429.21784559528}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 2.31875727413759e-17}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 33175.97305971487}, {"name": "Mercury II", "categories": ["water"], "amount": 33175.97305971487}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 39139}, {"name": "Mesotrione", "categories": ["air", "non-urban air or from high stacks"], "amount": 76554}, {"name": "Mesotrione", "categories": ["air"], "amount": 77707}, {"name": "Mesotrione", "categories": ["soil", "agricultural"], "amount": 98396}, {"name": "Mesotrione", "categories": ["soil", "forestry"], "amount": 98396}, {"name": "Mesotrione", "categories": ["water"], "amount": 393040}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 561.76}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 150.62}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 159.53}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 603.44}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 2563.2}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 2563.2}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 8218.8}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 463.59}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 1423}, {"name": "Metconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 518.4}, {"name": "Metconazole", "categories": ["air"], "amount": 742.72}, {"name": "Metconazole", "categories": ["soil", "agricultural"], "amount": 339.06}, {"name": "Metconazole", "categories": ["water", "surface water"], "amount": 33996}, {"name": "Methabenzthiazuron", "categories": ["soil", "agricultural"], "amount": 2622.4}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 2118.1}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.616}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 19.624}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 19.632}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26439}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.2644}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.26442}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.78047}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.78144}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.7824}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 0.056786}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 141.6}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 141.6}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.12693}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.12694}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.12694}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.03564}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 0.035655}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 0.03567}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18734}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.18743}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.18753}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.31936}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.31974}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.32011}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 91.914}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 91.959}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 92.003}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 23.87}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 6459.6}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 6459.6}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41515}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 0.41521}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 0.41527}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 188.44}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 193.85}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 199.26}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.34172}, {"name": "Methanol", "categories": ["air"], "amount": 0.34485}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.34798}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 0.0031028}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 5.9133}, {"name": "Methanol", "categories": ["water"], "amount": 5.9133}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 668380}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 21420}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 38273}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 49164}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 49163}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 827960}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 827960}, {"name": "Methomyl", "categories": ["water"], "amount": 827960}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 2.3596}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5512.3}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 6823.6}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 6127.1}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 6127.2}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 221060}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 221060}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.68856}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.68923}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.6899}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 0.048171}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 27.506}, {"name": "Methyl acetate", "categories": ["water"], "amount": 27.506}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.23}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 14.119}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 14.008}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0929}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 3961.6}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 3961.6}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3964}, {"name": "Methyl borate", "categories": ["air"], "amount": 5.4278}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 5.4591}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 0.13431}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 215.57}, {"name": "Methyl borate", "categories": ["water"], "amount": 215.57}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18902}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.18917}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.18932}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.2233}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.64372}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.64425}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.64479}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 0.055431}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 31.451}, {"name": "Methyl formate", "categories": ["water"], "amount": 31.451}, {"name": "Methyl lactate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4556}, {"name": "Methyl lactate", "categories": ["air"], "amount": 6.6164}, {"name": "Methyl lactate", "categories": ["air", "urban air close to ground"], "amount": 6.7772}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 139520}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 94395}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5475}, {"name": "Methylamine", "categories": ["air"], "amount": 3.6778}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 4.8082}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 0.00019921}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 176.69}, {"name": "Methylamine", "categories": ["water"], "amount": 176.69}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 5052.1}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 1741}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 4066.5}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 223410}, {"name": "Metolachlor", "categories": ["water"], "amount": 223410}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 4580.6}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 9148.9}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 17616}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 374670}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 26697}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 26983}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 36861}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 36859}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 122620}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 122620}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 1022700}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 1.9591}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 2934.2}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.3446013519426732}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 0.3442680085561654}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 0.3439346651696575}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 0.494284909023302}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 0.4942849090233019}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.197321478927571e-21}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 0.9841866365016807}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 0.9841866365016807}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13751}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.13759}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.13766}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 0.07313}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 140.06}, {"name": "Monochloroethane", "categories": ["water"], "amount": 140.06}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 264500}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 14.425}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 22.73}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 31.035}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1318.5}, {"name": "Monolinuron", "categories": ["soil", "agricultural"], "amount": 6154.2}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 30671}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 8.1467}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.7204}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 8.6069}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 9.4933}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 102830}, {"name": "Naphthalene", "categories": ["air"], "amount": 3.7495}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 4522.1}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 146.5}, {"name": "Neburon", "categories": ["soil", "agricultural"], "amount": 2235.1}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9684.963772914325}, {"name": "Nickel II", "categories": ["air"], "amount": 9671.490845144066}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 9658.017917373805}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["soil"], "amount": 13934.09356054746}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 4.452235344870308e-16}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 27049.47608091963}, {"name": "Nickel II", "categories": ["water"], "amount": 27049.47608091963}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 771.44}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 778.12}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1182.3}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 3579.2}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 3579.2}, {"name": "Nitric acid", "categories": ["air"], "amount": 0.80887}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 0.84397}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 0.86731}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1027.7}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 1033}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1038.3}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 28.924}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 26696}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 26696}, {"name": "Nitrothal-isopropyl", "categories": ["soil", "agricultural"], "amount": 175.48}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 5037.5}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 861.51}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 0.50794}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 0.50793}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 0.0001306}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 800.87}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 800.87}, {"name": "Orbencarb", "categories": ["soil", "agricultural"], "amount": 557.39}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 834.13}, {"name": "Oxadixyl", "categories": ["soil", "agricultural"], "amount": 364.7}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 9580.6}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 1461.5}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 128.03}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 537.76}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 599.5}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1137.1}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 1674.8}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 396.4}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 49.959}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 239130}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 239130}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1095}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 495.46}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 351910}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 303.71}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 1089.3}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 7637.7}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 7428.8}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 1525100}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 1525100}, {"name": "Penflufen", "categories": ["air"], "amount": 8028.6}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 6051.6}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 618260}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00019751}, {"name": "Pentane", "categories": ["air"], "amount": 0.00042515}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.00065278}, {"name": "Pentane", "categories": ["water"], "amount": 128.91}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 19067}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 911.66}, {"name": "Permethrin", "categories": ["water"], "amount": 3919100}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Phenanthrene", "categories": ["air"], "amount": 357.66}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 54744}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 200.32}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 264.94}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 264.94}, {"name": "Phenol", "categories": ["air"], "amount": 336.11}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 407.28}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 17344}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 0.14501}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 17344}, {"name": "Phenol", "categories": ["water"], "amount": 17344}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 926.4}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 983.59}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 1040.8}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 14825}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 16974}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 19122}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 10124}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 10124}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 1209500}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 7240.6}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 233450}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 179.34}, {"name": "Phosphine", "categories": ["air"], "amount": 180.7}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 182.06}, {"name": "Phosphoric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5634}, {"name": "Phosphoric acid", "categories": ["air"], "amount": 2.5871}, {"name": "Phosphoric acid", "categories": ["air", "urban air close to ground"], "amount": 2.6107}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 10.724}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.037293}, {"name": "Phosphorus", "categories": ["air"], "amount": 0.038283}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 0.039273}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.0043676}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 0.0040152}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 2.0314}, {"name": "Phosphorus", "categories": ["water"], "amount": 2.0314}, {"name": "Phosphorus oxychloride", "categories": ["water"], "amount": 63.728}, {"name": "Phosphorus pentachloride", "categories": ["water"], "amount": 13653}, {"name": "Phosphorus trichloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.35462}, {"name": "Phosphorus trichloride", "categories": ["air"], "amount": 0.35497}, {"name": "Phosphorus trichloride", "categories": ["air", "urban air close to ground"], "amount": 0.35532}, {"name": "Phosphorus trichloride", "categories": ["water"], "amount": 20.943}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 0.54915}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 37320}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 37320}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 0.15552}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 15139}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 15139}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 0.021456}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 742.46}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 742.46}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ground-"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water", "ocean"], "amount": 0.00061687}, {"name": "Phthalate, dioctyl-", "categories": ["water", "surface water"], "amount": 100.4}, {"name": "Phthalate, dioctyl-", "categories": ["water"], "amount": 100.4}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1332.5}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 653120}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 653130}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 92.568}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 481.28}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 50121}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 422580}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 477.88}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 526.24}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 574.61}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 44637}, {"name": "Potassium chloride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0186}, {"name": "Potassium chloride", "categories": ["air"], "amount": 1.0402}, {"name": "Potassium chloride", "categories": ["air", "urban air close to ground"], "amount": 1.0618}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 82523}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 44.051}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 30059}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 64.33}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 28970}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1480.8}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 39466}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 0.033096}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 49.027}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9761}, {"name": "Propanal", "categories": ["air"], "amount": 1.9402}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.9044}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 459.99}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 0.12579}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 459.99}, {"name": "Propanal", "categories": ["water"], "amount": 459.99}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0028874}, {"name": "Propane", "categories": ["air"], "amount": 0.0032675}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.0036475}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 687.99}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.43211}, {"name": "Propanol", "categories": ["air"], "amount": 0.43518}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.43825}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 16.477}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 0.0060614}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 16.477}, {"name": "Propanol", "categories": ["water"], "amount": 16.477}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 72.369}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 1146.4}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00043885}, {"name": "Propene", "categories": ["air"], "amount": 0.00064861}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 0.00085836}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 192.8}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 4.9302e-05}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 192.8}, {"name": "Propene", "categories": ["water"], "amount": 192.8}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 124.24}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3067.1}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 821.48}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 828.44}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 297260}, {"name": "Propiconazole", "categories": ["water"], "amount": 297260}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 14.931}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 101.35}, {"name": "Propionic acid", "categories": ["air"], "amount": 105.87}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 110.4}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 0.012978}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 904.99}, {"name": "Propionic acid", "categories": ["water"], "amount": 904.99}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 308.16}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 51.718}, {"name": "Propylamine", "categories": ["air"], "amount": 86.132}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 120.55}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 0.0056025}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 5348.7}, {"name": "Propylamine", "categories": ["water"], "amount": 5348.7}, {"name": "Propylene glycol", "categories": ["soil", "agricultural"], "amount": 0.53627}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7584}, {"name": "Propylene oxide", "categories": ["air"], "amount": 3.763}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.7675}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 0.23443}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 125.14}, {"name": "Propylene oxide", "categories": ["water"], "amount": 125.14}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 62481}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 229.8}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 16711}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 1543}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1223.9}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1225}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 36647}, {"name": "Prothioconazole", "categories": ["water"], "amount": 36647}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 3702.4}, {"name": "Pyraclostrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2859.9}, {"name": "Pyraclostrobin", "categories": ["air"], "amount": 10354}, {"name": "Pyraclostrobin", "categories": ["soil", "agricultural"], "amount": 838.98}, {"name": "Pyraclostrobin", "categories": ["soil", "forestry"], "amount": 839.31}, {"name": "Pyraclostrobin", "categories": ["water", "ground-"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water", "surface water"], "amount": 1038000}, {"name": "Pyraclostrobin", "categories": ["water"], "amount": 1038000}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 1258024.37413318}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 1491.2}, {"name": "Pyrene", "categories": ["air"], "amount": 9749.7}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 2060600}, {"name": "Pyrethrin", "categories": ["soil", "agricultural"], "amount": 6444.8}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 286.6}, {"name": "Pyridate", "categories": ["soil", "agricultural"], "amount": 0.42523}, {"name": "Pyrifenox", "categories": ["soil", "agricultural"], "amount": 5604.7}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 368.97}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 100180}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 250620}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 1025.5}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 1037.7}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 30124000}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 30124000}, {"name": "Pyrithiobac sodium salt", "categories": ["soil", "agricultural"], "amount": 17573000}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Quinclorac", "categories": ["soil", "agricultural"], "amount": 1667.1}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 222.08}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1726.2}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 4704.6}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 2186.1}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 516680}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 7900.6}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 13533}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3671.6}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 3675}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 867770}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 867770}, {"name": "Rabon", "categories": ["soil", "agricultural"], "amount": 225.66}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6722.1}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 385}, {"name": "S-Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2968.3}, {"name": "S-Metolachlor", "categories": ["air"], "amount": 5374.9}, {"name": "S-Metolachlor", "categories": ["soil", "agricultural"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["soil", "forestry"], "amount": 6935.5}, {"name": "S-Metolachlor", "categories": ["water", "ground-"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water", "surface water"], "amount": 381030}, {"name": "S-Metolachlor", "categories": ["water"], "amount": 381030}, {"name": "Saflufenacil", "categories": ["air"], "amount": 62679.1081635172}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 70308.776830483}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 1258024.37413318}, {"name": "Sedaxane", "categories": ["air"], "amount": 884}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 142.95}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 54416}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.20033943698409}, {"name": "Selenium IV", "categories": ["air"], "amount": 30.16996657803469}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 30.13959371908529}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["soil"], "amount": 43.33602618374838}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 2.042628203989072e-19}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 86.08008602421901}, {"name": "Selenium IV", "categories": ["water"], "amount": 86.08008602421901}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 115.18}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 26.847}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 35845}, {"name": "Siduron", "categories": ["soil", "agricultural"], "amount": 3506.9}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.17374}, {"name": "Silicon", "categories": ["air"], "amount": 0.20893}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 0.24411}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["soil"], "amount": 0.0050755}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 9.1768e-06}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 4.6927}, {"name": "Silicon", "categories": ["water"], "amount": 4.6927}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 0.10719}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 0.068067}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 318.81}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 64156.89851832929}, {"name": "Silver I", "categories": ["air"], "amount": 64053.54859244861}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 63950.19866656793}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["soil"], "amount": 92141.3463001262}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 1.906840719972556e-16}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 177087.2896818751}, {"name": "Silver I", "categories": ["water"], "amount": 177087.2896818751}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 33432}, {"name": "Simazine", "categories": ["air"], "amount": 37102}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 64355}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 64380}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 666940}, {"name": "Simazine", "categories": ["water"], "amount": 666940}, {"name": "Sodium chlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.167}, {"name": "Sodium chlorate", "categories": ["air"], "amount": 4.1903}, {"name": "Sodium chlorate", "categories": ["air", "urban air close to ground"], "amount": 4.2136}, {"name": "Sodium chlorate", "categories": ["water", "ground-"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water", "ocean"], "amount": 7.867e-22}, {"name": "Sodium chlorate", "categories": ["water", "surface water"], "amount": 15.261}, {"name": "Sodium chlorate", "categories": ["water"], "amount": 15.261}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0726}, {"name": "Sodium formate", "categories": ["air"], "amount": 6.2701}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 6.4675}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 0.0006804}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 42.676}, {"name": "Sodium formate", "categories": ["water"], "amount": 42.676}, {"name": "Sodium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 55.779}, {"name": "Sodium hydroxide", "categories": ["air"], "amount": 56.438}, {"name": "Sodium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 57.098}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 191.7}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 191.8}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 191.9}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 30.195}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 31.648}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 33.102}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8771}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 3.0746}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 3.2721}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1534.3}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 3048.5}, {"name": "Starane", "categories": ["soil", "agricultural"], "amount": 30.662}, {"name": "Strontium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air", "non-urban air or from high stacks"], "amount": 6323.852734658427}, {"name": "Strontium", "categories": ["air"], "amount": 6317.818728103488}, {"name": "Strontium", "categories": ["air", "urban air close to ground"], "amount": 6311.78472154855}, {"name": "Strontium", "categories": ["soil", "agricultural"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "forestry"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil", "industrial"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["soil"], "amount": 9088.908871018328}, {"name": "Strontium", "categories": ["water", "ground-"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water", "ocean"], "amount": 3.98284211011834e-16}, {"name": "Strontium", "categories": ["water", "surface water"], "amount": 18073.40979134071}, {"name": "Strontium", "categories": ["water"], "amount": 18073.40979134071}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.18993}, {"name": "Styrene", "categories": ["air"], "amount": 0.22706}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.26419}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 0.017008}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 2645.2}, {"name": "Styrene", "categories": ["water"], "amount": 2645.2}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 5831.4}, {"name": "Sulfadiazine", "categories": ["water"], "amount": 420180}, {"name": "Sulfentrazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 18157}, {"name": "Sulfentrazone", "categories": ["soil", "agricultural"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["soil", "forestry"], "amount": 38066}, {"name": "Sulfentrazone", "categories": ["water", "ground-"], "amount": 159670}, {"name": "Sulfentrazone", "categories": ["water"], "amount": 159670}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 9943}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 15325}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.082316}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 0.082379}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 0.082442}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 261.48}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 261.76}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 262.04}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2006.8}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 2066.2}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2125.6}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 2417.9}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 13171}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 13171}, {"name": "TCMTB", "categories": ["soil", "agricultural"], "amount": 1666.5}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5777.7}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 2313}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 2381.9}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 301390}, {"name": "Tebuconazole", "categories": ["water"], "amount": 301390}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 19787}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 18620}, {"name": "Tebupirimfos", "categories": ["soil", "agricultural"], "amount": 3186400}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 9576}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 9634.3}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 15647}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 42358}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 42358}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2584100}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 2920300}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 2288900}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 53839000}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 25277}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 65748}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 116590000}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 116590000}, {"name": "Tellurium", "categories": ["air"], "amount": 91.131}, {"name": "Tembotrione", "categories": ["soil", "agricultural"], "amount": 1479700}, {"name": "Tembotrione", "categories": ["soil", "forestry"], "amount": 1479700}, {"name": "Tepraloxydim", "categories": ["soil", "agricultural"], "amount": 111.36}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 10489}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 402790}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 81970}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 4009}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1542}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.1557}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.1571}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 0.55345}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1260.2}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 1260.2}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 326.57}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 377.5}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 428.43}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 1443.813269434083}, {"name": "Thallium I", "categories": ["air"], "amount": 1442.57764721605}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 1441.342024998017}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["soil"], "amount": 2074.525969461307}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.117103489229396e-17}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 4147.520198066774}, {"name": "Thallium I", "categories": ["water"], "amount": 4147.520198066774}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 652.71}, {"name": "Thiabendazole", "categories": ["air"], "amount": 1238}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 1030.6}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 1074.9}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 92391}, {"name": "Thiabendazole", "categories": ["water"], "amount": 92391}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiamethoxam", "categories": ["air", "non-urban air or from high stacks"], "amount": 2713.2}, {"name": "Thiamethoxam", "categories": ["air"], "amount": 5387.7}, {"name": "Thiamethoxam", "categories": ["soil", "agricultural"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["soil", "forestry"], "amount": 18927}, {"name": "Thiamethoxam", "categories": ["water", "ground-"], "amount": 426440}, {"name": "Thiamethoxam", "categories": ["water"], "amount": 426440}, {"name": "Thidiazuron", "categories": ["soil", "agricultural"], "amount": 18694}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 43588}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 1782.9}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 6455.3}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 397.54}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 770900}, {"name": "Thiodicarb", "categories": ["water"], "amount": 770900}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 109.68}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 272.84}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 19.038}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 24258}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 24258}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 635.73}, {"name": "Thiram", "categories": ["air"], "amount": 3992.7}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 394.16}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 394.39}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 770570}, {"name": "Thiram", "categories": ["water"], "amount": 770570}, {"name": "Tin ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 204.5593640711217}, {"name": "Tin ion", "categories": ["air"], "amount": 203.8836811879324}, {"name": "Tin ion", "categories": ["air", "urban air close to ground"], "amount": 203.2079983047431}, {"name": "Tin ion", "categories": ["soil", "agricultural"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "forestry"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil", "industrial"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["soil"], "amount": 295.368440375196}, {"name": "Tin ion", "categories": ["water", "ground-"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water", "ocean"], "amount": 6.470692433736435e-19}, {"name": "Tin ion", "categories": ["water", "surface water"], "amount": 513.1042026334452}, {"name": "Tin ion", "categories": ["water"], "amount": 513.1042026334452}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.86698}, {"name": "Titanium ion", "categories": ["air"], "amount": 0.88373}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 0.90049}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 1.047}, {"name": "Titanium ion", "categories": ["soil"], "amount": 1.047}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26246}, {"name": "Toluene", "categories": ["air"], "amount": 0.27237}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 0.28227}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 973.2}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 0.024537}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 973.2}, {"name": "Toluene", "categories": ["water"], "amount": 973.2}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6449}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.6592}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 2.6734}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 1.2263}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 3281.6}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 3281.6}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 620.11}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 54.245}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 2585}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 6099.4}, {"name": "Triallate", "categories": ["air"], "amount": 2025}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 4959.4}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 548260}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 36563}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 134083.424359273}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 3.1613}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.2893}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 79.204}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 235.77}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 743790}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.065716}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.066499}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.067282}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 0.012096}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 269.69}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 269.69}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.41894}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 0.41978}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 0.42062}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 0.024456}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 15.307}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 15.307}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 2160.4}, {"name": "Tridemorph", "categories": ["soil", "agricultural"], "amount": 101.88}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 1.1921e-09}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 0.50608}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 0.50608}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 114788.39744717}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 31352.2268706266}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 6397025.32127929}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 6397024.94181671}, {"name": "Triflumizole", "categories": ["soil", "agricultural"], "amount": 6848.6}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 13217000}, {"name": "Triflumuron", "categories": ["air"], "amount": 21834000}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 17296000}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 1376500000}, {"name": "Triflumuron", "categories": ["water"], "amount": 1376500000}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2873.2}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 5038.2}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 1661800}, {"name": "Trifluralin", "categories": ["water"], "amount": 1661800}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 512.64}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 455.12}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.80112}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.6172}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 2.4332}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 0.0034074}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 126.11}, {"name": "Trimethylamine", "categories": ["water"], "amount": 126.11}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 423.57}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 8.4584}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 10957}, {"name": "Tungsten", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.089}, {"name": "Tungsten", "categories": ["air"], "amount": 13.367}, {"name": "Tungsten", "categories": ["air", "urban air close to ground"], "amount": 13.644}, {"name": "Tungsten", "categories": ["soil", "agricultural"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "forestry"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil", "industrial"], "amount": 17.432}, {"name": "Tungsten", "categories": ["soil"], "amount": 17.432}, {"name": "Tungsten", "categories": ["water", "ground-"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water", "ocean"], "amount": 2.1739e-20}, {"name": "Tungsten", "categories": ["water", "surface water"], "amount": 80.527}, {"name": "Tungsten", "categories": ["water"], "amount": 80.527}, {"name": "Urea", "categories": ["water", "ground-"], "amount": 2.9538}, {"name": "Urea", "categories": ["water", "ocean"], "amount": 2.2685e-09}, {"name": "Urea", "categories": ["water", "surface water"], "amount": 2.9538}, {"name": "Urea", "categories": ["water"], "amount": 2.9538}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 1.9173}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 0.039524}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 361.96}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 361.96}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.7501}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1713.1725270452}, {"name": "Vanadium V", "categories": ["air"], "amount": 1710.725551638173}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1708.278576231147}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 2464.904813447571}, {"name": "Vanadium V", "categories": ["soil"], "amount": 2464.904813447571}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 616.46}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.069182}, {"name": "Xylene", "categories": ["air"], "amount": 0.074368}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.079554}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 674.82}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 0.0062652}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 674.82}, {"name": "Xylene", "categories": ["water"], "amount": 674.82}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 716390}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 19340}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 630.046518675329}, {"name": "Zinc II", "categories": ["air"], "amount": 628.4971011469244}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 626.9476836185197}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 909.1832123770034}, {"name": "Zinc II", "categories": ["soil"], "amount": 909.1832123770035}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 1.305118122386737e-17}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 1659.512213981416}, {"name": "Zinc II", "categories": ["water"], "amount": 1659.512213981416}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1132.4}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 5429.1}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3066}, {"name": "Zirconium", "categories": ["air"], "amount": 1.6592}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 2.0118}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 31264.9425780874}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.066884}, {"name": "m-Xylene", "categories": ["air"], "amount": 0.081635}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.096385}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 0.0060516}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1062.6}, {"name": "m-Xylene", "categories": ["water"], "amount": 1062.6}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 71.045}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 71.514}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 71.982}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.16365}, {"name": "o-Xylene", "categories": ["air"], "amount": 0.18686}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 0.21007}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 0.014817}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1602.6}, {"name": "o-Xylene", "categories": ["water"], "amount": 1602.6}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.14887}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.14879}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.14871}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 0.013122}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 43.94}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 43.94}, {"name": "t-Butylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 112.52}, {"name": "t-Butylamine", "categories": ["air"], "amount": 153.11}, {"name": "t-Butylamine", "categories": ["air", "urban air close to ground"], "amount": 193.7}, {"name": "t-Butylamine", "categories": ["water", "ground-"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water", "ocean"], "amount": 0.21117}, {"name": "t-Butylamine", "categories": ["water", "surface water"], "amount": 6045.4}, {"name": "t-Butylamine", "categories": ["water"], "amount": 6045.4}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 106500}]}, {"unit": "MJ, net calorific value", "name": ["EF v3.1 EN15804", "energy resources: non-renewable", "abiotic depletion potential (ADP): fossil fuels"], "exchanges": [{"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.76}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}]}, {"unit": "kg P-Eq", "name": ["EF v3.1 EN15804", "eutrophication: freshwater", "fraction of nutrients reaching freshwater end compartment (P)"], "exchanges": [{"name": "Phosphate", "categories": ["water", "ground-"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "ground-, long-term"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water", "surface water"], "amount": 0.33}, {"name": "Phosphate", "categories": ["water"], "amount": 0.33}, {"name": "Phosphoric acid", "categories": ["water"], "amount": 0.32}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["soil"], "amount": 0.05}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1}, {"name": "Phosphorus", "categories": ["water"], "amount": 1}]}, {"unit": "kg N-Eq", "name": ["EF v3.1 EN15804", "eutrophication: marine", "fraction of nutrients reaching marine end compartment (N)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air"], "amount": 0.092}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 0.092}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ground-, long-term"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 0.778}, {"name": "Ammonium", "categories": ["water"], "amount": 0.778}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air"], "amount": 0.028}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 0.028}, {"name": "Nitrate", "categories": ["water", "ground-"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ground-, long-term"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "ocean"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water", "surface water"], "amount": 0.226}, {"name": "Nitrate", "categories": ["water"], "amount": 0.226}, {"name": "Nitric oxide", "categories": ["air"], "amount": 0.596}, {"name": "Nitrite", "categories": ["water", "ground-"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ground-, long-term"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "ocean"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water", "surface water"], "amount": 0.304}, {"name": "Nitrite", "categories": ["water"], "amount": 0.304}, {"name": "Nitrogen", "categories": ["water", "ground-"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ground-, long-term"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "ocean"], "amount": 1}, {"name": "Nitrogen", "categories": ["water", "surface water"], "amount": 1}, {"name": "Nitrogen", "categories": ["water"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 0.389}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 0.389}]}, {"unit": "mol N-Eq", "name": ["EF v3.1 EN15804", "eutrophication: terrestrial", "accumulated exceedance (AE)"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air"], "amount": 13.47}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 13.47}, {"name": "Nitrate", "categories": ["air", "low population density, long-term"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air"], "amount": 3.16065}, {"name": "Nitrate", "categories": ["air", "urban air close to ground"], "amount": 3.16065}, {"name": "Nitric oxide", "categories": ["air"], "amount": 6.532}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 4.26}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 4.26}]}, {"unit": "CTUh", "name": ["EF v3.1 EN15804", "human toxicity: carcinogenic", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 7.8862e-09}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6982e-08}, {"name": "Acenaphthene", "categories": ["air"], "amount": 8.0727e-07}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 1.5376e-06}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 1.1306e-07}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 1.7076e-06}, {"name": "Acenaphthene", "categories": ["water"], "amount": 9.1034e-07}, {"name": "Acenaphthylene", "categories": ["air"], "amount": 4.1637e-07}, {"name": "Acenaphthylene", "categories": ["water", "ground-"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water", "ocean"], "amount": 7.6598e-07}, {"name": "Acenaphthylene", "categories": ["water", "surface water"], "amount": 6.2595e-06}, {"name": "Acenaphthylene", "categories": ["water"], "amount": 3.5127e-06}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5678e-07}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 3.7191e-08}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 1.7082e-08}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 2.4795e-07}, {"name": "Acephate", "categories": ["water"], "amount": 1.24e-07}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.5407e-09}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 9.4492e-08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.8044e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 6.0872e-10}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 8.8213e-08}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 4.4411e-08}, {"name": "Acetamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.365e-07}, {"name": "Acetamide", "categories": ["soil", "agricultural"], "amount": 2.4563e-07}, {"name": "Acifluorfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3601e-06}, {"name": "Acifluorfen", "categories": ["soil", "agricultural"], "amount": 5.1633e-06}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2025e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.9484e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.4766e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.5744e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 4.5804e-06}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 2.3689e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 6.9366e-05}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.2282e-10}, {"name": "Aniline", "categories": ["air"], "amount": 1.7751e-08}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 3.478e-08}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 7.9172e-14}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 2.5239e-10}, {"name": "Aniline", "categories": ["water"], "amount": 1.2624e-10}, {"name": "Anthracene", "categories": ["air"], "amount": 1.518e-05}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 3.6721e-05}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 0.00016431}, {"name": "Anthracene", "categories": ["water"], "amount": 0.00010052}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5031e-05}, {"name": "Arsenic ion", "categories": ["air"], "amount": 4.3981e-05}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 5.2931e-05}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 5.6899e-05}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 1.8035e-05}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 3.7467e-05}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 3.0293e-06}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 3.4101e-05}, {"name": "Arsenic ion", "categories": ["water"], "amount": 1.8565e-05}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9763e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.191e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.4708e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.3951e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 6.9978e-07}, {"name": "Benz(a)anthracene", "categories": ["air"], "amount": 0.00039781}, {"name": "Benz(a)anthracene", "categories": ["water", "surface water"], "amount": 0.00074723}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.108e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 1.7964e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.382e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3114e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.3269e-08}, {"name": "Benzene", "categories": ["air"], "amount": 2.605e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 4.3774e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 9.5205e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 1.9663e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0308e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 1.9552e-08}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 9.105e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 5.5301e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.666e-08}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 3.2547e-07}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 6.0428e-07}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 4.3408e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.004e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.2191e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.813e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 7.1706e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 7.5281e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00049005}, {"name": "Benzo(a)pyrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0036372}, {"name": "Benzo(a)pyrene", "categories": ["air"], "amount": 0.0040765}, {"name": "Benzo(a)pyrene", "categories": ["air", "urban air close to ground"], "amount": 0.0045159}, {"name": "Benzo(a)pyrene", "categories": ["water", "surface water"], "amount": 0.0027748}, {"name": "Benzo(a)pyrene", "categories": ["water"], "amount": 0.0018127}, {"name": "Benzo(b)fluoranthene", "categories": ["air"], "amount": 0.00094942}, {"name": "Benzo(b)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0070628}, {"name": "Benzo(b)fluoranthene", "categories": ["water"], "amount": 0.0039079}, {"name": "Benzo(ghi)perylene", "categories": ["air"], "amount": 3.238e-05}, {"name": "Benzo(ghi)perylene", "categories": ["water", "surface water"], "amount": 6.3604e-05}, {"name": "Benzo(k)fluoranthene", "categories": ["air"], "amount": 0.00043293}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ground-"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "ocean"], "amount": 0.00029709}, {"name": "Benzo(k)fluoranthene", "categories": ["water", "surface water"], "amount": 0.0030155}, {"name": "Benzo(k)fluoranthene", "categories": ["water"], "amount": 0.0016563}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5713e-07}, {"name": "Beryllium II", "categories": ["air"], "amount": 6.1995e-06}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 1.1442e-05}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["soil"], "amount": 1.649e-25}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 9.2638e-28}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 8.1861e-28}, {"name": "Beryllium II", "categories": ["water"], "amount": 8.7249e-28}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6214e-08}, {"name": "Butadiene", "categories": ["air"], "amount": 5.7089e-07}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.1256e-06}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8382e-05}, {"name": "Cadmium II", "categories": ["air"], "amount": 3.1768e-05}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 3.5154e-05}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 9.0016e-05}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 8.8764e-07}, {"name": "Cadmium II", "categories": ["soil"], "amount": 4.5452e-05}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 1.0865e-07}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 1.7466e-06}, {"name": "Cadmium II", "categories": ["water"], "amount": 9.276e-07}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.0734e-10}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9396e-06}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 6.3574e-07}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 7.1696e-06}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 7.1696e-06}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8825e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 2.6747e-06}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.9611e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 4.4732e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 1.5071e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 7.7589e-07}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3995e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 2.0834e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 2.7673e-07}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 7.4667e-08}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 3.8874e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 2.317e-07}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8516e-08}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 5.4458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 5.4608e-10}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 2.8448e-10}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 1.3403e-07}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 6.8919e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium III", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium III", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.632e-05}, {"name": "Chromium VI", "categories": ["air"], "amount": 7.8078e-05}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.9836e-05}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 5.091e-05}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 4.9738e-05}, {"name": "Chromium VI", "categories": ["soil"], "amount": 5.0324e-05}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 6.3076e-06}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 9.9035e-05}, {"name": "Chromium VI", "categories": ["water"], "amount": 5.2671e-05}, {"name": "Chrysene", "categories": ["air"], "amount": 4.6622e-05}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 0.0010971}, {"name": "Cyanazine", "categories": ["soil", "agricultural"], "amount": 1.8551e-06}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.3095e-09}, {"name": "Dibenz(a,h)anthracene", "categories": ["air"], "amount": 0.0054479}, {"name": "Dibenz(a,h)anthracene", "categories": ["water", "surface water"], "amount": 0.012547}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 5.8749e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 2.1684e-05}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4448e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 3.9611e-08}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 4.4773e-08}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 4.7235e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 2.7011e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 1.3508e-08}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 34.558}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air"], "amount": 35.175}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["air", "urban air close to ground"], "amount": 35.793}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "agricultural"], "amount": 26.643}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "forestry"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil", "industrial"], "amount": 15.464}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["soil"], "amount": 21.053}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ground-"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "ocean"], "amount": 72.863}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water", "surface water"], "amount": 145.27}, {"name": "Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin", "categories": ["water"], "amount": 109.07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0162e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 4.2944e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 4.5725e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 3.3509e-06}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1263e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1.1728e-08}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1.2193e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 8.1867e-05}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9054e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 4.1699e-08}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 4.4343e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7046e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 3.4246e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 5.1446e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 3.9829e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 1.5655e-06}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 8.0268e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4893e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 4.0761e-08}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.663e-08}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 7.4866e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.1259e-06}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.4373e-06}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.2661e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 2.0213e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.516e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 6.5131e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 3.6676e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.837e-09}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6039e-07}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 6.4914e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.0379e-06}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 2.3053e-08}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 1.579e-06}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 8.0104e-07}, {"name": "Fluoranthene", "categories": ["air"], "amount": 5.2782e-06}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 8.7169e-05}, {"name": "Fluorene", "categories": ["air"], "amount": 1.589e-06}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 8.1038e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 5.1092e-08}, {"name": "Fomesafen", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2484e-05}, {"name": "Fomesafen", "categories": ["soil", "agricultural"], "amount": 1.1743e-05}, {"name": "Fomesafen", "categories": ["water", "surface water"], "amount": 2.0326e-05}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1967e-06}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.3216e-05}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5235e-05}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.111e-09}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 1.1682e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 5.8966e-08}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 2.5443e-13}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3297e-06}, {"name": "Furan", "categories": ["air"], "amount": 3.2039e-05}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.2749e-05}, {"name": "Furfural", "categories": ["air"], "amount": 7.595e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5746e-10}, {"name": "Hexane", "categories": ["air"], "amount": 9.5796e-10}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 1.7585e-09}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 1.5422e-10}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 1.9896e-09}, {"name": "Hexane", "categories": ["water"], "amount": 1.0719e-09}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 3.1471e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 1.2158e-05}, {"name": "Hydrazine", "categories": ["water"], "amount": 6.0946e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 0.00041862}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 0.00031052}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 0.0016924}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 0.0010015}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4331e-09}, {"name": "Isoprene", "categories": ["air"], "amount": 6.8126e-08}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.3482e-07}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.0447e-06}, {"name": "Lead II", "categories": ["air"], "amount": 4.9718e-06}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 4.8988e-06}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 1.5305e-05}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 8.4838e-09}, {"name": "Lead II", "categories": ["soil"], "amount": 7.657e-06}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 2.8366e-09}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 1.4352e-08}, {"name": "Lead II", "categories": ["water"], "amount": 8.5945e-09}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 1.9513e-05}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 2.3245e-08}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0010997}, {"name": "Mercury II", "categories": ["air"], "amount": 0.0010781}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.0010564}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.0036487}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 1.0704e-05}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.0018297}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 9.6342e-06}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 1.5157e-05}, {"name": "Mercury II", "categories": ["water"], "amount": 1.2395e-05}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6043e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 2.11e-06}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 2.6158e-06}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2689e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 5.5192e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 7.7695e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.4066e-09}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4643e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3525e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0473e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 4.1784e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 4.3094e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 1.0508e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 3.7169e-05}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 2.3839e-05}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 8.8569e-06}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2242e-08}, {"name": "Monochloroethane", "categories": ["air"], "amount": 2.5902e-08}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 3.9562e-08}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 6.3832e-09}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 2.2263e-08}, {"name": "Monochloroethane", "categories": ["water"], "amount": 1.4323e-08}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 7.9134e-09}, {"name": "Naphthalene", "categories": ["air"], "amount": 8.9536e-07}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.7348e-06}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9545e-05}, {"name": "Nickel II", "categories": ["air"], "amount": 1.9757e-05}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.9969e-05}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 2.8605e-05}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 6.1262e-06}, {"name": "Nickel II", "categories": ["soil"], "amount": 1.7366e-05}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 6.1247e-07}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 1.1893e-05}, {"name": "Nickel II", "categories": ["water"], "amount": 6.2525e-06}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2513e-07}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 8.6974e-07}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 1.4143e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 1.1202e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 1.0596e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 5.354e-07}, {"name": "Phenanthrene", "categories": ["air"], "amount": 3.426e-06}, {"name": "Phenanthrene", "categories": ["water", "surface water"], "amount": 3.4015e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1434e-06}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 8.337e-06}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 8.5306e-06}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 1.4545e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 7.6378e-06}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 5.7795e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 5.8088e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 2.9333e-08}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 7.2294e-07}, {"name": "Polychlorinated biphenyls", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3043e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air"], "amount": 4.5907e-05}, {"name": "Polychlorinated biphenyls", "categories": ["air", "urban air close to ground"], "amount": 4.8772e-05}, {"name": "Polychlorinated biphenyls", "categories": ["water"], "amount": 0.0014988}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.1557e-06}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 1.4437e-06}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.6116e-08}, {"name": "Propylene oxide", "categories": ["air"], "amount": 2.2145e-07}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.6678e-07}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.9196e-09}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 3.8607e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 1.955e-07}, {"name": "Pyrene", "categories": ["air"], "amount": 3.1162e-06}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.5361e-05}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 2.6072e-06}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6106e-08}, {"name": "Styrene", "categories": ["air"], "amount": 5.1149e-07}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 1.0069e-06}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.4343e-09}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 1.2612e-08}, {"name": "Styrene", "categories": ["water"], "amount": 7.0233e-09}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7818e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 2.813e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 3.8443e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 1.1693e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 5.0707e-07}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 3.12e-07}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5e-12}, {"name": "Toluene", "categories": ["air"], "amount": 6.4853e-12}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 6.4707e-12}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 9.6283e-11}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 4.0023e-09}, {"name": "Toluene", "categories": ["water"], "amount": 2.0493e-09}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8836e-09}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 2.7517e-08}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 4.815e-08}, {"name": "Trichloroethylene", "categories": ["water", "ground-"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water", "ocean"], "amount": 2.2348e-09}, {"name": "Trichloroethylene", "categories": ["water", "surface water"], "amount": 4.0901e-08}, {"name": "Trichloroethylene", "categories": ["water"], "amount": 2.1568e-08}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7784e-07}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 3.8789e-07}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 4.2797e-08}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 2.0909e-06}, {"name": "Trifluralin", "categories": ["water"], "amount": 1.3012e-06}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4501e-10}, {"name": "Xylene", "categories": ["air"], "amount": 4.7052e-09}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 8.9653e-09}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 3.1664e-10}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 6.2082e-09}, {"name": "Xylene", "categories": ["water"], "amount": 3.2624e-09}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 4.0431e-09}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8116e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6851e-06}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 5.6569e-06}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 8.6288e-06}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3262e-08}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 5.9568e-08}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.0587e-07}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.1669e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 1.4903e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 8.0349e-09}]}, {"unit": "CTUh", "name": ["EF v3.1 EN15804", "human toxicity: non-carcinogenic", "comparative toxic unit for human (CTUh)"], "exchanges": [{"name": "1,2-Dichlorobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3694e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air"], "amount": 4.1652e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["air", "urban air close to ground"], "amount": 5.961e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ground-"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "ocean"], "amount": 9.0765e-08}, {"name": "1,2-Dichlorobenzene", "categories": ["water", "surface water"], "amount": 3.5555e-07}, {"name": "1,2-Dichlorobenzene", "categories": ["water"], "amount": 2.2316e-07}, {"name": "1,3-Dioxolan-2-one", "categories": ["water"], "amount": 1.6627e-08}, {"name": "1-Pentanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5798e-09}, {"name": "1-Pentanol", "categories": ["air"], "amount": 3.3235e-08}, {"name": "1-Pentanol", "categories": ["air", "urban air close to ground"], "amount": 6.289e-08}, {"name": "1-Pentanol", "categories": ["water", "ground-"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water", "ocean"], "amount": 7.7269e-11}, {"name": "1-Pentanol", "categories": ["water", "surface water"], "amount": 7.3775e-09}, {"name": "1-Pentanol", "categories": ["water"], "amount": 3.7274e-09}, {"name": "2,2,4-Trimethyl pentane", "categories": ["air"], "amount": 2.0736e-10}, {"name": "2,4-D", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2675e-06}, {"name": "2,4-D", "categories": ["soil", "agricultural"], "amount": 1.5974e-06}, {"name": "2,4-D", "categories": ["soil", "forestry"], "amount": 2.5687e-07}, {"name": "2,4-D", "categories": ["water", "ground-"], "amount": 3.2106e-06}, {"name": "2,4-D", "categories": ["water"], "amount": 1.6204e-06}, {"name": "2,4-D ester", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "2,4-DB", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7503e-06}, {"name": "2,4-DB", "categories": ["soil", "agricultural"], "amount": 3.9312e-07}, {"name": "2,4-DB", "categories": ["water", "ground-"], "amount": 7.0824e-06}, {"name": "2,4-DB", "categories": ["water", "surface water"], "amount": 7.0824e-06}, {"name": "2,4-di-tert-butylphenol", "categories": ["water"], "amount": 4.1001e-07}, {"name": "2-Amino-3-chloro-1,4-naphthoquinone", "categories": ["soil", "agricultural"], "amount": 7.2081e-06}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.8215e-10}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 1.5044e-09}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 2.0266e-09}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ground-"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water", "ocean"], "amount": 2.3996e-11}, {"name": "2-Methyl-1-propanol", "categories": ["water", "surface water"], "amount": 1.9908e-08}, {"name": "2-Methyl-1-propanol", "categories": ["water"], "amount": 9.9659e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4829e-11}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.9132e-09}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 3.7816e-09}, {"name": "2-Methyl-2-butene", "categories": ["water", "ground-"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water", "ocean"], "amount": 5.9573e-10}, {"name": "2-Methyl-2-butene", "categories": ["water", "surface water"], "amount": 2.0945e-08}, {"name": "2-Methyl-2-butene", "categories": ["water"], "amount": 1.077e-08}, {"name": "2-Phenylphenol", "categories": ["soil", "agricultural"], "amount": 6.0013e-06}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2336e-09}, {"name": "2-Propanol", "categories": ["air"], "amount": 3.8458e-09}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 5.4579e-09}, {"name": "2-Propanol", "categories": ["water", "ground-"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water", "ocean"], "amount": 4.3296e-11}, {"name": "2-Propanol", "categories": ["water", "surface water"], "amount": 3.4924e-08}, {"name": "2-Propanol", "categories": ["water"], "amount": 1.7484e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1306e-08}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 3.259e-07}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 6.2049e-07}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ground-"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water", "ocean"], "amount": 6.9604e-10}, {"name": "3-Methyl-1-butanol", "categories": ["water", "surface water"], "amount": 7.0075e-08}, {"name": "3-Methyl-1-butanol", "categories": ["water"], "amount": 3.5385e-08}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ground-"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "ocean"], "amount": 3.9349e-10}, {"name": "4-Methyl-2-pentanol", "categories": ["water", "surface water"], "amount": 1.3085e-07}, {"name": "4-Methyl-2-pentanol", "categories": ["water"], "amount": 6.5622e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5749e-10}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 1.0969e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 2.0363e-09}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ground-"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "ocean"], "amount": 2.8819e-11}, {"name": "4-Methyl-2-pentanone", "categories": ["water", "surface water"], "amount": 1.1163e-08}, {"name": "4-Methyl-2-pentanone", "categories": ["water"], "amount": 5.5957e-09}, {"name": "8-Quinolinol", "categories": ["soil", "agricultural"], "amount": 3.0663e-11}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ground-"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "ocean"], "amount": 6.4882e-09}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water", "surface water"], "amount": 4.448e-07}, {"name": "AOX, Adsorbable Organic Halogen", "categories": ["water"], "amount": 2.3273e-07}, {"name": "Abamectin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.80160167313958e-05}, {"name": "Abamectin", "categories": ["air"], "amount": 0.000472506721099211}, {"name": "Abamectin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Abamectin", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Abamectin", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Abamectin", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Acenaphthene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7232e-09}, {"name": "Acenaphthene", "categories": ["air"], "amount": 2.8557e-08}, {"name": "Acenaphthene", "categories": ["air", "urban air close to ground"], "amount": 5.4391e-08}, {"name": "Acenaphthene", "categories": ["water", "ground-"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water", "ocean"], "amount": 3.9995e-09}, {"name": "Acenaphthene", "categories": ["water", "surface water"], "amount": 6.0407e-08}, {"name": "Acenaphthene", "categories": ["water"], "amount": 3.2203e-08}, {"name": "Acephate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071546}, {"name": "Acephate", "categories": ["soil", "agricultural"], "amount": 0.00010363}, {"name": "Acephate", "categories": ["soil", "forestry"], "amount": 4.7596e-05}, {"name": "Acephate", "categories": ["water", "ground-"], "amount": 0.00069086}, {"name": "Acephate", "categories": ["water"], "amount": 0.00034549}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3835e-08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 4.8498e-07}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 9.2612e-07}, {"name": "Acetaldehyde", "categories": ["water", "ground-"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water", "ocean"], "amount": 3.1243e-09}, {"name": "Acetaldehyde", "categories": ["water", "surface water"], "amount": 4.5275e-07}, {"name": "Acetaldehyde", "categories": ["water"], "amount": 2.2794e-07}, {"name": "Acetamiprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3615e-07}, {"name": "Acetamiprid", "categories": ["air"], "amount": 2.4564e-06}, {"name": "Acetamiprid", "categories": ["soil", "agricultural"], "amount": 4.5586e-07}, {"name": "Acetamiprid", "categories": ["soil", "forestry"], "amount": 6.9899e-08}, {"name": "Acetamiprid", "categories": ["water", "ground-"], "amount": 1.9225e-06}, {"name": "Acetamiprid", "categories": ["water"], "amount": 9.6491e-07}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1109e-07}, {"name": "Acetic acid", "categories": ["air"], "amount": 1.0702e-06}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 2.0294e-06}, {"name": "Acetic acid", "categories": ["water", "ground-"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water", "ocean"], "amount": 4.7749e-12}, {"name": "Acetic acid", "categories": ["water", "surface water"], "amount": 1.9652e-08}, {"name": "Acetic acid", "categories": ["water"], "amount": 9.8283e-09}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5854e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air"], "amount": 5.525e-06}, {"name": "Acetic acid, trifluoro-", "categories": ["air", "urban air close to ground"], "amount": 8.4645e-06}, {"name": "Acetochlor", "categories": ["soil", "agricultural"], "amount": 1.0962e-05}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9303e-09}, {"name": "Acetone", "categories": ["air"], "amount": 5.3529e-09}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 8.7755e-09}, {"name": "Acetone", "categories": ["water", "ground-"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water", "ocean"], "amount": 8.8955e-11}, {"name": "Acetone", "categories": ["water", "surface water"], "amount": 8.6041e-09}, {"name": "Acetone", "categories": ["water"], "amount": 4.3465e-09}, {"name": "Acetonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3516e-09}, {"name": "Acetonitrile", "categories": ["air"], "amount": 7.3813e-09}, {"name": "Acetonitrile", "categories": ["air", "urban air close to ground"], "amount": 1.1411e-08}, {"name": "Acetonitrile", "categories": ["water", "ground-"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water", "ocean"], "amount": 1.7337e-10}, {"name": "Acetonitrile", "categories": ["water", "surface water"], "amount": 2.4188e-08}, {"name": "Acetonitrile", "categories": ["water"], "amount": 1.2181e-08}, {"name": "Aclonifen", "categories": ["soil", "agricultural"], "amount": 4.833e-07}, {"name": "Acrolein", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.1404e-05}, {"name": "Acrolein", "categories": ["air"], "amount": 0.00072772}, {"name": "Acrolein", "categories": ["air", "urban air close to ground"], "amount": 0.001404}, {"name": "Acrolein", "categories": ["water"], "amount": 3.3724e-05}, {"name": "Acrylate", "categories": ["water", "ground-"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water", "ocean"], "amount": 2.7936e-11}, {"name": "Acrylate", "categories": ["water", "surface water"], "amount": 1.2439e-07}, {"name": "Acrylate", "categories": ["water"], "amount": 6.2211e-08}, {"name": "Acrylic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4769e-08}, {"name": "Acrylic acid", "categories": ["air"], "amount": 2.9424e-07}, {"name": "Acrylic acid", "categories": ["air", "urban air close to ground"], "amount": 5.4372e-07}, {"name": "Acrylonitrile", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4363e-07}, {"name": "Acrylonitrile", "categories": ["air"], "amount": 1.8174e-06}, {"name": "Acrylonitrile", "categories": ["air", "urban air close to ground"], "amount": 3.2912e-06}, {"name": "Acrylonitrile", "categories": ["water", "ground-"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water", "ocean"], "amount": 1.2103e-07}, {"name": "Acrylonitrile", "categories": ["water", "surface water"], "amount": 8.1369e-07}, {"name": "Acrylonitrile", "categories": ["water"], "amount": 4.6736e-07}, {"name": "Alanycarb", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Aldehydes, unspecified", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.1693e-09}, {"name": "Aldehydes, unspecified", "categories": ["air"], "amount": 3.0072e-08}, {"name": "Aldehydes, unspecified", "categories": ["air", "urban air close to ground"], "amount": 5.7223e-08}, {"name": "Aldicarb", "categories": ["soil", "agricultural"], "amount": 4.0856e-06}, {"name": "Aldrin", "categories": ["soil", "agricultural"], "amount": 0.0002194}, {"name": "Allyl chloride", "categories": ["water"], "amount": 3.8977e-08}, {"name": "Alpha-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0865e-06}, {"name": "Alpha-cypermethrin", "categories": ["air"], "amount": 1.3949e-06}, {"name": "Alpha-cypermethrin", "categories": ["soil", "agricultural"], "amount": 6.6206e-08}, {"name": "Alpha-cypermethrin", "categories": ["soil", "forestry"], "amount": 8.5959e-10}, {"name": "Alpha-cypermethrin", "categories": ["water"], "amount": 2.787e-06}, {"name": "Aluminium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.194e-09}, {"name": "Aluminium III", "categories": ["air"], "amount": 2.0848e-08}, {"name": "Aluminium III", "categories": ["air", "urban air close to ground"], "amount": 3.3502e-08}, {"name": "Aluminium III", "categories": ["soil", "agricultural"], "amount": 1.7386e-09}, {"name": "Aluminium III", "categories": ["soil", "forestry"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil", "industrial"], "amount": 3.3489e-10}, {"name": "Aluminium III", "categories": ["soil"], "amount": 1.0367e-09}, {"name": "Aluminium III", "categories": ["water", "ground-"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water", "ocean"], "amount": 3.0016e-13}, {"name": "Aluminium III", "categories": ["water", "surface water"], "amount": 1.546e-09}, {"name": "Aluminium III", "categories": ["water"], "amount": 7.7315e-10}, {"name": "Aluminium hydroxide", "categories": ["water"], "amount": 1.7651e-07}, {"name": "Ametryn", "categories": ["soil", "agricultural"], "amount": 1.6618e-06}, {"name": "Amidosulfuron", "categories": ["soil", "agricultural"], "amount": 4.998e-08}, {"name": "Amine oxides", "categories": ["air"], "amount": 0.012599}, {"name": "Amitraz", "categories": ["soil", "agricultural"], "amount": 2.7112e-10}, {"name": "Ammonia", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5269e-09}, {"name": "Ammonia", "categories": ["air"], "amount": 1.3262e-08}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 2.4997e-08}, {"name": "Ammonia", "categories": ["soil", "industrial"], "amount": 4.7487e-11}, {"name": "Ammonium", "categories": ["water", "ground-"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water", "ocean"], "amount": 1.5509e-12}, {"name": "Ammonium", "categories": ["water", "surface water"], "amount": 3.9313e-09}, {"name": "Ammonium", "categories": ["water"], "amount": 1.9664e-09}, {"name": "Ammonium sulfate", "categories": ["water"], "amount": 8.2371e-10}, {"name": "Anilazine", "categories": ["soil", "agricultural"], "amount": 2.5042e-09}, {"name": "Aniline", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3736e-07}, {"name": "Aniline", "categories": ["air"], "amount": 8.9947e-07}, {"name": "Aniline", "categories": ["air", "urban air close to ground"], "amount": 1.6616e-06}, {"name": "Aniline", "categories": ["water", "ground-"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water", "ocean"], "amount": 2.4295e-11}, {"name": "Aniline", "categories": ["water", "surface water"], "amount": 8.0647e-08}, {"name": "Aniline", "categories": ["water"], "amount": 4.0336e-08}, {"name": "Anthracene", "categories": ["air"], "amount": 9.3975e-09}, {"name": "Anthracene", "categories": ["water", "ground-"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water", "ocean"], "amount": 2.2733e-08}, {"name": "Anthracene", "categories": ["water", "surface water"], "amount": 1.0172e-07}, {"name": "Anthracene", "categories": ["water"], "amount": 6.2226e-08}, {"name": "Anthraquinone", "categories": ["soil", "agricultural"], "amount": 7.749e-09}, {"name": "Antimony ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.304e-05}, {"name": "Antimony ion", "categories": ["air"], "amount": 4.4099e-05}, {"name": "Antimony ion", "categories": ["air", "urban air close to ground"], "amount": 4.5158e-05}, {"name": "Antimony ion", "categories": ["soil", "agricultural"], "amount": 2.9464e-05}, {"name": "Antimony ion", "categories": ["soil", "forestry"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil", "industrial"], "amount": 1.7745e-05}, {"name": "Antimony ion", "categories": ["soil"], "amount": 2.3604e-05}, {"name": "Antimony ion", "categories": ["water", "ground-"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water", "ocean"], "amount": 1.6748e-06}, {"name": "Antimony ion", "categories": ["water", "surface water"], "amount": 3.4909e-05}, {"name": "Antimony ion", "categories": ["water"], "amount": 1.8292e-05}, {"name": "Arsenic ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsenic ion", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsenic ion", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Arsenic ion", "categories": ["soil", "agricultural"], "amount": 0.0042147}, {"name": "Arsenic ion", "categories": ["soil", "forestry"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil", "industrial"], "amount": 0.0013359}, {"name": "Arsenic ion", "categories": ["soil"], "amount": 0.0027753}, {"name": "Arsenic ion", "categories": ["water", "ground-"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water", "ocean"], "amount": 0.00022439}, {"name": "Arsenic ion", "categories": ["water", "surface water"], "amount": 0.002526}, {"name": "Arsenic ion", "categories": ["water"], "amount": 0.0013752}, {"name": "Arsine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0024761}, {"name": "Arsine", "categories": ["air"], "amount": 0.0024884}, {"name": "Arsine", "categories": ["air", "urban air close to ground"], "amount": 0.0025007}, {"name": "Asulam", "categories": ["soil", "agricultural"], "amount": 1.0302e-07}, {"name": "Atrazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.291e-06}, {"name": "Atrazine", "categories": ["soil", "agricultural"], "amount": 3.6991e-07}, {"name": "Atrazine", "categories": ["soil", "forestry"], "amount": 2.8643e-08}, {"name": "Atrazine", "categories": ["water", "ground-"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water", "surface water"], "amount": 1.6173e-06}, {"name": "Atrazine", "categories": ["water"], "amount": 8.1122e-07}, {"name": "Azinphos-methyl", "categories": ["soil", "agricultural"], "amount": 2.4975e-06}, {"name": "Azoxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1645e-06}, {"name": "Azoxystrobin", "categories": ["soil", "agricultural"], "amount": 5.076e-08}, {"name": "Azoxystrobin", "categories": ["soil", "forestry"], "amount": 1.0448e-08}, {"name": "Azoxystrobin", "categories": ["water", "ground-"], "amount": 9.2451e-07}, {"name": "Azoxystrobin", "categories": ["water"], "amount": 4.6497e-07}, {"name": "Barium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1144e-05}, {"name": "Barium II", "categories": ["air"], "amount": 1.1359e-05}, {"name": "Barium II", "categories": ["air", "urban air close to ground"], "amount": 1.1574e-05}, {"name": "Barium II", "categories": ["soil", "agricultural"], "amount": 7.1008e-06}, {"name": "Barium II", "categories": ["soil", "forestry"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil", "industrial"], "amount": 7.0923e-06}, {"name": "Barium II", "categories": ["soil"], "amount": 7.0965e-06}, {"name": "Barium II", "categories": ["water", "ground-"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water", "ocean"], "amount": 2.7773e-06}, {"name": "Barium II", "categories": ["water", "surface water"], "amount": 1.4184e-05}, {"name": "Barium II", "categories": ["water"], "amount": 8.4805e-06}, {"name": "Benalaxyl", "categories": ["soil", "agricultural"], "amount": 1.8323e-07}, {"name": "Benfluralin", "categories": ["soil", "agricultural"], "amount": 6.6447e-06}, {"name": "Benomyl", "categories": ["soil", "agricultural"], "amount": 3.6063e-08}, {"name": "Benoxacor", "categories": ["soil", "agricultural"], "amount": 7.3695e-06}, {"name": "Bensulfuron methyl ester", "categories": ["soil", "agricultural"], "amount": 7.3357e-08}, {"name": "Bentazone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.8446e-07}, {"name": "Bentazone", "categories": ["soil", "agricultural"], "amount": 3.2506e-07}, {"name": "Bentazone", "categories": ["water", "ground-"], "amount": 1.3545e-06}, {"name": "Bentazone", "categories": ["water", "surface water"], "amount": 1.3545e-06}, {"name": "Benthiavalicarb", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Benthiavalicarb-isopropyl", "categories": ["soil", "agricultural"], "amount": 1.3348e-08}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3127e-09}, {"name": "Benzaldehyde", "categories": ["air"], "amount": 2.0158e-08}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": 3.8002e-08}, {"name": "Benzaldehyde", "categories": ["water"], "amount": 1.3119e-08}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9738e-08}, {"name": "Benzene", "categories": ["air"], "amount": 1.5518e-07}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 2.6063e-07}, {"name": "Benzene", "categories": ["water", "ground-"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water", "ocean"], "amount": 6.6204e-09}, {"name": "Benzene", "categories": ["water", "surface water"], "amount": 2.006e-07}, {"name": "Benzene", "categories": ["water"], "amount": 1.0361e-07}, {"name": "Benzene, chloro-", "categories": ["water", "ground-"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water", "ocean"], "amount": 3.7914e-09}, {"name": "Benzene, chloro-", "categories": ["water", "surface water"], "amount": 4.8776e-08}, {"name": "Benzene, chloro-", "categories": ["water"], "amount": 2.6284e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6931e-09}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.0807e-08}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.992e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ground-"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water", "ocean"], "amount": 1.8444e-09}, {"name": "Benzene, ethyl-", "categories": ["water", "surface water"], "amount": 4.6506e-08}, {"name": "Benzene, ethyl-", "categories": ["water"], "amount": 2.4175e-08}, {"name": "Benzene, hexachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3323e-05}, {"name": "Benzene, hexachloro-", "categories": ["air"], "amount": 2.4547e-05}, {"name": "Benzene, hexachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.5771e-05}, {"name": "Benzene, hexachloro-", "categories": ["water"], "amount": 0.00016776}, {"name": "Benzene, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4183e-05}, {"name": "Benzene, pentachloro-", "categories": ["air"], "amount": 2.5668e-05}, {"name": "Benzene, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 2.7153e-05}, {"name": "Benzene, pentachloro-", "categories": ["water"], "amount": 6.6765e-05}, {"name": "Benzoic acid", "categories": ["soil", "agricultural"], "amount": 3.14e-10}, {"name": "Benzovindiflupyr", "categories": ["air"], "amount": 6.3702e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "agricultural"], "amount": 3.6265e-06}, {"name": "Benzovindiflupyr", "categories": ["soil", "forestry"], "amount": 3.4814e-07}, {"name": "Benzovindiflupyr", "categories": ["water", "ground-"], "amount": 2.0238e-05}, {"name": "Benzovindiflupyr", "categories": ["water"], "amount": 1.0409e-05}, {"name": "Benzyl alcohol", "categories": ["water", "ground-"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water", "ocean"], "amount": 1.9327e-11}, {"name": "Benzyl alcohol", "categories": ["water", "surface water"], "amount": 4.2401e-08}, {"name": "Benzyl alcohol", "categories": ["water"], "amount": 2.121e-08}, {"name": "Beryllium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00071315}, {"name": "Beryllium II", "categories": ["air"], "amount": 0.0045963}, {"name": "Beryllium II", "categories": ["air", "urban air close to ground"], "amount": 0.0084794}, {"name": "Beryllium II", "categories": ["soil", "agricultural"], "amount": 7.6993e-06}, {"name": "Beryllium II", "categories": ["soil", "forestry"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil", "industrial"], "amount": 1.3877e-08}, {"name": "Beryllium II", "categories": ["soil"], "amount": 3.8566e-06}, {"name": "Beryllium II", "categories": ["water", "ground-"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water", "ocean"], "amount": 3.0825e-09}, {"name": "Beryllium II", "categories": ["water", "surface water"], "amount": 2.5246e-08}, {"name": "Beryllium II", "categories": ["water"], "amount": 1.4164e-08}, {"name": "Beta-cyfluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6376e-06}, {"name": "Beta-cyfluthrin", "categories": ["soil", "agricultural"], "amount": 5.051e-08}, {"name": "Beta-cyfluthrin", "categories": ["soil", "forestry"], "amount": 7.1451e-10}, {"name": "Beta-cyfluthrin", "categories": ["water", "ground-"], "amount": 1.4164e-05}, {"name": "Beta-cyfluthrin", "categories": ["water"], "amount": 7.6811e-06}, {"name": "Beta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Bifenox", "categories": ["soil", "agricultural"], "amount": 1.5723e-08}, {"name": "Bifenthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2179e-06}, {"name": "Bifenthrin", "categories": ["air"], "amount": 7.0802e-06}, {"name": "Bifenthrin", "categories": ["soil", "agricultural"], "amount": 5.4717e-07}, {"name": "Bifenthrin", "categories": ["soil", "forestry"], "amount": 1.1858e-07}, {"name": "Bifenthrin", "categories": ["water", "ground-"], "amount": 0.00012724}, {"name": "Bifenthrin", "categories": ["water"], "amount": 7.4311e-05}, {"name": "Bisphenol A", "categories": ["water"], "amount": 6.0909e-08}, {"name": "Bitertanol", "categories": ["soil", "agricultural"], "amount": 2.9532e-07}, {"name": "Boric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7149e-07}, {"name": "Boric acid", "categories": ["air"], "amount": 4.2177e-07}, {"name": "Boric acid", "categories": ["air", "urban air close to ground"], "amount": 5.7206e-07}, {"name": "Boscalid", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Bromine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7763e-07}, {"name": "Bromine", "categories": ["air"], "amount": 2.7133e-07}, {"name": "Bromine", "categories": ["air", "urban air close to ground"], "amount": 3.6503e-07}, {"name": "Bromine", "categories": ["soil", "agricultural"], "amount": 1.3805e-07}, {"name": "Bromine", "categories": ["soil", "forestry"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil", "industrial"], "amount": 1.3259e-07}, {"name": "Bromine", "categories": ["soil"], "amount": 1.3532e-07}, {"name": "Bromine", "categories": ["water", "ground-"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water", "ocean"], "amount": 1.4382e-08}, {"name": "Bromine", "categories": ["water", "surface water"], "amount": 1.4269e-07}, {"name": "Bromine", "categories": ["water"], "amount": 7.8537e-08}, {"name": "Bromopropane", "categories": ["air"], "amount": 9.6066e-09}, {"name": "Bromopropane", "categories": ["water"], "amount": 3.3586e-08}, {"name": "Bromopropylate", "categories": ["soil", "agricultural"], "amount": 5.495e-07}, {"name": "Bromoxynil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.09e-07}, {"name": "Bromoxynil", "categories": ["soil", "agricultural"], "amount": 4.6086e-07}, {"name": "Bromoxynil", "categories": ["water", "ground-"], "amount": 3.2426e-06}, {"name": "Bromoxynil", "categories": ["water", "surface water"], "amount": 3.2426e-06}, {"name": "Bromoxynil octanoate", "categories": ["soil", "agricultural"], "amount": 8.9811e-08}, {"name": "Bromuconazole", "categories": ["soil", "agricultural"], "amount": 3.0419e-06}, {"name": "Bupirimate", "categories": ["soil", "agricultural"], "amount": 2.7776e-07}, {"name": "Buprofezin", "categories": ["soil", "agricultural"], "amount": 1.8645e-06}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0821e-11}, {"name": "Butadiene", "categories": ["air"], "amount": 1.2301e-09}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 2.4194e-09}, {"name": "Butafenacil", "categories": ["soil", "agricultural"], "amount": 1.5718e-06}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.782e-10}, {"name": "Butane", "categories": ["air"], "amount": 7.3545e-10}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 1.2927e-09}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.5756e-09}, {"name": "Butanol", "categories": ["air"], "amount": 4.232e-09}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 5.8883e-09}, {"name": "Butanol", "categories": ["water", "ground-"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water", "ocean"], "amount": 6.3307e-11}, {"name": "Butanol", "categories": ["water", "surface water"], "amount": 5.732e-08}, {"name": "Butanol", "categories": ["water"], "amount": 2.8692e-08}, {"name": "Butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6924e-11}, {"name": "Butene", "categories": ["air"], "amount": 3.3512e-10}, {"name": "Butene", "categories": ["air", "urban air close to ground"], "amount": 6.5332e-10}, {"name": "Butene", "categories": ["water", "ground-"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water", "ocean"], "amount": 2.9221e-11}, {"name": "Butene", "categories": ["water", "surface water"], "amount": 2.2832e-09}, {"name": "Butene", "categories": ["water"], "amount": 1.1562e-09}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6895e-10}, {"name": "Butyl acetate", "categories": ["air"], "amount": 2.242e-09}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 3.9151e-09}, {"name": "Butyl acetate", "categories": ["water", "ground-"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water", "ocean"], "amount": 8.0793e-11}, {"name": "Butyl acetate", "categories": ["water", "surface water"], "amount": 1.4569e-08}, {"name": "Butyl acetate", "categories": ["water"], "amount": 7.325e-09}, {"name": "Cadmium II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0074234}, {"name": "Cadmium II", "categories": ["air"], "amount": 0.0072841}, {"name": "Cadmium II", "categories": ["air", "urban air close to ground"], "amount": 0.0071449}, {"name": "Cadmium II", "categories": ["soil", "agricultural"], "amount": 0.024151}, {"name": "Cadmium II", "categories": ["soil", "forestry"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil", "industrial"], "amount": 0.00023815}, {"name": "Cadmium II", "categories": ["soil"], "amount": 0.012194}, {"name": "Cadmium II", "categories": ["water", "ground-"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water", "ocean"], "amount": 2.9149e-05}, {"name": "Cadmium II", "categories": ["water", "surface water"], "amount": 0.00046859}, {"name": "Cadmium II", "categories": ["water"], "amount": 0.00024887}, {"name": "Captan", "categories": ["soil", "agricultural"], "amount": 8.485e-09}, {"name": "Carbaryl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.0564e-05}, {"name": "Carbaryl", "categories": ["soil", "agricultural"], "amount": 1.9937e-06}, {"name": "Carbaryl", "categories": ["water", "ground-"], "amount": 2.2468e-05}, {"name": "Carbaryl", "categories": ["water", "surface water"], "amount": 2.2468e-05}, {"name": "Carbendazim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.582e-08}, {"name": "Carbendazim", "categories": ["air"], "amount": 1.9607e-07}, {"name": "Carbendazim", "categories": ["soil", "agricultural"], "amount": 1.737e-07}, {"name": "Carbendazim", "categories": ["soil", "forestry"], "amount": 3.3426e-08}, {"name": "Carbendazim", "categories": ["water", "ground-"], "amount": 4.6515e-07}, {"name": "Carbendazim", "categories": ["water"], "amount": 2.3269e-07}, {"name": "Carbetamide", "categories": ["soil", "agricultural"], "amount": 1.5531e-07}, {"name": "Carbofuran", "categories": ["soil", "agricultural"], "amount": 1.573e-05}, {"name": "Carbon disulfide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9074e-05}, {"name": "Carbon disulfide", "categories": ["air"], "amount": 4.2277e-05}, {"name": "Carbon disulfide", "categories": ["air", "urban air close to ground"], "amount": 4.5481e-05}, {"name": "Carbon disulfide", "categories": ["water", "ground-"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water", "ocean"], "amount": 3.8921e-06}, {"name": "Carbon disulfide", "categories": ["water", "surface water"], "amount": 3.1141e-05}, {"name": "Carbon disulfide", "categories": ["water"], "amount": 1.7517e-05}, {"name": "Carbosulfan", "categories": ["soil", "agricultural"], "amount": 4.288e-07}, {"name": "Carboxin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7332e-06}, {"name": "Carboxin", "categories": ["air"], "amount": 4.2592e-06}, {"name": "Carboxin", "categories": ["soil", "agricultural"], "amount": 9.3319e-08}, {"name": "Carboxin", "categories": ["soil", "forestry"], "amount": 1.653e-08}, {"name": "Carboxin", "categories": ["water", "ground-"], "amount": 1.3219e-05}, {"name": "Carboxin", "categories": ["water"], "amount": 6.619e-06}, {"name": "Carfentrazone-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6296e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "agricultural"], "amount": 1.2524e-06}, {"name": "Carfentrazone-ethyl", "categories": ["soil", "forestry"], "amount": 1.4726e-07}, {"name": "Carfentrazone-ethyl", "categories": ["water", "ground-"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water", "surface water"], "amount": 7.6592e-06}, {"name": "Carfentrazone-ethyl", "categories": ["water"], "amount": 3.8373e-06}, {"name": "Chloramine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8786e-08}, {"name": "Chloramine", "categories": ["air"], "amount": 4.5047e-08}, {"name": "Chloramine", "categories": ["air", "urban air close to ground"], "amount": 6.1307e-08}, {"name": "Chloramine", "categories": ["water", "ground-"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water", "ocean"], "amount": 3.3799e-09}, {"name": "Chloramine", "categories": ["water", "surface water"], "amount": 2.3833e-07}, {"name": "Chloramine", "categories": ["water"], "amount": 1.2085e-07}, {"name": "Chlorantraniliprole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7928e-08}, {"name": "Chlorantraniliprole", "categories": ["air"], "amount": 8.6376e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "agricultural"], "amount": 9.5665e-08}, {"name": "Chlorantraniliprole", "categories": ["soil", "forestry"], "amount": 5.9904e-09}, {"name": "Chlorantraniliprole", "categories": ["water", "ground-"], "amount": 4.3022e-08}, {"name": "Chlorantraniliprole", "categories": ["water"], "amount": 2.1709e-08}, {"name": "Chlorfenapyr", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Chlorfenvinphos", "categories": ["soil", "agricultural"], "amount": 0.00020929}, {"name": "Chloridazon", "categories": ["soil", "agricultural"], "amount": 1.8855e-07}, {"name": "Chlorimuron-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.50356882299721e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Chlorimuron-ethyl", "categories": ["soil", "forestry"], "amount": 2.53019085248595e-06}, {"name": "Chlorimuron-ethyl", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Chlorimuron-ethyl", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Chlormequat chloride", "categories": ["soil", "agricultural"], "amount": 2.6122e-07}, {"name": "Chloroacetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9392e-07}, {"name": "Chloroacetic acid", "categories": ["air"], "amount": 8.1052e-07}, {"name": "Chloroacetic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3271e-06}, {"name": "Chloroacetic acid", "categories": ["water", "ground-"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water", "ocean"], "amount": 3.5077e-11}, {"name": "Chloroacetic acid", "categories": ["water", "surface water"], "amount": 1.7733e-07}, {"name": "Chloroacetic acid", "categories": ["water"], "amount": 8.8681e-08}, {"name": "Chloroacetyl chloride", "categories": ["water", "ground-"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water", "ocean"], "amount": 2.2375e-07}, {"name": "Chloroacetyl chloride", "categories": ["water", "surface water"], "amount": 7.4889e-05}, {"name": "Chloroacetyl chloride", "categories": ["water"], "amount": 3.7556e-05}, {"name": "Chloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3459e-07}, {"name": "Chloroethylene", "categories": ["air"], "amount": 9.2599e-07}, {"name": "Chloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.7174e-06}, {"name": "Chloroethylene", "categories": ["water", "ground-"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water", "ocean"], "amount": 2.3582e-08}, {"name": "Chloroethylene", "categories": ["water", "surface water"], "amount": 2.448e-06}, {"name": "Chloroethylene", "categories": ["water"], "amount": 1.2358e-06}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3098e-07}, {"name": "Chloroform", "categories": ["air"], "amount": 7.9401e-07}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 1.057e-06}, {"name": "Chloroform", "categories": ["water", "ground-"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water", "ocean"], "amount": 2.6256e-07}, {"name": "Chloroform", "categories": ["water", "surface water"], "amount": 6.5061e-07}, {"name": "Chloroform", "categories": ["water"], "amount": 4.5658e-07}, {"name": "Chloropicrin", "categories": ["soil", "agricultural"], "amount": 2.2296e-05}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3091e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air"], "amount": 2.829e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["air", "urban air close to ground"], "amount": 4.3489e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ground-"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "ocean"], "amount": 1.7373e-09}, {"name": "Chlorosilane, trimethyl-", "categories": ["water", "surface water"], "amount": 1.6844e-08}, {"name": "Chlorosilane, trimethyl-", "categories": ["water"], "amount": 9.2909e-09}, {"name": "Chlorothalonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4622e-06}, {"name": "Chlorothalonil", "categories": ["air"], "amount": 1.6413e-06}, {"name": "Chlorothalonil", "categories": ["soil", "agricultural"], "amount": 1.6458e-08}, {"name": "Chlorothalonil", "categories": ["soil", "forestry"], "amount": 8.5739e-09}, {"name": "Chlorothalonil", "categories": ["water", "ground-"], "amount": 4.0397e-06}, {"name": "Chlorothalonil", "categories": ["water"], "amount": 2.0771e-06}, {"name": "Chlorpyrifos", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00011309}, {"name": "Chlorpyrifos", "categories": ["soil", "agricultural"], "amount": 1.7886e-05}, {"name": "Chlorpyrifos", "categories": ["soil", "forestry"], "amount": 2.1738e-06}, {"name": "Chlorpyrifos", "categories": ["water", "ground-"], "amount": 0.0025928}, {"name": "Chlorpyrifos", "categories": ["water"], "amount": 0.00137}, {"name": "Chlorpyrifos methyl", "categories": ["soil", "agricultural"], "amount": 2.2145e-06}, {"name": "Chlorsulfuron", "categories": ["soil", "agricultural"], "amount": 1.1865e-08}, {"name": "Chlozolinate", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Choline chloride", "categories": ["soil", "agricultural"], "amount": 5.6174e-08}, {"name": "Chromium III", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium III", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium III", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium III", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium III", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium III", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium III", "categories": ["water", "ground-"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water", "ocean"], "amount": 5.1217e-13}, {"name": "Chromium III", "categories": ["water", "surface water"], "amount": 2.069e-12}, {"name": "Chromium III", "categories": ["water"], "amount": 1.2906e-12}, {"name": "Chromium VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8328e-07}, {"name": "Chromium VI", "categories": ["air"], "amount": 4.1364e-06}, {"name": "Chromium VI", "categories": ["air", "urban air close to ground"], "amount": 7.4896e-06}, {"name": "Chromium VI", "categories": ["soil", "agricultural"], "amount": 1.146e-07}, {"name": "Chromium VI", "categories": ["soil", "forestry"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil", "industrial"], "amount": 1.1196e-07}, {"name": "Chromium VI", "categories": ["soil"], "amount": 1.1328e-07}, {"name": "Chromium VI", "categories": ["water", "ground-"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water", "ocean"], "amount": 1.4198e-08}, {"name": "Chromium VI", "categories": ["water", "surface water"], "amount": 2.2292e-07}, {"name": "Chromium VI", "categories": ["water"], "amount": 1.1856e-07}, {"name": "Chrysene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Chrysene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Clethodim", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3817e-07}, {"name": "Clethodim", "categories": ["soil", "agricultural"], "amount": 2.167e-07}, {"name": "Clethodim", "categories": ["soil", "forestry"], "amount": 1.0463e-08}, {"name": "Clethodim", "categories": ["water", "ground-"], "amount": 2.208e-06}, {"name": "Clethodim", "categories": ["water"], "amount": 1.127e-06}, {"name": "Clodinafop-propargyl", "categories": ["soil", "agricultural"], "amount": 3.0812e-05}, {"name": "Clofentezine", "categories": ["soil", "agricultural"], "amount": 2.5427e-08}, {"name": "Clomazone", "categories": ["soil", "agricultural"], "amount": 1.2367e-07}, {"name": "Cloquintocet-mexyl", "categories": ["soil", "agricultural"], "amount": 1.8165e-05}, {"name": "Cobalt II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0755e-06}, {"name": "Cobalt II", "categories": ["air"], "amount": 3.5761e-06}, {"name": "Cobalt II", "categories": ["air", "urban air close to ground"], "amount": 6.0766e-06}, {"name": "Cobalt II", "categories": ["soil", "agricultural"], "amount": 3.2432e-10}, {"name": "Cobalt II", "categories": ["soil", "forestry"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil", "industrial"], "amount": 1.2428e-11}, {"name": "Cobalt II", "categories": ["soil"], "amount": 1.6837e-10}, {"name": "Cobalt II", "categories": ["water", "ground-"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water", "ocean"], "amount": 2.7872e-11}, {"name": "Cobalt II", "categories": ["water", "surface water"], "amount": 2.8461e-08}, {"name": "Cobalt II", "categories": ["water"], "amount": 1.4244e-08}, {"name": "Copper ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5847e-07}, {"name": "Copper ion", "categories": ["air"], "amount": 3.5232e-07}, {"name": "Copper ion", "categories": ["air", "urban air close to ground"], "amount": 3.4616e-07}, {"name": "Copper ion", "categories": ["soil", "agricultural"], "amount": 1.1403e-06}, {"name": "Copper ion", "categories": ["soil", "forestry"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil", "industrial"], "amount": 7.2145e-10}, {"name": "Copper ion", "categories": ["soil"], "amount": 5.7051e-07}, {"name": "Copper ion", "categories": ["water", "ground-"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water", "ocean"], "amount": 1.9051e-10}, {"name": "Copper ion", "categories": ["water", "surface water"], "amount": 1.3667e-09}, {"name": "Copper ion", "categories": ["water"], "amount": 7.7859e-10}, {"name": "Copper oxide", "categories": ["soil", "agricultural"], "amount": 2.8827e-11}, {"name": "Copper oxychloride", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Copper oxychloride", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Copper oxychloride", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Copper oxychloride", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Copper oxychloride", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2422e-09}, {"name": "Cumene", "categories": ["air"], "amount": 7.6913e-09}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 1.414e-08}, {"name": "Cumene", "categories": ["water", "ground-"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water", "ocean"], "amount": 2.7424e-09}, {"name": "Cumene", "categories": ["water", "surface water"], "amount": 4.7521e-08}, {"name": "Cumene", "categories": ["water"], "amount": 2.5132e-08}, {"name": "Cyanamide", "categories": ["soil", "agricultural"], "amount": 6.114e-07}, {"name": "Cyanide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2875e-07}, {"name": "Cyanide", "categories": ["air"], "amount": 3.3486e-07}, {"name": "Cyanide", "categories": ["air", "urban air close to ground"], "amount": 5.4098e-07}, {"name": "Cyanide", "categories": ["water", "ground-"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water", "ocean"], "amount": 5.0239e-08}, {"name": "Cyanide", "categories": ["water", "surface water"], "amount": 1.4193e-07}, {"name": "Cyanide", "categories": ["water"], "amount": 9.6086e-08}, {"name": "Cyazofamid", "categories": ["soil", "agricultural"], "amount": 4.28e-07}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7232e-10}, {"name": "Cyclohexane", "categories": ["air"], "amount": 2.6694e-09}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclohexane", "categories": ["water", "ground-"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water", "ocean"], "amount": 4.2499e-10}, {"name": "Cyclohexane", "categories": ["water", "surface water"], "amount": 1.057e-08}, {"name": "Cyclohexane", "categories": ["water"], "amount": 5.4976e-09}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 4.9665e-09}, {"name": "Cyclopentane", "categories": ["air", "urban air close to ground"], "amount": 4.3979e-10}, {"name": "Cycloxydim", "categories": ["soil", "agricultural"], "amount": 1.2517e-09}, {"name": "Cycluron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6947e-07}, {"name": "Cyhexatin", "categories": ["soil", "agricultural"], "amount": 2.4475e-07}, {"name": "Cymoxanil", "categories": ["soil", "agricultural"], "amount": 2.4105e-08}, {"name": "Cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Cypermethrin", "categories": ["soil", "forestry"], "amount": 7.6011e-09}, {"name": "Cypermethrin", "categories": ["water", "ground-"], "amount": 1.3656e-05}, {"name": "Cypermethrin", "categories": ["water"], "amount": 7.6557e-06}, {"name": "Cyproconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3594e-06}, {"name": "Cyproconazole", "categories": ["air"], "amount": 7.104e-06}, {"name": "Cyproconazole", "categories": ["soil", "agricultural"], "amount": 1.3553e-06}, {"name": "Cyproconazole", "categories": ["soil", "forestry"], "amount": 2.6446e-07}, {"name": "Cyproconazole", "categories": ["water", "ground-"], "amount": 1.0245e-05}, {"name": "Cyproconazole", "categories": ["water"], "amount": 5.1806e-06}, {"name": "Cyprodinil", "categories": ["soil", "agricultural"], "amount": 1.7462e-06}, {"name": "Cyromazine", "categories": ["soil", "agricultural"], "amount": 5.7629e-08}, {"name": "Daminozide", "categories": ["soil", "agricultural"], "amount": 1.6795e-09}, {"name": "Dazomet", "categories": ["soil", "agricultural"], "amount": 1.326e-08}, {"name": "Deltamethrin", "categories": ["air"], "amount": 0.00076968}, {"name": "Deltamethrin", "categories": ["soil", "agricultural"], "amount": 1.4186e-07}, {"name": "Deltamethrin", "categories": ["water", "ground-"], "amount": 5.0733e-05}, {"name": "Demeton-S-methylsulfon", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diafenthiuron", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Dialifor", "categories": ["soil", "agricultural"], "amount": 3.8082e-05}, {"name": "Diazinon", "categories": ["soil", "agricultural"], "amount": 6.177e-05}, {"name": "Dicamba", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.651e-06}, {"name": "Dicamba", "categories": ["soil", "agricultural"], "amount": 1.8873e-07}, {"name": "Dicamba", "categories": ["water", "ground-"], "amount": 2.3298e-06}, {"name": "Dicamba", "categories": ["water", "surface water"], "amount": 2.3298e-06}, {"name": "Dichlobenil", "categories": ["soil", "agricultural"], "amount": 4.0209e-07}, {"name": "Dichlofluanid", "categories": ["soil", "agricultural"], "amount": 3.1128e-09}, {"name": "Dichlorprop-P", "categories": ["soil", "agricultural"], "amount": 5.6446e-07}, {"name": "Dichlorvos", "categories": ["soil", "agricultural"], "amount": 8.5105e-06}, {"name": "Diclofop-methyl", "categories": ["soil", "agricultural"], "amount": 1.722e-07}, {"name": "Dicofol", "categories": ["soil", "agricultural"], "amount": 0.0002019}, {"name": "Dicrotophos", "categories": ["soil", "agricultural"], "amount": 2.2677e-05}, {"name": "Diethanolamine", "categories": ["water"], "amount": 1.3261e-06}, {"name": "Diethofencarb", "categories": ["soil", "agricultural"], "amount": 9.1516e-09}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5118e-11}, {"name": "Diethyl ether", "categories": ["air"], "amount": 4.3238e-10}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 8.1964e-10}, {"name": "Diethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3218e-08}, {"name": "Diethylamine", "categories": ["air"], "amount": 8.9646e-08}, {"name": "Diethylamine", "categories": ["air", "urban air close to ground"], "amount": 1.6607e-07}, {"name": "Diethylamine", "categories": ["water", "ground-"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water", "ocean"], "amount": 6.4504e-10}, {"name": "Diethylamine", "categories": ["water", "surface water"], "amount": 2.0216e-06}, {"name": "Diethylamine", "categories": ["water"], "amount": 1.0111e-06}, {"name": "Diethylene glycol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.8825e-08}, {"name": "Diethylene glycol", "categories": ["air"], "amount": 1.9861e-07}, {"name": "Diethylene glycol", "categories": ["air", "urban air close to ground"], "amount": 3.2839e-07}, {"name": "Diethylene glycol", "categories": ["water", "ground-"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water", "ocean"], "amount": 8.7317e-12}, {"name": "Diethylene glycol", "categories": ["water", "surface water"], "amount": 4.9822e-08}, {"name": "Diethylene glycol", "categories": ["water"], "amount": 2.4915e-08}, {"name": "Difenoconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6004e-05}, {"name": "Difenoconazole", "categories": ["air"], "amount": 4.0115e-05}, {"name": "Difenoconazole", "categories": ["soil", "agricultural"], "amount": 1.9484e-05}, {"name": "Difenoconazole", "categories": ["soil", "forestry"], "amount": 6.1242e-06}, {"name": "Difenoconazole", "categories": ["water", "ground-"], "amount": 0.0003758}, {"name": "Difenoconazole", "categories": ["water"], "amount": 0.00019501}, {"name": "Diflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.41e-07}, {"name": "Diflubenzuron", "categories": ["soil", "agricultural"], "amount": 2.0902e-09}, {"name": "Diflubenzuron", "categories": ["soil", "forestry"], "amount": 2.0096e-10}, {"name": "Diflubenzuron", "categories": ["water", "ground-"], "amount": 1.5554e-06}, {"name": "Diflubenzuron", "categories": ["water"], "amount": 7.9374e-07}, {"name": "Diflufenican", "categories": ["soil", "agricultural"], "amount": 1.05e-06}, {"name": "Diflufenzopyr", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Diflufenzopyr", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Diflufenzopyr-sodium", "categories": ["soil", "agricultural"], "amount": 2.4844e-07}, {"name": "Diisobutyl ketone", "categories": ["water", "ground-"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water", "ocean"], "amount": 5.5088e-11}, {"name": "Diisobutyl ketone", "categories": ["water", "surface water"], "amount": 2.1997e-09}, {"name": "Diisobutyl ketone", "categories": ["water"], "amount": 1.1274e-09}, {"name": "Dimethachlor", "categories": ["soil", "agricultural"], "amount": 3.0692e-08}, {"name": "Dimethenamid", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.092e-07}, {"name": "Dimethenamid", "categories": ["soil", "agricultural"], "amount": 1.4616e-06}, {"name": "Dimethenamid", "categories": ["water", "ground-"], "amount": 2.7071e-06}, {"name": "Dimethenamid", "categories": ["water", "surface water"], "amount": 2.7071e-06}, {"name": "Dimethipin", "categories": ["soil", "agricultural"], "amount": 5.9076e-06}, {"name": "Dimethoate", "categories": ["air"], "amount": 0.00027827}, {"name": "Dimethoate", "categories": ["soil", "agricultural"], "amount": 2.0153e-05}, {"name": "Dimethoate", "categories": ["water", "ground-"], "amount": 0.00012487}, {"name": "Dimethomorph", "categories": ["soil", "agricultural"], "amount": 3.1952e-09}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 1.0587e-07}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3083e-11}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 5.5681e-11}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 9.8279e-11}, {"name": "Dimethyl ether", "categories": ["water", "ground-"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water", "ocean"], "amount": 1.6083e-12}, {"name": "Dimethyl ether", "categories": ["water", "surface water"], "amount": 2.7374e-10}, {"name": "Dimethyl ether", "categories": ["water"], "amount": 1.3767e-10}, {"name": "Dimethyl hexynediol", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Dimethyl malonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9156e-08}, {"name": "Dimethyl malonate", "categories": ["air"], "amount": 1.3828e-07}, {"name": "Dimethyl malonate", "categories": ["air", "urban air close to ground"], "amount": 2.3741e-07}, {"name": "Dimethyldichlorosilane", "categories": ["air"], "amount": 5.9612e-08}, {"name": "Dimethyldichlorosilane", "categories": ["water"], "amount": 2.9373e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6e-08}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 1.6045e-08}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 1.609e-08}, {"name": "Dinitrogen tetroxide", "categories": ["air"], "amount": 2.7021e-05}, {"name": "Dinocap", "categories": ["soil", "agricultural"], "amount": 8.4002e-07}, {"name": "Dinoseb", "categories": ["soil", "agricultural"], "amount": 5.3166e-05}, {"name": "Diofenolan", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Diphenylether compounds", "categories": ["water"], "amount": 2.2156e-08}, {"name": "Dipropylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4082e-09}, {"name": "Dipropylamine", "categories": ["air"], "amount": 1.9323e-07}, {"name": "Dipropylamine", "categories": ["air", "urban air close to ground"], "amount": 3.8206e-07}, {"name": "Dipropylamine", "categories": ["water", "ground-"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water", "ocean"], "amount": 8.559e-11}, {"name": "Dipropylamine", "categories": ["water", "surface water"], "amount": 5.4955e-08}, {"name": "Dipropylamine", "categories": ["water"], "amount": 2.752e-08}, {"name": "Diquat", "categories": ["soil", "agricultural"], "amount": 2.0627e-05}, {"name": "Diquat dibromide", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.6499e-06}, {"name": "Diquat dibromide", "categories": ["air"], "amount": 1.0461e-05}, {"name": "Diquat dibromide", "categories": ["soil", "agricultural"], "amount": 3.7519e-06}, {"name": "Diquat dibromide", "categories": ["soil", "forestry"], "amount": 1.8054e-06}, {"name": "Diquat dibromide", "categories": ["water", "ground-"], "amount": 7.524e-06}, {"name": "Diquat dibromide", "categories": ["water"], "amount": 3.7627e-06}, {"name": "Disulfoton", "categories": ["soil", "agricultural"], "amount": 3.1064e-05}, {"name": "Dithianon", "categories": ["soil", "agricultural"], "amount": 5.8971e-08}, {"name": "Diuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4082e-05}, {"name": "Diuron", "categories": ["air"], "amount": 3.5051e-05}, {"name": "Diuron", "categories": ["soil", "agricultural"], "amount": 1.4789e-05}, {"name": "Diuron", "categories": ["soil", "forestry"], "amount": 3.7773e-07}, {"name": "Diuron", "categories": ["water"], "amount": 2.7809e-06}, {"name": "Dodecanol", "categories": ["water"], "amount": 1.6413e-08}, {"name": "Dodine", "categories": ["soil", "agricultural"], "amount": 2.55e-11}, {"name": "EDTA, Ethylenediaminetetraacetic Acid", "categories": ["water"], "amount": 6.3791e-07}, {"name": "EPTC", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6729e-07}, {"name": "EPTC", "categories": ["air"], "amount": 7.1287e-07}, {"name": "EPTC", "categories": ["soil", "agricultural"], "amount": 6.7883e-07}, {"name": "EPTC", "categories": ["water", "surface water"], "amount": 2.8028e-07}, {"name": "Emamectin benzoate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Emamectin benzoate", "categories": ["soil", "forestry"], "amount": 3.16224045369996e-06}, {"name": "Emamectin benzoate", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Emamectin benzoate", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Endosulfan", "categories": ["soil", "agricultural"], "amount": 1.3013e-06}, {"name": "Endothall", "categories": ["soil", "agricultural"], "amount": 2.3165e-07}, {"name": "Epichlorohydrin", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4356e-07}, {"name": "Epichlorohydrin", "categories": ["air"], "amount": 5.5791e-07}, {"name": "Epichlorohydrin", "categories": ["air", "urban air close to ground"], "amount": 7.7226e-07}, {"name": "Epichlorohydrin", "categories": ["water"], "amount": 2.2284e-06}, {"name": "Epoxiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.9248e-05}, {"name": "Epoxiconazole", "categories": ["air"], "amount": 3.998e-05}, {"name": "Epoxiconazole", "categories": ["soil", "agricultural"], "amount": 2.3953e-06}, {"name": "Epoxiconazole", "categories": ["soil", "forestry"], "amount": 5.1658e-07}, {"name": "Epoxiconazole", "categories": ["water", "ground-"], "amount": 0.0001093}, {"name": "Epoxiconazole", "categories": ["water"], "amount": 5.6638e-05}, {"name": "Esfenvalerate", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1455e-06}, {"name": "Esfenvalerate", "categories": ["soil", "agricultural"], "amount": 1.0263e-05}, {"name": "Ethaboxam", "categories": ["air"], "amount": 2.66927809541128e-05}, {"name": "Ethaboxam", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Ethaboxam", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0162e-09}, {"name": "Ethane", "categories": ["air"], "amount": 1.8405e-09}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 2.6648e-09}, {"name": "Ethane thiol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.068e-09}, {"name": "Ethane thiol", "categories": ["air"], "amount": 1.0959e-07}, {"name": "Ethane thiol", "categories": ["air", "urban air close to ground"], "amount": 2.1511e-07}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7668e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4.9633e-10}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 5.1599e-10}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4942e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 1.6249e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 1.7557e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ground-"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "ocean"], "amount": 4.0308e-09}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water", "surface water"], "amount": 1.7061e-08}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["water"], "amount": 1.0546e-08}, {"name": "Ethane, 1,1,2-trichloro-", "categories": ["air"], "amount": 0.00025564}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.323e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 3.7028e-09}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 5.0826e-09}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7919e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 2.0924e-10}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 2.3929e-10}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3589e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.9325e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 7.506e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ground-"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "ocean"], "amount": 4.4758e-08}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water", "surface water"], "amount": 2.3039e-07}, {"name": "Ethane, 1,2-dichloro-", "categories": ["water"], "amount": 1.3757e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2376e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 3.7784e-07}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 4.3192e-07}, {"name": "Ethane, hexachloro-", "categories": ["water", "ground-"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water", "ocean"], "amount": 9.1958e-06}, {"name": "Ethane, hexachloro-", "categories": ["water", "surface water"], "amount": 2.6112e-05}, {"name": "Ethane, hexachloro-", "categories": ["water"], "amount": 1.7654e-05}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7165e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 1.7201e-08}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 1.7237e-08}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3336e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 1.3502e-09}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 1.3667e-09}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.5002e-10}, {"name": "Ethanol", "categories": ["air"], "amount": 1.9768e-09}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 3.5037e-09}, {"name": "Ethanol", "categories": ["water", "ground-"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water", "ocean"], "amount": 5.3679e-12}, {"name": "Ethanol", "categories": ["water", "surface water"], "amount": 2.3194e-09}, {"name": "Ethanol", "categories": ["water"], "amount": 1.1624e-09}, {"name": "Ethephon", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9593e-07}, {"name": "Ethephon", "categories": ["soil", "agricultural"], "amount": 8.2008e-08}, {"name": "Ethephon", "categories": ["water", "ground-"], "amount": 1.4093e-07}, {"name": "Ethephon", "categories": ["water", "surface water"], "amount": 1.4093e-07}, {"name": "Ethiofencarb", "categories": ["soil", "agricultural"], "amount": 2.6461e-07}, {"name": "Ethofumesate", "categories": ["soil", "agricultural"], "amount": 2.7141e-08}, {"name": "Ethoprop", "categories": ["soil", "agricultural"], "amount": 2.5071e-05}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1897e-09}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 4.3895e-09}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 7.5893e-09}, {"name": "Ethyl acetate", "categories": ["water", "ground-"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water", "ocean"], "amount": 8.4713e-11}, {"name": "Ethyl acetate", "categories": ["water", "surface water"], "amount": 3.8507e-09}, {"name": "Ethyl acetate", "categories": ["water"], "amount": 1.9677e-09}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.428e-11}, {"name": "Ethylene", "categories": ["air"], "amount": 6.5652e-10}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.2288e-09}, {"name": "Ethylene", "categories": ["water", "ground-"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water", "ocean"], "amount": 1.695e-11}, {"name": "Ethylene", "categories": ["water", "surface water"], "amount": 3.2187e-09}, {"name": "Ethylene", "categories": ["water"], "amount": 1.6178e-09}, {"name": "Ethylene diamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.709e-08}, {"name": "Ethylene diamine", "categories": ["air"], "amount": 1.1645e-06}, {"name": "Ethylene diamine", "categories": ["air", "urban air close to ground"], "amount": 2.262e-06}, {"name": "Ethylene diamine", "categories": ["water", "ground-"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water", "ocean"], "amount": 7.7062e-11}, {"name": "Ethylene diamine", "categories": ["water", "surface water"], "amount": 4.5023e-07}, {"name": "Ethylene diamine", "categories": ["water"], "amount": 2.2515e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4446e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 8.9223e-08}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 1.44e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ground-"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "ocean"], "amount": 6.4096e-11}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water", "surface water"], "amount": 1.8747e-07}, {"name": "Ethylene glycol monoethyl ether", "categories": ["water"], "amount": 9.3769e-08}, {"name": "Ethylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.0796e-08}, {"name": "Ethylene oxide", "categories": ["air"], "amount": 2.0352e-07}, {"name": "Ethylene oxide", "categories": ["air", "urban air close to ground"], "amount": 3.1625e-07}, {"name": "Ethylene oxide", "categories": ["water", "ground-"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water", "ocean"], "amount": 8.2842e-09}, {"name": "Ethylene oxide", "categories": ["water", "surface water"], "amount": 8.9968e-07}, {"name": "Ethylene oxide", "categories": ["water"], "amount": 4.5398e-07}, {"name": "Etoxazole", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Etridiazole", "categories": ["soil", "agricultural"], "amount": 1.0008e-06}, {"name": "Famoxadone", "categories": ["soil", "agricultural"], "amount": 5.226e-07}, {"name": "Fenamidone", "categories": ["soil", "agricultural"], "amount": 4.6043e-08}, {"name": "Fenamiphos", "categories": ["soil", "agricultural"], "amount": 4.9816e-07}, {"name": "Fenazaquin", "categories": ["soil", "agricultural"], "amount": 3.8245e-07}, {"name": "Fenbuconazole", "categories": ["soil", "agricultural"], "amount": 1.5952e-08}, {"name": "Fenbutatin oxide", "categories": ["soil", "agricultural"], "amount": 1.3402e-07}, {"name": "Fenhexamid", "categories": ["soil", "agricultural"], "amount": 1.1577e-10}, {"name": "Fenitrothion", "categories": ["soil", "agricultural"], "amount": 6.3062e-07}, {"name": "Fenoxaprop ethyl ester", "categories": ["soil", "agricultural"], "amount": 7.2358e-08}, {"name": "Fenoxaprop-P ethyl ester", "categories": ["soil", "agricultural"], "amount": 4.715e-07}, {"name": "Fenpropathrin", "categories": ["soil", "agricultural"], "amount": 1.5044e-07}, {"name": "Fenpropidin", "categories": ["soil", "agricultural"], "amount": 1.6509e-06}, {"name": "Fenpyroximate", "categories": ["soil", "agricultural"], "amount": 1.6745e-06}, {"name": "Fentin acetate", "categories": ["soil", "agricultural"], "amount": 1.4922e-07}, {"name": "Fentin hydroxide", "categories": ["soil", "agricultural"], "amount": 3.5755e-08}, {"name": "Fipronil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00020391}, {"name": "Fipronil", "categories": ["air"], "amount": 0.0011748}, {"name": "Fipronil", "categories": ["soil", "agricultural"], "amount": 0.0001783}, {"name": "Fipronil", "categories": ["soil", "forestry"], "amount": 1.8654e-05}, {"name": "Fipronil", "categories": ["water", "ground-"], "amount": 0.0028889}, {"name": "Fipronil", "categories": ["water"], "amount": 0.0014809}, {"name": "Flazasulfuron", "categories": ["soil", "agricultural"], "amount": 1.3171e-05}, {"name": "Florasulam", "categories": ["soil", "agricultural"], "amount": 3.9912e-06}, {"name": "Fluazifop", "categories": ["soil", "agricultural"], "amount": 3.4317e-05}, {"name": "Fluazifop-P-butyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.96e-05}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "agricultural"], "amount": 2.6966e-06}, {"name": "Fluazifop-P-butyl", "categories": ["soil", "forestry"], "amount": 1.0061e-07}, {"name": "Fluazifop-P-butyl", "categories": ["water", "ground-"], "amount": 5.7521e-05}, {"name": "Fluazifop-P-butyl", "categories": ["water"], "amount": 2.9293e-05}, {"name": "Fluazinam", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.4032e-06}, {"name": "Fluazinam", "categories": ["air"], "amount": 1.0449e-05}, {"name": "Fluazinam", "categories": ["soil", "agricultural"], "amount": 7.1262e-08}, {"name": "Fluazinam", "categories": ["soil", "forestry"], "amount": 6.3151e-09}, {"name": "Fluazinam", "categories": ["water", "ground-"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water", "surface water"], "amount": 5.0872e-06}, {"name": "Fluazinam", "categories": ["water"], "amount": 2.7399e-06}, {"name": "Fludioxonil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2183e-07}, {"name": "Fludioxonil", "categories": ["air"], "amount": 5.7105e-07}, {"name": "Fludioxonil", "categories": ["soil", "agricultural"], "amount": 5.2188e-07}, {"name": "Fludioxonil", "categories": ["soil", "forestry"], "amount": 8.0468e-08}, {"name": "Fludioxonil", "categories": ["water", "ground-"], "amount": 3.0578e-06}, {"name": "Fludioxonil", "categories": ["water"], "amount": 1.5678e-06}, {"name": "Flumetsulam", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.6048e-08}, {"name": "Flumetsulam", "categories": ["soil", "agricultural"], "amount": 4.8862e-08}, {"name": "Flumioxazin", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.2819e-07}, {"name": "Flumioxazin", "categories": ["soil", "agricultural"], "amount": 8.3612e-07}, {"name": "Flumioxazin", "categories": ["soil", "forestry"], "amount": 2.1643e-07}, {"name": "Flumioxazin", "categories": ["water", "ground-"], "amount": 8.9863e-06}, {"name": "Flumioxazin", "categories": ["water"], "amount": 4.5227e-06}, {"name": "Fluoboric acid", "categories": ["water", "ground-"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water", "ocean"], "amount": 4.9968e-12}, {"name": "Fluoboric acid", "categories": ["water", "surface water"], "amount": 2.4901e-08}, {"name": "Fluoboric acid", "categories": ["water"], "amount": 1.2453e-08}, {"name": "Fluometuron", "categories": ["soil", "agricultural"], "amount": 1.9203e-05}, {"name": "Fluopyram", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.605e-05}, {"name": "Fluopyram", "categories": ["air"], "amount": 1.7684e-05}, {"name": "Fluopyram", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fluopyram", "categories": ["water", "surface water"], "amount": 4.4768e-05}, {"name": "Fluoranthene", "categories": ["air"], "amount": 2.614e-07}, {"name": "Fluoranthene", "categories": ["water", "surface water"], "amount": 4.317e-06}, {"name": "Fluorene", "categories": ["air"], "amount": 7.8697e-08}, {"name": "Fluorene", "categories": ["water", "surface water"], "amount": 4.0134e-07}, {"name": "Fluoride", "categories": ["soil", "agricultural"], "amount": 6.2542e-07}, {"name": "Fluoride", "categories": ["soil", "forestry"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil", "industrial"], "amount": 5.6857e-07}, {"name": "Fluoride", "categories": ["soil"], "amount": 5.9699e-07}, {"name": "Fluoride", "categories": ["water", "ground-"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water", "ocean"], "amount": 8.9114e-08}, {"name": "Fluoride", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoride", "categories": ["water"], "amount": 3.7628e-07}, {"name": "Fluorine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Fluorine", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Fluorine", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Fluorine", "categories": ["water", "surface water"], "amount": 6.6344e-07}, {"name": "Fluoroglycofen", "categories": ["soil", "agricultural"], "amount": 1.8988e-06}, {"name": "Flupyrsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.1608e-05}, {"name": "Fluquinconazole", "categories": ["soil", "agricultural"], "amount": 1.511e-05}, {"name": "Flurenol", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Fluroxypyr", "categories": ["soil", "agricultural"], "amount": 1.6083e-07}, {"name": "Flurtamone", "categories": ["soil", "agricultural"], "amount": 1.1604e-08}, {"name": "Flusilazole", "categories": ["soil", "agricultural"], "amount": 8.0919e-07}, {"name": "Flutolanil", "categories": ["soil", "agricultural"], "amount": 4.5943e-07}, {"name": "Flutriafol", "categories": ["soil", "agricultural"], "amount": 3.0137e-05}, {"name": "Fluxapyroxad", "categories": ["air"], "amount": 9.0028e-06}, {"name": "Fluxapyroxad", "categories": ["soil", "agricultural"], "amount": 2.3872e-07}, {"name": "Fluxapyroxad", "categories": ["soil", "forestry"], "amount": 4.3272e-08}, {"name": "Fluxapyroxad", "categories": ["water", "ground-"], "amount": 1.3513e-05}, {"name": "Fluxapyroxad", "categories": ["water"], "amount": 7.0394e-06}, {"name": "Folpet", "categories": ["soil", "agricultural"], "amount": 1.8093e-07}, {"name": "Fonofos", "categories": ["soil", "agricultural"], "amount": 9.4992e-06}, {"name": "Foramsulfuron", "categories": ["soil", "agricultural"], "amount": 4.1981e-07}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7715e-08}, {"name": "Formaldehyde", "categories": ["air"], "amount": 1.6359e-07}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 2.5947e-07}, {"name": "Formaldehyde", "categories": ["water", "ground-"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water", "ocean"], "amount": 1.2872e-10}, {"name": "Formaldehyde", "categories": ["water", "surface water"], "amount": 3.236e-07}, {"name": "Formaldehyde", "categories": ["water"], "amount": 1.6187e-07}, {"name": "Formamide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4963e-07}, {"name": "Formamide", "categories": ["air"], "amount": 3.9236e-07}, {"name": "Formamide", "categories": ["air", "urban air close to ground"], "amount": 4.351e-07}, {"name": "Formamide", "categories": ["water", "ground-"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water", "ocean"], "amount": 4.3561e-11}, {"name": "Formamide", "categories": ["water", "surface water"], "amount": 2.4899e-07}, {"name": "Formamide", "categories": ["water"], "amount": 1.2452e-07}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9982e-09}, {"name": "Formic acid", "categories": ["air"], "amount": 7.2024e-08}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 1.3405e-07}, {"name": "Formic acid", "categories": ["water", "ground-"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water", "ocean"], "amount": 3.4317e-12}, {"name": "Formic acid", "categories": ["water", "surface water"], "amount": 1.2423e-08}, {"name": "Formic acid", "categories": ["water"], "amount": 6.2131e-09}, {"name": "Fosetyl", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fosetyl-aluminium", "categories": ["soil", "agricultural"], "amount": 1.2618e-13}, {"name": "Fuberidazole", "categories": ["soil", "agricultural"], "amount": 1.6306e-08}, {"name": "Fungicides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water", "ocean"], "amount": 1.18650289222135e-06}, {"name": "Fungicides, unspecified", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Fungicides, unspecified", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Furan", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4829e-07}, {"name": "Furan", "categories": ["air"], "amount": 3.5731e-06}, {"name": "Furan", "categories": ["air", "urban air close to ground"], "amount": 6.9979e-06}, {"name": "Furfural", "categories": ["air"], "amount": 1.1697e-06}, {"name": "Gibberellic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.3692e-08}, {"name": "Gibberellic acid", "categories": ["air"], "amount": 9.6033e-08}, {"name": "Gibberellic acid", "categories": ["soil", "agricultural"], "amount": 2.0783e-09}, {"name": "Gibberellic acid", "categories": ["soil", "forestry"], "amount": 8.6876e-10}, {"name": "Gibberellic acid", "categories": ["water"], "amount": 2.0977e-08}, {"name": "Glufosinate ammonium", "categories": ["air"], "amount": 9.4459e-07}, {"name": "Glufosinate ammonium", "categories": ["soil", "agricultural"], "amount": 9.8543e-09}, {"name": "Glufosinate ammonium", "categories": ["water", "ground-"], "amount": 4.0242e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ground-"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water", "ocean"], "amount": 2.6967e-11}, {"name": "Glutaraldehyde", "categories": ["water", "surface water"], "amount": 1.1423e-07}, {"name": "Glutaraldehyde", "categories": ["water"], "amount": 5.7131e-08}, {"name": "Glyphosate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7226e-08}, {"name": "Glyphosate", "categories": ["soil", "agricultural"], "amount": 1.9373e-08}, {"name": "Glyphosate", "categories": ["soil", "forestry"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["soil", "industrial"], "amount": 2.53e-09}, {"name": "Glyphosate", "categories": ["water", "ground-"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water", "surface water"], "amount": 2.5279e-08}, {"name": "Glyphosate", "categories": ["water"], "amount": 1.2642e-08}, {"name": "Guazatine", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.4795e-11}, {"name": "Heptane", "categories": ["air"], "amount": 3.7499e-10}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 6.9518e-10}, {"name": "Herbicides, unspecified", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water", "ocean"], "amount": 9.59587362857198e-07}, {"name": "Herbicides, unspecified", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Herbicides, unspecified", "categories": ["water"], "amount": 1.2569295714806e-05}, {"name": "Hexaflumuron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Hexamethyldisilizane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.532e-09}, {"name": "Hexamethyldisilizane", "categories": ["air"], "amount": 4.559e-09}, {"name": "Hexamethyldisilizane", "categories": ["air", "urban air close to ground"], "amount": 6.586e-09}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1425e-08}, {"name": "Hexane", "categories": ["air"], "amount": 1.3035e-07}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 2.3928e-07}, {"name": "Hexane", "categories": ["water", "ground-"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water", "ocean"], "amount": 2.0986e-08}, {"name": "Hexane", "categories": ["water", "surface water"], "amount": 2.7073e-07}, {"name": "Hexane", "categories": ["water"], "amount": 1.4586e-07}, {"name": "Hexazinone", "categories": ["soil", "agricultural"], "amount": 9.7369e-07}, {"name": "Hexythiazox", "categories": ["soil", "agricultural"], "amount": 1.7829e-06}, {"name": "Hydramethylnon", "categories": ["soil", "agricultural"], "amount": 8.1769e-07}, {"name": "Hydrazine", "categories": ["water", "ground-"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water", "ocean"], "amount": 1.051e-08}, {"name": "Hydrazine", "categories": ["water", "surface water"], "amount": 3.7106e-06}, {"name": "Hydrazine", "categories": ["water"], "amount": 1.8605e-06}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2956e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air"], "amount": 1.3179e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["air", "urban air close to ground"], "amount": 1.3402e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ground-"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "ocean"], "amount": 8.6117e-08}, {"name": "Hydrocarbons, aromatic", "categories": ["water", "surface water"], "amount": 2.9829e-07}, {"name": "Hydrocarbons, aromatic", "categories": ["water"], "amount": 1.9221e-07}, {"name": "Hydrocarbons, unspecified", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.4486e-10}, {"name": "Hydrocarbons, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Hydrocarbons, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Hydrocarbons, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Hydrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9225e-07}, {"name": "Hydrogen fluoride", "categories": ["air"], "amount": 1.2707e-06}, {"name": "Hydrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 1.8492e-06}, {"name": "Hydrogen peroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9554e-08}, {"name": "Hydrogen peroxide", "categories": ["air"], "amount": 6.68e-08}, {"name": "Hydrogen peroxide", "categories": ["air", "urban air close to ground"], "amount": 1.0405e-07}, {"name": "Hydrogen peroxide", "categories": ["water", "ground-"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water", "ocean"], "amount": 8.1839e-13}, {"name": "Hydrogen peroxide", "categories": ["water", "surface water"], "amount": 5.0462e-09}, {"name": "Hydrogen peroxide", "categories": ["water"], "amount": 2.5235e-09}, {"name": "Hymexazol", "categories": ["soil", "agricultural"], "amount": 2.4116e-08}, {"name": "Imazalil", "categories": ["soil", "agricultural"], "amount": 2.3788e-08}, {"name": "Imazaquin", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5165e-07}, {"name": "Imazaquin", "categories": ["soil", "agricultural"], "amount": 6.5434e-09}, {"name": "Imazethapyr", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3437e-07}, {"name": "Imazethapyr", "categories": ["soil", "agricultural"], "amount": 1.5074e-07}, {"name": "Imazethapyr", "categories": ["soil", "forestry"], "amount": 1.9926e-08}, {"name": "Imazethapyr", "categories": ["water", "ground-"], "amount": 2.0952e-07}, {"name": "Imazethapyr", "categories": ["water"], "amount": 1.0485e-07}, {"name": "Imidacloprid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2462e-06}, {"name": "Imidacloprid", "categories": ["air"], "amount": 1.4738e-06}, {"name": "Imidacloprid", "categories": ["soil", "agricultural"], "amount": 1.099e-07}, {"name": "Imidacloprid", "categories": ["soil", "forestry"], "amount": 4.04e-08}, {"name": "Imidacloprid", "categories": ["water", "ground-"], "amount": 1.3117e-06}, {"name": "Imidacloprid", "categories": ["water"], "amount": 6.56e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["air"], "amount": 1.1047e-06}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "Indeno(1,2,3-cd)pyrene", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Insecticides, unspecified", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "ground-"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water", "ocean"], "amount": 1.57199659305063e-05}, {"name": "Insecticides, unspecified", "categories": ["water", "surface water"], "amount": 0.000377412284590839}, {"name": "Insecticides, unspecified", "categories": ["water"], "amount": 0.000196564965167404}, {"name": "Iodine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7326e-07}, {"name": "Iodine", "categories": ["air"], "amount": 4.6868e-07}, {"name": "Iodine", "categories": ["air", "urban air close to ground"], "amount": 7.6411e-07}, {"name": "Iodosulfuron-methyl-sodium", "categories": ["soil", "agricultural"], "amount": 3.2133e-06}, {"name": "Iprodione", "categories": ["soil", "agricultural"], "amount": 7.2803e-07}, {"name": "Iprovalicarb", "categories": ["soil", "agricultural"], "amount": 2.9525e-07}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 1.3021e-09}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0535e-10}, {"name": "Isoprene", "categories": ["air"], "amount": 4.9917e-09}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 9.8781e-09}, {"name": "Isoproturon", "categories": ["soil", "agricultural"], "amount": 8.889e-07}, {"name": "Isoxaflutole", "categories": ["soil", "agricultural"], "amount": 1.2899e-07}, {"name": "Kaolin", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Kresoxim-methyl", "categories": ["soil", "agricultural"], "amount": 3.2731e-08}, {"name": "Lactofen", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00010537}, {"name": "Lactofen", "categories": ["soil", "agricultural"], "amount": 5.7621e-05}, {"name": "Lambda-cyhalothrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00034606}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "agricultural"], "amount": 1.6708e-07}, {"name": "Lambda-cyhalothrin", "categories": ["soil", "forestry"], "amount": 7.1163e-08}, {"name": "Lambda-cyhalothrin", "categories": ["water", "ground-"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water", "surface water"], "amount": 6.6083e-05}, {"name": "Lambda-cyhalothrin", "categories": ["water"], "amount": 3.8295e-05}, {"name": "Lanthanum", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6828e-08}, {"name": "Lanthanum", "categories": ["air"], "amount": 3.0353e-08}, {"name": "Lanthanum", "categories": ["air", "urban air close to ground"], "amount": 4.3878e-08}, {"name": "Lauric acid", "categories": ["air"], "amount": 6.1546e-08}, {"name": "Lauric acid", "categories": ["water"], "amount": 1.9163e-08}, {"name": "Lead II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0017697}, {"name": "Lead II", "categories": ["air"], "amount": 0.0017441}, {"name": "Lead II", "categories": ["air", "urban air close to ground"], "amount": 0.0017185}, {"name": "Lead II", "categories": ["soil", "agricultural"], "amount": 0.0053691}, {"name": "Lead II", "categories": ["soil", "forestry"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil", "industrial"], "amount": 2.9761e-06}, {"name": "Lead II", "categories": ["soil"], "amount": 0.002686}, {"name": "Lead II", "categories": ["water", "ground-"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water", "ocean"], "amount": 9.9509e-07}, {"name": "Lead II", "categories": ["water", "surface water"], "amount": 5.0348e-06}, {"name": "Lead II", "categories": ["water"], "amount": 3.0149e-06}, {"name": "Lenacil", "categories": ["soil", "agricultural"], "amount": 1.2874e-06}, {"name": "Lindane", "categories": ["soil", "agricultural"], "amount": 0.00022605}, {"name": "Linuron", "categories": ["soil", "agricultural"], "amount": 7.1915e-06}, {"name": "Lithium I", "categories": ["air", "urban air close to ground"], "amount": 4.0201e-07}, {"name": "Lithium I", "categories": ["soil"], "amount": 1.7654e-08}, {"name": "Lithium I", "categories": ["water", "ground-"], "amount": 3.5896e-08}, {"name": "Lithium carbonate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5025e-07}, {"name": "Lithium carbonate", "categories": ["air"], "amount": 2.524e-07}, {"name": "Lithium carbonate", "categories": ["air", "urban air close to ground"], "amount": 3.5455e-07}, {"name": "Lufenuron", "categories": ["soil", "agricultural"], "amount": 1.3092e-07}, {"name": "Lufenuron", "categories": ["soil", "forestry"], "amount": 2.0837e-08}, {"name": "MCPA", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2812e-05}, {"name": "MCPA", "categories": ["soil", "agricultural"], "amount": 2.4663e-05}, {"name": "MCPA", "categories": ["water", "ground-"], "amount": 2.5218e-05}, {"name": "MCPA", "categories": ["water", "surface water"], "amount": 2.5218e-05}, {"name": "MCPB", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4501e-07}, {"name": "MCPB", "categories": ["soil", "agricultural"], "amount": 2.892e-07}, {"name": "MCPB", "categories": ["water", "ground-"], "amount": 1.7093e-06}, {"name": "MCPB", "categories": ["water", "surface water"], "amount": 1.7093e-06}, {"name": "Magnesium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7157e-09}, {"name": "Magnesium", "categories": ["air"], "amount": 4.7588e-09}, {"name": "Magnesium", "categories": ["air", "urban air close to ground"], "amount": 7.802e-09}, {"name": "Magnesium", "categories": ["soil", "agricultural"], "amount": 3.8052e-10}, {"name": "Magnesium", "categories": ["soil", "forestry"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil", "industrial"], "amount": 1.04e-10}, {"name": "Magnesium", "categories": ["soil"], "amount": 2.4226e-10}, {"name": "Magnesium", "categories": ["water", "ground-"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water", "ocean"], "amount": 6.2435e-14}, {"name": "Magnesium", "categories": ["water", "surface water"], "amount": 3.2881e-10}, {"name": "Magnesium", "categories": ["water"], "amount": 1.6444e-10}, {"name": "Magnesium phosphide", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Malathion", "categories": ["soil", "agricultural"], "amount": 3.9482e-10}, {"name": "Maleic anhydride", "categories": ["water"], "amount": 2.55e-07}, {"name": "Maleic hydrazide", "categories": ["soil", "agricultural"], "amount": 5.1613e-09}, {"name": "Mancozeb", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8568e-06}, {"name": "Mancozeb", "categories": ["air"], "amount": 4.0894e-06}, {"name": "Mancozeb", "categories": ["soil", "agricultural"], "amount": 1.2981e-11}, {"name": "Mancozeb", "categories": ["soil", "forestry"], "amount": 2.5689e-12}, {"name": "Mancozeb", "categories": ["water", "ground-"], "amount": 1.6476e-06}, {"name": "Mancozeb", "categories": ["water"], "amount": 8.2425e-07}, {"name": "Mandipropamid", "categories": ["soil", "agricultural"], "amount": 1.8401e-08}, {"name": "Maneb", "categories": ["soil", "agricultural"], "amount": 8.0915e-08}, {"name": "Mecoprop", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mefenpyr-diethyl", "categories": ["soil", "agricultural"], "amount": 1.6507e-07}, {"name": "Mepanipyrim", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mepiquat chloride", "categories": ["soil", "agricultural"], "amount": 1.9758e-12}, {"name": "Mepronil", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Mercury II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.13017}, {"name": "Mercury II", "categories": ["air"], "amount": 0.12759}, {"name": "Mercury II", "categories": ["air", "urban air close to ground"], "amount": 0.12501}, {"name": "Mercury II", "categories": ["soil", "agricultural"], "amount": 0.43191}, {"name": "Mercury II", "categories": ["soil", "forestry"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil", "industrial"], "amount": 0.001267}, {"name": "Mercury II", "categories": ["soil"], "amount": 0.21659}, {"name": "Mercury II", "categories": ["water", "ground-"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water", "ocean"], "amount": 0.0011404}, {"name": "Mercury II", "categories": ["water", "surface water"], "amount": 0.0017941}, {"name": "Mercury II", "categories": ["water"], "amount": 0.0014673}, {"name": "Mesosulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Mesosulfuron-methyl (prop)", "categories": ["soil", "agricultural"], "amount": 1.831e-08}, {"name": "Metalaxil", "categories": ["soil", "agricultural"], "amount": 3.777e-07}, {"name": "Metalaxyl-M", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1744e-07}, {"name": "Metalaxyl-M", "categories": ["air"], "amount": 2.1049e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "agricultural"], "amount": 1.1198e-06}, {"name": "Metalaxyl-M", "categories": ["soil", "forestry"], "amount": 2.2644e-07}, {"name": "Metalaxyl-M", "categories": ["water", "ground-"], "amount": 9.6067e-07}, {"name": "Metalaxyl-M", "categories": ["water"], "amount": 4.8054e-07}, {"name": "Metam-sodium", "categories": ["soil", "agricultural"], "amount": 1.1475e-06}, {"name": "Metamitron", "categories": ["soil", "agricultural"], "amount": 1.8666e-07}, {"name": "Metazachlor", "categories": ["soil", "agricultural"], "amount": 2e-08}, {"name": "Methamidophos", "categories": ["soil", "agricultural"], "amount": 6.7549e-06}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.4166e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.2121e-05}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.00010008}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0147e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1.0533e-08}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1.0919e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8228e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 6.4574e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 9.0919e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ground-"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "ocean"], "amount": 2.8017e-08}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water", "surface water"], "amount": 4.4908e-07}, {"name": "Methane, dichloro-, HCC-30", "categories": ["water"], "amount": 2.3855e-07}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6052e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 2.6155e-06}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 2.6258e-06}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0314e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 8.42e-10}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 8.8085e-10}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5531e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 1.9896e-08}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 2.4261e-08}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.7001e-08}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 4.8548e-08}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 5.0095e-08}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8354e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 8.0891e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 8.3428e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ground-"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "ocean"], "amount": 2.0336e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water", "surface water"], "amount": 7.1713e-06}, {"name": "Methane, tetrachloro-, R-10", "categories": ["water"], "amount": 4.6024e-06}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9521e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 4.7182e-08}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6.4842e-08}, {"name": "Methanesulfonic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.3748e-06}, {"name": "Methanesulfonic acid", "categories": ["air"], "amount": 3.339e-06}, {"name": "Methanesulfonic acid", "categories": ["air", "urban air close to ground"], "amount": 3.3032e-06}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.4341e-09}, {"name": "Methanol", "categories": ["air"], "amount": 3.9861e-09}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 5.5382e-09}, {"name": "Methanol", "categories": ["water", "ground-"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water", "ocean"], "amount": 2.5397e-11}, {"name": "Methanol", "categories": ["water", "surface water"], "amount": 1.5506e-08}, {"name": "Methanol", "categories": ["water"], "amount": 7.7659e-09}, {"name": "Methidathion", "categories": ["soil", "agricultural"], "amount": 1.6337e-05}, {"name": "Methiocarb", "categories": ["soil", "agricultural"], "amount": 1.0011e-07}, {"name": "Methomyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8038e-05}, {"name": "Methomyl", "categories": ["soil", "agricultural"], "amount": 3.7939e-06}, {"name": "Methomyl", "categories": ["soil", "forestry"], "amount": 7.2256e-07}, {"name": "Methomyl", "categories": ["water", "ground-"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water", "surface water"], "amount": 1.2167e-05}, {"name": "Methomyl", "categories": ["water"], "amount": 6.0847e-06}, {"name": "Methoprene", "categories": ["soil", "agricultural"], "amount": 8.5282e-09}, {"name": "Methoxyfenozide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4605e-06}, {"name": "Methoxyfenozide", "categories": ["air"], "amount": 2.7585e-06}, {"name": "Methoxyfenozide", "categories": ["soil", "agricultural"], "amount": 8.9824e-07}, {"name": "Methoxyfenozide", "categories": ["soil", "forestry"], "amount": 1.2615e-07}, {"name": "Methoxyfenozide", "categories": ["water", "ground-"], "amount": 4.5511e-06}, {"name": "Methoxyfenozide", "categories": ["water"], "amount": 2.323e-06}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.4978e-09}, {"name": "Methyl acetate", "categories": ["air"], "amount": 1.7057e-08}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 2.6616e-08}, {"name": "Methyl acetate", "categories": ["water", "ground-"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water", "ocean"], "amount": 5.7314e-10}, {"name": "Methyl acetate", "categories": ["water", "surface water"], "amount": 8.8246e-08}, {"name": "Methyl acetate", "categories": ["water"], "amount": 4.4409e-08}, {"name": "Methyl acrylate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8166e-09}, {"name": "Methyl acrylate", "categories": ["air"], "amount": 5.6631e-08}, {"name": "Methyl acrylate", "categories": ["air", "urban air close to ground"], "amount": 1.0445e-07}, {"name": "Methyl acrylate", "categories": ["water", "ground-"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water", "ocean"], "amount": 1.0019e-09}, {"name": "Methyl acrylate", "categories": ["water", "surface water"], "amount": 4.0382e-07}, {"name": "Methyl acrylate", "categories": ["water"], "amount": 2.0241e-07}, {"name": "Methyl borate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1991e-08}, {"name": "Methyl borate", "categories": ["air"], "amount": 1.3551e-08}, {"name": "Methyl borate", "categories": ["air", "urban air close to ground"], "amount": 1.5111e-08}, {"name": "Methyl borate", "categories": ["water", "ground-"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water", "ocean"], "amount": 3.836e-10}, {"name": "Methyl borate", "categories": ["water", "surface water"], "amount": 2.757e-07}, {"name": "Methyl borate", "categories": ["water"], "amount": 1.3804e-07}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2436e-10}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 7.8919e-10}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 1.154e-09}, {"name": "Methyl ethyl ketone", "categories": ["water", "surface water"], "amount": 7.527e-09}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.0431e-08}, {"name": "Methyl formate", "categories": ["air"], "amount": 7.0677e-08}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 1.1092e-07}, {"name": "Methyl formate", "categories": ["water", "ground-"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water", "ocean"], "amount": 2.8116e-09}, {"name": "Methyl formate", "categories": ["water", "surface water"], "amount": 3.1808e-07}, {"name": "Methyl formate", "categories": ["water"], "amount": 1.6045e-07}, {"name": "Methyl parathion", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2524e-05}, {"name": "Methyl parathion", "categories": ["soil", "agricultural"], "amount": 1.2931e-06}, {"name": "Methylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9833e-08}, {"name": "Methylamine", "categories": ["air"], "amount": 3.9761e-07}, {"name": "Methylamine", "categories": ["air", "urban air close to ground"], "amount": 7.7539e-07}, {"name": "Methylamine", "categories": ["water", "ground-"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water", "ocean"], "amount": 3.2737e-12}, {"name": "Methylamine", "categories": ["water", "surface water"], "amount": 9.5302e-09}, {"name": "Methylamine", "categories": ["water"], "amount": 4.7667e-09}, {"name": "Metobromuron", "categories": ["soil", "agricultural"], "amount": 6.8022e-06}, {"name": "Metolachlor", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6935e-07}, {"name": "Metolachlor", "categories": ["soil", "agricultural"], "amount": 1.7405e-07}, {"name": "Metolachlor", "categories": ["soil", "forestry"], "amount": 2.2606e-08}, {"name": "Metolachlor", "categories": ["water", "ground-"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water", "surface water"], "amount": 1.2331e-06}, {"name": "Metolachlor", "categories": ["water"], "amount": 6.2077e-07}, {"name": "Metosulam", "categories": ["soil", "agricultural"], "amount": 2.4261e-07}, {"name": "Metribuzin", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1888e-06}, {"name": "Metribuzin", "categories": ["soil", "agricultural"], "amount": 1.8876e-06}, {"name": "Metribuzin", "categories": ["water", "ground-"], "amount": 8.2497e-06}, {"name": "Metsulfuron-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4409e-06}, {"name": "Metsulfuron-methyl", "categories": ["air"], "amount": 1.5163e-06}, {"name": "Metsulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 8.9572e-07}, {"name": "Metsulfuron-methyl", "categories": ["soil", "forestry"], "amount": 1.9538e-07}, {"name": "Metsulfuron-methyl", "categories": ["water", "ground-"], "amount": 6.4998e-07}, {"name": "Metsulfuron-methyl", "categories": ["water"], "amount": 3.2521e-07}, {"name": "Mevinfos", "categories": ["soil", "agricultural"], "amount": 5.6092e-06}, {"name": "Mineral oil", "categories": ["soil", "agricultural"], "amount": 2.882e-08}, {"name": "Molinate", "categories": ["soil", "agricultural"], "amount": 4.4747e-05}, {"name": "Molybdenum VI", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7746e-05}, {"name": "Molybdenum VI", "categories": ["air"], "amount": 2.7297e-05}, {"name": "Molybdenum VI", "categories": ["air", "urban air close to ground"], "amount": 2.6848e-05}, {"name": "Molybdenum VI", "categories": ["soil", "agricultural"], "amount": 8.6565e-05}, {"name": "Molybdenum VI", "categories": ["soil", "forestry"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil", "industrial"], "amount": 5.0624e-07}, {"name": "Molybdenum VI", "categories": ["soil"], "amount": 4.3535e-05}, {"name": "Molybdenum VI", "categories": ["water", "ground-"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water", "ocean"], "amount": 2.9682e-08}, {"name": "Molybdenum VI", "categories": ["water", "surface water"], "amount": 1.008e-06}, {"name": "Molybdenum VI", "categories": ["water"], "amount": 5.1883e-07}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8996e-10}, {"name": "Monochloroethane", "categories": ["air"], "amount": 6.1334e-10}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 9.3672e-10}, {"name": "Monochloroethane", "categories": ["water", "ground-"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water", "ocean"], "amount": 1.5276e-10}, {"name": "Monochloroethane", "categories": ["water", "surface water"], "amount": 6.6678e-10}, {"name": "Monochloroethane", "categories": ["water"], "amount": 4.0977e-10}, {"name": "Monocrotophos", "categories": ["soil", "agricultural"], "amount": 5.2597e-05}, {"name": "Monoethanolamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.7956e-08}, {"name": "Monoethanolamine", "categories": ["air"], "amount": 8.9971e-07}, {"name": "Monoethanolamine", "categories": ["air", "urban air close to ground"], "amount": 1.7615e-06}, {"name": "Monoethanolamine", "categories": ["water"], "amount": 1.6386e-08}, {"name": "Myclobutanil", "categories": ["soil", "agricultural"], "amount": 8.7798e-06}, {"name": "N-methyl-2-pyrrolidone", "categories": ["air"], "amount": 2.1077e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4112e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 6.2186e-08}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1.1026e-07}, {"name": "Naled", "categories": ["soil", "agricultural"], "amount": 1.5796e-05}, {"name": "Naphthalene", "categories": ["air"], "amount": 1.5403e-06}, {"name": "Naphthalene", "categories": ["water", "surface water"], "amount": 1.3668e-07}, {"name": "Napropamide", "categories": ["soil", "agricultural"], "amount": 1.9952e-07}, {"name": "Nickel II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0999e-06}, {"name": "Nickel II", "categories": ["air"], "amount": 1.1118e-06}, {"name": "Nickel II", "categories": ["air", "urban air close to ground"], "amount": 1.1237e-06}, {"name": "Nickel II", "categories": ["soil", "agricultural"], "amount": 1.6097e-06}, {"name": "Nickel II", "categories": ["soil", "forestry"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil", "industrial"], "amount": 3.4474e-07}, {"name": "Nickel II", "categories": ["soil"], "amount": 9.7722e-07}, {"name": "Nickel II", "categories": ["water", "ground-"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water", "ocean"], "amount": 3.4465e-08}, {"name": "Nickel II", "categories": ["water", "surface water"], "amount": 6.6923e-07}, {"name": "Nickel II", "categories": ["water"], "amount": 3.5185e-07}, {"name": "Nicosulfuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.1876e-08}, {"name": "Nicosulfuron", "categories": ["air"], "amount": 1.026e-07}, {"name": "Nicosulfuron", "categories": ["soil", "agricultural"], "amount": 3.8341e-08}, {"name": "Nicosulfuron", "categories": ["soil", "forestry"], "amount": 1.7266e-08}, {"name": "Nicosulfuron", "categories": ["water", "ground-"], "amount": 5.2272e-08}, {"name": "Nicosulfuron", "categories": ["water"], "amount": 2.6141e-08}, {"name": "Nitric acid", "categories": ["air"], "amount": 1.975e-07}, {"name": "Nitric acid", "categories": ["air", "urban air close to ground"], "amount": 3.7498e-07}, {"name": "Nitric acid", "categories": ["soil", "industrial"], "amount": 1.0523e-10}, {"name": "Nitrobenzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.1413e-06}, {"name": "Nitrobenzene", "categories": ["air"], "amount": 2.7628e-06}, {"name": "Nitrobenzene", "categories": ["air", "urban air close to ground"], "amount": 4.3843e-06}, {"name": "Nitrobenzene", "categories": ["water", "ground-"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water", "ocean"], "amount": 4.2266e-08}, {"name": "Nitrobenzene", "categories": ["water", "surface water"], "amount": 4.974e-06}, {"name": "Nitrobenzene", "categories": ["water"], "amount": 2.5081e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.5684e-06}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 3.5132e-06}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 3.4581e-06}, {"name": "Norflurazon", "categories": ["soil", "agricultural"], "amount": 1.7156e-07}, {"name": "Novaluron", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Octanoic acid", "categories": ["soil", "agricultural"], "amount": 1.7464e-08}, {"name": "Oils, unspecified", "categories": ["soil", "agricultural"], "amount": 1.9907e-09}, {"name": "Oils, unspecified", "categories": ["soil", "forestry"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil", "industrial"], "amount": 2.7526e-10}, {"name": "Oils, unspecified", "categories": ["soil"], "amount": 1.3536e-09}, {"name": "Oils, unspecified", "categories": ["water", "ground-"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water", "ocean"], "amount": 2.5961e-09}, {"name": "Oils, unspecified", "categories": ["water", "surface water"], "amount": 3.6238e-08}, {"name": "Oils, unspecified", "categories": ["water"], "amount": 1.9604e-08}, {"name": "Oryzalin", "categories": ["soil", "agricultural"], "amount": 4.6437e-07}, {"name": "Oxamyl", "categories": ["soil", "agricultural"], "amount": 8.1802e-07}, {"name": "Oxasulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Oxydemeton-methyl", "categories": ["soil", "agricultural"], "amount": 8.5132e-06}, {"name": "Oxyfluorfen", "categories": ["soil", "agricultural"], "amount": 6.4773e-08}, {"name": "P-tert-amylphenol", "categories": ["soil", "agricultural"], "amount": 2.7769e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0201e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air"], "amount": 1.1047e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["air", "urban air close to ground"], "amount": 2.1074e-06}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["soil"], "amount": 5.3937e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ground-"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "ocean"], "amount": 7.0817e-08}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water", "surface water"], "amount": 5.087e-07}, {"name": "PAH, polycyclic aromatic hydrocarbons", "categories": ["water"], "amount": 2.8976e-07}, {"name": "Paraffins", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6031e-05}, {"name": "Paraffins", "categories": ["air"], "amount": 4.3932e-05}, {"name": "Paraffins", "categories": ["air", "urban air close to ground"], "amount": 6.1834e-05}, {"name": "Paraffins", "categories": ["water", "ground-"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water", "ocean"], "amount": 3.0686e-06}, {"name": "Paraffins", "categories": ["water", "surface water"], "amount": 1.3838e-05}, {"name": "Paraffins", "categories": ["water"], "amount": 8.4532e-06}, {"name": "Paraquat", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.558e-07}, {"name": "Paraquat", "categories": ["soil", "agricultural"], "amount": 5.7402e-08}, {"name": "Parathion", "categories": ["soil", "agricultural"], "amount": 7.8427e-06}, {"name": "Penconazole", "categories": ["soil", "agricultural"], "amount": 1.7597e-06}, {"name": "Pencycuron", "categories": ["soil", "agricultural"], "amount": 3.6666e-07}, {"name": "Pendimethalin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.8624e-07}, {"name": "Pendimethalin", "categories": ["soil", "agricultural"], "amount": 3.7949e-07}, {"name": "Pendimethalin", "categories": ["water", "ground-"], "amount": 6.1207e-07}, {"name": "Pendimethalin", "categories": ["water", "surface water"], "amount": 6.1207e-07}, {"name": "Penflufen", "categories": ["air"], "amount": 4.5159e-06}, {"name": "Penflufen", "categories": ["soil", "agricultural"], "amount": 2.3573e-06}, {"name": "Penflufen", "categories": ["water", "ground-"], "amount": 1.1546e-05}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.9403e-11}, {"name": "Pentane", "categories": ["air"], "amount": 2.4938e-10}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 4.4936e-10}, {"name": "Pentane", "categories": ["water"], "amount": 1.5211e-09}, {"name": "Permethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.2757e-07}, {"name": "Permethrin", "categories": ["soil", "agricultural"], "amount": 4.0251e-08}, {"name": "Permethrin", "categories": ["water"], "amount": 7.9473e-07}, {"name": "Pethoxamid", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Phenmedipham", "categories": ["soil", "agricultural"], "amount": 1.4906e-08}, {"name": "Phenol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7102e-08}, {"name": "Phenol", "categories": ["air"], "amount": 1.2024e-07}, {"name": "Phenol", "categories": ["air", "urban air close to ground"], "amount": 2.1339e-07}, {"name": "Phenol", "categories": ["water", "ground-"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water", "ocean"], "amount": 9.5473e-11}, {"name": "Phenol", "categories": ["water", "surface water"], "amount": 1.757e-07}, {"name": "Phenol", "categories": ["water"], "amount": 8.7899e-08}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5482e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air"], "amount": 2.0535e-05}, {"name": "Phenol, 2,4-dichloro", "categories": ["air", "urban air close to ground"], "amount": 2.5587e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.7754e-05}, {"name": "Phenol, pentachloro-", "categories": ["air"], "amount": 1.8176e-05}, {"name": "Phenol, pentachloro-", "categories": ["air", "urban air close to ground"], "amount": 1.8598e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil", "agricultural"], "amount": 3.1712e-05}, {"name": "Phenol, pentachloro-", "categories": ["soil"], "amount": 1.6652e-05}, {"name": "Phorate", "categories": ["soil", "agricultural"], "amount": 5.0094e-05}, {"name": "Phosalone", "categories": ["soil", "agricultural"], "amount": 5.1003e-07}, {"name": "Phosmet", "categories": ["soil", "agricultural"], "amount": 5.4324e-06}, {"name": "Phosphine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9565e-05}, {"name": "Phosphine", "categories": ["air"], "amount": 5.9775e-05}, {"name": "Phosphine", "categories": ["air", "urban air close to ground"], "amount": 5.9986e-05}, {"name": "Phosphorus", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2096e-09}, {"name": "Phosphorus", "categories": ["air"], "amount": 5.29e-09}, {"name": "Phosphorus", "categories": ["air", "urban air close to ground"], "amount": 8.3704e-09}, {"name": "Phosphorus", "categories": ["soil", "agricultural"], "amount": 2.1108e-10}, {"name": "Phosphorus", "categories": ["soil", "forestry"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil", "industrial"], "amount": 2.1021e-10}, {"name": "Phosphorus", "categories": ["soil"], "amount": 2.1064e-10}, {"name": "Phosphorus", "categories": ["water", "ground-"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water", "ocean"], "amount": 2.366e-10}, {"name": "Phosphorus", "categories": ["water", "surface water"], "amount": 1.9831e-09}, {"name": "Phosphorus", "categories": ["water"], "amount": 1.1098e-09}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ground-"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "ocean"], "amount": 8.843e-10}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water", "surface water"], "amount": 8.8896e-08}, {"name": "Phthalate, butyl-benzyl-", "categories": ["water"], "amount": 4.489e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ground-"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water", "ocean"], "amount": 8.6867e-10}, {"name": "Phthalate, dibutyl-", "categories": ["water", "surface water"], "amount": 6.2885e-08}, {"name": "Phthalate, dibutyl-", "categories": ["water"], "amount": 3.1877e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ground-"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water", "ocean"], "amount": 1.6209e-11}, {"name": "Phthalate, dimethyl-", "categories": ["water", "surface water"], "amount": 2.0179e-08}, {"name": "Phthalate, dimethyl-", "categories": ["water"], "amount": 1.0097e-08}, {"name": "Picloram", "categories": ["soil", "agricultural"], "amount": 1.2758e-07}, {"name": "Picoxystrobin", "categories": ["soil", "agricultural"], "amount": 1.2241e-06}, {"name": "Picoxystrobin", "categories": ["soil", "forestry"], "amount": 1.3465e-07}, {"name": "Pinoxaden", "categories": ["soil", "agricultural"], "amount": 1.1197e-07}, {"name": "Piperonyl butoxide", "categories": ["soil", "agricultural"], "amount": 3.2021e-07}, {"name": "Pirimicarb", "categories": ["soil", "agricultural"], "amount": 8.8947e-07}, {"name": "Pirimiphos methyl", "categories": ["soil", "agricultural"], "amount": 7.3623e-08}, {"name": "Primisulfuron", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Prochloraz", "categories": ["soil", "agricultural"], "amount": 7.0674e-06}, {"name": "Procymidone", "categories": ["soil", "agricultural"], "amount": 1.4333e-08}, {"name": "Profenofos", "categories": ["soil", "agricultural"], "amount": 1.1462e-07}, {"name": "Prohexadione-calcium", "categories": ["soil", "agricultural"], "amount": 1.292e-07}, {"name": "Prometryn", "categories": ["soil", "agricultural"], "amount": 3.4557e-07}, {"name": "Pronamide", "categories": ["soil", "agricultural"], "amount": 5.6059e-06}, {"name": "Propachlor", "categories": ["soil", "agricultural"], "amount": 3.4531e-08}, {"name": "Propamocarb", "categories": ["soil", "agricultural"], "amount": 1.5006e-10}, {"name": "Propamocarb HCl", "categories": ["soil", "agricultural"], "amount": 2.5487e-08}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6002e-09}, {"name": "Propanal", "categories": ["air"], "amount": 1.222e-08}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 2.284e-08}, {"name": "Propanal", "categories": ["water", "ground-"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water", "ocean"], "amount": 1.8158e-10}, {"name": "Propanal", "categories": ["water", "surface water"], "amount": 1.0707e-07}, {"name": "Propanal", "categories": ["water"], "amount": 5.3624e-08}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7694e-10}, {"name": "Propane", "categories": ["air"], "amount": 8.3711e-10}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 1.3973e-09}, {"name": "Propanil", "categories": ["soil", "agricultural"], "amount": 4.6693e-08}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.924e-10}, {"name": "Propanol", "categories": ["air"], "amount": 1.1867e-09}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 1.681e-09}, {"name": "Propanol", "categories": ["water", "ground-"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water", "ocean"], "amount": 1.2773e-11}, {"name": "Propanol", "categories": ["water", "surface water"], "amount": 1.1013e-08}, {"name": "Propanol", "categories": ["water"], "amount": 5.5129e-09}, {"name": "Propaquizafop", "categories": ["soil", "agricultural"], "amount": 4.2352e-07}, {"name": "Propargite", "categories": ["soil", "agricultural"], "amount": 2.4322e-07}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3233e-11}, {"name": "Propene", "categories": ["air"], "amount": 2.2883e-10}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 4.4443e-10}, {"name": "Propene", "categories": ["water", "ground-"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water", "ocean"], "amount": 9.7116e-12}, {"name": "Propene", "categories": ["water", "surface water"], "amount": 1.4263e-09}, {"name": "Propene", "categories": ["water"], "amount": 7.1803e-10}, {"name": "Propham", "categories": ["soil", "agricultural"], "amount": 9.2545e-08}, {"name": "Propiconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.805e-06}, {"name": "Propiconazole", "categories": ["soil", "agricultural"], "amount": 2.5864e-07}, {"name": "Propiconazole", "categories": ["soil", "forestry"], "amount": 4.2855e-08}, {"name": "Propiconazole", "categories": ["water", "ground-"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water", "surface water"], "amount": 1.536e-05}, {"name": "Propiconazole", "categories": ["water"], "amount": 7.8581e-06}, {"name": "Propineb", "categories": ["soil", "agricultural"], "amount": 1.2426e-09}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.101e-09}, {"name": "Propionic acid", "categories": ["air"], "amount": 1.7692e-08}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 3.2282e-08}, {"name": "Propionic acid", "categories": ["water", "ground-"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water", "ocean"], "amount": 1.4145e-12}, {"name": "Propionic acid", "categories": ["water", "surface water"], "amount": 4.9602e-09}, {"name": "Propionic acid", "categories": ["water"], "amount": 2.4808e-09}, {"name": "Propoxycarbazone-sodium (prop)", "categories": ["soil", "agricultural"], "amount": 2.3742e-07}, {"name": "Propylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.6061e-09}, {"name": "Propylamine", "categories": ["air"], "amount": 2.3843e-07}, {"name": "Propylamine", "categories": ["air", "urban air close to ground"], "amount": 4.6725e-07}, {"name": "Propylamine", "categories": ["water", "ground-"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water", "ocean"], "amount": 5.3953e-12}, {"name": "Propylamine", "categories": ["water", "surface water"], "amount": 1.5614e-08}, {"name": "Propylamine", "categories": ["water"], "amount": 7.8098e-09}, {"name": "Propylene oxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.7282e-09}, {"name": "Propylene oxide", "categories": ["air"], "amount": 9.14e-09}, {"name": "Propylene oxide", "categories": ["air", "urban air close to ground"], "amount": 1.2552e-08}, {"name": "Propylene oxide", "categories": ["water", "ground-"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water", "ocean"], "amount": 4.1284e-10}, {"name": "Propylene oxide", "categories": ["water", "surface water"], "amount": 1.0122e-07}, {"name": "Propylene oxide", "categories": ["water"], "amount": 5.0815e-08}, {"name": "Proquinazid", "categories": ["soil", "agricultural"], "amount": 2.0356e-05}, {"name": "Prosulfocarb", "categories": ["soil", "agricultural"], "amount": 2.9711e-06}, {"name": "Prosulfuron", "categories": ["soil", "agricultural"], "amount": 3.2746e-06}, {"name": "Prothioconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5969e-06}, {"name": "Prothioconazole", "categories": ["soil", "agricultural"], "amount": 1.945e-06}, {"name": "Prothioconazole", "categories": ["soil", "forestry"], "amount": 1.9716e-07}, {"name": "Prothioconazole", "categories": ["water", "ground-"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water", "surface water"], "amount": 5.8982e-06}, {"name": "Prothioconazole", "categories": ["water"], "amount": 2.9737e-06}, {"name": "Pydiflumetofen", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Pymetrozine", "categories": ["soil", "agricultural"], "amount": 2.4535e-07}, {"name": "Pyraflufen-ethyl", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyraflufen-ethyl", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyraflufen-ethyl", "categories": ["water", "surface water"], "amount": 2.41788465186914e-05}, {"name": "Pyrazophos", "categories": ["soil", "agricultural"], "amount": 2.6585e-06}, {"name": "Pyrene", "categories": ["air"], "amount": 2.579e-07}, {"name": "Pyrene", "categories": ["water", "surface water"], "amount": 1.2724e-06}, {"name": "Pyrethrins", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrethrum", "categories": ["soil", "agricultural"], "amount": 2.0214e-08}, {"name": "Pyrimethanil", "categories": ["soil", "agricultural"], "amount": 1.5102e-07}, {"name": "Pyriproxyfen", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2153e-07}, {"name": "Pyriproxyfen", "categories": ["air"], "amount": 2.5307e-07}, {"name": "Pyriproxyfen", "categories": ["soil", "agricultural"], "amount": 2.3016e-09}, {"name": "Pyriproxyfen", "categories": ["soil", "forestry"], "amount": 4.6759e-11}, {"name": "Pyriproxyfen", "categories": ["water", "ground-"], "amount": 1.1269e-06}, {"name": "Pyriproxyfen", "categories": ["water"], "amount": 6.0841e-07}, {"name": "Pyroxasulfone", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Pyroxasulfone", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Pyroxasulfone", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Quinmerac", "categories": ["soil", "agricultural"], "amount": 2.0444e-07}, {"name": "Quintozene", "categories": ["soil", "agricultural"], "amount": 1.1542e-05}, {"name": "Quizalofop-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.5706e-06}, {"name": "Quizalofop-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8204e-06}, {"name": "Quizalofop-ethyl", "categories": ["water", "ground-"], "amount": 2.0228e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0219e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["air"], "amount": 2.4708e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "agricultural"], "amount": 3.8293e-06}, {"name": "Quizalofop-p-ethyl", "categories": ["soil", "forestry"], "amount": 8.754e-08}, {"name": "Quizalofop-p-ethyl", "categories": ["water", "surface water"], "amount": 2.0275e-05}, {"name": "Quizalofop-p-ethyl", "categories": ["water"], "amount": 1.0248e-05}, {"name": "Rimsulfuron", "categories": ["soil", "agricultural"], "amount": 6.796e-07}, {"name": "Rotenone", "categories": ["soil", "agricultural"], "amount": 4.286e-07}, {"name": "Saflufenacil", "categories": ["air"], "amount": 3.68620958252485e-05}, {"name": "Saflufenacil", "categories": ["soil", "agricultural"], "amount": 1.35694148106096e-05}, {"name": "Saflufenacil", "categories": ["water", "ground-"], "amount": 2.41788465186914e-05}, {"name": "Sedaxane", "categories": ["air"], "amount": 9.1712e-07}, {"name": "Sedaxane", "categories": ["soil", "agricultural"], "amount": 6.9862e-08}, {"name": "Sedaxane", "categories": ["water", "ground-"], "amount": 1.4136e-06}, {"name": "Selenium IV", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.5759e-07}, {"name": "Selenium IV", "categories": ["air"], "amount": 7.4478e-07}, {"name": "Selenium IV", "categories": ["air", "urban air close to ground"], "amount": 1.332e-06}, {"name": "Selenium IV", "categories": ["soil", "agricultural"], "amount": 2.3541e-09}, {"name": "Selenium IV", "categories": ["soil", "forestry"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil", "industrial"], "amount": 4.2164e-10}, {"name": "Selenium IV", "categories": ["soil"], "amount": 1.3879e-09}, {"name": "Selenium IV", "categories": ["water", "ground-"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water", "ocean"], "amount": 4.7434e-11}, {"name": "Selenium IV", "categories": ["water", "surface water"], "amount": 1.8648e-07}, {"name": "Selenium IV", "categories": ["water"], "amount": 9.3263e-08}, {"name": "Sethoxydim", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.0109e-08}, {"name": "Sethoxydim", "categories": ["soil", "agricultural"], "amount": 3.0416e-08}, {"name": "Sethoxydim", "categories": ["water", "ground-"], "amount": 1.2625e-06}, {"name": "Silicon", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.704e-10}, {"name": "Silicon", "categories": ["air"], "amount": 1.0473e-09}, {"name": "Silicon", "categories": ["air", "urban air close to ground"], "amount": 1.6243e-09}, {"name": "Silicon", "categories": ["soil", "agricultural"], "amount": 9.9643e-13}, {"name": "Silicon", "categories": ["soil", "forestry"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil", "industrial"], "amount": 2.5102e-13}, {"name": "Silicon", "categories": ["soil"], "amount": 6.2373e-13}, {"name": "Silicon", "categories": ["water", "ground-"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water", "ocean"], "amount": 6.6521e-14}, {"name": "Silicon", "categories": ["water", "surface water"], "amount": 1.9982e-10}, {"name": "Silicon", "categories": ["water"], "amount": 9.9941e-11}, {"name": "Silicon dioxide", "categories": ["water", "surface water"], "amount": 2.9793e-10}, {"name": "Silicon tetrachloride", "categories": ["air", "urban air close to ground"], "amount": 2.7193e-06}, {"name": "Silthiofam", "categories": ["soil", "agricultural"], "amount": 5.3828e-06}, {"name": "Silver I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0035855}, {"name": "Silver I", "categories": ["air"], "amount": 0.0035239}, {"name": "Silver I", "categories": ["air", "urban air close to ground"], "amount": 0.0034623}, {"name": "Silver I", "categories": ["soil", "agricultural"], "amount": 0.011297}, {"name": "Silver I", "categories": ["soil", "forestry"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil", "industrial"], "amount": 2.4464e-05}, {"name": "Silver I", "categories": ["soil"], "amount": 0.0056609}, {"name": "Silver I", "categories": ["water", "ground-"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water", "ocean"], "amount": 8.799e-06}, {"name": "Silver I", "categories": ["water", "surface water"], "amount": 4.7018e-05}, {"name": "Silver I", "categories": ["water"], "amount": 2.7909e-05}, {"name": "Simazine", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7888e-05}, {"name": "Simazine", "categories": ["air"], "amount": 2.9719e-05}, {"name": "Simazine", "categories": ["soil", "agricultural"], "amount": 1.237e-05}, {"name": "Simazine", "categories": ["soil", "forestry"], "amount": 2.8692e-06}, {"name": "Simazine", "categories": ["water", "ground-"], "amount": 2.9628e-05}, {"name": "Simazine", "categories": ["water"], "amount": 1.4849e-05}, {"name": "Sodium fluorosilicate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Sodium formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2064e-08}, {"name": "Sodium formate", "categories": ["air"], "amount": 4.8654e-08}, {"name": "Sodium formate", "categories": ["air", "urban air close to ground"], "amount": 8.5244e-08}, {"name": "Sodium formate", "categories": ["water", "ground-"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water", "ocean"], "amount": 3.4886e-12}, {"name": "Sodium formate", "categories": ["water", "surface water"], "amount": 1.244e-08}, {"name": "Sodium formate", "categories": ["water"], "amount": 6.2216e-09}, {"name": "Sodium hypochlorite", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.5322e-08}, {"name": "Sodium hypochlorite", "categories": ["air"], "amount": 9.6243e-08}, {"name": "Sodium hypochlorite", "categories": ["air", "urban air close to ground"], "amount": 1.2716e-07}, {"name": "Sodium perchlorate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3054e-06}, {"name": "Sodium perchlorate", "categories": ["air"], "amount": 7.1876e-06}, {"name": "Sodium perchlorate", "categories": ["air", "urban air close to ground"], "amount": 1.007e-05}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.7503e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air"], "amount": 4.2525e-07}, {"name": "Sodium tetrahydridoborate", "categories": ["air", "urban air close to ground"], "amount": 5.7547e-07}, {"name": "Spirodiclofen", "categories": ["soil", "agricultural"], "amount": 1.659e-06}, {"name": "Spiroxamine", "categories": ["soil", "agricultural"], "amount": 8.4225e-07}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1034e-10}, {"name": "Styrene", "categories": ["air"], "amount": 1.9325e-08}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 3.8039e-08}, {"name": "Styrene", "categories": ["water", "ground-"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water", "ocean"], "amount": 1.5641e-10}, {"name": "Styrene", "categories": ["water", "surface water"], "amount": 3.476e-09}, {"name": "Styrene", "categories": ["water"], "amount": 1.8162e-09}, {"name": "Sulcotrione", "categories": ["soil", "agricultural"], "amount": 0.0016618}, {"name": "Sulfosulfuron", "categories": ["soil", "agricultural"], "amount": 5.5622e-07}, {"name": "Sulfotep", "categories": ["soil", "agricultural"], "amount": 6.8789e-06}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.1615e-12}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 1.2516e-11}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 1.587e-11}, {"name": "Sulfuric acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.4607e-06}, {"name": "Sulfuric acid", "categories": ["air"], "amount": 1.4263e-05}, {"name": "Sulfuric acid", "categories": ["air", "urban air close to ground"], "amount": 2.7065e-05}, {"name": "Sulfuric acid", "categories": ["soil", "agricultural"], "amount": 1.9249e-09}, {"name": "Sulfuric acid", "categories": ["water", "surface water"], "amount": 3.2373e-09}, {"name": "Sulfuric acid", "categories": ["water"], "amount": 1.6189e-09}, {"name": "Tebuconazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1571e-06}, {"name": "Tebuconazole", "categories": ["soil", "agricultural"], "amount": 3.4365e-07}, {"name": "Tebuconazole", "categories": ["soil", "forestry"], "amount": 6.0274e-08}, {"name": "Tebuconazole", "categories": ["water", "ground-"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water", "surface water"], "amount": 7.6256e-06}, {"name": "Tebuconazole", "categories": ["water"], "amount": 3.8996e-06}, {"name": "Tebufenozide", "categories": ["soil", "agricultural"], "amount": 1.0394e-05}, {"name": "Tebufenpyrad", "categories": ["soil", "agricultural"], "amount": 9.8358e-06}, {"name": "Tebuthiuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.2539e-06}, {"name": "Tebuthiuron", "categories": ["air"], "amount": 3.3769e-06}, {"name": "Tebuthiuron", "categories": ["soil", "agricultural"], "amount": 2.729e-06}, {"name": "Tebuthiuron", "categories": ["soil", "forestry"], "amount": 5.5576e-07}, {"name": "Tebuthiuron", "categories": ["water", "ground-"], "amount": 1.5031e-06}, {"name": "Tebuthiuron", "categories": ["water"], "amount": 7.5195e-07}, {"name": "Teflubenzuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00012462}, {"name": "Teflubenzuron", "categories": ["air"], "amount": 0.00012801}, {"name": "Teflubenzuron", "categories": ["soil", "agricultural"], "amount": 0.00020081}, {"name": "Teflubenzuron", "categories": ["soil", "forestry"], "amount": 8.8437e-06}, {"name": "Teflubenzuron", "categories": ["water"], "amount": 0.00010638}, {"name": "Tefluthrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2866e-05}, {"name": "Tefluthrin", "categories": ["soil", "agricultural"], "amount": 3.5608e-06}, {"name": "Tefluthrin", "categories": ["water", "ground-"], "amount": 2.135e-05}, {"name": "Tefluthrin", "categories": ["water", "surface water"], "amount": 2.135e-05}, {"name": "Tellurium", "categories": ["air"], "amount": 7.2543e-07}, {"name": "Terbacil", "categories": ["soil", "agricultural"], "amount": 4.1231e-06}, {"name": "Terbufos", "categories": ["soil", "agricultural"], "amount": 0.00022573}, {"name": "Terbuthylazin", "categories": ["soil", "agricultural"], "amount": 1.1646e-05}, {"name": "Terbutryn", "categories": ["soil", "agricultural"], "amount": 6.5106e-05}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.7476e-07}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 1.0662e-06}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 1.4577e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ground-"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water", "ocean"], "amount": 3.6539e-07}, {"name": "Tetrachloroethylene", "categories": ["water", "surface water"], "amount": 1.1448e-06}, {"name": "Tetrachloroethylene", "categories": ["water"], "amount": 7.5507e-07}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.6446e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air"], "amount": 3.043e-05}, {"name": "Tetramethyl ammonium hydroxide", "categories": ["air", "urban air close to ground"], "amount": 4.4415e-05}, {"name": "Thallium I", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.8673e-05}, {"name": "Thallium I", "categories": ["air"], "amount": 7.9692e-05}, {"name": "Thallium I", "categories": ["air", "urban air close to ground"], "amount": 8.0711e-05}, {"name": "Thallium I", "categories": ["soil", "agricultural"], "amount": 8.1655e-05}, {"name": "Thallium I", "categories": ["soil", "forestry"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil", "industrial"], "amount": 8.146e-05}, {"name": "Thallium I", "categories": ["soil"], "amount": 8.1558e-05}, {"name": "Thallium I", "categories": ["water", "ground-"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water", "ocean"], "amount": 1.0529e-05}, {"name": "Thallium I", "categories": ["water", "surface water"], "amount": 0.00016286}, {"name": "Thallium I", "categories": ["water"], "amount": 8.6694e-05}, {"name": "Thiabendazole", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.361e-07}, {"name": "Thiabendazole", "categories": ["air"], "amount": 7.8968e-07}, {"name": "Thiabendazole", "categories": ["soil", "agricultural"], "amount": 7.9108e-08}, {"name": "Thiabendazole", "categories": ["soil", "forestry"], "amount": 6.5963e-09}, {"name": "Thiabendazole", "categories": ["water", "ground-"], "amount": 5.6695e-07}, {"name": "Thiabendazole", "categories": ["water"], "amount": 2.8451e-07}, {"name": "Thiacloprid", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thifensulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 4.9073e-06}, {"name": "Thiobencarb", "categories": ["soil", "agricultural"], "amount": 6.6096e-07}, {"name": "Thiocyclam", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Thiodicarb", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.6886e-07}, {"name": "Thiodicarb", "categories": ["soil", "agricultural"], "amount": 5.4695e-09}, {"name": "Thiodicarb", "categories": ["soil", "forestry"], "amount": 2.0849e-09}, {"name": "Thiodicarb", "categories": ["water", "ground-"], "amount": 3.3059e-06}, {"name": "Thiodicarb", "categories": ["water"], "amount": 1.6554e-06}, {"name": "Thiophanate-methyl", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.2975e-07}, {"name": "Thiophanate-methyl", "categories": ["air"], "amount": 3.5968e-07}, {"name": "Thiophanate-methyl", "categories": ["soil", "agricultural"], "amount": 3.9496e-09}, {"name": "Thiophanate-methyl", "categories": ["soil", "forestry"], "amount": 1.3525e-09}, {"name": "Thiophanate-methyl", "categories": ["water", "ground-"], "amount": 1.7223e-06}, {"name": "Thiophanate-methyl", "categories": ["water"], "amount": 8.6144e-07}, {"name": "Thiram", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9104e-07}, {"name": "Thiram", "categories": ["air"], "amount": 5.9549e-05}, {"name": "Thiram", "categories": ["soil", "agricultural"], "amount": 8.0458e-09}, {"name": "Thiram", "categories": ["soil", "forestry"], "amount": 1.9622e-09}, {"name": "Thiram", "categories": ["water", "ground-"], "amount": 3.3714e-06}, {"name": "Thiram", "categories": ["water"], "amount": 1.6877e-06}, {"name": "Titanium ion", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0091e-10}, {"name": "Titanium ion", "categories": ["air"], "amount": 6.9956e-10}, {"name": "Titanium ion", "categories": ["air", "urban air close to ground"], "amount": 9.9822e-10}, {"name": "Titanium ion", "categories": ["soil", "agricultural"], "amount": 8.9963e-11}, {"name": "Titanium ion", "categories": ["soil", "forestry"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil", "industrial"], "amount": 9.3018e-13}, {"name": "Titanium ion", "categories": ["soil"], "amount": 4.5447e-11}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.4362e-10}, {"name": "Toluene", "categories": ["air"], "amount": 2.0997e-09}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 3.8557e-09}, {"name": "Toluene", "categories": ["water", "ground-"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water", "ocean"], "amount": 2.1726e-10}, {"name": "Toluene", "categories": ["water", "surface water"], "amount": 8.0149e-09}, {"name": "Toluene", "categories": ["water"], "amount": 4.1161e-09}, {"name": "Toluene, 2-chloro", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.1007e-08}, {"name": "Toluene, 2-chloro", "categories": ["air"], "amount": 2.141e-07}, {"name": "Toluene, 2-chloro", "categories": ["air", "urban air close to ground"], "amount": 3.6719e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ground-"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water", "ocean"], "amount": 5.2652e-08}, {"name": "Toluene, 2-chloro", "categories": ["water", "surface water"], "amount": 2.6263e-07}, {"name": "Toluene, 2-chloro", "categories": ["water"], "amount": 1.5764e-07}, {"name": "Tolylfluanid", "categories": ["soil", "agricultural"], "amount": 8.7558e-09}, {"name": "Tralkoxydim", "categories": ["soil", "agricultural"], "amount": 3.2467e-06}, {"name": "Tralomethrin", "categories": ["soil", "agricultural"], "amount": 3.5591e-08}, {"name": "Triadimenol", "categories": ["soil", "agricultural"], "amount": 1.1756e-06}, {"name": "Triallate", "categories": ["air"], "amount": 2.7972e-06}, {"name": "Triallate", "categories": ["soil", "agricultural"], "amount": 5.291e-06}, {"name": "Triallate", "categories": ["water", "ground-"], "amount": 1.1251e-05}, {"name": "Triasulfuron", "categories": ["soil", "agricultural"], "amount": 3.564e-07}, {"name": "Triazamate", "categories": ["soil", "agricultural"], "amount": 2.47679060505127e-05}, {"name": "Tribenuron-methyl", "categories": ["air"], "amount": 1.998e-05}, {"name": "Tribenuron-methyl", "categories": ["soil", "agricultural"], "amount": 1.3192e-06}, {"name": "Tribenuron-methyl", "categories": ["water", "ground-"], "amount": 1.4569e-05}, {"name": "Tribufos", "categories": ["soil", "agricultural"], "amount": 5.7659e-05}, {"name": "Trichlorfon", "categories": ["soil", "agricultural"], "amount": 1.3424e-07}, {"name": "Trichlorosilane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.6786e-09}, {"name": "Trichlorosilane", "categories": ["air"], "amount": 7.3443e-09}, {"name": "Trichlorosilane", "categories": ["air", "urban air close to ground"], "amount": 1.101e-08}, {"name": "Trichlorosilane", "categories": ["water", "ground-"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water", "ocean"], "amount": 2.6724e-10}, {"name": "Trichlorosilane", "categories": ["water", "surface water"], "amount": 3.9385e-08}, {"name": "Trichlorosilane", "categories": ["water"], "amount": 1.9826e-08}, {"name": "Triclopyr", "categories": ["soil", "agricultural"], "amount": 3.0621e-06}, {"name": "Triethylene glycol", "categories": ["water", "ground-"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water", "ocean"], "amount": 2.2284e-11}, {"name": "Triethylene glycol", "categories": ["water", "surface water"], "amount": 1.3086e-07}, {"name": "Triethylene glycol", "categories": ["water"], "amount": 6.5439e-08}, {"name": "Trifloxystrobin", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35929889034342e-05}, {"name": "Trifloxystrobin", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "Trifloxystrobin", "categories": ["soil", "forestry"], "amount": 6.12114946005992e-07}, {"name": "Trifloxystrobin", "categories": ["water", "ground-"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water", "surface water"], "amount": 3.24002309297171e-05}, {"name": "Trifloxystrobin", "categories": ["water"], "amount": 1.67934699764337e-05}, {"name": "Triflumuron", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9519e-06}, {"name": "Triflumuron", "categories": ["air"], "amount": 6.3601e-06}, {"name": "Triflumuron", "categories": ["soil", "agricultural"], "amount": 8.3721e-06}, {"name": "Triflumuron", "categories": ["soil", "forestry"], "amount": 3.3518e-07}, {"name": "Triflumuron", "categories": ["water", "ground-"], "amount": 2.6618e-05}, {"name": "Triflumuron", "categories": ["water"], "amount": 1.3686e-05}, {"name": "Trifluralin", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.3743e-06}, {"name": "Trifluralin", "categories": ["soil", "agricultural"], "amount": 6.141e-06}, {"name": "Trifluralin", "categories": ["soil", "forestry"], "amount": 6.743e-07}, {"name": "Trifluralin", "categories": ["water", "ground-"], "amount": 3.3098e-05}, {"name": "Trifluralin", "categories": ["water"], "amount": 2.0598e-05}, {"name": "Triflusulfuron-methyl", "categories": ["soil", "agricultural"], "amount": 2.3684e-05}, {"name": "Triforine", "categories": ["soil", "agricultural"], "amount": 2.7283e-07}, {"name": "Trimethylamine", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.3838e-09}, {"name": "Trimethylamine", "categories": ["air"], "amount": 1.865e-07}, {"name": "Trimethylamine", "categories": ["air", "urban air close to ground"], "amount": 3.6662e-07}, {"name": "Trimethylamine", "categories": ["water", "ground-"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water", "ocean"], "amount": 7.2138e-11}, {"name": "Trimethylamine", "categories": ["water", "surface water"], "amount": 2.1764e-07}, {"name": "Trimethylamine", "categories": ["water"], "amount": 1.0886e-07}, {"name": "Trinexapac-ethyl", "categories": ["soil", "agricultural"], "amount": 2.7951e-08}, {"name": "Trisodium phosphate", "categories": ["air"], "amount": 6.9882e-09}, {"name": "Triticonazole", "categories": ["soil", "agricultural"], "amount": 5.4598e-07}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 5.1084e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ground-"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water", "ocean"], "amount": 6.5297e-09}, {"name": "VOC, volatile organic compounds", "categories": ["water", "surface water"], "amount": 5.8513e-08}, {"name": "VOC, volatile organic compounds", "categories": ["water"], "amount": 3.2522e-08}, {"name": "Vamidothion", "categories": ["soil", "agricultural"], "amount": 1.8884e-07}, {"name": "Vanadium V", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3384e-06}, {"name": "Vanadium V", "categories": ["air"], "amount": 1.3532e-06}, {"name": "Vanadium V", "categories": ["air", "urban air close to ground"], "amount": 1.368e-06}, {"name": "Vanadium V", "categories": ["soil", "agricultural"], "amount": 1.7469e-06}, {"name": "Vanadium V", "categories": ["soil", "forestry"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil", "industrial"], "amount": 9.2928e-07}, {"name": "Vanadium V", "categories": ["soil"], "amount": 1.3381e-06}, {"name": "Vinclozolin", "categories": ["soil", "agricultural"], "amount": 6.5445e-07}, {"name": "Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.0224e-08}, {"name": "Xylene", "categories": ["air"], "amount": 1.0937e-07}, {"name": "Xylene", "categories": ["air", "urban air close to ground"], "amount": 2.0852e-07}, {"name": "Xylene", "categories": ["water", "ground-"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water", "ocean"], "amount": 1.453e-09}, {"name": "Xylene", "categories": ["water", "surface water"], "amount": 1.9315e-08}, {"name": "Xylene", "categories": ["water"], "amount": 1.0384e-08}, {"name": "Zeta-cypermethrin", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.3806e-05}, {"name": "Zeta-cypermethrin", "categories": ["soil", "agricultural"], "amount": 2.8822e-08}, {"name": "Zinc II", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.9442e-05}, {"name": "Zinc II", "categories": ["air"], "amount": 5.8265e-05}, {"name": "Zinc II", "categories": ["air", "urban air close to ground"], "amount": 5.7089e-05}, {"name": "Zinc II", "categories": ["soil", "agricultural"], "amount": 0.00019694}, {"name": "Zinc II", "categories": ["soil", "forestry"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil", "industrial"], "amount": 1.4458e-06}, {"name": "Zinc II", "categories": ["soil"], "amount": 9.9195e-05}, {"name": "Zinc II", "categories": ["water", "ground-"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water", "ocean"], "amount": 2.2259e-07}, {"name": "Zinc II", "categories": ["water", "surface water"], "amount": 2.6391e-06}, {"name": "Zinc II", "categories": ["water"], "amount": 1.4308e-06}, {"name": "Zineb", "categories": ["soil", "agricultural"], "amount": 1.8287e-08}, {"name": "Ziram", "categories": ["soil", "agricultural"], "amount": 1.8734e-07}, {"name": "Zirconium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.2154e-09}, {"name": "Zirconium", "categories": ["air"], "amount": 2.1223e-09}, {"name": "Zirconium", "categories": ["air", "urban air close to ground"], "amount": 3.0292e-09}, {"name": "Zoxamide", "categories": ["soil", "agricultural"], "amount": 2.83530836414533e-06}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.8181e-09}, {"name": "m-Xylene", "categories": ["air"], "amount": 6.0813e-08}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.1781e-07}, {"name": "m-Xylene", "categories": ["water", "ground-"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water", "ocean"], "amount": 7.5507e-10}, {"name": "m-Xylene", "categories": ["water", "surface water"], "amount": 1.1376e-08}, {"name": "m-Xylene", "categories": ["water"], "amount": 6.0655e-09}, {"name": "o-Nitrotoluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.9147e-07}, {"name": "o-Nitrotoluene", "categories": ["air"], "amount": 9.7509e-07}, {"name": "o-Nitrotoluene", "categories": ["air", "urban air close to ground"], "amount": 1.6587e-06}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.0731e-09}, {"name": "o-Xylene", "categories": ["air"], "amount": 6.4957e-08}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.2384e-07}, {"name": "o-Xylene", "categories": ["water", "ground-"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water", "ocean"], "amount": 9.287e-10}, {"name": "o-Xylene", "categories": ["water", "surface water"], "amount": 1.2851e-08}, {"name": "o-Xylene", "categories": ["water"], "amount": 6.8897e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.8836e-10}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 3.1143e-09}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 5.3402e-09}, {"name": "t-Butyl methyl ether", "categories": ["water", "ground-"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water", "ocean"], "amount": 1.3789e-10}, {"name": "t-Butyl methyl ether", "categories": ["water", "surface water"], "amount": 4.7054e-08}, {"name": "t-Butyl methyl ether", "categories": ["water"], "amount": 2.3596e-08}, {"name": "tau-Fluvalinate", "categories": ["soil", "agricultural"], "amount": 3.3318e-06}]}, {"unit": "kBq U235-Eq", "name": ["EF v3.1 EN15804", "ionising radiation: human health", "human exposure efficiency relative to u235"], "exchanges": [{"name": "Americium-241", "categories": ["water", "ground-"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ground-, long-term"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "ocean"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water", "surface water"], "amount": 1.5}, {"name": "Americium-241", "categories": ["water"], "amount": 1.5}, {"name": "Antimony-124", "categories": ["water", "ground-"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ground-, long-term"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "ocean"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water", "surface water"], "amount": 0.0386}, {"name": "Antimony-124", "categories": ["water"], "amount": 0.0386}, {"name": "Antimony-125", "categories": ["water", "ground-"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ground-, long-term"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "ocean"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water", "surface water"], "amount": 0.0007}, {"name": "Antimony-125", "categories": ["water"], "amount": 0.0007}, {"name": "Caesium-134", "categories": ["air", "low population density, long-term"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["air", "urban air close to ground"], "amount": 0.564}, {"name": "Caesium-134", "categories": ["water", "ground-"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ground-, long-term"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-134", "categories": ["water", "surface water"], "amount": 6.79}, {"name": "Caesium-134", "categories": ["water"], "amount": 6.79}, {"name": "Caesium-137", "categories": ["air", "low population density, long-term"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["air", "urban air close to ground"], "amount": 0.636}, {"name": "Caesium-137", "categories": ["water", "ground-"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ground-, long-term"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water", "ocean"], "amount": 0.00371}, {"name": "Caesium-137", "categories": ["water", "surface water"], "amount": 7.86}, {"name": "Caesium-137", "categories": ["water"], "amount": 7.86}, {"name": "Carbon-14", "categories": ["air", "low population density, long-term"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 10}, {"name": "Carbon-14", "categories": ["air"], "amount": 10}, {"name": "Carbon-14", "categories": ["air", "urban air close to ground"], "amount": 10}, {"name": "Carbon-14", "categories": ["water", "ground-"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ground-, long-term"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "ocean"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water", "surface water"], "amount": 0.0557}, {"name": "Carbon-14", "categories": ["water"], "amount": 0.0557}, {"name": "Cobalt-58", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Cobalt-58", "categories": ["water", "ground-"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ground-, long-term"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "ocean"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water", "surface water"], "amount": 0.00193}, {"name": "Cobalt-58", "categories": ["water"], "amount": 0.00193}, {"name": "Cobalt-60", "categories": ["air", "low population density, long-term"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["air", "urban air close to ground"], "amount": 0.786}, {"name": "Cobalt-60", "categories": ["water", "ground-"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ground-, long-term"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water", "ocean"], "amount": 0.0186}, {"name": "Cobalt-60", "categories": ["water", "surface water"], "amount": 2.07}, {"name": "Cobalt-60", "categories": ["water"], "amount": 2.07}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "low population density, long-term"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["air", "urban air close to ground"], "amount": 0.000679}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ground-, long-term"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "ocean"], "amount": 3.29e-06}, {"name": "Hydrogen-3, Tritium", "categories": ["water", "surface water"], "amount": 2.14e-05}, {"name": "Hydrogen-3, Tritium", "categories": ["water"], "amount": 2.14e-05}, {"name": "Iodine-129", "categories": ["air", "low population density, long-term"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "non-urban air or from high stacks"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["air", "urban air close to ground"], "amount": 44.3}, {"name": "Iodine-129", "categories": ["water", "ground-"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ground-, long-term"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water", "ocean"], "amount": 4.8}, {"name": "Iodine-129", "categories": ["water", "surface water"], "amount": 4.71}, {"name": "Iodine-129", "categories": ["water"], "amount": 4.71}, {"name": "Iodine-131", "categories": ["air", "low population density, long-term"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["air", "urban air close to ground"], "amount": 0.00714}, {"name": "Iodine-131", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Iodine-131", "categories": ["water"], "amount": 0.0236}, {"name": "Iodine-133", "categories": ["air", "low population density, long-term"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air"], "amount": 0.000443}, {"name": "Iodine-133", "categories": ["air", "urban air close to ground"], "amount": 0.000443}, {"name": "Krypton-85", "categories": ["air", "low population density, long-term"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air"], "amount": 6.64e-06}, {"name": "Krypton-85", "categories": ["air", "urban air close to ground"], "amount": 6.64e-06}, {"name": "Lead-210", "categories": ["air", "low population density, long-term"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air"], "amount": 0.0714}, {"name": "Lead-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Manganese-54", "categories": ["water", "ground-"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ground-, long-term"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "ocean"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water", "surface water"], "amount": 0.015}, {"name": "Manganese-54", "categories": ["water"], "amount": 0.015}, {"name": "Plutonium-238", "categories": ["air", "low population density, long-term"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air"], "amount": 3.14}, {"name": "Plutonium-238", "categories": ["air", "urban air close to ground"], "amount": 3.14}, {"name": "Polonium-210", "categories": ["air", "low population density, long-term"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air"], "amount": 0.0714}, {"name": "Polonium-210", "categories": ["air", "urban air close to ground"], "amount": 0.0714}, {"name": "Radium-226", "categories": ["air", "low population density, long-term"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["air", "urban air close to ground"], "amount": 0.0429}, {"name": "Radium-226", "categories": ["water", "ground-"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ground-, long-term"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "ocean"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water", "surface water"], "amount": 0.00607}, {"name": "Radium-226", "categories": ["water"], "amount": 0.00607}, {"name": "Radon-222", "categories": ["air", "low population density, long-term"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air"], "amount": 0.00114}, {"name": "Radon-222", "categories": ["air", "urban air close to ground"], "amount": 0.00114}, {"name": "Ruthenium-106", "categories": ["water", "ground-"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ground-, long-term"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "ocean"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water", "surface water"], "amount": 0.00679}, {"name": "Ruthenium-106", "categories": ["water"], "amount": 0.00679}, {"name": "Silver-110", "categories": ["water", "ground-"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ground-, long-term"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "ocean"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water", "surface water"], "amount": 0.0236}, {"name": "Silver-110", "categories": ["water"], "amount": 0.0236}, {"name": "Strontium-90", "categories": ["water", "ground-"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ground-, long-term"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "ocean"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water", "surface water"], "amount": 0.000193}, {"name": "Strontium-90", "categories": ["water"], "amount": 0.000193}, {"name": "Thorium-230", "categories": ["air", "low population density, long-term"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air"], "amount": 2.14}, {"name": "Thorium-230", "categories": ["air", "urban air close to ground"], "amount": 2.14}, {"name": "Uranium-234", "categories": ["air", "low population density, long-term"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["air", "urban air close to ground"], "amount": 4.57}, {"name": "Uranium-234", "categories": ["water", "ground-"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ground-, long-term"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-234", "categories": ["water", "surface water"], "amount": 0.114}, {"name": "Uranium-234", "categories": ["water"], "amount": 0.114}, {"name": "Uranium-235", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Uranium-235", "categories": ["air"], "amount": 1}, {"name": "Uranium-235", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Uranium-235", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water", "ocean"], "amount": 0.00114}, {"name": "Uranium-235", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-235", "categories": ["water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["air", "low population density, long-term"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["air", "urban air close to ground"], "amount": 0.386}, {"name": "Uranium-238", "categories": ["water", "ground-"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ground-, long-term"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water", "ocean"], "amount": 0.00107}, {"name": "Uranium-238", "categories": ["water", "surface water"], "amount": 0.107}, {"name": "Uranium-238", "categories": ["water"], "amount": 0.107}, {"name": "Xenon-133", "categories": ["air", "low population density, long-term"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air"], "amount": 6.71e-06}, {"name": "Xenon-133", "categories": ["air", "urban air close to ground"], "amount": 6.71e-06}]}, {"unit": "dimensionless", "name": ["EF v3.1 EN15804", "land use", "soil quality index"], "exchanges": [{"name": "Occupation, annual crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 39.581}, {"name": "Occupation, annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 36.405}, {"name": "Occupation, annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.946}, {"name": "Occupation, arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conservation tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, conventional tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, arable, reduced tillage (obsolete)", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, bare area (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, construction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 51.699}, {"name": "Occupation, dump site", "categories": ["natural resource", "land"], "amount": 105.24}, {"name": "Occupation, field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, forest, extensive", "categories": ["natural resource", "land"], "amount": 18.128}, {"name": "Occupation, forest, intensive", "categories": ["natural resource", "land"], "amount": 33.964}, {"name": "Occupation, forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 11.459}, {"name": "Occupation, forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 11.488}, {"name": "Occupation, forest, unspecified", "categories": ["natural resource", "land"], "amount": 21.463}, {"name": "Occupation, grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 35.641}, {"name": "Occupation, grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 48.218}, {"name": "Occupation, industrial area", "categories": ["natural resource", "land"], "amount": 139.1}, {"name": "Occupation, mineral extraction site", "categories": ["natural resource", "land"], "amount": 110.79}, {"name": "Occupation, pasture, man made", "categories": ["natural resource", "land"], "amount": 54.923}, {"name": "Occupation, pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 38.973}, {"name": "Occupation, pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 58.117}, {"name": "Occupation, permanent crop", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 46.211}, {"name": "Occupation, permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 50.191}, {"name": "Occupation, shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 17.602}, {"name": "Occupation, snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 85.576}, {"name": "Occupation, traffic area, rail network", "categories": ["natural resource", "land"], "amount": 138.81}, {"name": "Occupation, traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 121.55}, {"name": "Occupation, traffic area, road network", "categories": ["natural resource", "land"], "amount": 161.52}, {"name": "Occupation, unspecified", "categories": ["natural resource", "land"], "amount": 69.262}, {"name": "Occupation, unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 28.288}, {"name": "Occupation, urban, continuously built", "categories": ["natural resource", "land"], "amount": 165.22}, {"name": "Occupation, urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 116.16}, {"name": "Occupation, urban, green area", "categories": ["natural resource", "land"], "amount": 48.764}, {"name": "Occupation, urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 138.72}, {"name": "Occupation, wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Occupation, wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -17.458}, {"name": "Transformation, from annual crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": -395.81}, {"name": "Transformation, from annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": -364.05}, {"name": "Transformation, from annual crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -509.46}, {"name": "Transformation, from arable land, unspecified use", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from bare area (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": -516.99}, {"name": "Transformation, from dump site", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from dump site, slag compartment", "categories": ["natural resource", "land"], "amount": -4472.6}, {"name": "Transformation, from field margin/hedgerow", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from forest, extensive", "categories": ["natural resource", "land"], "amount": -181.28}, {"name": "Transformation, from forest, intensive", "categories": ["natural resource", "land"], "amount": -339.64}, {"name": "Transformation, from forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": -114.59}, {"name": "Transformation, from forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": -114.88}, {"name": "Transformation, from forest, unspecified", "categories": ["natural resource", "land"], "amount": -214.63}, {"name": "Transformation, from grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": -356.41}, {"name": "Transformation, from grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": -482.18}, {"name": "Transformation, from industrial area", "categories": ["natural resource", "land"], "amount": -5911.8}, {"name": "Transformation, from mineral extraction site", "categories": ["natural resource", "land"], "amount": -4708.4}, {"name": "Transformation, from pasture, man made", "categories": ["natural resource", "land"], "amount": -549.23}, {"name": "Transformation, from pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": -389.73}, {"name": "Transformation, from pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": -581.17}, {"name": "Transformation, from permanent crop", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": -462.11}, {"name": "Transformation, from permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": -501.91}, {"name": "Transformation, from shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": -176.02}, {"name": "Transformation, from snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": -855.76}, {"name": "Transformation, from traffic area, rail network", "categories": ["natural resource", "land"], "amount": -5899.2}, {"name": "Transformation, from traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": -5165.9}, {"name": "Transformation, from traffic area, road network", "categories": ["natural resource", "land"], "amount": -6864.8}, {"name": "Transformation, from unknown", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified", "categories": ["natural resource", "land"], "amount": -2943.6}, {"name": "Transformation, from unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": -282.88}, {"name": "Transformation, from urban, continuously built", "categories": ["natural resource", "land"], "amount": -7021.9}, {"name": "Transformation, from urban, discontinuously built", "categories": ["natural resource", "land"], "amount": -4937}, {"name": "Transformation, from urban, green area", "categories": ["natural resource", "land"], "amount": -2072.5}, {"name": "Transformation, from urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": -5895.4}, {"name": "Transformation, from wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, from wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": 174.58}, {"name": "Transformation, to annual crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, flooded crop", "categories": ["natural resource", "land"], "amount": 395.81}, {"name": "Transformation, to annual crop, greenhouse", "categories": ["natural resource", "land"], "amount": 364.05}, {"name": "Transformation, to annual crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to annual crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to annual crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to annual crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 509.46}, {"name": "Transformation, to arable land, unspecified use", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to bare area (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to cropland fallow (non-use)", "categories": ["natural resource", "land"], "amount": 516.99}, {"name": "Transformation, to dump site", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, inert material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, residual material landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, sanitary landfill", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to dump site, slag compartment", "categories": ["natural resource", "land"], "amount": 4472.6}, {"name": "Transformation, to field margin/hedgerow", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to forest, extensive", "categories": ["natural resource", "land"], "amount": 181.28}, {"name": "Transformation, to forest, intensive", "categories": ["natural resource", "land"], "amount": 339.64}, {"name": "Transformation, to forest, primary (non-use)", "categories": ["natural resource", "land"], "amount": 114.59}, {"name": "Transformation, to forest, secondary (non-use)", "categories": ["natural resource", "land"], "amount": 114.88}, {"name": "Transformation, to forest, unspecified", "categories": ["natural resource", "land"], "amount": 214.63}, {"name": "Transformation, to grassland, natural (non-use)", "categories": ["natural resource", "land"], "amount": 356.41}, {"name": "Transformation, to grassland, natural, for livestock grazing", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to heterogeneous, agricultural", "categories": ["natural resource", "land"], "amount": 482.18}, {"name": "Transformation, to industrial area", "categories": ["natural resource", "land"], "amount": 5911.8}, {"name": "Transformation, to mineral extraction site", "categories": ["natural resource", "land"], "amount": 4708.4}, {"name": "Transformation, to pasture, man made", "categories": ["natural resource", "land"], "amount": 549.23}, {"name": "Transformation, to pasture, man made, extensive", "categories": ["natural resource", "land"], "amount": 389.73}, {"name": "Transformation, to pasture, man made, intensive", "categories": ["natural resource", "land"], "amount": 581.17}, {"name": "Transformation, to permanent crop", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to permanent crop, non-irrigated, extensive", "categories": ["natural resource", "land"], "amount": 462.11}, {"name": "Transformation, to permanent crop, non-irrigated, intensive", "categories": ["natural resource", "land"], "amount": 501.91}, {"name": "Transformation, to shrub land, sclerophyllous", "categories": ["natural resource", "land"], "amount": 176.02}, {"name": "Transformation, to snow and ice (non-use)", "categories": ["natural resource", "land"], "amount": 855.76}, {"name": "Transformation, to traffic area, rail network", "categories": ["natural resource", "land"], "amount": 5899.2}, {"name": "Transformation, to traffic area, rail/road embankment", "categories": ["natural resource", "land"], "amount": 5165.9}, {"name": "Transformation, to traffic area, road network", "categories": ["natural resource", "land"], "amount": 6864.8}, {"name": "Transformation, to unknown", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified", "categories": ["natural resource", "land"], "amount": 2943.6}, {"name": "Transformation, to unspecified, natural (non-use)", "categories": ["natural resource", "land"], "amount": 282.88}, {"name": "Transformation, to urban, continuously built", "categories": ["natural resource", "land"], "amount": 7021.9}, {"name": "Transformation, to urban, discontinuously built", "categories": ["natural resource", "land"], "amount": 4937}, {"name": "Transformation, to urban, green area", "categories": ["natural resource", "land"], "amount": 2072.5}, {"name": "Transformation, to urban/industrial fallow (non-use)", "categories": ["natural resource", "land"], "amount": 5895.4}, {"name": "Transformation, to wetland, coastal (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}, {"name": "Transformation, to wetland, inland (non-use)", "categories": ["natural resource", "land"], "amount": -174.58}]}, {"unit": "kg Sb-Eq", "name": ["EF v3.1 EN15804", "material resources: metals/minerals", "abiotic depletion potential (ADP): elements (ultimate reserves)"], "exchanges": [{"name": "Aluminium", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Aluminium, 24% in bauxite, 11% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.09e-09}, {"name": "Anhydrite", "categories": ["natural resource", "in ground"], "amount": 4.545212805030338e-05}, {"name": "Antimony", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Arsenic", "categories": ["natural resource", "in ground"], "amount": 0.00297}, {"name": "Barium", "categories": ["natural resource", "in ground"], "amount": 6.04e-06}, {"name": "Beryllium", "categories": ["natural resource", "in ground"], "amount": 1.26e-05}, {"name": "Bismuth", "categories": ["natural resource", "in ground"], "amount": 0.0411}, {"name": "Borax", "categories": ["natural resource", "in ground"], "amount": 0.0004841517197042984}, {"name": "Boron", "categories": ["natural resource", "in ground"], "amount": 0.00427}, {"name": "Cadmium", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", "categories": ["natural resource", "in ground"], "amount": 0.157}, {"name": "Chromium", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.000443}, {"name": "Chrysotile", "categories": ["natural resource", "in ground"], "amount": 5.343572902983674e-10}, {"name": "Cobalt", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Cobalt, Co 5.0E-2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.57e-05}, {"name": "Colemanite", "categories": ["natural resource", "in ground"], "amount": 0.000673718497616036}, {"name": "Copper", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.2%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 0.38%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Copper, Cu 6.8E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.00137}, {"name": "Diatomite", "categories": ["natural resource", "in ground"], "amount": 6.544113975666994e-12}, {"name": "Dolomite", "categories": ["natural resource", "in ground"], "amount": 2.66249274670687e-10}, {"name": "Gallium", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Gallium, 0.014% in bauxite", "categories": ["natural resource", "in ground"], "amount": 1.46e-07}, {"name": "Germanium", "categories": ["natural resource", "in ground"], "amount": 6.52e-07}, {"name": "Gold", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.0E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 1.8E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 4.9E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.7E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 7.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 52}, {"name": "Gypsum", "categories": ["natural resource", "in ground"], "amount": 3.594003392114496e-05}, {"name": "Indium", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", "categories": ["natural resource", "in ground"], "amount": 0.00689}, {"name": "Iron", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 46% in ore, 25% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Iron, 72% in magnetite, 14% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.24e-08}, {"name": "Kaolinite", "categories": ["natural resource", "in ground"], "amount": 2.308918482603777e-10}, {"name": "Kieserite", "categories": ["natural resource", "in ground"], "amount": 4.471605694701393e-05}, {"name": "Lead", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 0.014%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lead, Pb 3.6E-1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.00634}, {"name": "Lithium", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Lithium, 0.15% in brine", "categories": ["natural resource", "in ground"], "amount": 1.15e-05}, {"name": "Magnesite", "categories": ["natural resource", "in ground"], "amount": 5.823075919490471e-10}, {"name": "Magnesium", "categories": ["natural resource", "in ground"], "amount": 2.02e-09}, {"name": "Manganese", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", "categories": ["natural resource", "in ground"], "amount": 2.54e-06}, {"name": "Mercury", "categories": ["natural resource", "in ground"], "amount": 0.0922}, {"name": "Molybdenum", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0178}, {"name": "Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Nickel, Ni 2.5E+0%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 6.53e-05}, {"name": "Niobium", "categories": ["natural resource", "in ground"], "amount": 1.93e-05}, {"name": "Palladium", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Palladium, Pd 1.6E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 0.571}, {"name": "Phosphorus", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 12% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Phosphorus, 18% in apatite, 4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.52e-06}, {"name": "Platinum", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Platinum, Pt 4.7E-7%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Potassium", "categories": ["natural resource", "in ground"], "amount": 1.6e-08}, {"name": "Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore", "categories": ["natural resource", "in ground"], "amount": 2.22}, {"name": "Pyrite", "categories": ["natural resource", "in ground"], "amount": 0.000103180813387238}, {"name": "Rhenium", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Rhenium, in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.603}, {"name": "Selenium", "categories": ["natural resource", "in ground"], "amount": 0.194}, {"name": "Silicon", "categories": ["natural resource", "in ground"], "amount": 1.4e-11}, {"name": "Silver", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 0.01% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 1.8E-6%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 5.4E-3%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Silver, Ag 9.7E-4%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 1.18}, {"name": "Sodium", "categories": ["natural resource", "in ground"], "amount": 5.5e-08}, {"name": "Sodium chloride", "categories": ["natural resource", "in ground"], "amount": 1.646069875295716e-05}, {"name": "Sodium nitrate", "categories": ["natural resource", "in ground"], "amount": 1.487682357320205e-08}, {"name": "Sodium sulphate, various forms", "categories": ["natural resource", "in ground"], "amount": 4.358140883174752e-05}, {"name": "Spodumene", "categories": ["natural resource", "in ground"], "amount": 4.290510533131037e-07}, {"name": "Strontium", "categories": ["natural resource", "in ground"], "amount": 7.07e-07}, {"name": "Sulfur", "categories": ["natural resource", "in ground"], "amount": 0.000193}, {"name": "Sylvite", "categories": ["natural resource", "in ground"], "amount": 1.289527155951242e-05}, {"name": "Talc", "categories": ["natural resource", "in ground"], "amount": 3.92505016360851e-10}, {"name": "Tantalum", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", "categories": ["natural resource", "in ground"], "amount": 4.06e-05}, {"name": "Tellurium", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", "categories": ["natural resource", "in ground"], "amount": 40.7}, {"name": "Thallium", "categories": ["natural resource", "in ground"], "amount": 2.43e-05}, {"name": "TiO2, 54% in ilmenite, 18% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 54% in ilmenite, 2.6% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "TiO2, 95% in rutile, 0.40% in crude ore", "categories": ["natural resource", "in ground"], "amount": 1.674e-08}, {"name": "Tin", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", "categories": ["natural resource", "in ground"], "amount": 0.0162}, {"name": "Titanium", "categories": ["natural resource", "in ground"], "amount": 2.79e-08}, {"name": "Tungsten", "categories": ["natural resource", "in ground"], "amount": 0.00452}, {"name": "Ulexite", "categories": ["natural resource", "in ground"], "amount": 0.0005695419030770708}, {"name": "Vanadium", "categories": ["natural resource", "in ground"], "amount": 7.7e-07}, {"name": "Yttrium", "categories": ["natural resource", "in ground"], "amount": 5.69e-07}, {"name": "Zinc", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 0.63%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zinc, Zn 3.1%, in mixed ore", "categories": ["natural resource", "in ground"], "amount": 0.000538}, {"name": "Zirconia, as baddeleyite", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}, {"name": "Zirconium, 50% in zircon, 0.39% in crude ore", "categories": ["natural resource", "in ground"], "amount": 5.44e-06}]}, {"unit": "kg CFC-11-Eq", "name": ["EF v3.1 EN15804", "ozone depletion", "ozone depletion potential (ODP)"], "exchanges": [{"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 0.81}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 0.81}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 0.102}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 0.102}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 0.5}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 0.5}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 0.057}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 0.057}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 0.01}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 0.01}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 0.022}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 0.26}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 0.26}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 0.57}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 0.57}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 6.9}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 6.9}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 15.2}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 15.2}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 0.034}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 0.034}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 0.73}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 0.73}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.015}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.015}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 0.72}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 0.72}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 1}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 1}]}, {"unit": "disease incidence", "name": ["EF v3.1 EN15804", "particulate matter formation", "impact on human health"], "exchanges": [{"name": "Ammonia", "categories": ["air", "low population density, long-term"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air"], "amount": 2.1e-05}, {"name": "Ammonia", "categories": ["air", "urban air close to ground"], "amount": 1.4e-05}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.1e-07}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1.6e-06}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1.6e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "low population density, long-term"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "non-urban air or from high stacks"], "amount": 3.01757e-06}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air"], "amount": 0.000238497}, {"name": "Particulate Matter, < 2.5 um", "categories": ["air", "urban air close to ground"], "amount": 0.000238497}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "low population density, long-term"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.94042e-07}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air"], "amount": 5.48544e-05}, {"name": "Particulate Matter, > 2.5 um and < 10um", "categories": ["air", "urban air close to ground"], "amount": 5.48544e-05}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.9e-07}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 8e-06}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 8e-06}]}, {"unit": "kg NMVOC-Eq", "name": ["EF v3.1 EN15804", "photochemical oxidant formation: human health", "tropospheric ozone concentration increase"], "exchanges": [{"name": "1-Pentene", "categories": ["air", "low population density, long-term"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air"], "amount": 1.65}, {"name": "1-Pentene", "categories": ["air", "urban air close to ground"], "amount": 1.65}, {"name": "2-Methyl-1-propanol", "categories": ["air", "low population density, long-term"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air"], "amount": 0.608}, {"name": "2-Methyl-1-propanol", "categories": ["air", "urban air close to ground"], "amount": 0.608}, {"name": "2-Methyl-2-butene", "categories": ["air", "low population density, long-term"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air"], "amount": 1.42}, {"name": "2-Methyl-2-butene", "categories": ["air", "urban air close to ground"], "amount": 1.42}, {"name": "2-Methylpentane", "categories": ["air", "low population density, long-term"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air"], "amount": 0.709}, {"name": "2-Methylpentane", "categories": ["air", "urban air close to ground"], "amount": 0.709}, {"name": "2-Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air"], "amount": 0.318}, {"name": "2-Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.318}, {"name": "3-Methyl-1-butanol", "categories": ["air", "low population density, long-term"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air"], "amount": 0.731}, {"name": "3-Methyl-1-butanol", "categories": ["air", "urban air close to ground"], "amount": 0.731}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "low population density, long-term"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air"], "amount": 0.828}, {"name": "4-Methyl-2-pentanone", "categories": ["air", "urban air close to ground"], "amount": 0.828}, {"name": "Acetaldehyde", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air"], "amount": 1.08}, {"name": "Acetaldehyde", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Acetic acid", "categories": ["air", "low population density, long-term"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air"], "amount": 0.164}, {"name": "Acetic acid", "categories": ["air", "urban air close to ground"], "amount": 0.164}, {"name": "Acetone", "categories": ["air", "low population density, long-term"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.159}, {"name": "Acetone", "categories": ["air"], "amount": 0.159}, {"name": "Acetone", "categories": ["air", "urban air close to ground"], "amount": 0.159}, {"name": "Benzaldehyde", "categories": ["air", "low population density, long-term"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air"], "amount": -0.155}, {"name": "Benzaldehyde", "categories": ["air", "urban air close to ground"], "amount": -0.155}, {"name": "Benzene", "categories": ["air", "low population density, long-term"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.368}, {"name": "Benzene", "categories": ["air"], "amount": 0.368}, {"name": "Benzene", "categories": ["air", "urban air close to ground"], "amount": 0.368}, {"name": "Benzene, ethyl-", "categories": ["air", "low population density, long-term"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air"], "amount": 1.23}, {"name": "Benzene, ethyl-", "categories": ["air", "urban air close to ground"], "amount": 1.23}, {"name": "Butadiene", "categories": ["air", "low population density, long-term"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air"], "amount": 1.44}, {"name": "Butadiene", "categories": ["air", "urban air close to ground"], "amount": 1.44}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.595}, {"name": "Butane", "categories": ["air"], "amount": 0.595}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.595}, {"name": "Butanol", "categories": ["air", "low population density, long-term"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.05}, {"name": "Butanol", "categories": ["air"], "amount": 1.05}, {"name": "Butanol", "categories": ["air", "urban air close to ground"], "amount": 1.05}, {"name": "Butyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air"], "amount": 0.454}, {"name": "Butyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.454}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 0.0456}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air"], "amount": 0.0389}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 0.0389}, {"name": "Cumene", "categories": ["air", "low population density, long-term"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.845}, {"name": "Cumene", "categories": ["air"], "amount": 0.845}, {"name": "Cumene", "categories": ["air", "urban air close to ground"], "amount": 0.845}, {"name": "Cyclohexane", "categories": ["air", "low population density, long-term"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air"], "amount": 0.49}, {"name": "Cyclohexane", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Cyclohexane (for all cycloalkanes)", "categories": ["air", "urban air close to ground"], "amount": 0.49}, {"name": "Diethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air"], "amount": 0.752}, {"name": "Diethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.752}, {"name": "Dimethyl carbonate", "categories": ["air"], "amount": 0.0422}, {"name": "Dimethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air"], "amount": 0.319}, {"name": "Dimethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.319}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.208}, {"name": "Ethane", "categories": ["air"], "amount": 0.208}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.208}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 0.0152}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 0.0152}, {"name": "Ethanol", "categories": ["air", "low population density, long-term"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air"], "amount": 0.674}, {"name": "Ethanol", "categories": ["air", "urban air close to ground"], "amount": 0.674}, {"name": "Ethyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air"], "amount": 0.353}, {"name": "Ethyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.353}, {"name": "Ethylene", "categories": ["air", "low population density, long-term"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air"], "amount": 1.69}, {"name": "Ethylene", "categories": ["air", "urban air close to ground"], "amount": 1.69}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air"], "amount": 0.652}, {"name": "Ethylene glycol monoethyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.652}, {"name": "Ethyne", "categories": ["air", "low population density, long-term"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air"], "amount": 0.144}, {"name": "Ethyne", "categories": ["air", "urban air close to ground"], "amount": 0.144}, {"name": "Formaldehyde", "categories": ["air", "low population density, long-term"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air"], "amount": 0.877}, {"name": "Formaldehyde", "categories": ["air", "urban air close to ground"], "amount": 0.877}, {"name": "Formic acid", "categories": ["air", "low population density, long-term"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air"], "amount": 0.0541}, {"name": "Formic acid", "categories": ["air", "urban air close to ground"], "amount": 0.0541}, {"name": "Heptane", "categories": ["air", "low population density, long-term"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.834}, {"name": "Heptane", "categories": ["air"], "amount": 0.834}, {"name": "Heptane", "categories": ["air", "urban air close to ground"], "amount": 0.834}, {"name": "Hexane", "categories": ["air", "low population density, long-term"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.814}, {"name": "Hexane", "categories": ["air"], "amount": 0.814}, {"name": "Hexane", "categories": ["air", "urban air close to ground"], "amount": 0.814}, {"name": "Isobutane", "categories": ["air", "urban air close to ground"], "amount": 0.519}, {"name": "Isoprene", "categories": ["air", "low population density, long-term"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air"], "amount": 1.84}, {"name": "Isoprene", "categories": ["air", "urban air close to ground"], "amount": 1.84}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 0.115}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 0.115}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 0.00845}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 0.00845}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 0.0101}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 0.0101}, {"name": "Methanol", "categories": ["air", "low population density, long-term"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.236}, {"name": "Methanol", "categories": ["air"], "amount": 0.236}, {"name": "Methanol", "categories": ["air", "urban air close to ground"], "amount": 0.236}, {"name": "Methyl acetate", "categories": ["air", "low population density, long-term"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air"], "amount": 0.0997}, {"name": "Methyl acetate", "categories": ["air", "urban air close to ground"], "amount": 0.0997}, {"name": "Methyl ethyl ketone", "categories": ["air", "low population density, long-term"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air"], "amount": 0.63}, {"name": "Methyl ethyl ketone", "categories": ["air", "urban air close to ground"], "amount": 0.63}, {"name": "Methyl formate", "categories": ["air", "low population density, long-term"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air"], "amount": 0.0456}, {"name": "Methyl formate", "categories": ["air", "urban air close to ground"], "amount": 0.0456}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air"], "amount": 1}, {"name": "NMVOC, non-methane volatile organic compounds", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Nitric oxide", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air"], "amount": 1}, {"name": "Nitrogen oxides", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Pentane", "categories": ["air", "low population density, long-term"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.667}, {"name": "Pentane", "categories": ["air"], "amount": 0.667}, {"name": "Pentane", "categories": ["air", "urban air close to ground"], "amount": 0.667}, {"name": "Propanal", "categories": ["air", "low population density, long-term"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.35}, {"name": "Propanal", "categories": ["air"], "amount": 1.35}, {"name": "Propanal", "categories": ["air", "urban air close to ground"], "amount": 1.35}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.297}, {"name": "Propane", "categories": ["air"], "amount": 0.297}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.297}, {"name": "Propanol", "categories": ["air", "low population density, long-term"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.948}, {"name": "Propanol", "categories": ["air"], "amount": 0.948}, {"name": "Propanol", "categories": ["air", "urban air close to ground"], "amount": 0.948}, {"name": "Propene", "categories": ["air", "low population density, long-term"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.9}, {"name": "Propene", "categories": ["air"], "amount": 1.9}, {"name": "Propene", "categories": ["air", "urban air close to ground"], "amount": 1.9}, {"name": "Propionic acid", "categories": ["air", "low population density, long-term"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air"], "amount": 0.253}, {"name": "Propionic acid", "categories": ["air", "urban air close to ground"], "amount": 0.253}, {"name": "Styrene", "categories": ["air", "low population density, long-term"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.24}, {"name": "Styrene", "categories": ["air"], "amount": 0.24}, {"name": "Styrene", "categories": ["air", "urban air close to ground"], "amount": 0.24}, {"name": "Sulfur dioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur dioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Sulfur oxides", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "low population density, long-term"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air"], "amount": 0.0811}, {"name": "Sulfur trioxide", "categories": ["air", "urban air close to ground"], "amount": 0.0811}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 0.049}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.049}, {"name": "Toluene", "categories": ["air", "low population density, long-term"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.08}, {"name": "Toluene", "categories": ["air"], "amount": 1.08}, {"name": "Toluene", "categories": ["air", "urban air close to ground"], "amount": 1.08}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.549}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.549}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 0.235}, {"name": "m-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air"], "amount": 1.87}, {"name": "m-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.87}, {"name": "o-Xylene", "categories": ["air", "low population density, long-term"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air"], "amount": 1.78}, {"name": "o-Xylene", "categories": ["air", "urban air close to ground"], "amount": 1.78}, {"name": "t-Butyl methyl ether", "categories": ["air", "low population density, long-term"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air"], "amount": 0.296}, {"name": "t-Butyl methyl ether", "categories": ["air", "urban air close to ground"], "amount": 0.296}]}, {"unit": "m3 world eq. deprived", "name": ["EF v3.1 EN15804", "water use", "user deprivation potential (deprivation-weighted water consumption)"], "exchanges": [{"name": "Water", "categories": ["air", "low population density, long-term"], "amount": 42.95}, {"name": "Water", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 42.95}, {"name": "Water", "categories": ["air", "non-urban air or from high stacks"], "amount": 42.95}, {"name": "Water", "categories": ["air"], "amount": 42.95}, {"name": "Water", "categories": ["air", "urban air close to ground"], "amount": 42.95}]}, {"unit": "megajoule", "name": ["EN15804", "inventory indicators ISO21930", "exported energy - electricity"], "exchanges": [{"name": "Exported energy - electricity", "categories": ["inventory indicator", "output flow"], "amount": 1}]}, {"unit": "megajoule", "name": ["EN15804", "inventory indicators ISO21930", "exported energy - heat"], "exchanges": [{"name": "Exported energy - heat", "categories": ["inventory indicator", "output flow"], "amount": 1}]}, {"unit": "kilogram", "name": ["EN15804", "inventory indicators ISO21930", "hazardous waste disposed"], "exchanges": [{"name": "Hazardous waste disposed", "categories": ["inventory indicator", "waste"], "amount": 1}]}, {"unit": "kilogram", "name": ["EN15804", "inventory indicators ISO21930", "high-level radioactive waste disposed"], "exchanges": [{"name": "High-level radioactive waste disposed", "categories": ["inventory indicator", "waste"], "amount": 1}]}, {"unit": "kilogram", "name": ["EN15804", "inventory indicators ISO21930", "intermediate and low-level radioactive waste disposed"], "exchanges": [{"name": "Intermediate and low-level radioactive waste disposed", "categories": ["inventory indicator", "waste"], "amount": 1}]}, {"unit": "kilogram", "name": ["EN15804", "inventory indicators ISO21930", "materials for energy recovery"], "exchanges": [{"name": "Materials for energy recovery", "categories": ["inventory indicator", "output flow"], "amount": 1}]}, {"unit": "kilogram", "name": ["EN15804", "inventory indicators ISO21930", "materials for recycling"], "exchanges": [{"name": "Materials for recycling", "categories": ["inventory indicator", "output flow"], "amount": 1}]}, {"unit": "kilogram", "name": ["EN15804", "inventory indicators ISO21930", "non-hazardous waste disposed"], "exchanges": [{"name": "Non-hazardous waste disposed", "categories": ["inventory indicator", "waste"], "amount": 1}]}, {"unit": "megajoule", "name": ["EN15804", "inventory indicators ISO21930", "recovered energy"], "exchanges": [{"name": "Recovered energy", "categories": ["inventory indicator", "resource use"], "amount": 1}]}, {"unit": "cubic meter", "name": ["EN15804", "inventory indicators ISO21930", "use of net fresh water"], "exchanges": [{"name": "Water", "categories": ["water"], "amount": -1}, {"name": "Water", "categories": ["water", "surface water"], "amount": -1}, {"name": "Water", "categories": ["water", "ground-"], "amount": -1}, {"name": "Water, cooling, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, river", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, well, in ground", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, lake", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, turbine use, unspecified natural origin", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Water, in air", "categories": ["natural resource", "in air"], "amount": 1}]}, {"unit": "megajoule", "name": ["EN15804", "inventory indicators ISO21930", "use of renewable secondary fuels"], "exchanges": [{"name": "Renewable secondary fuels", "categories": ["inventory indicator", "resource use"], "amount": 1}]}, {"unit": "kilogram", "name": ["EN15804", "inventory indicators ISO21930", "use of secondary material"], "exchanges": [{"name": "Secondary materials", "categories": ["inventory indicator", "resource use"], "amount": 1}]}, {"unit": "megajoule", "name": ["EN15804", "inventory indicators ISO21930", "Cumulative Energy Demand - renewable energy resources"], "exchanges": [{"name": "Energy, gross calorific value, in biomass", "categories": ["natural resource", "biotic"], "amount": 1}, {"name": "Energy, geothermal, converted", "categories": ["natural resource", "in ground"], "amount": 1}, {"name": "Energy, solar, converted", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Energy, potential (in hydropower reservoir), converted", "categories": ["natural resource", "in water"], "amount": 1}, {"name": "Energy, kinetic (in wind), converted", "categories": ["natural resource", "in air"], "amount": 1}]}, {"unit": "megajoule", "name": ["EN15804", "inventory indicators ISO21930", "Cumulative Energy Demand - non-renewable energy resources"], "exchanges": [{"name": "Graphite", "categories": ["natural resource", "in ground"], "amount": 27.9}, {"name": "Coal, brown", "categories": ["natural resource", "in ground"], "amount": 9.41}, {"name": "Coal, hard, unspecified", "categories": ["natural resource", "in ground"], "amount": 18.01}, {"name": "Gas, mine, off-gas, process, coal mining", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Gas, natural", "categories": ["natural resource", "in ground"], "amount": 36}, {"name": "Oil, crude", "categories": ["natural resource", "in ground"], "amount": 43.4}, {"name": "Peat", "categories": ["natural resource", "biotic"], "amount": 9.76}, {"name": "Uranium", "categories": ["natural resource", "in ground"], "amount": 560000}, {"name": "Energy, gross calorific value, in biomass, primary forest", "categories": ["natural resource", "biotic"], "amount": 1}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "GWP 100a, incl. H"], "exchanges": [{"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 2.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Hydrogen", "categories": ["air", "low population density, long-term"], "amount": 11}, {"name": "Hydrogen", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11}, {"name": "Hydrogen", "categories": ["air", "non-urban air or from high stacks"], "amount": 11}, {"name": "Hydrogen", "categories": ["air"], "amount": 11}, {"name": "Hydrogen", "categories": ["air", "urban air close to ground"], "amount": 11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitric oxide", "categories": ["air"], "amount": -10.8}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.5}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "GWP 20a, incl. H"], "exchanges": [{"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Hydrogen", "categories": ["air", "low population density, long-term"], "amount": 33}, {"name": "Hydrogen", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33}, {"name": "Hydrogen", "categories": ["air", "non-urban air or from high stacks"], "amount": 33}, {"name": "Hydrogen", "categories": ["air"], "amount": 33}, {"name": "Hydrogen", "categories": ["air", "urban air close to ground"], "amount": 33}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 7.65}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Nitric oxide", "categories": ["air"], "amount": 16.7}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 14}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "GWP 20a, incl. H and bio CO2"], "exchanges": [{"name": "Carbon dioxide, in air", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Carbon dioxide, non-fossil, resource correction", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 7840}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 6740}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.158}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 19.9}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 79.7}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 13400}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 18300}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.022}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.022}, {"name": "Butane", "categories": ["air"], "amount": 0.022}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 74.2}, {"name": "Chloroform", "categories": ["air"], "amount": 74.2}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 1.57}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.57}, {"name": "Ethane", "categories": ["air"], "amount": 1.57}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4140}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 4140}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 567}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 567}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7840}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 7840}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2710}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 2710}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 591}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 591}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.68}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 4.68}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5510}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 5510}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 325}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 325}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2070}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 2070}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7410}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 7410}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8940}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 8940}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 6740}, {"name": "Hydrogen", "categories": ["air", "low population density, long-term"], "amount": 33}, {"name": "Hydrogen", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 33}, {"name": "Hydrogen", "categories": ["air", "non-urban air or from high stacks"], "amount": 33}, {"name": "Hydrogen", "categories": ["air"], "amount": 33}, {"name": "Hydrogen", "categories": ["air", "urban air close to ground"], "amount": 33}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 22.8}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 22.8}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.158}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.158}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8.74}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 8.74}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4920}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 4920}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 8320}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5690}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 5690}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 286}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 286}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 12400}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 40.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 40.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12700}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12700}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 575}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 575}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2690}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 2690}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Methane, fossil", "categories": ["air"], "amount": 82.5}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 19.9}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 19.9}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3810}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 3810}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5300}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 5300}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8320}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 8320}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 12400}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.73}, {"name": "Monochloroethane", "categories": ["air"], "amount": 1.73}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 13400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 13400}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.072}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.072}, {"name": "Propane", "categories": ["air"], "amount": 0.072}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 18300}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 18300}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 6680}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 82.5}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 82.5}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 82.5}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.158}, {"name": "Bromopropane", "categories": ["air"], "amount": 0.188}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 8260}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6860}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6860}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 8260}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6860}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.7}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 79.7}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7.65}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 7.65}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Nitric oxide", "categories": ["air"], "amount": 16.7}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 14}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 9.221400000000001}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9.221400000000001}]}, {"unit": "kg CO2-Eq", "name": ["IPCC 2021", "climate change", "GWP 100a, incl. H and bio CO2"], "exchanges": [{"name": "Bromopropane", "categories": ["air"], "amount": 0.052}, {"name": "Butane", "categories": ["air", "urban air close to ground"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "low population density, long-term"], "amount": 0.006}, {"name": "Butane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.006}, {"name": "Butane", "categories": ["air"], "amount": 0.006}, {"name": "Carbon dioxide, in air", "categories": ["natural resource", "in air"], "amount": -1}, {"name": "Carbon dioxide, non-fossil, resource correction", "categories": ["natural resource", "in air"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, non-fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, fossil", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 1}, {"name": "Carbon dioxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "agricultural"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "industrial"], "amount": -1}, {"name": "Carbon dioxide, to soil or biomass stock", "categories": ["soil", "forestry"], "amount": -1}, {"name": "Carbon monoxide, fossil", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, fossil", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 4.0624}, {"name": "Carbon monoxide, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 4.0624}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.491}, {"name": "Carbon monoxide, non-fossil", "categories": ["air"], "amount": 2.491}, {"name": "Chloroform", "categories": ["air", "urban air close to ground"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "non-urban air or from high stacks"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "low population density, long-term"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 20.6}, {"name": "Chloroform", "categories": ["air"], "amount": 20.6}, {"name": "Dinitrogen monoxide", "categories": ["air", "urban air close to ground"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "non-urban air or from high stacks"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "low population density, long-term"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 273}, {"name": "Dinitrogen monoxide", "categories": ["air"], "amount": 273}, {"name": "Ethane", "categories": ["air", "urban air close to ground"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "low population density, long-term"], "amount": 0.437}, {"name": "Ethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.437}, {"name": "Ethane", "categories": ["air"], "amount": 0.437}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "urban air close to ground"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "non-urban air or from high stacks"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "low population density, long-term"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2300}, {"name": "Ethane, 1-chloro-1,1-difluoro-, HCFC-142b", "categories": ["air"], "amount": 2300}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "urban air close to ground"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "non-urban air or from high stacks"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "low population density, long-term"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 860}, {"name": "Ethane, 1,1-dichloro-1-fluoro-, HCFC-141b", "categories": ["air"], "amount": 860}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "urban air close to ground"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "non-urban air or from high stacks"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "low population density, long-term"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 164}, {"name": "Ethane, 1,1-difluoro-, HFC-152a", "categories": ["air"], "amount": 164}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "urban air close to ground"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "non-urban air or from high stacks"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "low population density, long-term"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 161}, {"name": "Ethane, 1,1,1-trichloro-, HCFC-140", "categories": ["air"], "amount": 161}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "urban air close to ground"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "non-urban air or from high stacks"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "low population density, long-term"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5810}, {"name": "Ethane, 1,1,1-trifluoro-, HFC-143a", "categories": ["air"], "amount": 5810}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "urban air close to ground"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "non-urban air or from high stacks"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "low population density, long-term"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1530}, {"name": "Ethane, 1,1,1,2-tetrafluoro-, HFC-134a", "categories": ["air"], "amount": 1530}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "low population density, long-term"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "non-urban air or from high stacks"], "amount": 6520}, {"name": "Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113", "categories": ["air", "urban air close to ground"], "amount": 6520}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "urban air close to ground"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "non-urban air or from high stacks"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "low population density, long-term"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-", "categories": ["air"], "amount": 1.3}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "low population density, long-term"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "non-urban air or from high stacks"], "amount": 9430}, {"name": "Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114", "categories": ["air", "urban air close to ground"], "amount": 9430}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "urban air close to ground"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "non-urban air or from high stacks"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "low population density, long-term"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 597}, {"name": "Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124", "categories": ["air"], "amount": 597}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "urban air close to ground"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "non-urban air or from high stacks"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "low population density, long-term"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 90.4}, {"name": "Ethane, 2,2-dichloro-1,1,1-trifluoro-, HCFC-123", "categories": ["air"], "amount": 90.4}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "urban air close to ground"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "non-urban air or from high stacks"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "low population density, long-term"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 9600}, {"name": "Ethane, chloropentafluoro-, CFC-115", "categories": ["air"], "amount": 9600}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "urban air close to ground"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "non-urban air or from high stacks"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "low population density, long-term"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12400}, {"name": "Ethane, hexafluoro-, HFC-116", "categories": ["air"], "amount": 12400}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "urban air close to ground"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "non-urban air or from high stacks"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "low population density, long-term"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 3740}, {"name": "Ethane, pentafluoro-, HFC-125", "categories": ["air"], "amount": 3740}, {"name": "Hydrogen", "categories": ["air", "low population density, long-term"], "amount": 11}, {"name": "Hydrogen", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11}, {"name": "Hydrogen", "categories": ["air", "non-urban air or from high stacks"], "amount": 11}, {"name": "Hydrogen", "categories": ["air"], "amount": 11}, {"name": "Hydrogen", "categories": ["air", "urban air close to ground"], "amount": 11}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "urban air close to ground"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "non-urban air or from high stacks"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "low population density, long-term"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2.43}, {"name": "Methane, bromo-, Halon 1001", "categories": ["air"], "amount": 2.43}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "urban air close to ground"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "non-urban air or from high stacks"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "low population density, long-term"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1930}, {"name": "Methane, bromochlorodifluoro-, Halon 1211", "categories": ["air"], "amount": 1930}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "urban air close to ground"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "non-urban air or from high stacks"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "low population density, long-term"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7200}, {"name": "Methane, bromotrifluoro-, Halon 1301", "categories": ["air"], "amount": 7200}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "urban air close to ground"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "non-urban air or from high stacks"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "low population density, long-term"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 79.4}, {"name": "Methane, chloro-fluoro-, HCFC-31", "categories": ["air"], "amount": 79.4}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "urban air close to ground"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "non-urban air or from high stacks"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "low population density, long-term"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 1960}, {"name": "Methane, chlorodifluoro-, HCFC-22", "categories": ["air"], "amount": 1960}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "urban air close to ground"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "non-urban air or from high stacks"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "low population density, long-term"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 16200}, {"name": "Methane, chlorotrifluoro-, CFC-13", "categories": ["air"], "amount": 16200}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "urban air close to ground"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "non-urban air or from high stacks"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "low population density, long-term"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 11.2}, {"name": "Methane, dichloro-, HCC-30", "categories": ["air"], "amount": 11.2}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "urban air close to ground"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "non-urban air or from high stacks"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "low population density, long-term"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 12500}, {"name": "Methane, dichlorodifluoro-, CFC-12", "categories": ["air"], "amount": 12500}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "urban air close to ground"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "non-urban air or from high stacks"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "low population density, long-term"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 160}, {"name": "Methane, dichlorofluoro-, HCFC-21", "categories": ["air"], "amount": 160}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "urban air close to ground"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "non-urban air or from high stacks"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "low population density, long-term"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 771}, {"name": "Methane, difluoro-, HFC-32", "categories": ["air"], "amount": 771}, {"name": "Methane, fossil", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air"], "amount": 29.8}, {"name": "Methane, from soil or biomass stock", "categories": ["air", "urban air close to ground"], "amount": 29.8}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "urban air close to ground"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "non-urban air or from high stacks"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "low population density, long-term"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 5.54}, {"name": "Methane, monochloro-, R-40", "categories": ["air"], "amount": 5.54}, {"name": "Methane, non-fossil", "categories": ["air", "urban air close to ground"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 29.8}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 29.8}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 29.8}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 29.8}, {"name": "Methane, non-fossil", "categories": ["air", "non-urban air or from high stacks"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "low population density, long-term"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 27}, {"name": "Methane, non-fossil", "categories": ["air"], "amount": 27}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "urban air close to ground"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "non-urban air or from high stacks"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "low population density, long-term"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 2200}, {"name": "Methane, tetrachloro-, R-10", "categories": ["air"], "amount": 2200}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "urban air close to ground"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "non-urban air or from high stacks"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "low population density, long-term"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 7380}, {"name": "Methane, tetrafluoro-, R-14", "categories": ["air"], "amount": 7380}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "urban air close to ground"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "non-urban air or from high stacks"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "low population density, long-term"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6230}, {"name": "Methane, trichlorofluoro-, CFC-11", "categories": ["air"], "amount": 6230}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "urban air close to ground"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "non-urban air or from high stacks"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "low population density, long-term"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 14600}, {"name": "Methane, trifluoro-, HFC-23", "categories": ["air"], "amount": 14600}, {"name": "Monochloroethane", "categories": ["air", "urban air close to ground"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "low population density, long-term"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.481}, {"name": "Monochloroethane", "categories": ["air"], "amount": 0.481}, {"name": "Nitric oxide", "categories": ["air"], "amount": -10.8}, {"name": "Nitrogen fluoride", "categories": ["air", "urban air close to ground"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "low population density, long-term"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 17400}, {"name": "Nitrogen fluoride", "categories": ["air"], "amount": 17400}, {"name": "Perfluoropentane", "categories": ["air"], "amount": 9220}, {"name": "Propane", "categories": ["air", "urban air close to ground"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "low population density, long-term"], "amount": 0.02}, {"name": "Propane", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.02}, {"name": "Propane", "categories": ["air"], "amount": 0.02}, {"name": "Sulfur hexafluoride", "categories": ["air", "urban air close to ground"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "non-urban air or from high stacks"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "low population density, long-term"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 25200}, {"name": "Sulfur hexafluoride", "categories": ["air"], "amount": 25200}, {"name": "Tetrachloroethylene", "categories": ["air", "urban air close to ground"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "low population density, long-term"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 6.34}, {"name": "Tetrachloroethylene", "categories": ["air"], "amount": 6.34}, {"name": "Trichloroethylene", "categories": ["air", "urban air close to ground"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "non-urban air or from high stacks"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "low population density, long-term"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air", "lower stratosphere + upper troposphere"], "amount": 0.044}, {"name": "Trichloroethylene", "categories": ["air"], "amount": 0.044}, {"name": "VOC, volatile organic compounds", "categories": ["air"], "amount": 4.5}]}, + {"unit": "kg aluminium", + "name": ["RELICS", "metals extraction", "Aluminium"], + "exchanges": [{"name": "Aluminium, 24% in bauxite, 11% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.11}, + {"name": "Aluminium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg antimony", + "name": ["RELICS", "metals extraction", "Antimony"], + "exchanges": [{"name": "Antimony", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg beryllium", + "name": ["RELICS", "metals extraction", "Beryllium"], + "exchanges": [{"name": "Beryllium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg boron", + "name": ["RELICS", "metals extraction", "Boron"], + "exchanges": [{"name": "Boron", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg cadmium", + "name": ["RELICS", "metals extraction", "Cadmium"], + "exchanges": [{"name": "Cadmium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In", + "categories": ["natural resource", "in ground"], + "amount": 0.0018}]}, + {"unit": "kg cerium", + "name": ["RELICS", "metals extraction", "Cerium"], + "exchanges": [{"name": "Cerium, 24% in bastnasite, 2.4% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.024}, + {"name": "Cerium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg chromium", + "name": ["RELICS", "metals extraction", "Chromium"], + "exchanges": [{"name": "Chromium, 25.5% in chromite, 11.6% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.116}, + {"name": "Chromium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg cobalt", + "name": ["RELICS", "metals extraction", "Cobalt"], + "exchanges": [{"name": "Cobalt", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Cobalt, Co 5.0E-2%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0005}]}, + {"unit": "kg copper", + "name": ["RELICS", "metals extraction", "Copper"], + "exchanges": [{"name": "Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0081}, + {"name": "Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0036}, + {"name": "Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0039}, + {"name": "Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0076}, + {"name": "Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0183}, + {"name": "Copper, Cu 6.8E-1%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0068}, + {"name": "Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0036}, + {"name": "Copper", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0022}, + {"name": "Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0027}, + {"name": "Copper, Cu 0.2%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.002}, + {"name": "Copper, 1.25% in sulfide, Cu 0.24% and Zn 0,1% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0024}, + {"name": "Copper, Cu 0.38%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0038}]}, + {"unit": "kg dysprosium", + "name": ["RELICS", "metals extraction", "Dysprosium"], + "exchanges": [{"name": "Dysprosium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg erbium", + "name": ["RELICS", "metals extraction", "Erbium"], + "exchanges": [ + {"name": "Erbium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg europium", + "name": ["RELICS", "metals extraction", "Europium"], + "exchanges": [{"name": "Europium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Europium, 0.06% in bastnasite, 0.006% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.00006}]}, + {"unit": "kg gadolinium", + "name": ["RELICS", "metals extraction", "Gadolinium"], + "exchanges": [{"name": "Gadolinium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Gadolinium, 0.15% in bastnasite, 0.015% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.00015}]}, + {"unit": "kg gallium", + "name": ["RELICS", "metals extraction", "Gallium"], + "exchanges": [{"name": "Gallium, 0.014% in bauxite", + "categories": ["natural resource", "in ground"], + "amount": 0.00014}, + {"name": "Gallium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg germanium", + "name": ["RELICS", "metals extraction", "Germanium"], + "exchanges": [{"name": "Germanium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg gold", + "name": ["RELICS", "metals extraction", "Gold"], + "exchanges": [{"name": "Gold, Au 1.0E-7%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.000000001}, + {"name": "Gold, Au 1.4E-4%, in ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000014}, + {"name": "Gold, Au 6.8E-4%, Ag 1.5E-4%, in ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000068}, + {"name": "Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000021}, + {"name": "Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000011}, + {"name": "Gold, Au 5.4E-4%, Ag 1.5E-5%, in ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000054}, + {"name": "Gold", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Gold, Au 4.3E-4%, in ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000043}, + {"name": "Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000013}, + {"name": "Gold, Au 4.9E-5%, in ore", + "categories": ["natural resource", "in ground"], + "amount": 0.00000049}, + {"name": "Gold, Au 7.1E-4%, in ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000071}, + {"name": "Gold, Au 1.8E-4%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000018}, + {"name": "Gold, Au 6.7E-4%, in ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000067}, + {"name": "Gold, Au 9.7E-5%, Ag 7.6E-5%, in ore", + "categories": ["natural resource", "in ground"], + "amount": 0.00000097}, + {"name": "Gold, Au 9.7E-4%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000097}]}, + {"unit": "kg graphite", + "name": ["RELICS", "metals extraction", "Graphite"], + "exchanges": [{"name": "Graphite", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg hafnium", + "name": ["RELICS", "metals extraction", "Hafnium"], + "exchanges": [{"name": "Hafnium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg indium", + "name": ["RELICS", "metals extraction", "Indium"], + "exchanges": [{"name": "Indium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd", + "categories": ["natural resource", "in ground"], + "amount": 0.00003}]}, + {"unit": "kg iridium", + "name": ["RELICS", "metals extraction", "Iridium"], + "exchanges": [{"name": "Iridium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg lanthanum", + "name": ["RELICS", "metals extraction", "Lanthanum"], + "exchanges": [{"name": "Lanthanum", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Lanthanum, 7.2% in bastnasite, 0.72% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0072}]}, + {"unit": "kg lead", + "name": ["RELICS", "metals extraction", "Lead"], + "exchanges": [{"name": "Lead, Pb 3.6E-1%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0036}, + {"name": "Lead", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Lead, Pb 0.014%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.00014}, + {"name": "Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In", + "categories": ["natural resource", "in ground"], + "amount": 0.03}]}, + {"unit": "kg lithium", + "name": ["RELICS", "metals extraction", "Lithium"], + "exchanges": [{"name": "Lithium, 0.15% in brine", + "categories": ["natural resource", "in ground"], + "amount": 0.0015}, + {"name": "Lithium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg magnesium", + "name": ["RELICS", "metals extraction", "Magnesium"], + "exchanges": [{"name": "Magnesium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg manganese", + "name": ["RELICS", "metals extraction", "Manganese"], + "exchanges": [{"name": "Manganese", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.142}]}, + {"unit": "kg molybdenum", + "name": ["RELICS", "metals extraction", "Molybdenum"], + "exchanges": [{"name": "Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.000082}, + {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.000083}, + {"name": "Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.000083}, + {"name": "Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.000083}, + {"name": "Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.000083}, + {"name": "Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.00041}, + {"name": "Molybdenum", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.000083}]}, + {"unit": "kg neodymium", + "name": ["RELICS", "metals extraction", "Neodymium"], + "exchanges": [{"name": "Neodymium, 4% in bastnasite, 0.4% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.004}, + {"name": "Neodymium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg nickel", + "name": ["RELICS", "metals extraction", "Nickel"], + "exchanges": [{"name": "Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0076}, + {"name": "Nickel", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Nickel, 1.98% in silicates, 1.04% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0104}, + {"name": "Nickel, Ni 2.5E+0%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.025}]}, + {"unit": "kg niobium", + "name": ["RELICS", "metals extraction", "Niobium"], + "exchanges": [{"name": "Niobium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg palladium", + "name": ["RELICS", "metals extraction", "Palladium"], + "exchanges": [{"name": "Palladium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Palladium, Pd 1.6E-6%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.000000016}]}, + {"unit": "kg platinum", + "name": ["RELICS", "metals extraction", "Platinum"], + "exchanges": [{"name": "Platinum, Pt 4.7E-7%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000000047}, + {"name": "Platinum", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg potassium", + "name": ["RELICS", "metals extraction", "Potassium"], + "exchanges": [{"name": "Potassium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg praseodymium", + "name": ["RELICS", "metals extraction", "Praseodymium"], + "exchanges": [{"name": "Praseodymium, 0.42% in bastnasite, 0.042% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.00042}, + {"name": "Praseodymium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg rhenium", + "name": ["RELICS", "metals extraction", "Rhenium"], + "exchanges": [{"name": "Rhenium, in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Rhenium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg rhodium", + "name": ["RELICS", "metals extraction", "Rhodium"], + "exchanges": [{"name": "Rhodium, Rh 1.6E-7%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000000016}, + {"name": "Rhodium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg ruthenium", + "name": ["RELICS", "metals extraction", "Ruthenium"], + "exchanges": [{"name": "Ruthenium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg samarium", + "name": ["RELICS", "metals extraction", "Samarium"], + "exchanges": [{"name": "Samarium, 0.3% in bastnasite, 0.03% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0003}, + {"name": "Samarium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg scandium", + "name": ["RELICS", "metals extraction", "Scandium"], + "exchanges": [{"name": "Scandium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg selenium", + "name": ["RELICS", "metals extraction", "Selenium"], + "exchanges": [{"name": "Selenium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg silicon", + "name": ["RELICS", "metals extraction", "Silicon"], + "exchanges": [{"name": "Silicon", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg silver", + "name": ["RELICS", "metals extraction", "Silver"], + "exchanges": [{"name": "Silver, Ag 5.4E-3%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.000054}, + {"name": "Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In", + "categories": ["natural resource", "in ground"], + "amount": 0.00004}, + {"name": "Silver", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Silver, Ag 7.6E-5%, Au 9.7E-5%, in ore", + "categories": ["natural resource", "in ground"], + "amount": 0.00000076}, + {"name": "Silver, Ag 9.7E-4%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000097}, + {"name": "Silver, 0.01% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0001}, + {"name": "Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore", + "categories": ["natural resource", "in ground"], + "amount": 0.00000046}, + {"name": "Silver, Ag 1.5E-4%, Au 6.8E-4%, in ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000015}, + {"name": "Silver, Ag 1.5E-5%, Au 5.4E-4%, in ore", + "categories": ["natural resource", "in ground"], + "amount": 0.00000015}, + {"name": "Silver, Ag 1.8E-6%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.000000018}, + {"name": "Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore", + "categories": ["natural resource", "in ground"], + "amount": 0.000042}, + {"name": "Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000021}, + {"name": "Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000032}]}, + {"unit": "kg sulfur", + "name": ["RELICS", "metals extraction", "Sulfur"], + "exchanges": [{"name": "Sulfur", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg strontium", + "name": ["RELICS", "metals extraction", "Strontium"], + "exchanges": [{"name": "Strontium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg tantalum", + "name": ["RELICS", "metals extraction", "Tantalum"], + "exchanges": [{"name": "Tantalum", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.00819}]}, + {"unit": "kg tellurium", + "name": ["RELICS", "metals extraction", "Tellurium"], + "exchanges": [{"name": "Tellurium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0000002}]}, + {"unit": "kg terbium", + "name": ["RELICS", "metals extraction", "Terbium"], + "exchanges": [{"name": "Ytterbium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Terbium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg tin", + "name": ["RELICS", "metals extraction", "Tin"], + "exchanges": [ + {"name": "Tin, 79% in cassiterite, 0.1% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.001}, + {"name": "Tin", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg titanium", + "name": ["RELICS", "metals extraction", "Titanium"], + "exchanges": [{"name": "Titanium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg tungsten", + "name": ["RELICS", "metals extraction", "Tungsten"], + "exchanges": [{"name": "Tungsten", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg vanadium", + "name": ["RELICS", "metals extraction", "Vanadium"], + "exchanges": [{"name": "Vanadium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg ytterbium", + "name": ["RELICS", "metals extraction", "Ytterbium"], + "exchanges": [{"name": "Ytterbium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg yttrium", + "name": ["RELICS", "metals extraction", "Yttrium"], + "exchanges": [{"name": "Yttrium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}, + {"unit": "kg zinc", + "name": ["RELICS", "metals extraction", "Zinc"], + "exchanges": [{"name": "Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In", + "categories": ["natural resource", "in ground"], + "amount": 0.053}, + {"name": "Zinc", + "categories": ["natural resource", "in ground"], + "amount": 1.0}, + {"name": "Zinc, Zn 0.63%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0063}, + {"name": "Zinc, Zn 3.1%, in mixed ore", + "categories": ["natural resource", "in ground"], + "amount": 0.031}]}, + {"unit": "kg zirconium", + "name": ["RELICS", "metals extraction", "Zirconium"], + "exchanges": [{"name": "Zirconium, 50% in zircon, 0.39% in crude ore", + "categories": ["natural resource", "in ground"], + "amount": 0.0039}, + {"name": "Zirconium", + "categories": ["natural resource", "in ground"], + "amount": 1.0}]}] \ No newline at end of file diff --git a/pathways/lca.py b/pathways/lca.py index 5ea6e09..719748f 100644 --- a/pathways/lca.py +++ b/pathways/lca.py @@ -84,6 +84,7 @@ def load_matrix_and_index( sign: int = 1, transpose: bool = False, extra_indices: Optional[int] = None, + data_type: np.dtype = np.float32, ) -> csr_matrix: """ Reads a CSV file and returns its contents as a CSR sparse matrix. @@ -120,12 +121,12 @@ def load_matrix_and_index( idx = (I, J) # Create and return the CSR matrix - matrix = csr_matrix((data, idx), shape=shape) + matrix = csr_matrix((data, idx), shape=shape, dtype=data_type) return matrix def get_lca_matrices( - datapackage: str, model: str, scenario: str, year: int + datapackage: str, model: str, scenario: str, year: int, data_type: np.dtype = np.float32 ) -> Tuple[sparse.csr_matrix, sparse.csr_matrix, Dict, Dict]: """ Retrieve Life Cycle Assessment (LCA) matrices from disk. @@ -145,9 +146,9 @@ def get_lca_matrices( A_inds = read_indices_csv(dirpath / "A_matrix_index.csv") B_inds = read_indices_csv(dirpath / "B_matrix_index.csv") - A = load_matrix_and_index(dirpath / "A_matrix.csv", len(A_inds), transpose=True) + A = load_matrix_and_index(dirpath / "A_matrix.csv", len(A_inds), transpose=True, data_type=data_type) B = load_matrix_and_index( - dirpath / "B_matrix.csv", len(B_inds), sign=-1, extra_indices=len(A_inds) + dirpath / "B_matrix.csv", len(B_inds), sign=-1, extra_indices=len(A_inds), data_type=data_type ) return A, B, A_inds, B_inds diff --git a/pathways/pathways.py b/pathways/pathways.py index ac9aa19..81b75b0 100644 --- a/pathways/pathways.py +++ b/pathways/pathways.py @@ -5,7 +5,6 @@ """ import csv -import sys from collections import defaultdict from multiprocessing import Pool, cpu_count from pathlib import Path @@ -17,6 +16,7 @@ import yaml from datapackage import DataPackage from premise.geomap import Geomap +import pyprind from . import DATA_DIR from .lca import ( @@ -34,6 +34,7 @@ get_unit_conversion_factors, load_classifications, load_units_conversion, + harmonize_units ) # if pypardiso is installed, use it @@ -207,6 +208,7 @@ def process_region(data: Tuple) -> Union[None, Dict[str, Any]]: reverse_classifications, lca_results_coords, flows, + demand_cutoff, ) = data # Generate a list of activity indices for each activity category @@ -250,7 +252,15 @@ def process_region(data: Tuple) -> Union[None, Dict[str, Any]]: ) # If the total demand is zero, return None - if demand.sum() < 1e-4: + if ( + demand + / scenarios.sel( + region=region, + model=model, + pathway=scenario, + year=year, + ).sum(dim="variables") + ) < demand_cutoff: continue # Create the demand vector @@ -490,6 +500,9 @@ def calculate( variables: Optional[List[str]] = None, characterization: bool = True, flows: Optional[List[str]] = None, + multiprocessing: bool = False, + data_type: np.dtype = np.float64, + demand_cutoff: float = 1e-3, ) -> None: """ Calculate Life Cycle Assessment (LCA) results for given methods, models, scenarios, regions, and years. @@ -513,8 +526,18 @@ def calculate( :type years: Optional[List[int]], default is None :param variables: List of variables. If None, all available variables will be used. :type variables: Optional[List[str]], default is None + :param flows: List of biosphere flows. If None, all available flows will be used. + :type flows: Optional[List[str]], default is None + :param multiprocessing: Boolean. If True, process each region in parallel. + :type multiprocessing: bool, default is False + :param data_type: Data type to use for storing LCA results. + :type data_type: np.dtype, default is np.float64 + :param demand_cutoff: Float. If the total demand for a given variable is less than this value, the variable is skipped. + :type demand_cutoff: float, default is 1e-3 """ + self.scenarios = harmonize_units(self.scenarios, variables) + # Initialize list to store activities not found in classifications missing_class = [] @@ -563,7 +586,7 @@ def calculate( # Try to load LCA matrices for the given model, scenario, and year try: A, B, A_index, B_index = get_lca_matrices( - self.datapackage, model, scenario, year + self.datapackage, model, scenario, year, data_type=data_type ) B = np.asarray(B.todense()) @@ -610,33 +633,67 @@ def calculate( if act not in self.classifications: missing_class.append(list(act)) - # Prepare data for each region - data_for_regions = [ - ( - model, - scenario, - year, - region, - variables, - vars_info[region], - self.scenarios, - self.mapping, - self.units, - A, - B, - A_index, - B_index, - self.lcia_matrix if characterization else None, - self.reverse_classifications, - self.lca_results.coords, - flows, - ) - for region in regions - ] - - # Process each region in parallel - with Pool(cpu_count()) as p: - results = p.map(process_region, data_for_regions) + if multiprocessing is True: + # Prepare data for each region + data_for_regions = [ + ( + model, + scenario, + year, + region, + variables, + vars_info[region], + self.scenarios, + self.mapping, + self.units, + A, + B, + A_index, + B_index, + self.lcia_matrix if characterization else None, + self.reverse_classifications, + self.lca_results.coords, + flows, + demand_cutoff, + ) + for region in regions + ] + + # Process each region in parallel + with Pool(cpu_count()) as p: + results = p.map(process_region, data_for_regions) + + else: + results = [] + # use pyprind + bar = pyprind.ProgBar(len(regions)) + for region in regions: + bar.update() + # Iterate over each region + results.append( + process_region( + ( + model, + scenario, + year, + region, + variables, + vars_info[region], + self.scenarios, + self.mapping, + self.units, + A, + B, + A_index, + B_index, + self.lcia_matrix if characterization else None, + self.reverse_classifications, + self.lca_results.coords, + flows, + demand_cutoff, + ) + ) + ) # Store results in the LCA results xarray for result in results: @@ -670,5 +727,5 @@ def characterize_planetary_boundaries( characterization=False, ) - def display_results(self, cutoff: float = 0.01) -> xr.DataArray: + def display_results(self, cutoff: float = 0.001) -> xr.DataArray: return display_results(self.lca_results, cutoff=cutoff) diff --git a/pathways/utils.py b/pathways/utils.py index 070f0f9..121e255 100644 --- a/pathways/utils.py +++ b/pathways/utils.py @@ -100,8 +100,36 @@ def _get_activity_indices( return indices # Return the list of indices +def harmonize_units(scenario: xr.DataArray, variables: list) -> xr.DataArray: + """ + Harmonize the units of a scenario. Some units ar ein PJ/yr, while others are in EJ/yr + We want to convert everything to the same unit - preferably the largest one. + :param scenario: + :return: + """ + + units = [scenario.attrs["units"][var] for var in variables] + + # if not all units are the same, we need to convert + if len(set(units)) > 1: + if all(x in ["PJ/yr", "EJ/yr"] for x in units): + # convert to EJ/yr + # create vector of conversion factors + conversion_factors = np.array([1e-3 if u == "PJ/yr" else 1 for u in units]) + # multiply scenario by conversion factors + scenario.loc[ + dict(variables=variables) + ] *= conversion_factors[:, np.newaxis, np.newaxis] + # update units + scenario.attrs["units"] = {var: "EJ/yr" for var in variables} + + + return scenario + + + def get_unit_conversion_factors( - scenario_unit, dataset_unit, unit_mapping + scenario_unit: dict, dataset_unit: list, unit_mapping: dict ) -> np.ndarray: """ Get the unit conversion factors for a given scenario unit and dataset unit. @@ -190,7 +218,7 @@ def create_lca_results_array( def display_results( - lca_results: Union[xr.DataArray, None], cutoff: float = 0.01 + lca_results: Union[xr.DataArray, None], cutoff: float = 0.001 ) -> xr.DataArray: if lca_results is None: raise ValueError("No results to display")